/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Our Expertise css
08. Why Choose Us css
09. Our Case Study css
10. How It work css
11. Our Pricing css
12. Our Testimonials css
13. Our FAQs css
14. Our Book Appintment 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. Case Study Page css
23. Case Study 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.	Book Appointment css
33. 404 Error Page css
34. Responsive css
35. Home - Version 2 css
36. Home - Version 3 css
-------------------------------------------------------------------------------------- */

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

:root {
	--primary-color: #A60F0F;
	--secondary-color: #7A0B0B;
	--gray: #4B5563;
	--light-gray: #F2F2F2;
	--soft-bg: #FAFAFA;
	--white: #FFFFFF;
	--bg-color: #F7F3F1;
	--text-color: #666666;
	--accent-color: #274543;
	--accent-secondary-color: #A60F0F;
	--white-color: #FFFFFF;
	--divider-color: #2222221A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "DM Sans", sans-serif;
	--accent-font: "Mona Sans", 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: linear-gradient(270deg, var(--bg-color) 0%, var(--secondary-color) 100%);*/
}

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

::-webkit-scrollbar {
	width: 10px;
	background-color: var(--gray);
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1.2em;
	color: #000;
	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-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--primary-color);
	border-radius: 5px;
	padding: 17px 55px 17px 24px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

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

	.btn-default:hover::before {
		background-color: #222222;
	}

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

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

	.btn-default.btn-highlighted {
		background: #92261b;
		color: #ffffff;
	}

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

.readmore-btn {
	position: relative;
	display: inline-block;
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	padding-right: 22px;
}

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

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

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

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--accent-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);
	}
}

.bg-section {
	width: 100%;
	max-width: 1820px;
	background-color: var(--white-color);
	border-radius: 20px;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

	.section-title h1 {
		font-size: 60px;
		line-height: 1.1em;
		letter-spacing: -0.02em;
		margin-bottom: 0;
		cursor: none;
	}

	.section-title h2 {
		font-size: 48px;
		letter-spacing: -0.02em;
		margin-bottom: 0;
		cursor: none;
	}

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

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

.dark-section .section-sub-heading,
.dark-section .section-title .section-sub-title {
	background: #0000001a;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	color: #000;
}

.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
	color: #000;
}

.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;
	top: 15px;
	left: 15px;
	right: 15px;
	z-index: 100;
}

	header.main-header .header-sticky {
		position: relative;
		top: 0px;
		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: 15px;
			right: 15px;
			transform: translateY(0);
			background: var(--primary-color);
			border: 1px solid var(--dark-divider-color);
			border-top: none;
			border-radius: 0 0 20px 20px;
		}

.navbar {
	padding: 30px 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 {
	margin: 0 10px;
	position: relative;
}

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

	.main-menu ul li.submenu > a:after {
		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-secondary-color);
	}

.main-menu ul ul {
	position: absolute;
	left: 0;
	top: 100%;
	transform: scale(1,0.8);
	transform-origin: top;
	width: 235px;
	background: linear-gradient(270deg, var(--bg-color) 0%, #e4e4e4 100%);
	border-radius: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	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: #222222;
			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: #A60F0F;
	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: linear-gradient(270deg, var(--bg-color) 0%, #f2f2f2 100%);
	border-bottom: 1px solid var(--divider-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: 600;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--primary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

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

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

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

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

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

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

.hero {
	position: relative;
	align-content: end;
	background-image: url('../images/hero-bg-image.jpg');
	border-radius: 20px;
	height: 100vh;
	min-height: 850px;
	align-content: end;
	padding: 230px 0 120px;
	margin: 15px 15px 0 15px;
	overflow: hidden;
}

	.hero::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: linear-gradient(180deg, rgba(34, 34, 34, 0.70) 12%, transparent 40.63%), linear-gradient(180deg, transparent 29.87%, rgba(34, 34, 34, 0.80) 81.81%);
		width: 100%;
		height: 100%;
		z-index: 1;
	}

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

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

.hero-client-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

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

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

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

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

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

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

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

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

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

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

.hero-client-content p {
	color: var(--white-color);
	line-height: normal;
	margin: 5px 0 0;
}

.hero-info-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	border: 1px solid var(--dark-divider-color);
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 20px;
	min-height: 320px;
	max-width: 330px;
	margin-left: auto;
	padding: 30px;
}

.hero-info-box-header p {
	color: var(--white-color);
	font-weight: 500;
	margin: 0;
}

.hero-info-client-review-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

	.hero-info-client-review-box .satisfy-client-image figure img {
		max-width: 28px;
	}

	.hero-info-client-review-box .satisfy-client-image.add-more {
		height: 30px;
		width: 30px;
	}

		.hero-info-client-review-box .satisfy-client-image.add-more i {
			font-size: 16px;
		}

	.hero-info-client-review-box .satisfy-client-content {
		width: calc(100% - 98px);
	}

		.hero-info-client-review-box .satisfy-client-content p {
			color: var(--white-color);
			margin: 0;
			line-height: normal;
		}

.hero-info-box-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

	.hero-info-box-rating h2 {
		color: var(--white-color);
		font-size: 20px;
	}

.hero-info-rating-star i {
	color: var(--accent-secondary-color);
	font-size: 16px;
}

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

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

.about-us-image-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-right: 15px;
}

.about-us-image-box-1 {
	width: calc(44% - 15px);
	display: flex;
	flex-direction: column;
}

.about-us-image-box-2 {
	width: calc(56% - 15px);
}

.happy-customer-review-box {
	position: relative;
	background: var(--secondary-color);
	padding: 0 30px 30px 0;
	border-radius: 20px 0 20px 0;
	margin-right: -100px;
	z-index: 2;
}

	.happy-customer-review-box::before,
	.happy-customer-review-box::after {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		mask: url('../images/image-corner-bg-shape.svg');
		-webkit-mask: url('../images/image-corner-bg-shape.svg');
		background-color: var(--secondary-color);
		mask-repeat: no-repeat;
		mask-size: cover;
		z-index: 1;
	}

	.happy-customer-review-box::before {
		right: -20px;
		left: auto;
	}

	.happy-customer-review-box::after {
		left: auto;
		right: 50px;
		bottom: -20px;
	}

.happy-customer-review-item {
	background-color: var(--accent-color);
	border-radius: 20px;
	padding: 30px;
}

	.happy-customer-review-item .hero-info-rating-star i {
		font-size: 20px;
	}

.happy-customer-review-content {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 20px;
	padding-top: 20px;
}

	.happy-customer-review-content p {
		color: var(--white-color);
		margin: 0;
	}

.happy-customer-review-item .satisfy-client-images {
	margin-top: 20px;
}

.happy-customer-review-item .satisfy-client-image {
	border-color: var(--primary-color);
}

	.happy-customer-review-item .satisfy-client-image.add-more {
		background-color: var(--accent-secondary-color);
	}

		.happy-customer-review-item .satisfy-client-image.add-more i {
			color: var(--white-color);
		}

.about-us-image {
	height: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.about-us-body-item {
	background-color: var(--white-color);
	border-left: 4px solid var(--accent-color);
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 30px;
}

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

	.about-us-body-item h3 {
		font-size: 16px;
		line-height: 1.6em;
	}

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

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

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

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

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

.service-item-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

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

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

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

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

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

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

	.service-item-title h2 {
		font-size: 20px;
		line-height: 1.3em;
		color: var(--white-color);
	}

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

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

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

.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;
			color: var(--white-color);
			background: var(--accent-secondary-color);
			line-height: 1em;
			padding: 4px 10px;
			border-radius: 20px;
			margin-right: 10px;
		}

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

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

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

		.section-footer-text ul li {
			display: inline-block;
			font-family: var(--accent-font);
			font-weight: 600;
			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 {
				color: var(--accent-secondary-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;
			}

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

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

		.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
			width: 32px;
			height: 32px;
			margin-left: -10px;
			background: var(--accent-secondary-color);
		}

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

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

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

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

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

/************************************/
/*** 	 07. Our Expertise css 	  ***/
/************************************/

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

.expertise-body {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

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

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

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

.skill-data .skill-title,
.skill-data .skill-no {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
}

.skill-progress {
	position: relative;
	background: var(--white-color);
	border-radius: 10px;
	width: 100%;
	height: 6px;
}

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

.expertise-btn {
	margin-top: 40px;
}

.expertise-image-box {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-left: 15px;
}

.expertise-image-box-1 {
	width: 40%;
	padding-bottom: 100px;
}

.expertise-image-box-2 {
	position: relative;
	width: 60%;
	z-index: 2;
}

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

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

.expertise-image-box-1 figure {
	margin-right: -250px;
}

.expertise-image-box-1 .expertise-image img {
	aspect-ratio: 1 / 1.045;
}

.expertise-image-box-2 .expertise-image img {
	aspect-ratio: 1 / 0.91;
}

.experience-circle {
	position: relative;
	transform: translate(-65px, 65px);
	z-index: 2;
}

	.experience-circle 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);
	}
}

/************************************/
/***     08. Why Choose Us css    ***/
/************************************/

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

.why-choose-item {
	position: relative;
	border-radius: 20px;
	align-content: end;
	min-height: 450px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 25px;
	overflow: hidden;
}

.why-choose-item-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

	.why-choose-item-image figure {
		display: block;
		width: 100%;
		height: 100%;
	}

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

.why-choose-item-content {
	position: relative;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	z-index: 1;
}

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

.why-choose-content-image img {
	width: 100%;
	max-width: 260px;
	aspect-ratio: 1 / 0.57;
	object-fit: cover;
	border-radius: 10px;
}

.why-choose-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

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

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

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

.why-choose-cta-item-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

	.why-choose-cta-item-image figure {
		position: relative;
		display: block;
		height: 100%;
	}

		.why-choose-cta-item-image figure:before {
			content: '';
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			background-color: var(--primary-color);
			opacity: 60%;
			width: 100%;
			height: 100%;
		}

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

.why-choose-cta-body {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	gap: 40px;
	height: 100%;
	z-index: 1;
}

	.why-choose-cta-body .icon-box img {
		width: 100%;
		max-width: 60px;
	}

.why-choose-cta-content p {
	font-size: 14px;
	font-weight: 600;
	color: var(--white-color);
	margin: 0 0 10px;
}

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

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

.why-choose-slider-box {
	margin-top: 30px;
}

.why-choose-slider-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 40px;
	text-align: center;
}

	.why-choose-slider-content hr {
		height: 2px;
		flex-grow: 1;
		color: var(--divider-color);
		opacity: 1;
		margin: 0;
	}

	.why-choose-slider-content p {
		font-family: var(--accent-font);
		color: var(--primary-color);
		margin-bottom: 0;
	}

.why-choose-logo-slider {
	max-width: 750px;
	margin: 0 auto;
}

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

	.why-choose-logo img {
		width: 100%;
		max-width: 162px;
		height: 40px;
	}

/************************************/
/***    09. Our Case Study css    ***/
/************************************/

.our-case-study {
	padding: 120px 0;
}

.case-study-item {
	position: relative;
	min-height: 500px;
	border-radius: 20px;
	align-content: end;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.case-study-item-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

	.case-study-item-image a {
		display: block;
		height: 100%;
		cursor: none;
	}

		.case-study-item-image a figure {
			position: relative;
			display: block;
			height: 100%;
			overflow: hidden;
		}

			.case-study-item-image a figure::before {
				content: '';
				position: absolute;
				top: 0;
				right: 0;
				bottom: 0;
				left: 0;
				width: 100%;
				height: 100%;
				background: linear-gradient(180deg, transparent 50%, rgba(34, 34, 34, 0.90) 86.7%);
				z-index: 1;
			}

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

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

.case-study-item-contant {
	position: relative;
	z-index: 1;
}

	.case-study-item-contant ul {
		display: flex;
		flex-wrap: wrap;
		gap: 10px 15px;
		list-style: none;
		margin: 0 0 20px;
		padding: 0;
	}

		.case-study-item-contant ul li a {
			display: block;
			color: var(--white-color);
			background-color: var(--dark-divider-color);
			border-radius: 100px;
			padding: 9px 16px;
			transition: all 0.4s ease-in-out;
		}

			.case-study-item-contant ul li a:hover {
				background-color: var(--accent-secondary-color);
			}

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

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

/************************************/
/***      10. How It work css     ***/
/************************************/

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

.how-it-work-image {
	height: 100%;
	margin-left: 15px;
}

	.how-it-work-image figure {
		display: block;
		height: 100%;
		border-radius: 20px;
	}

	.how-it-work-image img {
		width: 100%;
		height: 100%;
		aspect-ratio: 1 / 0.526;
		object-fit: cover;
		border-radius: 20px;
	}

.how-work-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 60px;
	margin-top: 120px;
}

.how-work-item {
	position: relative;
	width: calc(33.33% - 40px);
}

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

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

.how-work-item-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

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

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

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

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

.how-work-item:hover .how-work-item-header .icon-box img {
	filter: brightness(0) invert(0);
}

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

	.how-work-item-title p {
		color: var(--white-color);
		font-weight: 500;
		text-transform: uppercase;
		line-height: normal;
		margin-bottom: 10px;
	}

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

.how-work-item-body {
	margin-top: 40px;
}

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

/************************************/
/***     11. Our pricing css      ***/
/************************************/

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

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

.pricing-item-content {
	padding: 30px;
	margin-bottom: 10px;
}

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

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

.pricing-item-body {
	background: linear-gradient(270deg, var(--bg-color) 0%, var(--secondary-color) 100%);
	border-radius: 14px;
	text-align: center;
	padding: 40px;
}

.pricing-item-price h2 {
	font-size: 40px;
}

.pricing-item-price p {
	margin: 10px 0 0;
}

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

	.pricing-item-btn .btn-default {
		width: 100%;
		padding: 17px 24px;
	}

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

.pricing-item-list {
	margin-top: 10px;
	padding: 30px;
}

	.pricing-item-list h3 {
		font-size: 16px;
		border-bottom: 1px solid var(--divider-color);
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.pricing-item-list ul {
		list-style: none;
		margin: 0;
		padding: 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-benefit-list {
	margin-top: 30px;
}

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

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

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

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

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

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

.testimonials-image {
	height: 100%;
}

	.testimonials-image figure {
		display: block;
		height: 100%;
		border-radius: 14px;
	}

	.testimonials-image img {
		width: 100%;
		height: 100%;
		aspect-ratio: 1 / 0.905;
		object-fit: cover;
		border-radius: 14px;
	}

.testimonials-review-box {
	position: absolute;
	bottom: 20px;
	left: 20px;
	width: 100%;
	max-width: 280px;
	background-color: var(--white-color);
	border-radius: 14px;
	padding: 15px;
	z-index: 1;
}

.testimonials-review-box-header {
	display: flex;
	align-items: center;
	gap: 15px;
}

	.testimonials-review-box-header .icon-box img {
		width: 100%;
		max-width: 40px;
	}

.testimonials-review-header-content {
	width: calc(100% - 55px);
	display: flex;
	align-items: center;
}

	.testimonials-review-header-content h2 {
		font-size: 26px;
		min-width: 70px;
		line-height: 1em;
	}

.google-rating-star {
	line-height: normal;
}

	.google-rating-star i {
		font-size: 18px;
		color: var(--accent-secondary-color);
	}

.testimonials-review-body {
	margin-top: 15px;
}

	.testimonials-review-body p {
		margin: 0;
	}

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

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

.testimonial-item {
	min-height: 375px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: linear-gradient(270deg, var(--bg-color) 0%, var(--secondary-color) 100%);
	border-radius: 14px;
	padding: 40px;
}

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

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

	.testimonial-item-content p {
		font-family: var(--accent-font);
		font-size: 16px;
		font-weight: 600;
		line-height: 1.4em;
		color: var(--primary-color);
		margin: 0;
	}

.testimonial-item-author {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
}

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

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

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

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

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

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

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

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

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

.faqs-content-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

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

		.faqs-content-list ul li:last-child {
			margin-bottom: 0;
		}

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

.faqs-content-btn {
	margin-top: 40px;
}

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

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

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

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

.faq-accordion .accordion-button:not(.collapsed)::after {
	transform: translateY(-50%) rotate(180deg);
}

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

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

/************************************/
/*** 14. Our Book Appintment css  ***/
/************************************/

.our-book-appointment {
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}

.book-appointment-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}

	.book-appointment-image figure {
		position: relative;
		display: block;
		height: 100%;
	}

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

	.book-appointment-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 20px;
	}

.book-appointment-form-box {
	position: relative;
	width: 100%;
	max-width: 640px;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	border-radius: 20px;
	padding: 50px;
	margin-left: auto;
	z-index: 1;
}

.book-appointment-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--white-color);
	background-color: var(--dark-divider-color);
	border: none;
	border-radius: 12px;
	padding: 18px 20px;
	box-shadow: none;
	outline: none;
}

	.book-appointment-form .form-control::placeholder {
		color: var(--white-color);
		opacity: 100%;
	}

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

.book-appointment-form select option {
	color: var(--text-color);
}

.appointment-form-btn {
	margin-top: 20px;
}

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

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

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

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

.post-item {
	position: relative;
	min-height: 430px;
	border-radius: 20px;
	align-content: end;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

	.post-item .post-featured-image {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

		.post-item .post-featured-image a,
		.post-item .post-featured-image figure {
			position: relative;
			display: block;
			width: 100%;
			height: 100%;
			border-radius: 20px;
			overflow: hidden;
			cursor: none;
		}

			.post-item .post-featured-image figure::before {
				content: '';
				position: absolute;
				top: 0;
				right: 0;
				bottom: 0;
				left: 0;
				background: linear-gradient(180deg, transparent 50%, rgba(34, 34, 34, 0.90) 100%);
				height: 100%;
				width: 100%;
				z-index: 1;
			}

			.post-item .post-featured-image figure img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				border-radius: 20px;
				transition: all 0.6s ease-in-out;
			}

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

	.post-item .post-item-body {
		position: relative;
		z-index: 1;
	}

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

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

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

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

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

.footer-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 80px;
	padding-bottom: 80px;
}

	.footer-header .section-title {
		margin-bottom: 0;
	}

.footer-newsletter-form {
	width: 100%;
	max-width: 415px;
}

	.footer-newsletter-form .form-group {
		display: flex;
		background-color: var(--dark-divider-color);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border-radius: 10px;
		padding: 10px;
	}

		.footer-newsletter-form .form-group .form-control {
			width: calc(100% - 40px);
			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: 5px 10px;
		}

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

		.footer-newsletter-form .form-group .newsletter-btn {
			width: 40px;
			height: 40px;
			display: flex;
			justify-content: center;
			align-items: center;
			background-color: var(--accent-secondary-color);
			border: none;
			border-radius: 5px;
			transition: all 0.4s ease-in-out;
		}

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

			.footer-newsletter-form .form-group .newsletter-btn img {
				width: 100%;
				max-width: 12px;
				transition: all 0.4s ease-in-out;
			}

			.footer-newsletter-form .form-group .newsletter-btn:hover img {
				transform: rotate(45deg);
				filter: brightness(0) invert(0);
			}

.about-footer {
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 10px;
	padding: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

	.footer-links ul {
		list-style: disc;
		margin: 0;
		padding: 0 0 0 20px;
	}

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

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

			.footer-links ul li::marker {
				color: var(--accent-secondary-color);
			}

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

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

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

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

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

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

	.page-header:before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: linear-gradient(180deg, rgba(34, 34, 34, 0.70) 0%, transparent 19.63%), linear-gradient(270deg, transparent 0%, rgba(34, 34, 34, 0.80) 85.74%);
		height: 100%;
		width: 100%;
		z-index: 1;
	}

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

	.page-header-box h1 {
		display: inline-block;
		font-size: 60px;
		letter-spacing: -0.02em;
		color: var(--white-color);
		margin-bottom: 10px;
		cursor: none;
	}

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

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

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

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

.our-approach {
	padding: 120px 0 0;
	margin-bottom: 250px;
}

.approach-content-box {
	position: relative;
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: end;
	gap: 30px;
	padding: 50px;
	margin-bottom: -250px;
	overflow: hidden;
}

.approach-image {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

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

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

.approach-item-list {
	width: 100%;
	max-width: 500px;
	position: relative;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 40px;
}

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

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

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

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

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

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

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

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

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

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

.benefits-item {
	min-height: 460px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background-color: var(--white-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

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

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

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

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

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

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

.benefit-item-list {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
}

	.benefit-item-list ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

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

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

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

.intro-video {
	position: relative;
	background-image: url('../images/intro-video-bg-image.jpg');
	background-position: center center;
	overflow: hidden;
}

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

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

.intro-video-body {
	max-width: 700px;
	text-align: center;
	margin: 0 auto;
	padding: 180px 0;
}

.video-play-button a {
	position: relative;
	width: 80px;
	height: 80px;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

	.video-play-button a.bg-effect:before,
	.video-play-button a.bg-effect:after {
		content: '';
		position: absolute;
		width: 160%;
		height: 160%;
		border: 24px 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.bg-effect:after {
		animation-delay: .3s;
	}

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

.video-play-button a:hover {
	background: var(--white-color);
}

.video-play-button a i {
	position: relative;
	font-size: 30px;
	color: var(--white-color);
	margin-left: 2px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.video-play-button a:hover i {
	color: var(--primary-color);
}

.intro-video-content {
	margin-top: 70px;
}

.intro-video-contact-box {
	background-color: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 25px 0;
}

.intro-video-contact-content-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.intro-video-contact-title {
	max-width: 49%;
}

	.intro-video-contact-title h2 {
		color: var(--white-color);
		font-size: 30px;
	}

.intro-video-contact-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
	max-width: 49%;
	overflow: hidden;
}

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

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

	.intro-video-contact-item:last-child:before {
		display: none;
	}

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

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

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

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

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

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

	.intro-video-contact-content p {
		color: var(--white-color);
		line-height: normal;
		margin-bottom: 5px;
	}

	.intro-video-contact-content h3 {
		color: var(--white-color);
		font-size: 20px;
	}

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

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

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

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

.team-item-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

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

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

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

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

.team-item-body {
	position: relative;
	text-align: center;
	z-index: 1;
}

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

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

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

.team-social-list {
	height: 0;
	opacity: 0;
	visibility: hidden;
	transform: scaleY(0);
	transform-origin: top;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-social-list {
	height: 36px;
	opacity: 1;
	visibility: visible;
	transform: scaleY(1);
	margin-bottom: 30px;
}

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

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

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

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

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

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

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

	.page-services .service-item-header .icon-box::before {
		background: var(--primary-color);
	}

	.page-services .service-item:hover .service-item-header .icon-box img {
		filter: none;
	}

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

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

	.page-services .service-item-btn {
		border-color: var(--divider-color);
	}

		.page-services .service-item-btn .readmore-btn::before {
			background-image: url('../images/arrow-primary.svg');
		}

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

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

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

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

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

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

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

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

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

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

				.page-category-list ul li a::before {
					content: '';
					position: absolute;
					top: 50%;
					right: 0;
					background: url('../images/arrow-primary.svg') no-repeat;
					background-position: center center;
					background-size: cover;
					width: 12px;
					height: 12px;
					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 {
	position: relative;
	border-radius: 20px;
	min-height: 460px;
	align-content: end;
	padding: 10px;
	overflow: hidden;
}

.sidebar-cta-box-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

	.sidebar-cta-box-image figure {
		display: block;
		height: 100%;
	}

	.sidebar-cta-box-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.sidebar-cta-contact-item-list {
	position: relative;
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 20px;
	z-index: 2;
}

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

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

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

		.sidebar-cta-contact-item .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;
		}

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

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

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

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

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

	.sidebar-cta-contact-item-content h2 {
		font-size: 20px;
		color: var(--white-color);
		margin: 5px 0 0;
	}

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

			.sidebar-cta-contact-item-content h2 a:hover {
				color: var(--accent-secondary-color);
			}

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

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

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

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

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

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

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

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

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

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

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

.service-entry-info-box,
.service-focus-box,
.service-process-box {
	margin-top: 60px;
}

.service-benefit-box {
	margin-top: 40px;
}

	.service-benefit-box h3 {
		font-size: 30px;
	}

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

.service-focus-item {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 30px;
}

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

.service-focus-image {
	width: calc(39% - 15px);
}

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

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

.service-focus-content-box {
	width: calc(61% - 15px);
	background: var(--white-color);
	align-content: center;
	border-radius: 20px;
	padding: 2.083vw;
}

.service-focus-item-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
}

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

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

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

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

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

.service-process-body-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 50px;
	margin-top: 40px;
}

.service-process-item-list {
	width: calc(51% - 25px);
	align-content: center;
}

.service-process-item {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	margin-bottom: 40px;
}

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

.service-process-item-no {
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.service-process-item-no::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-process-item:hover .service-process-item-no:before {
	transform: scale(1);
}

.service-process-item-no span {
	position: relative;
	font-family: var(--accent-font);
	font-size: 24px;
	font-weight: 600;
	color: var(--white-color);
	z-index: 1;
}

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

.service-process-video-image {
	position: relative;
	width: calc(49% - 25px);
	border-radius: 20px;
	overflow: hidden;
}

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

		.service-process-video-image figure::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: var(--primary-color);
			opacity: 30%;
			width: 100%;
			height: 100%;
		}

		.service-process-video-image figure img {
			width: 100%;
			height: 100%;
			aspect-ratio: 1 / 0.925;
			object-fit: cover;
		}

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

		.service-process-video-image .video-play-button a {
			width: 55px;
			height: 55px;
		}

			.service-process-video-image .video-play-button a i {
				font-size: 18px;
			}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6 {
		font-family: var(--accent-font);
		font-weight: 600;
		line-height: 1.2em;
		margin: 0 0 0.42em;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.case-study-category-list ul li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

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

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

	.case-study-entry h2 {
		font-size: 48px;
		letter-spacing: -0.02em;
		margin-bottom: 20px;
	}

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

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

	.case-study-entry ul {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		list-style: none;
		padding: 0;
		margin: 0;
	}

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

			.case-study-entry 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;
			}

.case-study-approach-box,
.case-study-results-box,
.case-study-challenge-box {
	margin-top: 60px;
}

.case-study-approach-list {
	margin-top: 40px;
}

	.case-study-approach-list ul li {
		border: 1px solid var(--divider-color);
		border-radius: 10px;
		padding: 15px 15px 15px 45px;
	}

		.case-study-approach-list ul li::before {
			left: 15px;
			top: 15px;
		}

.case-study-results-body {
	background: var(--white-color);
	border-radius: 20px;
	margin-top: 40px;
	padding: 40px;
}

.case-study-result-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.case-study-result-item {
	width: calc(33.33% - 20px);
}

	.case-study-result-item .icon-box {
		position: relative;
		width: 50px;
		height: 50px;
		background-color: var(--accent-color);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 25px;
	}

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

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

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

.case-study-result-list {
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

	.case-study-result-list ul {
		gap: 20px;
	}

		.case-study-result-list ul li {
			width: calc(33.33% - 13.33px);
		}

.case-study-challenge-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.case-study-challenge-item {
	position: relative;
	width: calc(50% - 15px);
	min-height: 325px;
	align-content: end;
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.case-study-challenge-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

	.case-study-challenge-image::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(180deg, transparent 48.45%, rgba(34, 34, 34, 0.80) 100%);
		width: 100%;
		height: 100%;
	}

	.case-study-challenge-image figure {
		display: block;
		height: 100%;
	}

	.case-study-challenge-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.case-study-challenge-item-content {
	position: relative;
	z-index: 1;
}

	.case-study-challenge-item-content h3,
	.case-study-challenge-item-content p {
		color: var(--white-color);
	}

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

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

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

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

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

.team-single-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 60px;
}

	.team-single-image figure {
		position: relative;
		display: block;
	}

	.team-single-image img {
		width: 100%;
		aspect-ratio: 1 / 1.2;
		object-fit: cover;
	}

.member-social-list {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	z-index: 1;
}

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

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

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

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

.team-member-about,
.team-member-expertise,
.team-member-experience {
	margin-bottom: 60px;
}

.team-contact-list-box {
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 50px;
}

.team-contact-list-box-title {
	margin-bottom: 40px;
}

	.team-contact-list-box-title h3 {
		font-size: 30px;
	}

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

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

.team-contact-item {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

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

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

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

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

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

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

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

.member-skill-list .skill-data .skill-title,
.member-skill-list .skill-data .skill-no {
	font-size: 18px;
}

.member-skill-list .skill-progress {
	height: 14px;
}

	.member-skill-list .skill-progress .count-bar {
		background-color: var(--accent-color);
	}

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

.member-experience-item {
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 30px;
}

	.member-experience-item h3 {
		font-size: 20px;
	}

	.member-experience-item p {
		margin: 10px 0 0;
	}

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

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

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

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

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

/************************************/
/***     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-secondary-color);
		color: var(--white-color);
		border-radius: 50%;
		height: 60px;
		width: 60px;
		cursor: none;
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		visibility: hidden;
		transition: all 0.5s ease-in-out;
		z-index: 1;
	}

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

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

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

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

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

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

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

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

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

.contact-info-list-title {
	margin-bottom: 50px;
}

	.contact-info-list-title h3 {
		font-size: 30px;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/************************************/
/***   32. Book Appointment css   ***/
/************************************/

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

.book-appointment-content {
	margin-right: 15px;
}

.working-hour-box {
	max-width: 550px;
}

	.working-hour-box h3 {
		font-size: 30px;
		margin-bottom: 50px;
	}

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

		.working-hour-box ul li {
			width: 100%;
			display: flex;
			justify-content: space-between;
			gap: 10px;
			line-height: 1.5em;
			border-bottom: 1px solid var(--divider-color);
			margin-bottom: 25px;
			padding-bottom: 25px;
		}

			.working-hour-box ul li:last-child {
				margin-bottom: 0px;
				padding-bottom: 0px;
				border-bottom: none;
			}

			.working-hour-box ul li span {
				font-family: var(--accent-font);
				font-size: 20px;
				font-weight: 600;
				color: var(--primary-color);
			}

.page-book-appointment .book-appointment-form-box {
	background-color: var(--white-color);
	max-width: 100%;
}

.book-appointment-form-content {
	margin-bottom: 40px;
}

	.book-appointment-form-content p {
		margin: 0;
	}

.page-book-appointment .book-appointment-form .form-control {
	background-color: var(--bg-color);
	color: var(--primary-color);
}

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

/************************************/
/***    33. 404 Error Page css    ***/
/************************************/

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

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

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

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

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

/************************************/
/***      34. Responsive css      ***/
/************************************/

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

	.bg-section {
		width: calc(100% - 30px);
	}
}

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

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

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

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

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

	.hero {
		height: auto;
	}

	.hero-content {
		margin-bottom: 30px;
	}

	.hero-info-box {
		margin-left: 0;
		min-height: auto;
		padding: 20px;
	}

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

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

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

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

	.expertise-content {
		margin-bottom: 30px;
	}

	.expertise-image-box {
		max-width: 740px;
		margin: 0 auto;
	}

	.why-choose-cta-item {
		padding: 30px;
	}

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

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

	.why-choose-slider-box {
		margin-top: 10px;
	}

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

	.case-study-item {
		min-height: 420px;
		padding: 30px;
	}

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

	.how-it-work-image {
		margin: 0;
		height: auto;
	}

		.how-it-work-image figure,
		.how-it-work-image img {
			height: auto;
		}

	.how-work-item-list {
		gap: 40px;
		margin-top: 60px;
	}

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

		.how-work-item:before {
			right: -20px;
		}

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

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

	.how-work-item-body {
		margin-top: 20px;
	}

	.pricing-item-content,
	.pricing-item-list {
		padding: 20px;
	}

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

	.pricing-item-list h3 {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.testimonial-item {
		padding: 30px;
	}

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

	.faqs-content-btn {
		margin-top: 30px;
	}

	.book-appointment-form-box {
		padding: 30px;
	}

	.post-item {
		padding: 30px;
	}

	.footer-header {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.about-footer {
		padding: 30px;
		margin-bottom: 30px;
	}

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

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

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

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

	.approach-content-box,
	.approach-item-list {
		padding: 30px;
	}

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

	.benefits-item {
		padding: 30px;
		min-height: auto;
	}

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

	.intro-video-body {
		padding: 120px 0;
	}

	.intro-video-content {
		margin-top: 50px;
	}

	.intro-video-contact-title {
		max-width: 34%;
	}

	.intro-video-contact-list {
		max-width: 63%;
	}

	.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 {
			margin-bottom: 15px;
			padding-bottom: 15px;
		}

	.sidebar-cta-contact-item-list {
		padding: 15px;
	}

	.sidebar-cta-contact-item {
		gap: 10px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

		.sidebar-cta-contact-item .icon-box {
			width: 40px;
			height: 40px;
		}

			.sidebar-cta-contact-item .icon-box img {
				max-width: 20px;
			}

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

		.sidebar-cta-contact-item-content h2 {
			font-size: 18px;
		}

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

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

		.service-entry ul {
			margin-top: 30px;
		}

	.service-entry-info-box,
	.service-focus-box,
	.service-process-box {
		margin-top: 40px;
	}

	.service-benefit-box {
		margin-top: 30px;
	}

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

	.service-process-body-box {
		gap: 30px;
		margin-top: 30px;
	}

	.service-process-item-list {
		width: calc(54% - 15px);
	}

	.service-process-item {
		margin-bottom: 30px;
	}

	.service-process-video-image {
		width: calc(46% - 15px);
	}

	.case-study-approach-box,
	.case-study-results-box,
	.case-study-challenge-box {
		margin-top: 40px;
	}

	.case-study-approach-list {
		margin-top: 30px;
	}

	.case-study-entry ul {
		gap: 15px;
	}

	.case-study-approach-list ul li {
		width: calc(50% - 7.5px);
		padding: 10px 10px 10px 33px;
	}

		.case-study-approach-list ul li::before {
			left: 10px;
			top: 10px;
		}

	.case-study-results-body {
		margin-top: 30px;
		padding: 30px;
	}

	.case-study-result-item-content h3 {
		font-size: 18px;
	}

	.case-study-result-list {
		margin-top: 30px;
		padding-top: 30px;
	}

		.case-study-result-list ul li {
			width: calc(50% - 7.5px);
		}

	.case-study-challenge-item-list {
		margin-top: 30px;
	}

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

	.team-contact-list-box {
		padding: 30px;
	}

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

		.team-contact-list-box-title h3 {
			font-size: 26px;
		}

	.team-contact-list-item {
		gap: 30px 20px;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

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

	.member-experience-item-list {
		gap: 20px;
	}

	.member-experience-item {
		width: calc(50% - 10px);
		padding: 20px;
	}

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

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

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

	.book-appointment-content {
		margin: 0 0 30px;
	}

	.working-hour-box h3 {
		margin-bottom: 30px;
	}
}

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

	.bg-section {
		border-radius: 0;
	}

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

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

	header.main-header {
		top: 0px;
		right: 0px;
		left: 0px;
	}

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

			header.main-header .header-sticky.active {
				width: 100%;
				top: 0;
				left: 0;
				right: 0;
				border-right: none;
				border-left: none;
				border-radius: 0;
			}

	.navbar {
		padding: 20px 0;
	}

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

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

	.header-btn {
		display: none;
	}

	.bg-section {
		width: 100%;
		border-radius: 0;
		margin: 0;
	}

		.bg-section .container-fluid {
			padding: 0 15px;
		}

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

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

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

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

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

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

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

	.hero {
		padding: 150px 0 60px;
		margin: 0;
		border-radius: 0;
	}

	.hero-content-body {
		gap: 20px;
	}

	.hero-client-content h2 {
		font-size: 18px;
	}

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

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

	.about-us-body-item {
		padding: 20px;
	}

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

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

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

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

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

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

	.expertise-body {
		padding-top: 30px;
	}

	.skillbar .skill-data {
		margin-bottom: 15px;
	}

	.expertise-btn {
		margin-top: 30px;
	}

	.experience-circle {
		transform: translate(-55px, 55px);
	}

		.experience-circle img {
			max-width: 110px;
		}

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

	.why-choose-item {
		min-height: 350px;
		padding: 15px;
	}

	.why-choose-item-content {
		padding: 20px;
	}

	.why-choose-content-image img {
		max-width: 200px;
	}

	.why-choose-cta-body .icon-box img {
		max-width: 50px;
	}

	.why-choose-cta-content h2 {
		font-size: 22px;
	}

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

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

	.how-work-item-header .icon-box {
		width: 50px;
		height: 50px;
	}

		.how-work-item-header .icon-box img {
			max-width: 24px;
		}

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

		.how-work-item-title p {
			margin-bottom: 5px;
		}

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

	.pricing-item-price h2 {
		font-size: 34px;
	}

	.pricing-item-btn .btn-default {
		padding: 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: 15px 30px;
		}

			.pricing-benefit-list ul li img {
				max-width: 18px;
			}

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

	.testimonials-review-header-content h2 {
		font-size: 22px;
		min-width: 60px;
	}

	.google-rating-star i {
		font-size: 16px;
	}

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

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

	.faqs-content-list ul li {
		margin-bottom: 10px;
	}

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

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

	.faq-accordion .accordion-header .accordion-button {
		padding: 18px 44px 18px 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: 18px 20px;
	}

	.our-book-appointment {
		padding: 60px 0;
	}

	.book-appointment-image {
		position: initial;
		height: auto;
		margin-bottom: 30px;
	}

		.book-appointment-image figure,
		.book-appointment-image img {
			height: auto;
		}

		.book-appointment-image img {
			aspect-ratio: 1 / 0.667;
		}

	.book-appointment-form-box {
		max-width: 100%;
	}

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

	.book-appointment-form select.form-control {
		padding: 13px 30px 13px 15px;
	}

	.appointment-form-btn {
		margin-top: 0;
	}

		.appointment-form-btn .btn-default {
			padding: 15px;
		}

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

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

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

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

	.footer-newsletter-form {
		max-width: 100%;
	}

		.footer-newsletter-form .form-group {
			padding: 5px;
		}

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

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

	.page-header {
		border-radius: 0;
		padding: 170px 0 80px;
		margin: 0;
	}

	.page-header-box h1 {
		font-size: 44px;
	}

	.our-approach {
		padding: 60px 0 0;
		margin-bottom: 150px;
	}

	.approach-content-box {
		padding: 0;
	}

	.approach-image {
		position: initial;
		height: auto;
	}

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

		.approach-image img {
			aspect-ratio: 1 / 0.43;
		}

	.approach-item-list {
		max-width: 100%;
	}

	.approach-content-box {
		margin-bottom: -150px;
	}

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

	.benefit-item-list ul li {
		margin-bottom: 10px;
	}

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

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

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

	.intro-video-contact-box {
		padding: 20px 0;
	}

	.intro-video-contact-list,
	.intro-video-contact-title {
		max-width: 100%;
	}

		.intro-video-contact-title h2 {
			font-size: 26px;
		}

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

	.team-item {
		min-height: 440px;
	}

	.page-services {
		padding: 60px 0 30px;
	}

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

	.page-single-sidebar {
		position: initial;
		margin-bottom: 30px;
	}

	.page-category-list {
		margin-bottom: 30px;
	}

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

	.service-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.service-entry ul li::before {
		font-size: 16px;
	}

	.service-benefit-box h3 {
		font-size: 26px;
	}

	.service-focus-content-box {
		padding: 20px;
	}

	.service-focus-item-header {
		margin-bottom: 20px;
	}

	.service-process-item {
		gap: 15px;
	}

	.service-process-item-no {
		width: 50px;
		height: 50px;
	}

		.service-process-item-no span {
			font-size: 20px;
		}

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

	.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-case-study {
		padding: 60px 0 30px;
	}

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

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

	.case-study-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.case-study-entry ul li::before {
		font-size: 16px;
	}

	.case-study-challenge-item {
		padding: 20px;
	}

	.case-study-result-item .icon-box {
		margin-bottom: 20px;
	}

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

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

	.team-single-image img {
		aspect-ratio: 1 / 0.8;
	}

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

	.page-testimonials {
		padding: 60px 0 30px;
	}

	.page-gallery {
		padding: 60px 0 30px;
	}

	.page-video-gallery {
		padding: 60px 0 30px;
	}

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

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

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

	.contact-info-list-title h3 {
		font-size: 26px;
	}

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

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

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

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

	.working-hour-box h3 {
		font-size: 26px;
	}

	.working-hour-box ul li {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

		.working-hour-box ul li span {
			font-size: 18px;
		}

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

	.error-page-image {
		margin-bottom: 20px;
	}
}

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

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

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

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

	.hero-client-content h2 {
		font-size: 16px;
	}

	.hero-info-box {
		max-width: 100%;
		gap: 20px;
	}

	.hero-info-box-rating {
		margin-top: 20px;
		padding-top: 20px;
	}

		.hero-info-box-rating h2 {
			font-size: 18px;
		}

	.about-us-image-box {
		gap: 15px;
	}

	.about-us-image-box-1 {
		width: calc(44% - 7.5px);
	}

	.happy-customer-review-box {
		padding: 0 15px 15px 0;
		margin-right: -55px;
	}

		.happy-customer-review-box::after {
			right: 20px;
			bottom: -20px;
		}

	.happy-customer-review-item {
		padding: 15px;
	}

		.happy-customer-review-item .hero-info-rating-star i {
			font-size: 16px;
		}

	.happy-customer-review-content {
		margin-top: 10px;
		padding-top: 10px;
	}

		.happy-customer-review-content p {
			font-size: 14px;
		}

	.happy-customer-review-item .satisfy-client-images {
		margin-top: 10px;
	}

	.about-us-image-box-2 {
		width: calc(56% - 7.5px);
	}

	.about-us-item-list {
		gap: 20px;
	}

	.about-us-item {
		width: 100%;
	}

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

	.about-us-body-item {
		padding: 15px;
	}

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

	.service-item-title h2 {
		font-size: 18px;
	}

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

	.skillbar .skill-data {
		margin-bottom: 10px;
	}

	.expertise-image-box-1 {
		padding-bottom: 50px;
	}

		.expertise-image-box-1 figure {
			margin-right: -150px;
		}

	.experience-circle {
		transform: translate(-45px, 45px);
	}

		.experience-circle img {
			max-width: 90px;
		}

	.why-choose-item-content {
		padding: 15px;
	}

	.why-choose-image img {
		aspect-ratio: 1 / 0.9;
	}

	.why-choose-cta-item {
		padding: 20px;
	}

	.why-choose-cta-content h2 {
		font-size: 20px;
	}

	.why-choose-slider-content {
		gap: 10px;
		margin-bottom: 20px;
	}

	.why-choose-logo img {
		max-width: 145px;
		height: 35px;
	}

	.case-study-item {
		min-height: 360px;
		padding: 20px;
	}

	.case-study-item-contant ul {
		margin-bottom: 10px;
	}

		.case-study-item-contant ul li a {
			padding: 6px 12px;
		}

	.case-study-item-contant h2 {
		font-size: 18px;
	}

	.how-work-item-list {
		margin-top: 30px;
	}

	.how-work-item {
		width: 100%;
	}

		.how-work-item:before {
			top: auto;
			bottom: -20px;
			left: 0;
			right: 0;
			height: 1px;
			width: 100%;
		}

		.how-work-item:nth-child(2n + 2):before {
			display: block;
		}

		.how-work-item:last-child:before {
			display: none;
		}

	.how-work-item-title h3 {
		font-size: 18px;
	}

	.pricing-item-content,
	.pricing-item-list {
		padding: 10px;
	}

		.pricing-item-content h2 {
			font-size: 18px;
		}

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

	.pricing-item-price h2 {
		font-size: 28px;
	}

	.pricing-item-price p {
		margin-top: 5px;
	}

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

	.pricing-item-list h3 {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

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

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

	.testimonials-image-box {
		margin-bottom: 30px;
	}

	.testimonials-image-box,
	.testimonials-image,
	.testimonials-image figure {
		height: auto;
	}

		.testimonials-image img {
			height: auto;
			aspect-ratio: 1 / 1.05;
		}

	.testimonials-review-box {
		max-width: 235px;
	}

	.testimonials-review-box-header .icon-box img {
		max-width: 30px;
	}

	.testimonials-review-header-content h2 {
		font-size: 18px;
		min-width: 50px;
	}

	.testimonials-review-body {
		margin-top: 10px;
	}

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

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

	.testimonial-item-author-content h2 {
		font-size: 18px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 12px 35px 12px 15px;
		font-size: 16px;
	}

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

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

	.book-appointment-form-box {
		padding: 30px 20px;
	}

	.post-item {
		padding: 20px;
	}

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

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

	.about-footer {
		padding: 20px;
	}

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

	.footer-service-links {
		order: 3;
	}

	.footer-support-links {
		order: 2;
	}

	.footer-links h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

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

	.page-header-box h1 {
		font-size: 28px;
	}

	.approach-image img {
		aspect-ratio: 1 / 0.6;
	}

	.approach-item-list {
		padding: 20px;
	}

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

	.approach-item-content {
		width: 100%;
	}

		.approach-item-content h3 {
			font-size: 18px;
		}

	.benefits-item {
		gap: 20px;
		padding: 20px;
	}

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

	.benefit-item-content h2 {
		font-size: 18px;
	}

	.benefit-item-list {
		padding-top: 20px;
	}

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

	.intro-video-content {
		margin-top: 30px;
	}

	.intro-video-contact-list {
		gap: 20px;
	}

	.intro-video-contact-title h2 {
		font-size: 22px;
	}

	.intro-video-contact-item {
		width: 100%;
	}

		.intro-video-contact-item::before {
			display: none;
		}

	.intro-video-contact-content h3 {
		font-size: 18px;
	}

	.team-item {
		min-height: 390px;
		padding: 20px;
	}

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

	.team-item:hover .team-social-list {
		margin-bottom: 20px;
	}

	.page-category-list .page-category-list-title {
		font-size: 18px;
	}

	.sidebar-cta-box {
		min-height: 380px;
	}

	.sidebar-cta-contact-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.sidebar-cta-contact-item-content h2 {
		font-size: 16px;
	}

	.page-single-image img {
		aspect-ratio: 1 / 0.68;
	}

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

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry h3 {
		font-size: 18px;
	}

	.service-entry ul {
		gap: 10px;
		margin-top: 20px;
	}

		.service-entry ul li {
			width: 100%;
		}

	.service-benefit-box h3 {
		font-size: 22px;
	}

	.service-focus-item {
		gap: 20px;
	}

	.service-focus-image,
	.service-focus-content-box {
		width: 100%;
	}

	.service-process-item-list,
	.service-process-video-image {
		width: 100%;
	}

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

	.service-process-video-image figure,
	.service-process-video-image figure img {
		height: auto;
	}

	.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 {
		padding: 65px 20px 20px 20px;
	}

		.post-entry blockquote p {
			font-size: 16px;
		}

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

	.tag-links {
		font-size: 18px;
	}

	.case-study-entry h2 {
		font-size: 26px;
	}

	.case-study-entry h3 {
		font-size: 18px;
	}

	.case-study-entry ul {
		gap: 10px;
	}

		.case-study-entry ul li {
			width: 100%;
		}

	.case-study-approach-list ul {
		gap: 15px;
	}

	.case-study-results-body {
		padding: 20px;
	}

	.case-study-result-item {
		width: 100%;
	}

	.case-study-result-list {
		margin-top: 20px;
		padding-top: 20px;
	}

	.case-study-challenge-item {
		width: 100%;
	}

	.team-single-image img {
		aspect-ratio: 1 / 1.1;
	}

	.team-contact-list-box {
		padding: 20px;
	}

	.team-contact-list-box-title {
		margin-bottom: 20px;
	}

		.team-contact-list-box-title h3 {
			font-size: 22px;
		}

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

	.team-contact-item {
		width: 100%;
	}

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

	.member-skill-list .skill-progress {
		height: 10px;
	}

	.member-experience-item {
		width: 100%;
		padding: 15px;
	}

		.member-experience-item h3 {
			font-size: 18px;
		}

	.contact-info-list-title {
		margin-bottom: 20px;
	}

		.contact-info-list-title h3 {
			font-size: 22px;
		}

	.contact-info-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

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

	.contact-us-form {
		padding: 20px;
	}

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

	.working-hour-box h3 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.working-hour-box ul li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

		.working-hour-box ul li span {
			font-size: 16px;
		}
}

/************************************/
/***   35. Home - Version 2 css   ***/
/************************************/

header.main-header.main-header-gold .header-sticky {
	border-bottom: none;
}

header.main-header.main-header-gold .main-menu .nav-menu-wrapper > ul {
	/*background: var(--dark-divider-color);
    backdrop-filter: blur(15px);*/
	-webkit-backdrop-filter: blur(15px);
	border-radius: 5px;
	padding: 0px 15px;
	background-color: #fff;
}

	header.main-header.main-header-gold .main-menu .nav-menu-wrapper > ul > li > a {
		padding: 20px 10px !important;
	}

header.main-header.main-header-gold .main-menu ul ul {
	border-radius: 0 0 20px 20px;
}

.hero-gold {
	position: relative;
	align-content: center;
	border-radius: 20px;
	margin: 15px 15px 0;
	overflow: hidden;
}

	.hero-gold::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: linear-gradient(270deg, transparent 26.4%, rgb(255 255 255 / 85%) 62.54%);
		width: 100%;
		height: 100%;
		z-index: 1;
	}

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

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

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

.hero-box-gold {
	min-height: 910px;
	align-content: center;
	padding: 240px 0 120px;
}

.hero-info-box-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.hero-item-list-gold {
	width: calc(50% - 15px);
}

.hero-item-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

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

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

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

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

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

	.hero-item-gold:hover .icon-box img {
		filter: brightness(0) invert(0);
	}

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

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

.hero-info-list-gold {
	width: calc(50% - 15px);
	border-left: 1px solid var(--dark-divider-color);
	padding-left: 30px;
}

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

		.hero-info-list-gold ul li {
			position: relative;
			color: var(--white-color);
			font-weight: 500;
			line-height: 1.5em;
			margin-bottom: 15px;
			padding-left: 25px;
		}

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

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

.hero-btn-gold {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.our-scrolling-ticker-gold {
	position: relative;
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 30px 0;
	z-index: 1;
}

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

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

	.scrolling-content-gold span {
		display: inline-flex;
		align-items: center;
		gap: var(--gap);
		font-family: var(--accent-font);
		font-size: 30px;
		font-weight: 500;
		line-height: 1.1em;
		color: var(--white-color);
		text-transform: capitalize;
	}

		.scrolling-content-gold span img {
			width: 100%;
			max-width: 30px;
			animation: infiniterotate 30s infinite linear;
		}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

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

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

.about-us-image-box-1-gold {
	position: relative;
	width: 65%;
	padding: 80px 0 30px 0;
	background-image: url('../images/about-us-bg-image-gold.png');
	background-position: top left 70px;
	background-repeat: no-repeat;
	background-size: auto;
}

.about-us-image-1-gold {
	position: relative;
	padding: 6px 6px 0 0;
	background: var(--secondary-color);
	clip-path: polygon(0 0, 75% 0, 100% 20%, 100% 100%, 0 100%);
	border-radius: 20px;
	margin-left: auto;
	z-index: 2;
}

	.about-us-image-1-gold figure {
		display: block;
		clip-path: polygon(0 0, 75% 0, 100% 20%, 100% 100%, 0 100%);
	}

		.about-us-image-1-gold figure img {
			width: 100%;
			aspect-ratio: 1 / 1.121;
			object-fit: cover;
			border-radius: 10px;
		}

.about-us-image-box-2-gold {
	width: 35%;
}

.about-us-image-2-gold {
	margin-left: -230px;
}

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

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

.about-us-counter-box-gold {
	background: var(--accent-color);
	border-radius: 20px;
	margin: 20px 0 0 10px;
	padding: 80px 20px 20px;
}

	.about-us-counter-box-gold h2 {
		font-size: 34px;
		color: var(--white-color);
	}

	.about-us-counter-box-gold p {
		font-size: 20px;
		font-weight: 600;
		color: var(--white-color);
		margin: 5px 0 0;
	}

.about-us-body-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.about-us-item-gold {
	width: calc(68% - 15px);
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px;
}

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

	.about-us-item-header-gold .icon-box {
		width: 50px;
		height: 50px;
		background: var(--accent-secondary-color);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

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

.about-us-item-title-gold {
	width: calc(100% - 65px);
}

	.about-us-item-title-gold h3 {
		font-size: 20px;
	}

.about-us-item-content-gold p {
	margin: 0;
}

.about-us-item-content-gold ul {
	list-style: none;
	border-top: 1px solid var(--divider-color);
	margin: 30px 0 0 0;
	padding: 30px 0 0 0;
}

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

		.about-us-item-content-gold ul li:last-child {
			margin-bottom: 0;
		}

		.about-us-item-content-gold 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);
		}

.experience-circle-gold img {
	width: 100%;
	max-width: 130px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
	animation: infiniterotate-gold 20s infinite linear;
}

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

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

.about-us-body-gold .experience-circle-gold {
	width: calc(32% - 15px);
	text-align: center;
}

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

.about-client-box-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

	.about-client-box-gold .satisfy-client-image.add-more {
		background-color: var(--accent-secondary-color);
	}

.about-client-content-gold {
	max-width: 175px;
}

	.about-client-content-gold p {
		margin: 0;
	}

.our-services-gold {
	background-image: url(../images/our-services-bg-image.png);
	background-position: bottom center;
	background-size: auto;
	padding: 120px 0;
}

.service-item-gold {
	position: relative;
	background-color: #A60F0F;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	border-radius: 20px;
	min-height: 460px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	transition: all 0.5s ease-in-out;
}

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

.service-item-header-gold .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	margin-bottom: 30px;
}

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

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

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

.service-item-gold:hover .service-item-header-gold .icon-box img {
	filter: brightness(0) invert(0);
}

.service-item-content-gold h2 {
	color: var(--white-color);
	font-size: 20px;
}

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

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

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

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

.why-choose-image-box-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-right: 15px;
}

.why-choose-image-box-1-gold {
	position: relative;
	width: 73%;
	padding-bottom: 150px;
}

.why-choose-image-gold figure {
	display: block;
	border-radius: 20px;
}

	.why-choose-image-gold figure img {
		width: 100%;
		object-fit: cover;
		border-radius: 20px;
	}

.why-choose-image-box-1-gold .why-choose-image-gold figure img {
	aspect-ratio: 1 / 1.36;
}

.why-choose-image-box-gold .experience-circle-gold {
	position: absolute;
	top: 80px;
	right: 0;
	transform: translateX(50%);
	border: 6px solid #A60F0F;
	border-radius: 50%;
	z-index: 1;
}

.why-choose-image-box-2-gold {
	width: 27%;
	z-index: 1;
}

	.why-choose-image-box-2-gold .why-choose-image-gold {
		margin-left: -220px;
	}

		.why-choose-image-box-2-gold .why-choose-image-gold figure {
			border: 6px solid var(--secondary-color);
		}

			.why-choose-image-box-2-gold .why-choose-image-gold figure img {
				aspect-ratio: 1 / 1.08;
				border-radius: 10px;
			}

.why-choose-content-box-gold {
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 40px;
}

.why-choose-body-content-gold {
	width: calc(51% - 15px);
	align-content: center;
}

.why-choose-item-gold {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 30px;
}

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

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

		.why-choose-item-gold .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;
		}

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

	.why-choose-item-gold .icon-box img {
		position: relative;
		width: 100%;
		max-width: 24px;
		z-index: 1;
	}

.why-choose-item-content-gold {
	width: calc(100% - 65px);
}

	.why-choose-item-content-gold h3 {
		font-size: 20px;
	}

	.why-choose-item-content-gold p {
		margin: 10px 0 0 0;
	}

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

.why-choose-skills-bar-gold .skill-progress {
	background-color: var(--bg-color);
}

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

.google-rating-header-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

	.google-rating-header-gold .icon-box img {
		width: 100%;
		max-width: 40px;
	}

.google-rating-info-gold {
	width: calc(100% - 55px);
}

	.google-rating-info-gold h3 {
		font-size: 26px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

.google-review-star-gold {
	display: flex;
	margin-left: 10px;
}

	.google-review-star-gold i {
		font-size: 20px;
		color: var(--accent-secondary-color);
	}

.google-rating-content-gold p {
	margin: 0;
}

.why-choose-body-image-gold {
	width: calc(49% - 15px);
}

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

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

.interactive-process-layout-gold {
	overflow: hidden;
}

	.interactive-process-layout-gold .interactive-process-item-gold {
		position: relative;
		width: 25%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		border-right: 1px solid var(--dark-divider-color);
		-ms-transition: all .5s ease;
		-o-transition: all .5s ease;
		-moz-transition: all .5s ease;
		-webkit-transition: all .5s ease;
		transition: all .5s ease;
		overflow: hidden;
		z-index: 1;
	}

	.interactive-process-layout-gold .interactive-inner-process-gold {
		position: relative;
		height: 100%;
		padding: 585px 0 0;
		transition: all 0.4s ease-in-out;
		z-index: 3;
	}

	.interactive-process-layout-gold .interactive-process-item-gold:nth-child(4n + 4) .interactive-inner-process-gold {
		border-right: none;
	}

.process-content-wap-gold {
	position: relative;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.interactive-process-item-wap-gold {
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transform: translateY(65px);
	padding: 40px;
	transition: all 0.4s ease-in-out;
}

.interactive-process-layout-gold .interactive-inner-process-gold.activate .interactive-process-item-wap-gold,
.interactive-process-layout-gold .interactive-process-item-gold:hover .interactive-process-item-wap-gold {
	transform: translateY(0px);
}

.interactive-process-item-wap-gold .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	overflow: hidden;
}

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

.interactive-inner-process-gold.activate .interactive-process-item-wap-gold .icon-box::before {
	transform: scale(1);
}

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

.interactive-inner-process-gold.activate .interactive-process-item-wap-gold .icon-box img {
	filter: brightness(0) invert(0);
}

.interactive-process-item-content-wap-gold h3 {
	font-size: 20px;
	color: var(--white-color);
	line-height: 1.4em
}

	.interactive-process-item-content-wap-gold h3 a {
		color: inherit;
	}

.interactive-process-item-btn-gold {
	opacity: 0;
	visibility: hidden;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 25px;
	margin-top: 25px;
	transition: all 0.4s ease-in-out;
}

	.interactive-process-item-btn-gold .readmore-btn {
		color: var(--white-color);
	}

		.interactive-process-item-btn-gold .readmore-btn::before {
			filter: brightness(0) invert(1);
		}

.interactive-process-layout-gold .interactive-inner-process-gold.activate .interactive-process-item-btn-gold,
.interactive-process-layout-gold .interactive-process-item-gold:hover .interactive-process-item-btn-gold {
	opacity: 1;
	visibility: visible;
}

.interactive-process-layout-gold .interactive-con {
	position: relative;
	padding-bottom: 0 !important;
	z-index: 1;
}

.interactive-process-layout-gold .interactive-con-inner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	z-index: 2;
}

	.interactive-process-layout-gold .interactive-con-inner:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%);
		z-index: 1;
	}

.interactive-process-layout-gold .interactive-process-list-image-gold {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
}

	.interactive-process-layout-gold .interactive-process-list-image-gold .interactive-process-image-gold {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		opacity: 0;
		z-index: -1;
		-ms-transition: all .7s ease;
		-o-transition: all .7s ease;
		-moz-transition: all .7s ease;
		-webkit-transition: all .7s ease;
		transition: all .7s ease
	}

		.interactive-process-layout-gold .interactive-process-list-image-gold .interactive-process-image-gold:first-child {
			z-index: 1
		}

		.interactive-process-layout-gold .interactive-process-list-image-gold .interactive-process-image-gold.show {
			opacity: 1;
			z-index: 2;
			-ms-transform: scale(1.05);
			-o-transform: scale(1.05);
			-moz-transform: scale(1.05);
			-webkit-transform: scale(1.05);
			transform: scale(1.05)
		}

.our-features-gold {
	padding: 120px 0;
}

	.our-features-gold .section-row .section-title.section-title-center {
		max-width: 855px;
	}

.core-feature-title-image-gold img {
	width: 100px;
	height: 44px;
	border-radius: 100px;
}

.feature-item-gold {
	background: var(--white-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.feature-item-content-gold h3 {
	font-size: 20px;
	line-height: 1.4em;
}

.feature-item-counter-content-gold h2 {
	font-size: 48px;
}

.feature-item-counter-content-gold p {
	margin: 10px 0 0;
}

.feature-box-image-gold {
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

	.feature-box-image-gold figure {
		display: block;
		height: 100%;
	}

		.feature-box-image-gold figure img {
			width: 100%;
			height: 100%;
			aspect-ratio: 1 / 1.116;
			object-fit: cover;
		}

.feature-item-header-gold .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	margin-bottom: 30px;
}

	.feature-item-header-gold .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;
	}

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

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

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

.feature-item-content-gold p {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin: 20px 0 0;
}

.feature-item-list-gold {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
}

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

		.feature-item-list-gold ul li {
			display: inline-block;
			border: 1px solid var(--divider-color);
			font-size: 14px;
			font-weight: 600;
			color: var(--primary-color);
			border-radius: 100px;
			line-height: normal;
			padding: 7px 15px;
			transition: all 0.4s ease-in-out;
		}

.feature-footer-box-gold {
	margin-top: 30px;
}

.feature-benefit-list-gold ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px 30px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

	.feature-benefit-list-gold ul li {
		position: relative;
		font-weight: 500;
		background: var(--white-color);
		color: var(--primary-color);
		padding: 12px 16px 12px 32px;
		border-radius: 100px;
		transition: all 0.4s ease-in-out;
	}

		.feature-benefit-list-gold ul li:hover {
			background: var(--primary-color);
			color: var(--white-color);
		}

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

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

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

.how-work-item-gold {
	width: calc(33.33% - 20px);
	transition: all 0.5s ease-in-out;
}

	.how-work-item-gold:hover {
		transform: translateY(-5px);
	}

.how-work-item-no-gold {
	position: relative;
	text-align: center;
	margin-bottom: 65px;
}

	.how-work-item-no-gold h2 {
		position: relative;
		font-size: 16px;
		line-height: normal;
		display: inline-block;
		border: 1px solid var(--divider-color);
		border-radius: 100px;
		padding: 8px 30px;
		z-index: 1;
		transition: all 0.4s ease-in-out;
	}

		.how-work-item-no-gold h2:before {
			content: '';
			position: absolute;
			left: 50%;
			bottom: 0;
			background: var(--divider-color);
			width: 1px;
			height: 100%;
			transform: translate(-50%, 100%);
		}

.how-work-item-content-box-gold {
	position: relative;
	background: linear-gradient(270deg, var(--bg-color) 0%, var(--secondary-color) 50%, var(--bg-color) 100%);
	background-size: 200% auto;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 25px;
	padding: 40px;
	min-height: 420px;
	transition: all 0.4s ease-in-out;
}

.how-work-item-gold:hover .how-work-item-content-box-gold {
	background-position: right center;
}

.how-work-item-content-box-gold:before {
	content: '';
	position: absolute;
	background-color: var(--accent-secondary-color);
	border: 18px solid var(--white-color);
	border-radius: 50%;
	height: 50px;
	width: 50px;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.how-work-item-header-gold .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	margin-bottom: 30px;
	z-index: 1;
}

	.how-work-item-header-gold .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;
	}

.how-work-item-content-box-gold:hover .icon-box::before {
	transform: scale(1);
}

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

.how-work-item-content-gold h2 {
	font-size: 20px;
}

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

.how-work-item-content-list-gold {
	border-top: 1px solid var(--divider-color);
	padding-top: 25px;
}

	.how-work-item-content-list-gold ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

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

			.how-work-item-content-list-gold ul li:last-child {
				margin-bottom: 0;
			}

			.how-work-item-content-list-gold 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;
			}

.how-we-work-gold .section-footer-text {
	margin-top: 60px;
}

.our-benefits-gold {
	padding: 120px 0;
}

.benefit-content-gold {
	margin-right: 15px;
}

.benefit-image-gold figure {
	display: block;
	border-radius: 20px;
}

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

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

	.benefit-body-gold h2 {
		font-size: 48px;
		width: 140px;
	}

	.benefit-body-gold p {
		width: calc(100% - 160px);
		margin: 0;
	}

.benefit-satisfaction-box-gold {
	position: relative;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 60px;
	overflow: hidden;
}

	.benefit-satisfaction-box-gold:before {
		content: '';
		position: absolute;
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 300px;
		background: linear-gradient(180deg, transparent 0%, var(--white-color) 43.86%);
		border-radius: 20px;
		z-index: 1;
	}

.benefit-satisfaction-body-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
}

.benefit-satisfaction-content-gold {
	width: 48%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 265px;
}

.benefit-satisfaction-title-gold h3 {
	font-size: 20px;
}

.benefit-satisfaction-counter-gold h2 {
	font-size: 52px;
}

.benefit-satisfaction-counter-gold p {
	margin: 10px 0 0;
}

.benefit-satisfaction-image-gold {
	width: 52%;
}

	.benefit-satisfaction-image-gold figure {
		display: block;
		text-align: right;
		border-radius: 20px;
		margin: 0px -60px -60px 0px;
	}

	.benefit-satisfaction-image-gold img {
		width: 100%;
		max-width: 320px;
		aspect-ratio: 1 / 1.3;
		object-fit: cover;
		border-radius: 20px;
	}

.benefit-scrolling-ticker-box-gold {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 40px;
	z-index: 1;
}

.benefit-scrolling-ticker-item-gold {
	--gap: 25px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
	width: calc(100% + 120px);
	left: -60px;
	transition: all 0.4s ease-in-out;
}

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

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.benefit-scrolling-ticker-item-gold.scroll-reverse .benefit-scrolling-ticker-content-gold {
	animation-direction: reverse;
}

.benefit-scrolling-ticker-content-gold span {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 8px 16px 8px 32px;
	transition: all 0.4s ease-in-out;
}

	.benefit-scrolling-ticker-content-gold span:before {
		content: '';
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 16px;
		background-color: var(--accent-secondary-color);
		border-radius: 50%;
		height: 6px;
		width: 6px;
	}

	.benefit-scrolling-ticker-content-gold span:hover {
		background-color: var(--primary-color);
		color: var(--white-color);
	}

.benefit-scrolling-ticker-item-gold:hover .benefit-scrolling-ticker-content-gold {
	animation-play-state: paused;
}

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

.testimonial-slider-gold {
	height: 100%;
}

	.testimonial-slider-gold .swiper {
		padding-bottom: 60px;
		height: 100%;
	}

	.testimonial-slider-gold .swiper-wrapper {
		height: 100%;
		cursor: none;
	}

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

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

.testimonial-item-gold {
	position: relative;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 20px;
	min-height: 490px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	padding: 40px;
	height: 100%;
}

.testimonial-quote-gold {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

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

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

	.testimonial-item-rating-gold i {
		color: var(--accent-secondary-color);
	}

.testimonial-item-content-gold p {
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.testimonial-author-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
}

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

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

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

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

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

.testimonial-slider-gold .testimonials-pagination-gold {
	position: absolute;
	bottom: 0px;
	text-align: center;
}

	.testimonial-slider-gold .testimonials-pagination-gold .swiper-pagination-bullet {
		position: relative;
		height: 10px;
		width: 10px;
		background: var(--dark-divider-color);
		margin: 0 4px;
		opacity: 1;
		transition: all 0.3s ease-in-out;
	}

	.testimonial-slider-gold .testimonials-pagination-gold .swiper-pagination-bullet-active {
		background: var(--accent-secondary-color);
		width: 34px;
		border-radius: 100px;
	}

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

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

.our-pricing-swich-gold {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 60px;
	padding: 0;
}

	.our-pricing-swich-gold .form-check-label {
		color: var(--primary-color);
		font-family: var(--accent-font);
		font-size: 20px;
		font-weight: 600;
		cursor: pointer;
	}

	.our-pricing-swich-gold.form-switch .form-check-input {
		width: 80px;
		height: 40px;
		--bs-form-check-bg: var(--accent-secondary-color);
		--bs-form-switch-bg: url('../images/pricing-swich-circle.svg');
		background-size: 28px auto;
		background-position: left 5px center;
		border-radius: 100px;
		border: none;
		outline: none;
		box-shadow: none;
		cursor: pointer;
		margin: 0;
		transition: all 0.3s ease-in-out;
	}

.form-switch .form-check-input:checked {
	background-color: var(--accent-color);
	background-position: right 5px center;
}

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

.pricing-item-header-gold {
	background: linear-gradient(270deg, var(--bg-color) 0%, var(--secondary-color) 100%);
	border-radius: 14px;
	padding: 30px;
}

.pricing-item-content-gold h2 {
	display: inline-block;
	font-size: 16px;
	line-height: normal;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 6px 20px;
	margin-bottom: 15px;
}

.pricing-item-content-gold p {
	margin: 0;
}

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

	.pricing-item-price-gold h2 {
		font-size: 34px;
	}

	.pricing-item-price-gold sub {
		font-size: 16px;
		bottom: 0;
	}

.pricing-item-body-gold {
	padding: 30px;
}

.pricing-item-list-gold h3 {
	font-size: 16px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}


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

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

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

		.pricing-item-list-gold 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);
		}

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

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

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

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

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

.our-faqs-gold {
	position: relative;
	background-image: url('../images/faqs-bg-image-gold.png');
	background-color: var(--primary-color);
	padding: 120px 0;
}

	.our-faqs-gold:before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		background: url('../images/faqs-bg-image-1-gold.png');
		background-repeat: no-repeat;
		background-position: center center;
		width: 720px;
		height: 370px;
		background-size: cover;
	}

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

.faqs-content-gold {
	position: sticky;
	top: 30px;
}

.faq-accordion-gold {
	background: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	border-radius: 20px;
	padding: 20px;
}

	.faq-accordion-gold .accordion-item {
		position: relative;
		background: var(--dark-divider-color);
		border-radius: 14px;
		margin-bottom: 25px;
		overflow: hidden;
	}

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

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

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

	.faq-accordion-gold .accordion-button:not(.collapsed)::after {
		transform: translateY(-50%) rotate(180deg);
	}

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

		.faq-accordion-gold .accordion-item .accordion-body p {
			color: var(--white-color);
			margin-bottom: 15px;
		}

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

.main-footer-gold {
	padding: 120px 0 0;
	margin-bottom: 15px;
}

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

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

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

.footer-working-hour-box-gold {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

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

	.footer-working-hour-box-gold ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

		.footer-working-hour-box-gold ul li {
			color: var(--white-color);
			line-height: 1.4em;
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 10px;
			margin-bottom: 20px;
		}

			.footer-working-hour-box-gold ul li:last-child {
				margin-bottom: 0;
			}

			.footer-working-hour-box-gold ul li span {
				font-weight: 600;
			}

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

.footer-links-gold {
	max-width: 38%;
}

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

	.footer-links-gold ul {
		margin: 0;
		padding: 0 0 0 20px;
		list-style: disc;
	}

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

			.footer-links-gold ul li::marker {
				color: #fff;
			}

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

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

				.footer-links-gold ul li a:hover {
					color: #A60F0F;
				}

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

		.footer-links-gold.footer-contact-list-gold ul li {
			display: flex;
			align-items: center;
			gap: 5px 10px;
			border-bottom: 1px solid var(--dark-divider-color);
			margin-bottom: 20px;
			padding-bottom: 20px;
		}

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

			.footer-links-gold.footer-contact-list-gold ul li img {
				width: 100%;
				max-width: 24px;
			}

.footer-copyright-gold {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--dark-divider-color);
	padding: 60px 0;
	margin-top: 80px;
}

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

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

.footer-social-links-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

	.footer-social-links-gold h2 {
		font-size: 16px;
		color: var(--white-color);
	}

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

		.footer-social-links-gold ul li a {
			display: flex;
			align-items: center;
			gap: 10px;
			font-weight: 600;
			color: var(--white-color);
			background: var(--dark-divider-color);
			backdrop-filter: blur(15px);
			-webkit-backdrop-filter: blur(15px);
			border-radius: 5px;
			padding: 10px 16px;
			transition: all 0.4s ease-in-out;
		}

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

			.footer-social-links-gold ul li a i {
				font-size: 20px;
				line-height: normal;
				color: inherit;
			}

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

	.interactive-process-layout-gold .interactive-inner-process-gold {
		padding: 485px 0 0;
	}
}

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

	.hero-box-gold {
		min-height: 750px;
	}

	.hero-btn-gold {
		margin-top: 30px;
		padding-top: 30px;
	}

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

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

	.why-choose-image-box-gold {
		max-width: 615px;
		margin: 0 auto 30px;
	}

	.why-choose-body-content-gold {
		width: calc(60% - 15px);
	}

	.why-choose-body-image-gold {
		width: calc(40% - 15px);
	}

	.interactive-process-layout-gold .interactive-process-item-gold {
		border-bottom: 1px solid var(--dark-divider-color);
		width: 50%;
	}

	.interactive-process-layout-gold .interactive-inner-process-gold {
		padding: 200px 0 0;
		height: auto;
	}

	.interactive-process-item-wap-gold {
		padding: 30px;
	}

		.interactive-process-item-wap-gold .icon-box {
			margin-bottom: 20px;
		}

	.interactive-process-item-btn-gold {
		margin-top: 20px;
		padding-top: 20px;
	}

	.interactive-process-layout-gold .interactive-con-inner-gold:before {
		background-color: var(--primary-color);
		opacity: 50%;
	}

	.feature-box-image-gold figure img {
		aspect-ratio: 1 / 0.8;
	}

	.feature-footer-box-gold {
		margin-top: 10px;
	}

	.how-work-item-gold {
		width: calc(50% - 15px);
	}

	.how-work-item-content-box-gold::before {
		border-width: 15px;
		height: 40px;
		width: 40px;
	}

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

	.benefit-body-gold {
		margin-top: 30px;
		padding-top: 30px;
	}

	.benefit-satisfaction-box-gold {
		padding: 30px;
	}

	.benefit-satisfaction-image-gold figure {
		margin: 0px -30px -30px 0px;
	}

	.benefit-scrolling-ticker-box-gold {
		gap: 20px;
	}

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

	.testimonial-item-gold {
		padding: 30px;
		gap: 30px;
		min-height: 390px;
	}

	.testimonial-author-gold {
		padding-top: 30px;
	}

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

	.about-footer-gold {
		margin-bottom: 30px;
	}

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

	.footer-copyright-gold {
		flex-direction: column-reverse;
		justify-content: center;
		margin-top: 30px;
		padding: 30px 0;
	}
}

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

	.hero-gold {
		margin: 0;
		border-radius: 0;
	}

	.hero-box-gold {
		padding: 150px 0 60px;
	}

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

	.our-scrolling-ticker-gold {
		padding: 20px 0;
	}

	.scrolling-ticker-box-gold {
		--gap: 20px;
	}

	.scrolling-content-gold span img {
		max-width: 25px;
	}

	.scrolling-content-gold span {
		font-size: 26px;
	}

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

	.about-us-item-gold {
		padding: 20px;
	}

	.about-us-counter-box-gold h2 {
		font-size: 30px;
	}

	.about-us-item-content-gold ul {
		margin: 20px 0 0 0;
		padding: 20px 0 0 0;
	}

		.about-us-item-content-gold ul li::before {
			font-size: 16px;
		}

	.experience-circle-gold img {
		max-width: 110px;
	}

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

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

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

	.why-choose-content-box-gold {
		padding: 30px;
	}

	.google-rating-info-gold h3 {
		font-size: 22px;
	}

	.google-review-star-gold i {
		font-size: 18px;
	}

	.our-features-gold {
		padding: 60px 0;
	}

	.core-feature-title-image-gold img {
		width: 88px;
		height: 36px;
	}

	.feature-item-gold {
		padding: 30px;
	}

	.feature-item-counter-content-gold h2 {
		font-size: 38px;
	}

	.feature-benefit-list-gold ul {
		gap: 15px;
	}

		.feature-benefit-list-gold ul li {
			font-size: 14px;
			padding: 10px 12px 10px 26px;
		}

			.feature-benefit-list-gold ul li::before {
				left: 12px;
			}

	.our-features-gold .section-footer-text {
		margin-top: 20px;
	}

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

	.how-work-item-no-gold {
		margin-bottom: 35px;
	}

		.how-work-item-no-gold h2 {
			font-size: 14px;
			padding: 5px 20px;
		}

	.how-work-item-content-box-gold {
		min-height: auto;
		padding: 30px;
	}

	.how-work-item-content-list-gold ul li::before {
		font-size: 16px;
	}

	.how-we-work-gold .section-footer-text {
		margin-top: 40px;
	}

	.our-benefits-gold {
		padding: 60px 0;
	}

	.benefit-body-gold h2 {
		font-size: 38px;
		width: 110px;
	}

	.benefit-body-gold p {
		width: calc(100% - 130px);
	}

	.benefit-satisfaction-counter-gold h2 {
		font-size: 40px;
	}

	.benefit-scrolling-ticker-content-gold span {
		padding: 6px 12px 6px 28px;
	}

		.benefit-scrolling-ticker-content-gold span:before {
			left: 12px;
		}

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

	.testimonial-slider-gold .swiper {
		padding-bottom: 40px;
	}

	.testimonial-item-content-gold p {
		font-size: 18px;
	}

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

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

	.our-pricing-swich-gold {
		margin-bottom: 30px;
	}

		.our-pricing-swich-gold.form-switch .form-check-input {
			width: 60px;
			height: 32px;
			background-size: 22px auto;
		}

	.pricing-item-header-gold,
	.pricing-item-body-gold {
		padding: 20px;
	}

	.pricing-item-price-gold {
		margin-top: 20px;
		padding-top: 20px;
	}

		.pricing-item-price-gold h2 {
			font-size: 30px;
		}

	.pricing-item-list-gold ul li {
		margin-bottom: 10px;
	}

		.pricing-item-list-gold ul li:before {
			font-size: 16px;
		}

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

		.pricing-benefit-list-gold ul {
			gap: 20px 30px;
		}

			.pricing-benefit-list-gold ul li img {
				max-width: 18px;
				margin-right: 10px;
			}

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

		.our-faqs-gold:before {
			right: 0;
			width: 620px;
			height: 270px;
			margin: 0 auto;
		}

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

	.faq-accordion-gold .accordion-header .accordion-button {
		padding: 18px 44px 18px 20px;
	}

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

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

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

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

	.footer-working-hour-box-gold h2,
	.footer-links-gold h2 {
		margin-bottom: 20px;
	}

	.footer-social-links-gold ul li a {
		gap: 5px;
		padding: 10px;
	}

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

	.footer-working-hour-box-gold ul li {
		margin-bottom: 15px;
	}

	.footer-links-gold.footer-contact-list-gold ul li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}
}

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

	.hero-item-list-gold,
	.hero-item-gold {
		width: 100%;
	}

	.hero-item-content-gold h2 {
		font-size: 18px;
	}

	.hero-info-list-gold {
		width: 100%;
		padding: 30px 0 0;
		border-top: 1px solid var(--dark-divider-color);
		border-left: none;
	}

	.our-scrolling-ticker-gold {
		padding: 15px 0;
	}

	.scrolling-ticker-box-gold {
		--gap: 15px;
	}

	.scrolling-content-gold span img {
		max-width: 20px;
	}

	.scrolling-content-gold span {
		font-size: 22px;
	}

	.about-us-image-box-1-gold {
		width: 60%;
		background-position: top 0px left 45px;
		background-size: 40% auto;
		padding: 50px 0 20px 0;
	}

	.about-us-image-box-2-gold {
		width: 40%;
	}

	.about-us-image-1-gold {
		padding: 3px 3px 0 0;
	}

	.about-us-image-2-gold {
		margin-left: -100px;
	}

	.about-us-counter-box-gold {
		border-radius: 14px;
		margin: 10px 0 0 7px;
		padding: 10px;
	}

		.about-us-counter-box-gold h2 {
			font-size: 26px;
		}

		.about-us-counter-box-gold p {
			font-size: 16px;
		}

	.about-us-item-gold {
		width: 100%;
	}

	.about-us-item-title-gold h3 {
		font-size: 18px;
	}

	.about-us-body-gold .experience-circle-gold {
		display: none;
	}

	.experience-circle-gold img {
		max-width: 90px;
	}

	.service-item-gold {
		padding: 20px;
		gap: 20px;
	}

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

	.service-item-content-gold h2 {
		font-size: 18px;
	}

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

	.why-choose-image-box-1-gold {
		padding-bottom: 75px;
	}

	.why-choose-image-box-gold .experience-circle-gold {
		top: 30px;
		border-width: 3px;
	}

	.why-choose-image-box-2-gold .why-choose-image-gold {
		margin-left: -130px;
	}

	.why-choose-content-box-gold {
		padding: 20px;
	}

	.why-choose-item-content-gold {
		width: 100%;
	}

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

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

	.why-choose-body-content-gold {
		width: 100%;
	}

	.google-rating-box-gold {
		margin-top: 20px;
		padding-top: 20px
	}

	.google-rating-header-gold {
		margin-bottom: 10px;
	}

		.google-rating-header-gold .icon-box img {
			max-width: 32px;
		}

	.google-rating-info-gold {
		width: calc(100% - 47px);
	}

		.google-rating-info-gold h3 {
			font-size: 18px;
		}

	.google-review-star-gold i {
		font-size: 16px;
	}

	.why-choose-body-image-gold {
		width: 100%;
	}

		.why-choose-body-image-gold figure,
		.why-choose-body-image-gold figure img {
			height: auto;
		}

	.interactive-process-layout-gold .interactive-process-item-gold {
		width: 100%;
	}

	.interactive-process-layout-gold .interactive-inner-process-gold {
		padding: 100px 0 0;
	}

	.interactive-process-item-wap-gold {
		padding: 20px;
		transform: translateY(60px);
		background-color: transparent;
		backdrop-filter: initial;
		-webkit-backdrop-filter: initial;
	}

	.interactive-process-item-content-wap-gold h3 {
		font-size: 18px;
	}

	.core-feature-title-image-gold img {
		width: 78px;
		height: 30px;
	}

	.feature-item-gold {
		padding: 20px;
		gap: 20px;
	}

	.feature-item-content-gold h3 {
		font-size: 18px;
	}

	.feature-item-counter-content-gold h2 {
		font-size: 26px;
	}

	.feature-item-header-gold .icon-box {
		margin-bottom: 20px;
	}

	.feature-item-content-gold h3 {
		font-size: 18px;
	}

	.feature-item-list-gold {
		padding-top: 20px;
	}

	.feature-benefit-list-gold ul {
		gap: 10px;
	}

		.feature-benefit-list-gold ul li {
			padding: 8px 10px 8px 24px;
		}

			.feature-benefit-list-gold ul li::before {
				left: 10px;
			}

	.how-work-item-gold {
		width: 100%;
	}

	.how-work-item-content-box-gold {
		padding: 20px;
	}

	.how-work-item-header-gold .icon-box {
		margin-bottom: 20px;
	}

	.how-work-item-content-gold h2 {
		font-size: 18px;
	}

	.benefit-body-gold {
		gap: 10px;
	}

		.benefit-body-gold h2 {
			font-size: 28px;
			width: 100%;
		}

		.benefit-body-gold p {
			width: 100%;
		}

	.benefit-satisfaction-box-gold {
		padding: 20px;
	}

	.benefit-satisfaction-content-gold {
		min-height: auto;
	}

	.benefit-satisfaction-content-gold,
	.benefit-satisfaction-image-gold {
		width: 100%;
	}

	.benefit-satisfaction-content-gold {
		gap: 20px;
		margin-bottom: 30px;
	}

	.benefit-satisfaction-title-gold h2 {
		font-size: 18px;
	}

	.benefit-satisfaction-counter-gold h2 {
		font-size: 28px;
	}

	.benefit-satisfaction-box-gold:before {
		background: linear-gradient(180deg, transparent 0%, var(--white-color) 61.86%);
	}

	.benefit-satisfaction-image-gold figure {
		max-width: 280px;
		margin: 0 auto;
		text-align: center;
	}

	.benefit-scrolling-ticker-item-gold {
		--gap: 15px;
	}

	.benefit-scrolling-ticker-content-gold span {
		padding: 4px 8px 4px 26px;
	}

		.benefit-scrolling-ticker-content-gold span:before {
			left: 10px;
		}

	.testimonial-item-gold {
		min-height: auto;
		gap: 20px;
		padding: 20px;
	}

	.testimonial-quote-gold img {
		max-width: 70px;
	}

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

	.testimonial-item-content-gold p {
		font-size: 16px;
	}

	.testimonial-author-gold {
		padding-top: 20px;
	}

	.testimonial-author-content-gold h2 {
		font-size: 18px;
	}

	.our-pricing-swich-gold .form-check-label {
		font-size: 18px;
	}

	.pricing-item-content-gold h2 {
		font-size: 14px;
		padding: 4px 15px;
	}

	.pricing-item-price-gold h2 {
		font-size: 26px;
	}

	.pricing-item-price-gold sub {
		font-size: 14px;
	}

	.pricing-item-list-gold h3 {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

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

		.pricing-benefit-list-gold ul {
			gap: 10px;
		}

			.pricing-benefit-list-gold ul li {
				font-size: 14px;
			}

				.pricing-benefit-list-gold ul li img {
					max-width: 16px;
					margin-right: 5px;
				}

	.our-faqs-gold:before {
		width: 450px;
		height: 100px;
	}

	.faq-accordion-gold {
		padding: 15px;
	}

		.faq-accordion-gold .accordion-header .accordion-button {
			padding: 12px 40px 12px 15px;
			font-size: 16px;
		}

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

		.faq-accordion-gold .accordion-item .accordion-button::after,
		.faq-accordion-gold .accordion-item .accordion-button.collapsed::after {
			font-size: 16px;
			right: 15px;
		}

	.footer-working-hour-box-gold h2,
	.footer-links-gold h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links-gold {
		max-width: 100%;
	}

	.footer-working-hour-box-gold ul li {
		margin-bottom: 10px;
	}

	.footer-copyright-gold {
		padding: 15px 0;
	}

	.footer-social-links-gold ul {
		gap: 10px;
	}

		.footer-social-links-gold ul li a {
			font-size: 14px;
		}

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

/************************************/
/***   36. Home - Version 3 css   ***/
/************************************/

.hero-silver {
	position: relative;
	align-content: end;
	background-image: url('../images/hero-bg-image-silver.jpg');
	border-radius: 20px;
	height: auto;
	min-height: 100vh;
	align-content: center;
	padding: 230px 0 120px;
	margin: 15px 15px 0 15px;
	overflow: hidden;
}

	.hero-silver::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: var(--primary-color);
		opacity: 50%;
		width: 100%;
		height: 100%;
		z-index: 1;
	}

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

.hero-content-silver {
	margin-right: 4.688vw;
}

.hero-content-body-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
}

.video-play-button-silver {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 20px;
	z-index: 1;
}

	.video-play-button-silver a {
		position: relative;
		height: 50px;
		width: 50px;
		background: var(--accent-secondary-color);
		border-radius: 50%;
		color: var(--white-color);
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: none;
		transition: all 0.3s ease-in-out;
	}

		.video-play-button-silver a:hover {
			background: var(--white-color);
			color: var(--primary-color);
		}


		.video-play-button-silver a.bg-effect:before,
		.video-play-button-silver a.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-silver a.bg-effect:after {
			animation-delay: .3s;
		}

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

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

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

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

.hero-footer-item-list-silver {
	width: calc(50% - 15px);
}

.hero-footer-item-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

	.hero-footer-item-silver:last-child {
		margin-bottom: 0;
	}

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

		.hero-footer-item-silver .icon-box::before {
			content: '';
			position: absolute;
			top: 0;
			right: 0;
			bottom: 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-footer-item-silver:hover .icon-box::before {
		transform: scale(1);
	}

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

	.hero-footer-item-silver:hover .icon-box img {
		filter: brightness(0) invert(0);
	}

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

	.hero-footer-item-content-silver h2 {
		color: var(--white-color);
		font-size: 20px;
	}

.google-review-box-silver {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-left: 1px solid var(--dark-divider-color);
	padding-left: 30px;
}

	.google-review-box-silver .icon-box img {
		width: 100%;
		max-width: 50px;
	}

.google-review-box-body-silver {
	width: calc(100% - 65px);
}

.google-review-box-header-silver {
	width: calc(100% - 55px);
	display: flex;
	align-items: center;
}

	.google-review-box-header-silver h2 {
		color: var(--white-color);
		font-size: 26px;
		min-width: 70px;
		line-height: 1em;
	}

.google-rating-star-silver {
	display: flex;
	line-height: normal;
}

	.google-rating-star-silver i {
		font-size: 18px;
		color: var(--accent-secondary-color);
	}

.google-review-box-content-silver p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.hero-experience-circle-silver {
	text-align: center;
}

	.hero-experience-circle-silver img {
		width: 100%;
		max-width: 130px;
		background-color: var(--divider-color);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border: 1px solid var(--dark-divider-color);
		border-radius: 50%;
		animation: infiniterotate 20s infinite linear;
	}

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

.about-us-item-silver {
	background-color: var(--accent-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 30px;
	min-height: 445px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

	.about-us-item-silver.box-1 {
		background-image: url('../images/about-us-item-bg-silver.png');
		background-position: bottom right;
		background-repeat: no-repeat;
		background-size: auto;
	}

.about-us-header-silver {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.about-us-header-title-silver p {
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	color: var(--white-color);
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 100px;
	padding: 8px 20px;
	margin: 0;
}

.about-us-body-content-silver h3 {
	font-size: 20px;
	line-height: 1.6em;
	color: var(--white-color);
}

.about-us-body-list-silver {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

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

	.about-us-body-list-silver li {
		position: relative;
		color: var(--white-color);
		line-height: 1.5em;
		padding-left: 25px;
		margin-bottom: 15px;
	}

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

	.about-us-body-list-silver 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-secondary-color);
	}

.about-us-image-silver {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

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

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

.about-us-item-silver.box-2 {
	background-color: var(--white-color);
}

.about-counter-item-silver {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

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

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

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

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

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

	.about-counter-item-content-silver h2 {
		font-size: 48px;
		line-height: 1em;
	}

	.about-counter-item-content-silver p {
		margin: 10px 0 0;
	}

.about-us-header-content-silver {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
}

	.about-us-header-content-silver p {
		margin: 0;
	}

.about-us-body-silver .skill-progress {
	background-color: var(--divider-color);
}

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

.about-us-footer-list-silver ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	max-width: 900px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

	.about-us-footer-list-silver ul li {
		position: relative;
		background: transparent;
		background-color: var(--white-color);
		font-size: 16px;
		color: var(--primary-color);
		padding: 13px 20px 13px 36px;
		border-radius: 100px;
		transition: all 0.4s ease-in-out;
	}

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

		.about-us-footer-list-silver ul li:hover {
			background: var(--primary-color);
			color: var(--white-color);
		}

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

.our-services-silver {
	padding: 120px 0;
}

.service-item-silver {
	position: relative;
	min-height: 480px;
	align-content: end;
	border-radius: 20px;
	padding: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.service-item-image-silver {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

	.service-item-image-silver figure,
	.service-item-image-silver figure a {
		display: block;
		height: 100%;
		cursor: none;
	}

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

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

.service-item-body-silver {
	position: relative;
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 30px;
	z-index: 1;
}

.service-item-content-silver h2 {
	color: var(--white-color);
	font-size: 20px;
}

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

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

.service-item-btn-silver {
	height: 0;
	border-top: 1px solid var(--dark-divider-color);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

.service-item-silver:hover .service-item-btn-silver {
	height: 37px;
	margin-top: 20px;
	padding-top: 20px;
	opacity: 1;
	visibility: visible;
}

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

.why-choose-image-box-silver {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
}

.why-choose-image-box-1-silver {
	width: 58%;
	padding-left: 80px;
	padding-bottom: 120px;
}

.why-choose-author-box-silver {
	position: absolute;
	max-width: 280px;
	top: 70px;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	animation: Movestylesilver 2s infinite alternate linear;
	z-index: 1;
}

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

.why-choose-author-image-silver figure {
	display: block;
	border-radius: 50%;
}

.why-choose-author-image-silver img {
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

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

	.why-choose-author-content-silver h2 {
		font-size: 20px;
	}

	.why-choose-author-content-silver p {
		margin: 5px 0 0;
	}

.why-choose-image-silver figure {
	margin-right: -150px;
	display: block;
	border-radius: 20px;
}

.why-choose-image-silver img {
	width: 100%;
	aspect-ratio: 1 / 1.231;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-expert-box-silver {
	width: 42%;
	position: relative;
	background-color: var(--accent-color);
	border: 6px solid var(--bg-color);
	border-radius: 20px;
	padding: 30px 30px 0;
	overflow: hidden;
}

	.why-choose-expert-box-silver:before {
		content: '';
		position: absolute;
		right: 0;
		bottom: -100px;
		left: -30px;
		height: 300px;
		width: calc(100% + 60px);
		background-color: var(--dark-divider-color);
		border-radius: 50%;
	}

.why-choose-expert-content-silver {
	text-align: center;
	margin-bottom: 20px;
}

	.why-choose-expert-content-silver h2 {
		color: var(--white-color);
		font-size: 30px;
	}

	.why-choose-expert-content-silver p {
		color: var(--white-color);
		margin: 5px 0 0;
	}

.why-choose-expert-image-silver {
	position: relative;
	z-index: 1;
}

	.why-choose-expert-image-silver figure {
		display: block;
		border-radius: 14px 14px 0 0;
	}

	.why-choose-expert-image-silver img {
		width: 100%;
		aspect-ratio: 1 / 1.31;
		object-fit: cover;
		border-radius: 14px 14px 0 0;
	}

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

.why-choose-items-list-silver {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-item-silver {
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
	gap: 15px;
}

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

		.why-choose-item-silver .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;
		}

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

	.why-choose-item-silver .icon-box img {
		position: relative;
		width: 100%;
		max-width: 24px;
		z-index: 1;
	}

.why-choose-item-content-silver {
	width: calc(100% - 65px);
}

	.why-choose-item-content-silver h3 {
		font-size: 20px;
		line-height: 1.4em;
	}

.why-choose-body-list-silver {
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

	.why-choose-body-list-silver ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

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

			.why-choose-body-list-silver ul li:last-child {
				margin-bottom: 0;
			}

			.why-choose-body-list-silver 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-secondary-color);
			}

.why-chooose-btn-silver {
	margin-top: 40px;
}

.our-benefit-silver {
	padding: 120px 0;
}

.benefit-image-box-silver {
	position: relative;
	background-image: url('../images/benefit-image-box-bg-silver.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
}

	.benefit-image-box-silver:before {
		content: '';
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		background: linear-gradient(180deg, transparent 0%, var(--accent-color) 88.75%);
		height: 180px;
		width: 100%;
	}

.benefit-image-silver {
	text-align: center;
}

	.benefit-image-silver figure {
		display: block;
		max-width: 370px;
		margin: 0 auto;
		border-radius: 20px;
	}

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

.benefit-satisfaction-box-silver {
	position: absolute;
	bottom: 70px;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 20px;
	animation: benefitboxmove 3s infinite linear alternate;
}

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

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

	.benefit-satisfaction-box-silver .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;
	}

.benefit-satisfaction-box-silver:hover .icon-box::before {
	transform: scale(1);
}

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

.benefit-satisfaction-content-silver {
	width: calc(100% - 65px);
}

	.benefit-satisfaction-content-silver h2 {
		font-size: 40px;
		line-height: 1em;
	}

	.benefit-satisfaction-content-silver p {
		margin: 5px 0 0;
	}

.benefit-content-silver {
	margin-left: 15px;
}

.benefit-item-list-silver {
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 20px;
	padding: 40px;
}

.benefit-item-silver {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

	.benefit-item-silver:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}

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

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

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

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

	.benefit-item-silver:hover .icon-box img {
		filter: brightness(0) invert(0);
	}

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

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

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

.benefit-btn-silver {
	margin-top: 40px;
}

.our-core-features-silver {
	padding: 120px 0;
}

.core-features-image-box-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-right: 15px;
}

.core-features-image-box-1-silver {
	width: 35%;
	padding-bottom: 160px;
}

.core-features-image-silver {
	position: relative;
	z-index: 0;
}

	.core-features-image-silver figure {
		border-radius: 20px;
		overflow: hidden;
	}

		.core-features-image-silver figure img {
			width: 100%;
			object-fit: cover;
			border-radius: 20px;
		}

.core-features-image-box-1-silver .core-features-image-silver {
	position: relative;
	margin-right: -260px;
	z-index: 1;
}

	.core-features-image-box-1-silver .core-features-image-silver figure img {
		aspect-ratio: 1 / 1.32;
	}

.core-features-image-box-2-silver {
	position: relative;
	width: 65%;
	text-align: right;
	z-index: 2;
}

	.core-features-image-box-2-silver .core-features-image-silver figure {
		border: 6px solid var(--secondary-color);
	}

		.core-features-image-box-2-silver .core-features-image-silver figure img {
			aspect-ratio: 1 / 1.272;
			border-radius: 14px;
		}

.experience-circle-silver {
	position: relative;
	display: inline-block;
	border-radius: 50%;
	border: 6px solid var(--secondary-color);
	text-align: right;
	margin-bottom: -71px;
	margin-right: 60px;
	z-index: 2;
}

	.experience-circle-silver img {
		width: 100%;
		max-width: 130px;
		aspect-ratio: 1 / 1;
		object-fit: cover;
		border-radius: 50%;
		animation: infiniterotate 20s infinite linear;
	}

.core-features-content-silver {
	margin-left: 15px;
}

.core-features-item-list-silver {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.core-features-item-silver {
	width: calc(50% - 15px);
	background-color: var(--white-color);
	border-radius: 20px;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 30px;
}

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

		.core-features-item-silver .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;
		}

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

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

.core-features-item-content-silver h2 {
	font-size: 20px;
}

.core-features-item-content-silver p {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin: 20px 0 0;
}

.core-features-skill-list-silver {
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.core-features-btn-silver {
	margin-top: 40px;
}

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

.team-item-silver {
	position: relative;
	border-radius: 20px;
	align-content: end;
	min-height: 480px;
	padding: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.team-item-image-silver {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

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

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

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

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

.team-item-body-silver {
	position: relative;
	transform: translateY(60%);
	text-align: center;
	transition: all 0.4s ease-in-out;
	z-index: 2;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pricing-item-header-silver {
	padding: 30px;
}

	.pricing-item-header-silver .icon-box {
		position: relative;
		width: 50px;
		height: 50px;
		background: var(--accent-secondary-color);
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		margin-bottom: 25px;
	}

		.pricing-item-header-silver .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-silver:hover .pricing-item-header-silver .icon-box::before {
	transform: scale(1);
}

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

.pricing-item-content-silver .pricing-item-title-silver {
	display: block;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.pricing-item-content-silver p {
	margin-bottom: 30px;
}

.pricing-item-content-silver h2 {
	font-size: 34px;
}

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

.pricing-item-body-silver {
	background: linear-gradient(270deg, var(--bg-color) 0%, var(--secondary-color) 100%);
	border-radius: 14px;
	padding: 30px;
}

.pricing-item-list-silver h3 {
	font-size: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

.how-work-item-silver {
	width: calc(33.33% - 20px);
	text-align: center;
}

.how-work-item-no-silver {
	position: relative;
	margin-bottom: 176px;
}

	.how-work-item-no-silver::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: calc(100% + 30px);
		height: 1px;
		transform: translateY(-50%);
		background: var(--dark-divider-color);
	}

.how-work-item-silver:nth-child(3n + 3) .how-work-item-no-silver::before,
.how-work-item-silver:last-child .how-work-item-no-silver::before {
	width: 100%;
}

.how-work-item-no-silver::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translate(-50%, 100%);
	background: url('../images/how-work-item-arrow-silver.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 12px;
	height: 52px;
	transition: all 0.3s ease-in-out;
}

.how-work-item-silver:hover .how-work-item-no-silver::after {
	transform: translate(-50%, 110%);
}

.how-work-item-no-silver span {
	display: inline-block;
	color: var(--white-color);
	font-weight: 600;
	line-height: 1.25em;
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 100px;
	padding: 10px 30px;
	transition: all 0.4s ease-in-out;
}

.how-work-item-silver:hover .how-work-item-no-silver span {
	background: var(--white-color);
	color: var(--primary-color);
}

.how-work-item-content-box-silver {
	position: relative;
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 0 40px 40px;
	transition: all 0.4s ease-in-out;
}

.how-work-item-silver:hover .how-work-item-content-box-silver {
	background: var(--accent-secondary-color);
}

.how-work-item-image-silver figure {
	display: inline-block;
	max-width: 172px;
	border: 6px solid var(--accent-color);
	border-radius: 50%;
	margin: -86px auto 0;
}

.how-work-item-image-silver img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.how-work-item-content-silver {
	margin-top: 30px;
}

	.how-work-item-content-silver h3 {
		font-size: 20px;
		color: var(--white-color);
		border-bottom: 1px solid var(--dark-divider-color);
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

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

		.how-work-item-content-silver p:last-child {
			margin: 0;
		}

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

.testimonial-slider-silver {
	height: 100%;
}

	.testimonial-slider-silver .swiper {
		padding-bottom: 60px;
		height: 100%;
	}

	.testimonial-slider-silver .swiper-wrapper {
		height: 100%;
		cursor: none;
	}

.testimonial-item-silver {
	background: var(--white-color) url('../images/testimonial-quote-silver.svg') no-repeat;
	background-position: center center;
	background-size: 80px auto;
	min-height: 480px;
	border-radius: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	padding: 40px;
}

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

.testimonial-item-content-silver p {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
}

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

.testimonial-author-box-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

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

.testimonial-author-image-silver img {
	width: 100%;
	max-width: 50px;
	object-fit: cover;
	border-radius: 50%;
}

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

	.testimonial-author-content-silver h2 {
		font-size: 20px;
	}

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

.testimonial-slider-silver .testimonials-pagination-silver {
	position: absolute;
	bottom: 0px;
	display: flex;
	text-align: center;
}

	.testimonial-slider-silver .testimonials-pagination-silver .swiper-pagination-bullet {
		position: relative;
		height: 2px;
		width: 100%;
		background: var(--divider-color);
		border-radius: 0;
		opacity: 1;
		margin: 0;
		transition: all 0.3s ease-in-out;
	}

		.testimonial-slider-silver .testimonials-pagination-silver .swiper-pagination-bullet:before {
			content: '';
			display: block;
			position: absolute;
			top: 0px;
			left: auto;
			right: 0;
			background: var(--accent-secondary-color);
			border-radius: 0;
			width: 0;
			height: 4px;
			transition: all 0.4s ease-in-out;
		}

		.testimonial-slider-silver .testimonials-pagination-silver .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
			width: 100%;
			right: auto;
			left: 0;
		}

.testimonial-cta-box-silver {
	background: var(--white-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: calc(100% - 60px);
	margin-bottom: 60px;
	padding: 10px;
}

.testimonial-cta-image-silver {
	height: 100%;
}

	.testimonial-cta-image-silver figure {
		display: block;
		height: 100%;
		border-radius: 14px;
	}

	.testimonial-cta-image-silver img {
		width: 100%;
		height: 100%;
		aspect-ratio: 1 / 0.67;
		object-fit: cover;
		border-radius: 14px;
	}

.testimonial-cta-client-box-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	padding: 20px;
}

	.testimonial-cta-client-box-silver .satisfy-client-images {
		width: calc(52% - 10px);
	}

	.testimonial-cta-client-box-silver .satisfy-client-image figure img {
		max-width: 50px;
	}

.testimonial-cta-client-content-silver {
	width: calc(48% - 10px);
	border-left: 1px solid var(--divider-color);
	padding-left: 20px;
}

	.testimonial-cta-client-content-silver h2 {
		font-size: 40px;
		line-height: 1.1em;
		display: flex;
		align-items: center;
	}

		.testimonial-cta-client-content-silver h2 span {
			min-width: 65px;
		}

		.testimonial-cta-client-content-silver h2 i {
			font-size: 24px;
			color: var(--accent-secondary-color);
		}

	.testimonial-cta-client-content-silver p {
		margin: 5px 0 0;
	}

		.testimonial-cta-client-content-silver p span {
			color: var(--primary-color);
			font-weight: 600;
		}

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

.our-faqs-silver {
	padding: 120px 0;
}

.faqs-image-box-silver {
	position: relative;
	height: 100%;
	margin-right: 15px;
}

.faqs-image-silver {
	height: 100%;
}

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

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

.faqs-cta-box-silver {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	max-width: 325px;
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 30px;
	z-index: 2;
}

	.faqs-cta-box-silver .icon-box {
		position: relative;
		height: 50px;
		width: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: var(--accent-secondary-color);
		border-radius: 50%;
		margin-bottom: 25px;
		z-index: 1;
	}

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

.faqs-image-box-silver:hover .faqs-cta-box-silver .icon-box::before {
	transform: scale(1);
}

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

.faqs-image-box-silver:hover .faqs-cta-box-silver .icon-box img {
	filter: brightness(0) invert(0);
}

.faqs-cta-content-silver h2 {
	font-size: 20px;
	color: var(--white-color);
}

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

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

.faq-accordion-silver .accordion-item {
	position: relative;
	background: var(--bg-color);
	border-radius: 14px;
	margin-bottom: 25px;
	overflow: hidden;
}

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

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

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

.faq-accordion-silver .accordion-button:not(.collapsed)::after {
	color: var(--primary-color);
	transform: translateY(-50%) rotate(180deg);
}

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

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

.main-footer-silver {
	position: relative;
	padding: 120px 0 60px;
	margin-bottom: 15px;
	overflow: hidden;
}

	.main-footer-silver::before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		background: url('../images/footer-bg-image-silver.png') no-repeat;
		background-position: center center;
		background-size: cover;
		width: 360px;
		height: 325px;
		z-index: 0;
	}

	.main-footer-silver .container {
		position: relative;
		z-index: 1;
	}

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

.footer-newsletter-box-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
}

.footer-newsletter-box-title-silver {
	width: calc(54% - 15px);
}

	.footer-newsletter-box-title-silver h2 {
		font-size: 40px;
		letter-spacing: -0.02em;
		color: var(--white-color);
	}

.footer-newsletter-form-silver {
	width: calc(46% - 15px);
}

	.footer-newsletter-form-silver .form-group {
		display: flex;
		background: var(--dark-divider-color);
		border-radius: 10px;
		backdrop-filter: blur(30px);
		-webkit-backdrop-filter: blur(30px);
		padding: 8px;
	}

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

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

		.footer-newsletter-form-silver .form-group .newsletter-btn-silver {
			width: 44px;
			height: 44px;
			display: flex;
			justify-content: center;
			align-items: center;
			background-color: var(--accent-secondary-color);
			border: none;
			border-radius: 6px;
			transition: all 0.3s ease-in-out;
		}

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

			.footer-newsletter-form-silver .form-group .newsletter-btn-silver img {
				width: 100%;
				max-width: 14px;
				transition: all 0.4s ease-in-out;
			}

			.footer-newsletter-form-silver .form-group .newsletter-btn-silver:hover img {
				transform: rotate(45deg);
				filter: brightness(0) invert(0);
			}

.footer-links-box-silver,
.footer-copyright-silver {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding-top: 60px;
}

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

.footer-links-silver {
	position: relative;
	width: calc(33.33% - 2.778vw);
}

	.footer-links-silver::before {
		content: '';
		position: absolute;
		top: 50%;
		right: -2.083vw;
		transform: translateY(-50%);
		background: var(--dark-divider-color);
		width: 1px;
		height: 80%;
	}

	.footer-links-silver:nth-child(3n + 3)::before,
	.footer-links-silver:last-child::before {
		display: none;
	}

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

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

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

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

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

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

.footer-service-links-silver ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.footer-links-silver.footer-service-links-silver ul li {
	margin: 0;
}

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

	.footer-service-links-silver ul li a:hover {
		background-color: var(--accent-secondary-color);
		color: var(--white-color);
	}

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

.footer-copyright-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

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

.footer-menu-silver ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

	.footer-menu-silver ul li {
		position: relative;
	}

		.footer-menu-silver ul li::before {
			content: '';
			position: absolute;
			top: 50%;
			right: -18px;
			background: var(--accent-secondary-color);
			border-radius: 100px;
			transform: translateY(-50%);
			width: 5px;
			height: 5px;
		}

		.footer-menu-silver ul li:last-child:before {
			display: none;
		}

		.footer-menu-silver ul li a {
			text-transform: capitalize;
			color: var(--white-color);
			transition: all 0.4s ease-in-out;
		}

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

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

	.hero-silver {
		height: auto;
	}

	.hero-content-silver {
		margin: 0;
	}

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

	.hero-experience-circle-silver {
		display: none;
	}

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

	.why-choose-image-box-silver {
		max-width: 650px;
		margin: 0 auto 30px;
	}

	.why-choose-content-silver {
		margin: 0;
	}

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

	.why-chooose-btn-silver {
		margin-top: 30px;
	}

	.benefit-image-box-silver {
		max-width: 620px;
		margin: 0 auto 30px;
	}

	.benefit-content-silver {
		margin: 0;
	}

	.benefit-item-list-silver {
		padding: 30px;
	}

	.core-features-image-box-silver {
		max-width: 610px;
		margin: 0 auto 30px;
	}

	.core-features-image-box-1-silver {
		padding-bottom: 110px;
	}

		.core-features-image-box-1-silver .core-features-image-silver figure img {
			aspect-ratio: 1 / 1.2;
		}

	.core-features-image-box-2-silver .core-features-image-silver figure img {
		aspect-ratio: 1 / 1.1;
	}

	.core-features-content-silver {
		margin: 0;
	}

	.core-features-btn-silver {
		margin-top: 30px;
	}

	.team-item-silver {
		padding: 30px;
	}

	.how-work-item-content-box-silver {
		padding: 0 30px 30px;
	}

	.faqs-image-box-silver {
		max-width: 740px;
		height: auto;
		margin: 0 auto 30px;
	}

	.faqs-image-silver,
	.faqs-image-silver figure,
	.faqs-image-silver img,
	.faqs-content-silver {
		height: auto;
	}

		.faqs-image-silver img {
			aspect-ratio: 1 / 1.1;
		}

	.main-footer-silver {
		padding-bottom: 30px;
	}

		.main-footer-silver::before {
			width: 240px;
			height: 215px;
			opacity: 55%;
		}

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

	.footer-links-box-silver,
	.footer-copyright-silver {
		margin-top: 30px;
		padding-top: 30px;
	}
}

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

	.hero-silver {
		padding: 150px 0 60px;
		margin: 0;
		border-radius: 0;
	}

	.google-review-box-header-silver h2 {
		font-size: 22px;
		min-width: 60px;
	}

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

	.about-us-item-silver {
		min-height: auto;
		padding: 20px;
	}

	.about-us-body-content-silver h3 {
		font-size: 18px;
	}

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

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

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

	.about-us-footer-silver {
		margin-top: 10px;
	}

	.about-us-footer-list-silver ul {
		gap: 15px;
	}

		.about-us-footer-list-silver ul li {
			padding: 10px 10px 10px 26px;
		}

			.about-us-footer-list-silver ul li::before {
				left: 10px;
			}

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

	.service-item-silver {
		min-height: 400px;
	}

	.service-item-body-silver {
		padding: 20px;
	}

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

	.why-choose-image-box-1-silver {
		padding-bottom: 80px;
	}

	.why-choose-author-box-silver {
		padding: 20px;
	}

	.why-choose-expert-content-silver h2 {
		font-size: 28px;
	}

	.why-choose-body-list-silver ul li {
		margin-bottom: 10px;
	}

		.why-choose-body-list-silver ul li::before {
			font-size: 16px;
		}

	.our-benefit-silver {
		padding: 60px 0;
	}

	.benefit-satisfaction-content-silver h2 {
		font-size: 34px;
	}

	.benefit-btn-silver {
		margin-top: 30px;
	}

	.our-core-features-silver {
		padding: 60px 0;
	}

	.experience-circle-silver {
		margin-bottom: -61px;
		margin-right: 70px;
	}

		.experience-circle-silver img {
			max-width: 110px;
		}

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

	.team-item-silver {
		min-height: 400px;
	}

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

	.pricing-item-header-silver {
		padding: 20px 20px 30px;
	}

	.pricing-item-content-silver .pricing-item-title-silver {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.pricing-item-content-silver p {
		margin-bottom: 15px;
	}

	.pricing-item-body-silver {
		padding: 20px;
	}

	.pricing-item-content-silver h2 {
		font-size: 30px;
	}

	.pricing-item-list-silver ul {
		margin: 15px 0 0;
		padding: 15px 0 0;
	}

		.pricing-item-list-silver ul li {
			margin-bottom: 10px;
		}

			.pricing-item-list-silver ul li:before {
				font-size: 16px;
			}

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

		.pricing-benefit-list-silver ul {
			gap: 15px 30px;
		}

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

	.how-work-item-silver {
		width: calc(50% - 15px);
	}

		.how-work-item-silver:nth-child(3n + 3) .how-work-item-no-silver::before {
			width: calc(100% + 30px);
		}

		.how-work-item-silver:nth-child(2n + 2) .how-work-item-no-silver::before,
		.how-work-item-silver:last-child .how-work-item-no-silver::before {
			width: 100%;
		}

	.how-work-item-no-silver span {
		padding: 8px 20px;
	}

	.how-work-item-no-silver {
		margin-bottom: 146px;
	}

		.how-work-item-no-silver::after {
			bottom: -10px;
			width: 9px;
			height: 38px;
		}

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

	.testimonial-slider-silver .swiper {
		padding-bottom: 30px;
	}

	.testimonial-item-silver {
		padding: 30px;
		gap: 30px;
		min-height: 390px;
	}

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

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

	.testimonial-cta-box-silver {
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.testimonial-cta-client-box-silver {
		padding: 10px;
	}

		.testimonial-cta-client-box-silver .satisfy-client-images {
			width: calc(46% - 10px);
		}

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

	.testimonial-cta-client-content-silver {
		width: calc(54% - 10px);
	}

		.testimonial-cta-client-content-silver h2 {
			font-size: 34px;
		}

			.testimonial-cta-client-content-silver h2 span {
				min-width: 55px;
			}

			.testimonial-cta-client-content-silver h2 i {
				font-size: 18px;
			}

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

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

	.faqs-cta-box-silver {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

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

	.faq-accordion-silver .accordion-header .accordion-button {
		padding: 18px 44px 18px 20px;
	}

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

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

	.main-footer-silver {
		padding: 60px 0 30px;
		margin-bottom: 0;
	}

	.footer-newsletter-box-title-silver h2 {
		font-size: 34px;
	}

	.footer-newsletter-form-silver .form-group {
		padding: 5px;
	}

		.footer-newsletter-form-silver .form-group .form-control {
			width: calc(100% - 36px);
		}

		.footer-newsletter-form-silver .form-group .newsletter-btn-silver {
			width: 36px;
			height: 36px;
		}

			.footer-newsletter-form-silver .form-group .newsletter-btn-silver img {
				max-width: 12px;
			}

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

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

	.hero-content-body-silver {
		gap: 30px 20px;
	}

		.hero-content-body-silver .video-play-button-silver {
			margin-left: 10px;
		}

	.hero-footer-item-list-silver {
		width: 100%;
	}

	.hero-footer-item-content-silver h2 {
		font-size: 18px;
	}

	.google-review-box-silver {
		width: 100%;
		border-left: none;
		border-top: 1px solid var(--dark-divider-color);
		padding: 30px 0 0;
	}

		.google-review-box-silver .icon-box img {
			max-width: 40px;
		}

	.google-review-box-body-silver {
		width: calc(100% - 55px);
	}

	.google-review-box-header-silver h2 {
		font-size: 18px;
		min-width: 50px;
	}

	.google-rating-star-silver i {
		font-size: 16px;
	}

	.about-us-item-silver {
		padding: 20px;
		gap: 20px;
		min-height: auto;
	}

	.about-us-body-content-silver h3 {
		font-size: 16px;
	}

	.about-us-body-list-silver {
		margin-top: 20px;
		padding-top: 20px;
	}

	.about-us-image-silver figure,
	.about-us-image-silver img {
		height: auto;
	}

	.about-counter-item-content-silver h2 {
		font-size: 26px;
	}

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

	.about-us-footer-list-silver ul li {
		font-size: 14px;
		padding: 8px 10px 8px 26px;
	}

	.service-item-content-silver h2 {
		font-size: 18px;
	}

	.service-item-silver:hover .service-item-btn-silver {
		height: 32px;
		margin-top: 15px;
		padding-top: 15px;
	}

	.why-choose-image-box-silver {
		padding-left: 20px;
	}

	.why-choose-image-box-1-silver {
		width: 48%;
		padding: 0 0 80px;
	}

	.why-choose-author-box-silver {
		border-radius: 10px;
		top: 20px;
		gap: 10px;
		padding: 12px;
	}

	.why-choose-author-image-silver img {
		max-width: 44px;
	}

	.why-choose-author-content-silver {
		width: calc(100% - 54px);
	}

		.why-choose-author-content-silver h2 {
			font-size: 16px;
		}

	.why-choose-image-silver figure {
		margin-right: -80px;
	}

	.why-choose-expert-box-silver {
		width: 52%;
		border-width: 3px;
		padding: 15px 15px 0;
	}

		.why-choose-expert-box-silver:before {
			height: 200px;
		}

	.why-choose-expert-content-silver {
		margin-bottom: 10px;
	}

		.why-choose-expert-content-silver h2 {
			font-size: 26px;
		}

		.why-choose-expert-content-silver p {
			font-size: 14px;
		}

	.why-choose-expert-image-silver figure {
		max-width: 110px;
		margin: 0 auto;
	}

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

	.why-choose-item-silver {
		width: 100%;
	}

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

	.benefit-image-silver figure {
		max-width: 280px;
	}

	.benefit-satisfaction-box-silver {
		padding: 15px;
		bottom: 30px;
	}

	.benefit-satisfaction-content-silver h2 {
		font-size: 28px;
	}

	.benefit-satisfaction-content-silver p {
		font-size: 14px;
	}

	.benefit-item-list-silver {
		padding: 20px;
	}

	.benefit-item-silver {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.benefit-item-content-silver h2 {
		font-size: 18px;
	}

	.core-features-image-box-1-silver {
		padding-bottom: 100px;
	}

		.core-features-image-box-1-silver .core-features-image-silver {
			margin-right: -120px;
		}

	.experience-circle-silver {
		margin-bottom: -51px;
		margin-right: 55px;
	}

		.experience-circle-silver img {
			max-width: 90px;
		}

	.core-features-item-silver {
		width: 100%;
		padding: 20px;
		gap: 20px;
		min-height: auto;
	}

	.core-features-item-content-silver h2 {
		font-size: 18px;
	}

	.core-features-item-content-silver p {
		margin-top: 15px;
		padding-top: 15px;
	}

	.team-item-silver {
		min-height: 360px;
		padding: 20px;
	}

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

	.team-social-list-silver {
		margin-top: 20px;
		padding-top: 20px;
	}

	.pricing-item-header-silver {
		padding: 15px 15px 20px;
	}

	.pricing-item-content-silver .pricing-item-title-silver {
		font-size: 18px;
	}

	.pricing-item-content-silver h2 {
		font-size: 26px;
	}

		.pricing-item-content-silver h2 sub {
			font-size: 14px;
		}

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

		.pricing-benefit-list-silver ul {
			gap: 10px;
		}

			.pricing-benefit-list-silver ul li {
				font-size: 14px;
			}

				.pricing-benefit-list-silver ul li img {
					max-width: 16px;
					margin-right: 5px;
				}

	.how-work-item-silver {
		width: 100%;
	}

		.how-work-item-silver:nth-child(3n + 3) .how-work-item-no-silver::before {
			width: 100%;
		}

	.how-work-item-no-silver span {
		font-size: 14px;
		padding: 6px 16px;
	}

	.how-work-item-content-box-silver {
		padding: 0 20px 20px;
	}

	.how-work-item-content-silver {
		margin-top: 20px;
	}

		.how-work-item-content-silver h3 {
			font-size: 18px;
		}

	.testimonial-slider-silver,
	.testimonial-slider-silver .swiper,
	.testimonial-slider-silver .swiper-wrapper {
		height: auto;
	}

		.testimonial-slider-silver .swiper {
			padding-bottom: 30px;
		}

	.testimonial-item-silver {
		gap: 20px;
		min-height: auto;
		padding: 20px;
	}

	.testimonial-item-content-silver p {
		font-size: 16px;
	}

	.testimonial-author-box-silver {
		margin-top: 20px;
		padding-top: 20px;
	}

	.testimonial-author-content-silver h2 {
		font-size: 18px;
	}

	.testimonial-cta-box-silver {
		height: auto;
		margin: 30px 0 0 0;
	}

	.testimonial-cta-client-content-silver h2 {
		font-size: 28px;
	}

		.testimonial-cta-client-content-silver h2 span {
			min-width: 45px;
		}

	.faqs-cta-box-silver {
		bottom: 10px;
		left: 10px;
		right: 10px;
		padding: 15px;
	}

		.faqs-cta-box-silver .icon-box {
			margin-bottom: 15px;
		}

	.faqs-cta-content-silver h2 {
		font-size: 18px;
	}

	.faq-accordion-silver .accordion-header .accordion-button {
		font-size: 16px;
		padding: 12px 40px 12px 15px;
	}

	.faq-accordion-silver .accordion-item .accordion-button::after,
	.faq-accordion-silver .accordion-item .accordion-button.collapsed::after {
		font-size: 16px;
		right: 15px;
	}

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

	.main-footer-silver {
		padding-bottom: 15px;
	}

	.footer-newsletter-box-title-silver,
	.footer-newsletter-form-silver {
		width: 100%;
	}

		.footer-newsletter-box-title-silver h2 {
			font-size: 28px;
		}

	.footer-links-silver {
		width: 100%;
	}

		.footer-links-silver::before {
			display: none;
		}

		.footer-links-silver h2 {
			font-size: 18px;
			margin-bottom: 15px;
		}

	.footer-copyright-silver {
		flex-direction: column-reverse;
		gap: 15px;
		padding-top: 15px;
	}

	.footer-menu-silver ul {
		gap: 10px 20px;
	}

		.footer-menu-silver ul li {
			font-size: 14px;
		}

			.footer-menu-silver ul li::before {
				right: -12px;
			}
}

.feature-bar-new {
	position: relative;
	z-index: 10;
	margin-top: -60px;
	padding-bottom: 40px;
}

.feature-wrap {
	display: flex;
	justify-content: space-between;
	background: #fff;
	border-radius: 20px;
	padding: 25px 30px;
	box-shadow: 0 25px 60px rgba(0,0,0,0.12);
	gap: 20px;
	border: 1px solid #eee;
}

.feature-wrap {
	backdrop-filter: blur(10px);
}

.feature-box {
	display: flex;
	align-items: center;
	gap: 15px;
	flex: 1;
	transition: 0.3s;
}

	.feature-box:hover {
		transform: translateY(-5px);
	}

.icon-box {
	width: 60px;
	height: 60px;
	min-width: 60px;
	border-radius: 16px;
	background: #A60F0F;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	box-shadow: 0 8px 20px rgba(166,15,15,0.25);
	transition: 0.3s;
}

.feature-box h4 {
	font-size: 16px;
	font-weight: 600;
	color: #222;
	margin: 0;
}

.feature-box p {
	font-size: 13px;
	color: #666;
	margin: 3px 0 0;
}

/* MOBILE */
@media (max-width: 768px) {
	.feature-wrap {
		flex-direction: column;
	}
}

.hero-gold {
	padding-bottom: 90px !important;
}

.feature-box:hover .icon-box {
	transform: scale(1.1);
}

.product-image {
	position: relative; /* ← absolute kaldır */
}

	.product-image img {
		width: 130px;
		transform: translateY(10px);
	}

/* HOVER EFEKTİ */
.service-item-gold:hover .product-image img {
	transform: scale(1.08) translateY(-5px);
}
/* KART YAPISI */
.service-item-gold {
	position: relative;
	overflow: hidden;
	padding: 35px;
	min-height: 220px;
}

/* FLEX YAPI */
.service-item-header-gold {
	display: flex;
	align-items: center; /* ← DİKEY ORTALAR */
	justify-content: space-between;
}

/* TEXT ALANI */
.service-item-content-gold {
	max-width: 60%;
}

.product-slider {
	position: relative;
	padding: 20px 60px; /* ← SAĞ SOL BOŞLUK AÇ */
}

	/* slide fix */
	.product-slider .swiper-slide {
		display: flex;
		height: auto;
	}

/* kart tam genişlik */
.product-card {
	width: 100%;
}

/* HEADER FLEX */
.service-item-header-gold {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* TEXT */
.service-item-content-gold {
	max-width: 60%;
}

/* GÖRSEL */
.product-image {
	position: relative;
}

	.product-image img {
		width: 120px;
		transition: 0.3s;
	}

/* hover */
.service-item-gold:hover .product-image img {
	transform: scale(1.08);
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	z-index: 9999; /* ← KRİTİK */
	display: flex !important;
	align-items: center;
	justify-content: center;
}

	.slider-arrow.prev {
		left: 0; /* eskiden -20px idi */
	}

	.slider-arrow.next {
		right: 0; /* eskiden -20px idi */
	}

	.slider-arrow::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 10px;
		height: 10px;
		border-top: 2px solid #A60F0F;
		border-right: 2px solid #A60F0F;
	}

	.slider-arrow.prev::after {
		transform: translate(-50%, -50%) rotate(-135deg);
	}

	.slider-arrow.next::after {
		transform: translate(-50%, -50%) rotate(45deg);
	}

.service-item-gold:hover {
	transform: translateY(-8px);
	transition: 0.3s;
}

.swiper-button-disabled,
.slider-arrow.swiper-button-disabled {
	opacity: 0.3;
	pointer-events: none;
}

.new-product-card {
	background: #fff;
	border-radius: 16px;
	padding: 25px;
	text-align: left;
	box-shadow: 0 10px 30px rgba(0,0,0,0.06);
	position: relative;
	transition: 0.3s;
}

	.new-product-card:hover {
		transform: translateY(-6px);
	}

.new-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #A60F0F;
	color: #fff;
	font-size: 12px;
	padding: 5px 10px;
	border-radius: 6px;
}

.product-img {
	text-align: center;
	margin-bottom: 20px;
}

	.product-img img {
		width: 140px;
	}

.new-product-card h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.new-product-card p {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
}

.product-link {
	color: #A60F0F;
	font-weight: 600;
	text-decoration: none;
}

.catalog-box {
	background: linear-gradient(135deg, #A60F0F, #7A0B0B);
	border-radius: 16px;
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	margin-top: 40px;
	max-width: 1200px;
	margin: 40px auto;
}

.catalog-text {
	max-width: 50%;
}

.catalog-btn {
	display: inline-block;
	margin-top: 15px;
	background: #fff;
	color: #A60F0F;
	padding: 10px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
}

.catalog-img img {
	width: 200px;
}

.brands-section {
	background: #fff;
	padding: 80px 0;
}

/* üst küçük yazı */
.mini-title {
	display: inline-block;
	background: #f5f5f5;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 13px;
	color: #555;
	margin-bottom: 15px;
}

/* başlık */
.section-title h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 10px;
}

/* kırmızı çizgi */
.title-line {
	width: 40px;
	height: 3px;
	background: #A60F0F;
	margin: 10px auto 15px;
}

/* açıklama */
.section-title p {
	color: #777;
	font-size: 15px;
	max-width: 600px;
	margin: auto;
}

/* slider */
.brands {
	padding: 80px 0;
	background: #fff;
}

.brands-title {
	text-align: center;
	margin-bottom: 50px;
}

	.brands-title span {
		background: #f3f3f3;
		padding: 6px 14px;
		border-radius: 20px;
		font-size: 13px;
		color: #666;
	}

	.brands-title h2 {
		font-size: 42px;
		margin: 15px 0 10px;
	}

	.brands-title p {
		color: #777;
		max-width: 600px;
		margin: auto;
	}

.line {
	width: 50px;
	height: 3px;
	background: #A60F0F;
	margin: 10px auto 15px;
}

/* 🔥 GRID YAPI */
.brands-row {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px; /* ← İSTEDİĞİN BOŞLUK */
}

.referans-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px; /* ← İSTEDİĞİN BOŞLUK */
}

/* kart */
.brand-box {
	height: 130px;
	background: #fff;
	border-radius: 14px;
	border: 1px solid #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

	/* logo */
	.brand-box img {
		max-width: 110px;
		filter: grayscale(100%);
		opacity: 0.6;
		transition: 0.3s;
	}

	/* hover */
	.brand-box:hover img {
		filter: grayscale(0%);
		opacity: 1;
	}

	.brand-box:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	}

/* responsive */
@media (max-width: 1200px) {
	.brands-row {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 768px) {
	.brands-row {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* ARROW */
.brands-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #eee;
	cursor: pointer;
	z-index: 10;
}


.brands-wrapper {
	position: relative;
}

.arrow {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	margin-left: 6px;
	transition: 0.3s;
}

@media (max-width: 768px) {
	.arrow {
		border-right: 2px solid #A60F0F; /* kırmızı yap */
		border-bottom: 2px solid #A60F0F;
	}
}

.hero-slider .hero-box-gold {
	outline: none;
}

/* Hero Slider Navigation */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
	color: #ffffff;
	background: rgba(166, 15, 15, 0.6);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	transition: background 0.3s;
}

	.hero-slider .swiper-button-prev:hover,
	.hero-slider .swiper-button-next:hover {
		background: rgba(166, 15, 15, 0.95);
	}

	.hero-slider .swiper-button-prev::after,
	.hero-slider .swiper-button-next::after {
		font-size: 18px;
		font-weight: 700;
	}

.hero-slider .swiper-pagination-bullet {
	background: #ffffff;
	opacity: 0.6;
	width: 10px;
	height: 10px;
}

.hero-slider .swiper-pagination-bullet-active {
	background: #A60F0F;
	opacity: 1;
}

.hero-box-gold {
	background-repeat: no-repeat; /* Resmin tekrar etmesini engeller */
	background-size: cover; /* Resmi alanı kaplayacak şekilde büyütür/küçültür */
	background-position: center; /* Resmi ortalar */
	min-height: 600px; /* Banner yüksekliğini ihtiyacına göre ayarla */
}


/* ── Page Hero (Breadcrumb Banner) ── */
.page-hero {
	position: relative;
	background: linear-gradient(135deg, #1a0505 0%, #A60F0F 60%, #7A0B0B 100%);
	padding: 160px 0 80px;
	margin: 15px 15px 0;
	border-radius: 20px;
	overflow: hidden;
}

	.page-hero::before {
		content: '';
		position: absolute;
		inset: 0;
		background-image: url('images/dark-section-bg-image.png');
		background-size: cover;
		background-position: center;
		opacity: 0.15;
	}

	.page-hero::after {
		content: '';
		position: absolute;
		right: -60px;
		top: -60px;
		width: 420px;
		height: 420px;
		border-radius: 50%;
		border: 60px solid rgba(255,255,255,0.05);
	}

.page-hero-content {
	position: relative;
	z-index: 1;
}

	.page-hero-content h1 {
		font-size: 56px;
		font-weight: 800;
		color: #fff;
		letter-spacing: -0.02em;
		line-height: 1.1;
		margin-bottom: 16px;
	}

		.page-hero-content h1 span {
			color: #ffb3b3;
		}

	.page-hero-content p.lead {
		color: rgba(255,255,255,0.80);
		font-size: 18px;
		max-width: 560px;
		line-height: 1.65;
		margin-bottom: 0;
	}

/* breadcrumb */
.breadcrumb-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
}

	.breadcrumb-bar a,
	.breadcrumb-bar span {
		font-size: 14px;
		font-weight: 500;
		color: rgba(255,255,255,0.65);
		text-decoration: none;
		transition: color 0.3s;
	}

		.breadcrumb-bar a:hover {
			color: #fff;
		}

	.breadcrumb-bar .sep {
		color: rgba(255,255,255,0.35);
		font-size: 12px;
	}

	.breadcrumb-bar .active {
		color: #fff;
		font-weight: 600;
	}

/* hero badge */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.22);
	border-radius: 100px;
	padding: 8px 18px;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

	.hero-badge i {
		color: #ffb3b3;
		font-size: 12px;
	}

/* hero stat cards */
.hero-stats {
	display: flex;
	gap: 20px;
	margin-top: 48px;
	flex-wrap: wrap;
}

.hero-stat {
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 14px;
	padding: 18px 26px;
	backdrop-filter: blur(10px);
	transition: background 0.3s;
}

	.hero-stat:hover {
		background: rgba(255,255,255,0.16);
	}

	.hero-stat .num {
		font-family: 'Mona Sans', sans-serif;
		font-size: 32px;
		font-weight: 800;
		color: #fff;
		line-height: 1;
	}

	.hero-stat .lbl {
		font-size: 13px;
		color: rgba(255,255,255,0.65);
		margin-top: 4px;
	}

/* ── Modern Products Layout ── */
.products-section {
	padding: 60px 0 80px;
	background: #f5f5f7;
}

.products-layout {
	display: grid;
	grid-template-columns: 290px 1fr;
	gap: 32px;
	align-items: start;
}

@media (max-width: 991px) {
	.products-layout {
		grid-template-columns: 1fr;
	}
}

/* ── Sidebar ── */
.sidebar {
	/*position: sticky;*/
	top: 100px;
}

.sidebar-search {
	position: relative;
	margin-bottom: 20px;
}

	.sidebar-search input {
		width: 100%;
		padding: 14px 48px 14px 18px;
		border-radius: 14px;
		border: 2px solid #eee;
		background: #fff;
		font-size: 14px;
		font-family: 'DM Sans', sans-serif;
		color: #333;
		outline: none;
		transition: border-color 0.25s;
	}

		.sidebar-search input:focus {
			border-color: #A60F0F;
		}

		.sidebar-search input::placeholder {
			color: #aaa;
		}

.sidebar-search-icon {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #A60F0F;
	font-size: 15px;
}

.sidebar-box {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
	margin-bottom: 20px;
}

.sidebar-box-header {
	background: linear-gradient(135deg, #A60F0F 0%, #7A0B0B 100%);
	padding: 18px 22px;
	display: flex;
	align-items: center;
	gap: 12px;
}

	.sidebar-box-header .header-icon {
		width: 36px;
		height: 36px;
		background: rgba(255,255,255,0.18);
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-size: 16px;
	}

	.sidebar-box-header h4 {
		font-family: 'Mona Sans', sans-serif;
		font-size: 15px;
		font-weight: 800;
		color: #fff;
		margin: 0;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}

.sidebar-cat-list {
	list-style: none;
	padding: 10px 0;
	margin: 0;
}

	.sidebar-cat-list li a {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 12px 22px;
		font-size: 14px;
		font-weight: 500;
		color: #444;
		text-decoration: none;
		transition: all 0.22s;
		border-left: 3px solid transparent;
		font-family: 'DM Sans', sans-serif;
	}

		.sidebar-cat-list li a:hover,
		.sidebar-cat-list li a.active {
			background: #fff5f5;
			color: #A60F0F;
			border-left-color: #A60F0F;
			padding-left: 26px;
		}

		.sidebar-cat-list li a .cat-icon {
			width: 32px;
			height: 32px;
			border-radius: 8px;
			background: #f5f5f7;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 14px;
			color: #888;
			transition: all 0.22s;
			flex-shrink: 0;
		}

		.sidebar-cat-list li a:hover .cat-icon,
		.sidebar-cat-list li a.active .cat-icon {
			background: rgba(166,15,15,0.1);
			color: #A60F0F;
		}

		.sidebar-cat-list li a .cat-count {
			margin-left: auto;
			background: #f0f0f0;
			color: #888;
			font-size: 11px;
			font-weight: 700;
			padding: 3px 9px;
			border-radius: 20px;
			transition: all 0.22s;
		}

		.sidebar-cat-list li a:hover .cat-count,
		.sidebar-cat-list li a.active .cat-count {
			background: #A60F0F;
			color: #fff;
		}

	.sidebar-cat-list li:not(:last-child) {
		border-bottom: 1px solid #f5f5f5;
	}

/* CTA mini box */
.sidebar-cta {
	background: linear-gradient(135deg, #1a0505 0%, #A60F0F 60%, #7A0B0B 100%);
	border-radius: 18px;
	padding: 28px 24px;
	position: relative;
	overflow: hidden;
}

	.sidebar-cta::before {
		content: '';
		position: absolute;
		right: -30px;
		top: -30px;
		width: 120px;
		height: 120px;
		border-radius: 50%;
		border: 24px solid rgba(255,255,255,0.08);
	}

	.sidebar-cta h5 {
		font-family: 'Mona Sans', sans-serif;
		font-size: 16px;
		font-weight: 800;
		color: #fff;
		margin-bottom: 8px;
	}

	.sidebar-cta p {
		font-size: 13px;
		color: rgba(255,255,255,0.75);
		line-height: 1.55;
		margin-bottom: 18px;
	}

.sidebar-cta-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #fff;
	color: #A60F0F;
	font-family: 'Mona Sans', sans-serif;
	font-weight: 700;
	font-size: 13px;
	padding: 12px 20px;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.3s;
}

	.sidebar-cta-btn:hover {
		background: #111;
		color: #fff;
	}

/* ── Products Right Panel ── */
.products-right-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
	gap: 16px;
	flex-wrap: wrap;
}

	.products-right-header h3 {
		font-family: 'Mona Sans', sans-serif;
		font-size: 22px;
		font-weight: 800;
		color: #111;
		margin: 0;
	}

		.products-right-header h3 span {
			color: #A60F0F;
		}

.products-view-toggles {
	display: flex;
	align-items: center;
	gap: 8px;
}

.view-toggle {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	border: 2px solid #e0e0e0;
	background: #fff;
	color: #888;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.22s;
}

	.view-toggle.active, .view-toggle:hover {
		background: #A60F0F;
		border-color: #A60F0F;
		color: #fff;
	}

.products-result-count {
	font-size: 13px;
	color: #888;
	font-family: 'DM Sans', sans-serif;
}

.filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	font-family: 'Mona Sans', sans-serif;
	border: 2px solid #e5e5e5;
	background: #fff;
	color: #555;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
}

	.filter-btn:hover,
	.filter-btn.active {
		background: #A60F0F;
		border-color: #A60F0F;
		color: #fff;
	}

/* ── Ürün Kartları ── */
.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.kategori-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
@media (max-width: 1400px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.products-grid {
		grid-template-columns: 1fr;
	}
}

.product-card {
	background: #A60F0F;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.07);
	transition: transform 0.35s, box-shadow 0.35s;
	display: flex;
	flex-direction: column;
}

	.product-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 20px 45px rgba(166,15,15,0.13);
	}

.product-card-img {
	position: relative;
	overflow: hidden;
	background: #F7F3F1;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.product-card-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.45s ease;
	}

.product-card:hover .product-card-img img {
	transform: scale(1.06);
}

.product-card-category {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #A60F0F;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: 50px;
	letter-spacing: 0.03em;
}

/* placeholder icon when no image */
.product-card-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f9efef 0%, #f3e0e0 100%);
}

	.product-card-img-placeholder i {
		font-size: 64px;
		color: #A60F0F;
		opacity: 0.35;
	}

.product-card-body {
	padding: 26px 28px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

	.product-card-body h3 {
		font-size: 18px;
		font-weight: 700;
		color: #111;
		margin-bottom: 10px;
		font-family: 'Mona Sans', sans-serif;
		line-height: 1.3;
	}

	.product-card-body a {
		color: #fff;
	}

	.product-card-body p {
		font-size: 14px;
		color: #666;
		line-height: 1.65;
		margin: 0 0 22px;
		flex: 1;
	}

.product-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.product-card-brand {
	font-size: 12px;
	font-weight: 600;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.btn-product-detail {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #A60F0F;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	font-family: 'Mona Sans', sans-serif;
	padding: 10px 20px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s;
}

	.btn-product-detail:hover {
		background: #7A0B0B;
		color: #fff;
		transform: translateX(3px);
	}

/* ── CTA Banner ── */
.products-cta {
	margin: 0 15px 60px;
	border-radius: 20px;
	background: linear-gradient(135deg, #A60F0F 0%, #7A0B0B 100%);
	padding: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}

	.products-cta::before {
		content: '';
		position: absolute;
		right: -80px;
		top: -80px;
		width: 320px;
		height: 320px;
		border-radius: 50%;
		border: 50px solid rgba(255,255,255,0.07);
	}

.products-cta-text h2 {
	font-size: 34px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
	font-family: 'Mona Sans', sans-serif;
}

.products-cta-text p {
	color: rgba(255,255,255,0.80);
	font-size: 16px;
	max-width: 480px;
	line-height: 1.6;
	margin: 0;
}

.products-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	color: #A60F0F;
	font-family: 'Mona Sans', sans-serif;
	font-weight: 700;
	font-size: 16px;
	padding: 16px 32px;
	border-radius: 10px;
	text-decoration: none;
	flex-shrink: 0;
	transition: all 0.3s;
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

	.products-cta-btn:hover {
		background: #111;
		color: #fff;
		transform: translateY(-3px);
	}

/* main-header transparent on inner pages */
.main-header-gold .header-sticky {
	border-bottom: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
	.page-hero-content h1 {
		font-size: 36px;
	}

	.products-cta {
		padding: 40px 30px;
	}

	.products-cta-text h2 {
		font-size: 26px;
	}
}

/* ── MAIN LAYOUT ── */
.product-page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 48px 24px 80px;
}

.product-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	background: var(--white);
	border-radius: 24px;
	padding: 40px;
	box-shadow: var(--shadow);
	margin-bottom: 40px;
}

@media (max-width: 900px) {
	.product-top {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ── GALLERY ── */
.gallery {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.gallery-main {
	position: relative;
	background: #f9f9fb;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
}

	.gallery-main img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		padding: 20px;
		transition: transform .4s ease;
	}

	.gallery-main:hover img {
		transform: scale(1.04);
	}

.gallery-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--red);
	color: #fff;
	font-family: 'Sora', sans-serif;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: 100px;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.gallery-thumbs {
	display: flex;
	gap: 12px;
	max-height:156px;
}

.thumb {
	flex: 1;
	aspect-ratio: 1;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid var(--border);
	cursor: pointer;
	transition: border-color .2s, transform .2s;
	background: #f9f9fb;
}

	.thumb:hover, .thumb.active {
		border-color: var(--red);
		transform: translateY(-2px);
	}

	.thumb img {
		max-width: 156px;
		max-height: 156px;
		object-fit: contain;
		padding: 8px;
	}

/* ── PRODUCT INFO ── */
.product-info {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.product-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.product-info .brand-logo {
	height: 50px;
}
	.brand-logo {
	height: 32px;
	filter: grayscale(0);
}

.product-code {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--red);
	background: var(--red-light);
	border: 1px solid rgba(166,15,15,.18);
	padding: 4px 12px;
	border-radius: 100px;
	text-transform: uppercase;
}

.product-info h1 {
	font-size: 28px;
	font-weight: 800;
	color: var(--text);
	line-height: 1.2;
	margin-bottom: 8px;
}

.product-info .product-subtitle {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--border);
}

/* Quick specs strip */
.quick-specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 28px;
}

.qs-item {
	background: var(--bg);
	border-radius: 12px;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

	.qs-item .qs-icon {
		width: 36px;
		height: 36px;
		background: var(--red-mid);
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--red);
		font-size: 15px;
		flex-shrink: 0;
	}

	.qs-item .qs-label {
		font-size: 11px;
		color: var(--text-muted);
		font-weight: 500;
		display: block;
		text-transform: uppercase;
		letter-spacing: .05em;
	}

	.qs-item .qs-val {
		font-family: 'Sora', sans-serif;
		font-size: 14px;
		font-weight: 700;
		color: var(--text);
		display: block;
	}

/* Action buttons */
.action-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 28px;
}

.btn-primary-red {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
	color: #fff;
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	font-size: 15px;
	padding: 16px 28px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: all .3s;
	box-shadow: 0 6px 20px rgba(166,15,15,.28);
}

	.btn-primary-red:hover {
		transform: translateY(-2px);
		box-shadow: 0 12px 30px rgba(166,15,15,.35);
		color: #fff;
	}

.btn-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
}

.btn-doc {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 10px;
	border-radius: 12px;
	font-family: 'Sora', sans-serif;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: all .25s;
	border: 2px solid;
	text-align: center;
}

	.btn-doc i {
		font-size: 20px;
	}

	.btn-doc.brochure {
		background: #1a3a6c;
		border-color: #1a3a6c;
		color: #fff;
	}

		.btn-doc.brochure:hover {
			background: #0f2550;
			border-color: #0f2550;
			color: #fff;
			transform: translateY(-2px);
		}

	.btn-doc.spec {
		background: #0a6640;
		border-color: #0a6640;
		color: #fff;
	}

		.btn-doc.spec:hover {
			background: #074d2f;
			border-color: #074d2f;
			color: #fff;
			transform: translateY(-2px);
		}

	.btn-doc.video {
		background: #8B0000;
		border-color: #8B0000;
		color: #fff;
	}

		.btn-doc.video:hover {
			background: #5c0000;
			border-color: #5c0000;
			color: #fff;
			transform: translateY(-2px);
		}

/* Contact strip */
.contact-strip {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: linear-gradient(135deg, #f9f0f0, #fff5f5);
	border: 1px solid rgba(166,15,15,.15);
	border-radius: 14px;
}

	.contact-strip .cs-icon {
		width: 44px;
		height: 44px;
		background: var(--red);
		border-radius: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-size: 18px;
		flex-shrink: 0;
	}

	.contact-strip .cs-text .cs-label {
		font-size: 11px;
		color: var(--text-muted);
		font-weight: 500;
	}

	.contact-strip .cs-text .cs-phone {
		font-family: 'Sora', sans-serif;
		font-size: 17px;
		font-weight: 700;
		color: var(--red);
		text-decoration: none;
	}

/* ── TABS SECTION ── */
.product-tabs-section {
	background: var(--white);
	border-radius: 24px;
	box-shadow: var(--shadow);
	overflow: hidden;
	margin-bottom: 40px;
}

.tabs-nav {
	display: flex;
	border-bottom: 2px solid var(--border);
	overflow-x: auto;
	scrollbar-width: none;
}

	.tabs-nav::-webkit-scrollbar {
		display: none;
	}

.tab-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 20px 28px;
	font-family: 'Sora', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
	background: none;
	border: none;
	cursor: pointer;
	white-space: nowrap;
	position: relative;
	transition: color .25s;
	flex-shrink: 0;
}

	.tab-btn::after {
		content: '';
		position: absolute;
		bottom: -2px;
		left: 0;
		right: 0;
		height: 2px;
		background: var(--red);
		transform: scaleX(0);
		transition: transform .25s;
	}

	.tab-btn.active, .tab-btn:hover {
		color: var(--red);
	}

		.tab-btn.active::after {
			transform: scaleX(1);
		}

	.tab-btn i {
		font-size: 16px;
	}

.tab-content {
	display: none;
	padding: 40px;
}

	.tab-content.active {
		display: block;
		animation: fadeIn .3s ease;
	}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Tab: Ürün Detayları */
.section-title-sm {
	font-size: 22px;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

	.section-title-sm::before {
		content: '';
		display: block;
		width: 4px;
		height: 24px;
		background: var(--red);
		border-radius: 2px;
	}

.intro-text {
	font-size: 15px;
	line-height: 1.75;
	color: var(--text-muted);
	margin-bottom: 36px;
	max-width: 800px;
}

/* Application methods */
.app-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.app-grid {
		grid-template-columns: 1fr;
	}
}

.app-card {
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 28px 24px;
	position: relative;
	overflow: hidden;
	transition: transform .3s, box-shadow .3s;
}

	.app-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 16px 40px rgba(166,15,15,.1);
		border-color: rgba(166,15,15,.3);
	}

	.app-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: linear-gradient(90deg, var(--red), var(--red-dark));
	}

.app-card-num {
	font-family: 'Sora', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--red);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.app-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 10px;
}

.app-card p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.65;
}

/* Features grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

@media (max-width: 640px) {
	.features-grid {
		grid-template-columns: 1fr;
	}
}

.feature-item {
	display: flex;
	gap: 16px;
	padding: 20px;
	border-radius: 14px;
	background: var(--bg);
	transition: background .25s;
}

	.feature-item:hover {
		background: #eef0f5;
	}

.feature-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--red), var(--red-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	flex-shrink: 0;
}

.feature-body h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 5px;
}

.feature-body p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ── Karşılaştırma Tablosu ── */
.comparison-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,.06);
	font-size: 14px;
}

	.comparison-table thead tr {
		background: linear-gradient(135deg, var(--red-deep), var(--red));
	}

	.comparison-table thead th {
		padding: 16px 20px;
		text-align: left;
		color: rgba(255,255,255,.75);
		font-family: 'Sora', sans-serif;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: .06em;
		text-transform: uppercase;
	}

		.comparison-table thead th:first-child {
			color: rgba(255,255,255,.6);
		}

		.comparison-table thead th.highlight-col {
			background: rgba(255,255,255,.12);
			color: #fff;
		}

	.comparison-table tbody tr {
		background: var(--white);
	}

		.comparison-table tbody tr:nth-child(even) {
			background: #fafafa;
		}

		.comparison-table tbody tr:hover {
			background: #fff5f5;
		}

	.comparison-table td {
		padding: 14px 20px;
		border-bottom: 1px solid var(--border);
		color: var(--text-muted);
	}

		.comparison-table td:first-child {
			font-weight: 600;
			color: var(--text);
		}

		.comparison-table td.highlight-col {
			background: rgba(166,15,15,.04);
			color: var(--text);
			font-weight: 600;
			border-left: 2px solid rgba(166,15,15,.2);
			border-right: 2px solid rgba(166,15,15,.2);
		}

	.comparison-table tbody tr:last-child td.highlight-col {
		border-bottom: 2px solid rgba(166,15,15,.2);
	}

.check {
	color: #16a34a;
	font-size: 16px;
}

.cross {
	color: #dc2626;
	font-size: 16px;
}

/* ── Video Tab ── */
.video-placeholder {
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	max-width: 800px;
	margin: 0 auto;
}

	.video-placeholder::before {
		content: '';
		position: absolute;
		inset: 0;
		background: radial-gradient(circle at 50% 50%, rgba(166,15,15,.2), transparent 70%);
	}

.play-btn {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--red);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 0 16px rgba(166,15,15,.2);
	transition: transform .3s, box-shadow .3s;
	padding-left: 5px;
}

.video-placeholder:hover .play-btn {
	transform: scale(1.1);
	box-shadow: 0 0 0 24px rgba(166,15,15,.15);
}

.video-placeholder p {
	color: rgba(255,255,255,.6);
	font-size: 14px;
	position: relative;
	z-index: 1;
}

/* ── Broşür / Teknik Şartname Tab ── */
.doc-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.doc-card {
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	background: var(--white);
	transition: transform .3s, box-shadow .3s, border-color .3s;
	text-decoration: none;
}

	.doc-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 16px 40px rgba(0,0,0,.1);
		border-color: var(--red);
	}

.doc-card-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #fff;
}

	.doc-card-icon.blue {
		background: linear-gradient(135deg, #1a3a6c, #2e5aac);
	}

	.doc-card-icon.green {
		background: linear-gradient(135deg, #0a6640, #16a34a);
	}

.doc-card-title {
	font-family: 'Sora', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--text);
}

.doc-card-desc {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
}

.doc-card-cta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: 'Sora', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: var(--red);
	margin-top: auto;
}

/* ── BENZER ÜRÜNLER ── */
.related-section {
	margin-bottom: 40px;
}

.related-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

	.related-header h2 {
		font-size: 22px;
		font-weight: 800;
		color: var(--text);
	}

	.related-header a {
		font-size: 14px;
		font-weight: 600;
		color: var(--red);
		text-decoration: none;
		display: flex;
		align-items: center;
		gap: 6px;
	}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 768px) {
	.related-grid {
		grid-template-columns: 1fr 1fr;
	}

	.btn-row {
		grid-template-columns: 1fr;
	}

	.quick-specs {
		grid-template-columns: 1fr;
	}

	.tab-content {
		padding: 24px 20px;
	}

	.product-top {
		padding: 24px;
	}
}

@media (max-width: 480px) {
	.related-grid {
		grid-template-columns: 1fr;
	}

	.product-info h1 {
		font-size: 22px;
	}

	.app-grid {
		grid-template-columns: 1fr;
	}
}

.rel-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,.06);
	transition: transform .3s, box-shadow .3s;
	text-decoration: none;
	display: block;
	border: 1px solid var(--border);
}

	.rel-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 16px 40px rgba(166,15,15,.12);
		border-color: rgba(166,15,15,.25);
	}

.rel-card-img {
	aspect-ratio: 4/3;
	background: #f9f9fb;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	overflow: hidden;
}

	.rel-card-img img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		transition: transform .4s;
	}

.rel-card:hover .rel-card-img img {
	transform: scale(1.06);
}

.rel-card-body {
	padding: 18px 20px;
}

.rel-card-cat {
	font-size: 11px;
	font-weight: 700;
	color: var(--red);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 6px;
}

.rel-card-title {
	font-family: 'Sora', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.35;
}

/* ── MODAL ── */
.modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.75);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
}

	.modal-overlay.open {
		display: flex;
	}

.modal-box {
	background: var(--white);
	border-radius: 20px;
	width: 90%;
	max-width: 560px;
	padding: 40px;
	position: relative;
	animation: modalIn .3s ease;
}

@keyframes modalIn {
	from {
		opacity: 0;
		transform: scale(.95) translateY(20px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--bg);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 18px;
	transition: background .2s;
}

	.modal-close:hover {
		background: #e8e8e8;
	}

.modal-box h3 {
	font-size: 22px;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 8px;
}

.modal-box p {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 28px;
}

.form-group {
	margin-bottom: 16px;
}

	.form-group label {
		display: block;
		font-size: 13px;
		font-weight: 600;
		color: var(--text);
		margin-bottom: 6px;
	}

	.form-group input,
	.form-group textarea,
	.form-group select {
		width: 100%;
		padding: 12px 16px;
		border: 2px solid var(--border);
		border-radius: 10px;
		font-family: 'DM Sans', sans-serif;
		font-size: 14px;
		color: var(--text);
		background: var(--white);
		outline: none;
		transition: border-color .2s;
	}

		.form-group input:focus,
		.form-group textarea:focus,
		.form-group select:focus {
			border-color: var(--red);
		}

	.form-group textarea {
		height: 100px;
		resize: vertical;
	}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}


/* ======================================
   index.html özel stilleri
   ====================================== */
.hero-gold {
	background: none !important;
}

	.hero-gold::before {
		display: none;
	}

/* Slide gradients */
.hs-slide-1 {
	background: linear-gradient(135deg, #0d0000 0%, #1c0303 40%, #A60F0F 100%);
}

.hs-slide-2 {
	background: linear-gradient(135deg, #0a0a1a 0%, #0f1535 40%, #1a2a6c 70%, #b21f1f 100%);
}

.hs-slide-3 {
	background: linear-gradient(135deg, #071a10 0%, #0b2a1a 40%, #1a5c36 70%, #A60F0F 100%);
}

.hs-slide-inner {
	position: relative;
	overflow: hidden;
}

/* Subtle grid texture */
.hs-grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
	background-size: 72px 72px;
	pointer-events: none;
	z-index: 0;
}

/* Decorative circle top-right */
.hs-circle {
	position: absolute;
	right: -120px;
	top: -120px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	border: 90px solid rgba(255,255,255,0.035);
	pointer-events: none;
	z-index: 0;
}

	.hs-circle::before {
		content: '';
		position: absolute;
		inset: 80px;
		border-radius: 50%;
		border: 55px solid rgba(255,255,255,0.03);
	}

/* ─── Two-column layout ─── */
.hs-row {
	display: flex;
	align-items: center;
	min-height: 640px;
	position: relative;
	z-index: 2;
	gap: 0;
}

/* Sol metin kolonу */
.hs-left {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 110px 60px 110px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Sağ görsel kolonu */
.hs-right {
	flex: 0 0 50%;
	max-width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 0 60px 40px;
	align-self: stretch;
}

.hs-right-img {
	width: 100%;
	max-width: 520px;
	height: 480px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 24px 64px rgba(0,0,0,0.45);
	display: block;
}

/* Tag pill */
.hs-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.20);
	border-radius: 100px;
	padding: 7px 18px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 26px;
	backdrop-filter: blur(8px);
	width: fit-content;
}

.hs-tag-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #ff7070;
	box-shadow: 0 0 8px #ff7070;
	animation: hspulse 2s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes hspulse {
	0%,100% {
		opacity: 1
	}

	50% {
		opacity: 0.35
	}
}

/* Heading */
.hs-h1 {
	font-family: 'Mona Sans', sans-serif;
	font-size: 54px;
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

	.hs-h1 em {
		font-style: normal;
		color: #ffb3b3;
	}

/* Description */
.hs-desc {
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255,255,255,0.70);
	margin-bottom: 0;
	max-width: 440px;
}

/* Buttons */
.hs-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 36px;
	padding-top: 36px;
	border-top: 1px solid rgba(255,255,255,0.12);
}

.hs-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #A60F0F;
	font-family: 'Mona Sans', sans-serif;
	font-size: 15px;
	font-weight: 700;
	padding: 14px 28px;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.25s;
	box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

	.hs-btn-primary:hover {
		background: #A60F0F;
		color: #fff;
		transform: translateY(-2px);
	}

.hs-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.09);
	border: 1px solid rgba(255,255,255,0.22);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 26px;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.25s;
	backdrop-filter: blur(8px);
}

	.hs-btn-secondary:hover {
		background: rgba(255,255,255,0.16);
		color: #fff;
	}

/* Navigation */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.22);
	backdrop-filter: blur(10px);
	color: #fff;
	transition: all 0.25s;
}

	.hero-slider .swiper-button-prev:hover,
	.hero-slider .swiper-button-next:hover {
		background: #A60F0F;
		border-color: #A60F0F;
	}

	.hero-slider .swiper-button-prev::after,
	.hero-slider .swiper-button-next::after {
		font-size: 15px;
		font-weight: 800;
	}

.hero-slider .swiper-pagination {
	bottom: 22px;
}

.hero-slider .swiper-pagination-bullet {
	width: 28px;
	height: 4px;
	border-radius: 2px;
	background: rgba(255,255,255,0.30);
	opacity: 1;
	transition: all 0.3s;
}

.hero-slider .swiper-pagination-bullet-active {
	background: #fff;
	width: 48px;
}

/* Responsive */
@media (max-width: 991px) {
	.hs-row {
		flex-direction: column;
		min-height: auto;
	}

	.hs-left {
		flex: 1 1 auto;
		max-width: 100%;
		padding: 80px 0 40px;
	}

	.hs-right {
		flex: 1 1 auto;
		max-width: 100%;
		padding: 0 0 60px;
		justify-content: flex-start;
	}

	.hs-right-img {
		max-width: 100%;
		height: 280px;
	}

	.hs-h1 {
		font-size: 36px;
	}
}

@media (max-width: 576px) {
	.hs-h1 {
		font-size: 28px;
	}

	.hs-left {
		padding: 70px 0 30px;
	}

	.hs-right-img {
		height: 220px;
	}
}

/* ======================================
   hakkimizda.html özel stilleri
   ====================================== */
/* ── Page Hero (Breadcrumb Banner) ── */
.page-hero {
	position: relative;
	background: linear-gradient(135deg, #1a0505 0%, #A60F0F 60%, #7A0B0B 100%);
	padding: 160px 0 80px;
	margin: 15px 15px 0;
	border-radius: 20px;
	overflow: hidden;
}

	.page-hero::before {
		content: '';
		position: absolute;
		inset: 0;
		background-image: url('images/dark-section-bg-image.png');
		background-size: cover;
		background-position: center;
		opacity: 0.15;
	}

	/* decorative hexagons */
	.page-hero::after {
		content: '';
		position: absolute;
		right: -60px;
		top: -60px;
		width: 420px;
		height: 420px;
		border-radius: 50%;
		border: 60px solid rgba(255,255,255,0.05);
	}

.page-hero-content {
	position: relative;
	z-index: 1;
}

	.page-hero-content h1 {
		font-size: 56px;
		font-weight: 800;
		color: #fff;
		letter-spacing: -0.02em;
		line-height: 1.1;
		margin-bottom: 16px;
	}

		.page-hero-content h1 span {
			color: #ffb3b3;
		}

	.page-hero-content p.lead {
		color: rgba(255,255,255,0.80);
		font-size: 18px;
		max-width: 560px;
		line-height: 1.65;
		margin-bottom: 0;
	}

/* breadcrumb */
.breadcrumb-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
}

	.breadcrumb-bar a,
	.breadcrumb-bar span {
		font-size: 14px;
		font-weight: 500;
		color: rgba(255,255,255,0.65);
		text-decoration: none;
		transition: color 0.3s;
	}

		.breadcrumb-bar a:hover {
			color: #fff;
		}

	.breadcrumb-bar .sep {
		color: rgba(255,255,255,0.35);
		font-size: 12px;
	}

	.breadcrumb-bar .active {
		color: #fff;
		font-weight: 600;
	}

/* hero badge */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.22);
	border-radius: 100px;
	padding: 8px 18px;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

	.hero-badge i {
		color: #ffb3b3;
		font-size: 12px;
	}

/* hero stat cards */
.hero-stats {
	display: flex;
	gap: 20px;
	margin-top: 48px;
	flex-wrap: wrap;
}

.hero-stat {
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 14px;
	padding: 18px 26px;
	backdrop-filter: blur(10px);
	transition: background 0.3s;
}

	.hero-stat:hover {
		background: rgba(255,255,255,0.16);
	}

	.hero-stat .num {
		font-family: 'Mona Sans', sans-serif;
		font-size: 32px;
		font-weight: 800;
		color: #fff;
		line-height: 1;
	}

	.hero-stat .lbl {
		font-size: 13px;
		color: rgba(255,255,255,0.65);
		margin-top: 4px;
	}

/* ── About Intro Section ── */
.about-intro {
	padding: 100px 0 60px;
}

.about-intro-image-wrap {
	position: relative;
}

.about-intro-img-main {
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
	aspect-ratio: 1 / 0.85;
}

.about-intro-img-badge {
	position: absolute;
	bottom: -24px;
	right: -20px;
	background: #A60F0F;
	color: #fff;
	border-radius: 16px;
	padding: 22px 26px;
	text-align: center;
	box-shadow: 0 12px 30px rgba(166,15,15,0.35);
}

	.about-intro-img-badge .big {
		display: block;
		font-family: 'Mona Sans', sans-serif;
		font-size: 40px;
		font-weight: 800;
		line-height: 1;
	}

	.about-intro-img-badge .small {
		font-size: 13px;
		opacity: 0.85;
		margin-top: 4px;
	}

.about-intro-img-secondary {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 160px;
	height: 160px;
	border-radius: 16px;
	object-fit: cover;
	border: 4px solid #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	display: none; /* görseller olmadığı için gizli */
}

.about-intro-content {
	padding-left: 20px;
}

@media (max-width: 991px) {
	.about-intro-content {
		padding-left: 0;
		margin-top: 60px;
	}

	.about-intro-img-badge {
		right: 10px;
	}
}

/* ── Feature Cards (Güvenilir Markalar / Müşteri Memnuniyeti) ── */
.hak-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 36px;
}

@media (max-width: 768px) {
	.hak-features {
		grid-template-columns: 1fr;
	}
}

.hak-card {
	background: #fff;
	border-radius: 16px;
	padding: 28px 24px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.07);
	border-top: 4px solid #A60F0F;
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

	.hak-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 14px 35px rgba(166,15,15,0.13);
	}

.hak-card-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: #A60F0F;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	box-shadow: 0 6px 16px rgba(166,15,15,0.3);
	transition: transform 0.3s;
}

.hak-card:hover .hak-card-icon {
	transform: scale(1.1) rotate(-5deg);
}

.hak-card h4 {
	font-size: 16px;
	font-weight: 700;
	color: #111;
	margin: 0;
	font-family: 'Mona Sans', sans-serif;
}

.hak-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.65;
	margin: 0;
}

/* ── Values Section ── */
.about-values {
	padding: 80px 0;
	background: #F7F3F1;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 50px;
}

@media (max-width: 1024px) {
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.values-grid {
		grid-template-columns: 1fr;
	}
}

.value-card {
	background: #fff;
	border-radius: 18px;
	padding: 36px 28px;
	text-align: center;
	box-shadow: 0 4px 18px rgba(0,0,0,0.06);
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
	overflow: hidden;
}

	.value-card::before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: #A60F0F;
		transform: scaleX(0);
		transition: transform 0.3s;
		transform-origin: left;
	}

	.value-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 16px 36px rgba(166,15,15,0.12);
	}

		.value-card:hover::before {
			transform: scaleX(1);
		}

.value-card-icon {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	background: linear-gradient(135deg, #A60F0F, #7A0B0B);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	margin: 0 auto 20px;
	box-shadow: 0 8px 20px rgba(166,15,15,0.28);
}

.value-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: #111;
	margin-bottom: 10px;
	font-family: 'Mona Sans', sans-serif;
}

.value-card p {
	font-size: 14px;
	color: #777;
	line-height: 1.6;
	margin: 0;
}

/* ── Why Us / Dual Column ── */
.about-why {
	padding: 100px 0;
}

.why-item {
	display: flex;
	gap: 22px;
	margin-bottom: 36px;
	align-items: flex-start;
}

	.why-item:last-child {
		margin-bottom: 0;
	}

.why-item-num {
	min-width: 52px;
	height: 52px;
	border-radius: 14px;
	background: #A60F0F;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: 'Mona Sans', sans-serif;
	font-size: 18px;
	font-weight: 800;
	box-shadow: 0 6px 16px rgba(166,15,15,0.28);
	flex-shrink: 0;
}

.why-item-body h4 {
	font-size: 16px;
	font-weight: 700;
	color: #111;
	margin-bottom: 6px;
	font-family: 'Mona Sans', sans-serif;
}

.why-item-body p {
	font-size: 14px;
	color: #666;
	line-height: 1.65;
	margin: 0;
}

.about-why-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

	.about-why-image img {
		width: 100%;
		border-radius: 20px;
		object-fit: cover;
		aspect-ratio: 1 / 1.1;
	}

.about-why-image-overlay {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: #A60F0F;
	color: #fff;
	border-radius: 14px;
	padding: 18px 22px;
	max-width: 220px;
	box-shadow: 0 10px 28px rgba(166,15,15,0.35);
}

	.about-why-image-overlay i {
		font-size: 28px;
		margin-bottom: 8px;
		display: block;
	}

	.about-why-image-overlay p {
		font-size: 13px;
		line-height: 1.5;
		margin: 0;
		opacity: 0.9;
	}

/* ── CTA Banner ── */
.about-cta {
	margin: 0 15px 60px;
	border-radius: 20px;
	background: linear-gradient(135deg, #A60F0F 0%, #7A0B0B 100%);
	padding: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}

	.about-cta::before {
		content: '';
		position: absolute;
		right: -80px;
		top: -80px;
		width: 320px;
		height: 320px;
		border-radius: 50%;
		border: 50px solid rgba(255,255,255,0.07);
	}

.about-cta-text h2 {
	font-size: 34px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
	font-family: 'Mona Sans', sans-serif;
}

.about-cta-text p {
	color: rgba(255,255,255,0.80);
	font-size: 16px;
	max-width: 480px;
	line-height: 1.6;
	margin: 0;
}

.about-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	color: #A60F0F;
	font-family: 'Mona Sans', sans-serif;
	font-weight: 700;
	font-size: 16px;
	padding: 16px 32px;
	border-radius: 10px;
	text-decoration: none;
	flex-shrink: 0;
	transition: all 0.3s;
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

	.about-cta-btn:hover {
		background: #111;
		color: #fff;
		transform: translateY(-3px);
	}

@media (max-width: 768px) {
	.page-hero-content h1 {
		font-size: 36px;
	}

	.about-cta {
		padding: 40px 30px;
	}

	.about-cta-text h2 {
		font-size: 26px;
	}
}

/* main-header transparent on inner pages */
.main-header-gold .header-sticky {
	border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* ── Vizyon & Misyon ── */
.vizyon-misyon-section {
	padding: 100px 0 80px;
	background: #fff;
}

.vm-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 50px;
}

@media (max-width: 768px) {
	.vm-grid {
		grid-template-columns: 1fr;
	}
}

.vm-card {
	border-radius: 20px;
	padding: 44px 38px;
	box-shadow: 0 6px 30px rgba(0,0,0,0.08);
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
	overflow: hidden;
}

.vm-card--vizyon {
	background: linear-gradient(145deg, #fff 60%, #fff5f5 100%);
	border: 2px solid #f0d0d0;
}

.vm-card--misyon {
	background: linear-gradient(145deg, #A60F0F 0%, #7A0B0B 100%);
}

	.vm-card--misyon h3,
	.vm-card--misyon p {
		color: #fff;
	}

	.vm-card--misyon .vm-list li {
		color: rgba(255,255,255,0.88);
	}

		.vm-card--misyon .vm-list li i {
			color: #ffb3b3;
		}

.vm-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(166,15,15,0.15);
}

.vm-card-header {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 22px;
}

.vm-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: linear-gradient(135deg, #A60F0F, #7A0B0B);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	flex-shrink: 0;
	box-shadow: 0 8px 20px rgba(166,15,15,0.3);
}

.vm-icon--misyon {
	background: rgba(255,255,255,0.2);
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.vm-card-header h3 {
	font-family: 'Mona Sans', sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #111;
	margin: 0;
}

.vm-card > p {
	font-size: 15px;
	line-height: 1.7;
	color: #555;
	margin-bottom: 24px;
}

.vm-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

	.vm-list li {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 14px;
		font-weight: 600;
		color: #333;
	}

		.vm-list li i {
			color: #A60F0F;
			font-size: 15px;
			flex-shrink: 0;
		}

/* ── Teknik Servis ── */
.teknik-servis-section {
	padding: 100px 0 80px;
	background: #F7F3F1;
}

.ts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 50px;
}

@media (max-width: 1024px) {
	.ts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.ts-grid {
		grid-template-columns: 1fr;
	}
}

.ts-card {
	background: #fff;
	border-radius: 18px;
	padding: 36px 28px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.06);
	transition: transform 0.3s, box-shadow 0.3s;
	text-align: center;
	position: relative;
	overflow: hidden;
}

	.ts-card::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 4px;
		background: linear-gradient(90deg, #A60F0F, #d43030);
		transform: scaleX(0);
		transition: transform 0.3s;
		transform-origin: left;
	}

	.ts-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 16px 36px rgba(166,15,15,0.12);
	}

		.ts-card:hover::after {
			transform: scaleX(1);
		}

.ts-icon {
	width: 66px;
	height: 66px;
	border-radius: 18px;
	background: linear-gradient(135deg, #A60F0F, #7A0B0B);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	margin: 0 auto 20px;
	box-shadow: 0 8px 20px rgba(166,15,15,0.28);
	transition: transform 0.3s;
}

.ts-card:hover .ts-icon {
	transform: scale(1.1) rotate(-5deg);
}

.ts-card h4 {
	font-family: 'Mona Sans', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #111;
	margin-bottom: 10px;
}

.ts-card p {
	font-size: 14px;
	color: #777;
	line-height: 1.65;
	margin: 0;
}

.ts-cta-bar {
	margin-top: 56px;
	background: linear-gradient(135deg, #A60F0F, #7A0B0B);
	border-radius: 16px;
	padding: 28px 36px;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

	.ts-cta-bar p {
		color: #fff;
		font-size: 16px;
		font-weight: 600;
		margin: 0;
		display: flex;
		align-items: center;
		gap: 10px;
		flex: 1;
	}

.ts-cta-phone {
	color: #fff;
	font-family: 'Mona Sans', sans-serif;
	font-size: 20px;
	font-weight: 800;
	text-decoration: none;
	border: 2px solid rgba(255,255,255,0.4);
	border-radius: 10px;
	padding: 10px 22px;
	transition: all 0.3s;
}

	.ts-cta-phone:hover {
		background: rgba(255,255,255,0.15);
		color: #fff;
		border-color: rgba(255,255,255,0.7);
	}

.ts-cta-bar .btn-default {
	background: #fff;
	color: #A60F0F;
	border-color: #fff;
}

	.ts-cta-bar .btn-default:hover {
		background: transparent;
		color: #fff;
	}

/* ── Bizden Haberler ── */
.haberler-section {
	padding: 100px 0 80px;
	background: #fff;
}

.haber-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 50px;
}

@media (max-width: 1024px) {
	.haber-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.haber-grid {
		grid-template-columns: 1fr;
	}
}

.haber-card {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(0,0,0,0.08);
	background: #fff;
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
}

	.haber-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 18px 40px rgba(166,15,15,0.13);
	}

.haber-card-img {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

	.haber-card-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.4s;
	}

.haber-card:hover .haber-card-img img {
	transform: scale(1.05);
}

.haber-card-img--placeholder {
	background: linear-gradient(135deg, #A60F0F 0%, #7A0B0B 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.haber-placeholder-icon {
	font-size: 48px;
	color: rgba(255,255,255,0.35);
}

.haber-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #A60F0F;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 100px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.haber-card-body {
	padding: 28px 26px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.haber-date {
	font-size: 13px;
	color: #A60F0F;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
}

.haber-card-body h4 {
	font-family: 'Mona Sans', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #111;
	margin-bottom: 10px;
	line-height: 1.35;
}

.haber-card-body p {
	font-size: 14px;
	color: #777;
	line-height: 1.65;
	margin-bottom: 20px;
	flex: 1;
}

.haber-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #A60F0F;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: gap 0.3s;
}

	.haber-link:hover {
		gap: 12px;
		color: #7A0B0B;
	}

/* ======================================
   kategoriler.html özel stilleri
   ====================================== */
.products-section {
	padding: 60px 0 80px;
}

.products-right {
	width: 100%;
}

.products-right-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
	flex-wrap: wrap;
	gap: 12px;
}

	.products-right-header h3 {
		font-family: 'Mona Sans', sans-serif;
		font-size: 26px;
		font-weight: 800;
		color: #111;
		margin: 0 0 4px;
	}

		.products-right-header h3 span {
			color: #A60F0F;
		}

.products-result-count {
	font-size: 14px;
	color: #888;
	margin: 0;
}

.products-view-toggles {
	display: flex;
	gap: 8px;
}

.view-toggle {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	border: 2px solid #e5e5e5;
	background: #fff;
	color: #999;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.view-toggle.active, .view-toggle:hover {
		background: #A60F0F;
		border-color: #A60F0F;
		color: #fff;
	}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 1200px) {
	.products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.products-grid {
		grid-template-columns: 1fr;
	}
}

/* Liste görünümü */
.products-grid.list-view {
	grid-template-columns: 1fr;
}

	.products-grid.list-view .product-card {
		display: flex;
		flex-direction: row;
	}

	.products-grid.list-view .product-card-img {
		width: 200px;
		flex-shrink: 0;
		aspect-ratio: unset;
		height: 140px;
	}

	.products-grid.list-view .product-card-body {
		padding: 20px 24px;
	}

.product-card {
	background: #92261b;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0,0,0,0.07);
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
}

	.product-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 16px 38px rgba(166,15,15,0.13);
	}

.product-card-img {
	position: relative;
	overflow: hidden;
	background: #F7F3F1;
	aspect-ratio: 4 / 3;
}

	.product-card-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.4s;
	}

.product-card:hover .product-card-img img {
	transform: scale(1.06);
}

.product-card-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f9efef, #f3e0e0);
	position: absolute;
	inset: 0;
}

	.product-card-img-placeholder i {
		font-size: 48px;
		color: #A60F0F;
		opacity: 0.3;
	}

.product-card-category {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #A60F0F;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 50px;
}

.product-card-body {
	padding: 20px 22px 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
a .product-card-body h3{color:#fff;}

.product-card-body h3 {
	font-size: 15px;
	font-weight: 700;
	color: #111;
	margin: 0;
	font-family: 'Mona Sans', sans-serif;
	line-height: 1.4;
}

		.product-card-body h3 a {
			color: #fff;
			text-decoration: none;
			transition: color 0.2s;
		}

			.product-card-body h3 a:hover {
				color: #f5f5f7;
			}

/* ======================================
   urun-detay.html özel stilleri
   ====================================== */
:root {
	--red: #A60F0F;
	--red-dark: #7A0B0B;
	--red-deep: #1a0505;
	--red-light: #fff0f0;
	--red-mid: rgba(166,15,15,0.1);
	--text: #111;
	--text-muted: #666;
	--border: #e8e8e8;
	--bg: #f6f6f8;
	--white: #fff;
	--radius: 18px;
	--shadow: 0 6px 32px rgba(0,0,0,0.08);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'DM Sans', sans-serif;
	background: var(--bg);
	color: var(--text);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Sora', sans-serif;
}

/* ── BREADCRUMB ── */
.breadcrumb-strip {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	padding: 14px 0;
}

	.breadcrumb-strip .container {
		max-width: 1280px;
		margin: 0 auto;
		padding: 0 24px;
	}

	.breadcrumb-strip nav {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 13px;
		flex-wrap: wrap;
	}

	.breadcrumb-strip a {
		color: var(--text-muted);
		text-decoration: none;
		transition: color .2s;
	}

		.breadcrumb-strip a:hover {
			color: var(--red);
		}

	.breadcrumb-strip .sep {
		color: #ccc;
		font-size: 11px;
	}

	.breadcrumb-strip .current {
		color: var(--red);
		font-weight: 600;
	}
/* Bilgi Kartları */
.iletisim-info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 60px;
}

.iletisim-info-card {
	background: #fff;
	border: 1px solid #f0ebe0;
	border-radius: 12px;
	padding: 36px 28px;
	text-align: center;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

	.iletisim-info-card:hover {
		box-shadow: 0 8px 32px rgba(96, 34, 34, 0.10);
		transform: translateY(-4px);
	}

.iletisim-info-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #602222, #8b3a3a);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

	.iletisim-info-icon i {
		font-size: 22px;
		color: #f5c97a;
	}

.iletisim-info-card h4 {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
}

.iletisim-info-card p,
.iletisim-info-card a {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	text-decoration: none;
}

	.iletisim-info-card a:hover {
		color: #602222;
	}

/* Form + Harita Bölümü */
.iletisim-main {
	padding: 60px 0 80px;
	background: #faf8f5;
}

.iletisim-form-wrap {
	background: #fff;
	border-radius: 16px;
	padding: 48px 40px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

	.iletisim-form-wrap h3 {
		font-size: 24px;
		font-weight: 700;
		color: #1a1a1a;
		margin-bottom: 8px;
	}

	.iletisim-form-wrap .form-subtitle {
		font-size: 14px;
		color: #888;
		margin-bottom: 32px;
	}

.iletisim-form .form-group {
	margin-bottom: 20px;
}

.iletisim-form label {
	font-size: 13px;
	font-weight: 600;
	color: #444;
	margin-bottom: 6px;
	display: block;
}

.iletisim-form .form-control {
	border: 1.5px solid #e8e0d4;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 14px;
	color: #1a1a1a;
	background: #faf8f5;
	transition: border-color 0.2s;
	width: 100%;
}

	.iletisim-form .form-control:focus {
		outline: none;
		border-color: #602222;
		background: #fff;
		box-shadow: 0 0 0 3px rgba(96,34,34,0.08);
	}

.iletisim-form textarea.form-control {
	resize: vertical;
	min-height: 130px;
}

.iletisim-form .btn-gonder {
	background: linear-gradient(135deg, #602222, #8b3a3a);
	color: #f5c97a;
	border: none;
	border-radius: 8px;
	padding: 14px 40px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	width: 100%;
	transition: opacity 0.2s, transform 0.2s;
	letter-spacing: 0.03em;
}

	.iletisim-form .btn-gonder:hover {
		opacity: 0.9;
		transform: translateY(-1px);
	}

/* Harita */
.iletisim-map-wrap {
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	min-height: 460px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

	.iletisim-map-wrap iframe {
		width: 100%;
		height: 100%;
		min-height: 460px;
		border: none;
		display: block;
	}

/* Çalışma Saatleri */
.calisma-saatleri {
	background: #fff;
	border-radius: 12px;
	padding: 28px;
	margin-top: 24px;
	border: 1px solid #f0ebe0;
}

	.calisma-saatleri h5 {
		font-size: 15px;
		font-weight: 700;
		color: #602222;
		margin-bottom: 16px;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.calisma-saatleri ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

		.calisma-saatleri ul li {
			display: flex;
			justify-content: space-between;
			padding: 8px 0;
			border-bottom: 1px solid #f5f0e8;
			font-size: 13px;
			color: #555;
		}

			.calisma-saatleri ul li:last-child {
				border-bottom: none;
			}

			.calisma-saatleri ul li span.gun {
				font-weight: 600;
				color: #333;
			}

			.calisma-saatleri ul li span.saat {
				color: #602222;
				font-weight: 500;
			}

/* Bilgi kartları mobil */
@media (max-width: 991px) {
	.iletisim-info-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.iletisim-form-wrap {
		padding: 32px 20px;
		margin-bottom: 32px;
	}

	.iletisim-map-wrap {
		min-height: 300px;
	}

		.iletisim-map-wrap iframe {
			min-height: 300px;
		}
}

@media (min-width: 768px) and (max-width: 991px) {
	.iletisim-info-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
/* Marka logosu badge — sol üst */
.product-card-brand {
	/*position: absolute;*/
	top: 6px;
	left: 6px;
	z-index: 3;
	background: #fff;
	padding: 2px 5px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,.10);
	display: flex;
	align-items: center;
}

	.product-card-brand img {
		height: 27px !important;
		width: auto !important;
		object-fit: contain !important;
		transition: none !important;
		display: block;
	}

.product-card:hover .product-card-brand img {
	transform: none !important;
}

/* Ürün kodu — sol alt (body en altına iter) */
.product-card-code {
	margin-top: auto;
	padding-top: 5px;
	font-size: 13px;
	color: #fff;
	text-align: left;
}

	.product-card-code span {
		font-weight: 700;
		color: #444;
		letter-spacing: 0.02em;
	}

/* CSS Multiple Whatsapp Chat */
.whatsapp-name {
	font-size: 16px;
	font-weight: 600;
	padding-bottom: 0;
	margin-bottom: 0;
	line-height: 0.5;
}

#whatsapp-chat {
	box-sizing: border-box !important;
	outline: none !important;
	position: fixed;
	width: 350px;
	border-radius: 10px;
	box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
	bottom: 90px;
	left: 30px;
	overflow: hidden;
	z-index: 99;
	animation-name: showchat;
	animation-duration: 1s;
	transform: scale(1);
}

a.blantershow-chat {
	/*   background: #009688; */
	background: #fff;
	color: #404040;
	position: fixed;
	display: flex;
	font-weight: 400;
	height: 40px;
	justify-content: space-between;
	z-index: 98;
	bottom: 25px;
	right: 30px;
	font-size: 15px;
	padding: 10px 20px;
	border-radius: 30px;
	box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}

	a.blantershow-chat svg {
		transform: scale(1.2);
		margin: 0 10px 0 0;
	}

.navbar-toggle .slicknav_btn:nth-child(1) {
	display: none !important;
}
@media screen and (max-width:768px){
	.thumb img {
		max-width: 100%;
	}
	.product-top{display:block;}
	.thumb{display:block;}
}