/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Glow Kraft
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Why Choose Us css
07. Our Services css
08. Intro Video css
09. Latest Project css
10. How We Work css
11. Our Skills css
12. Our Testimonials css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Services Page css
17. Service Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Image Gallery css
23. FAQs Page css
24. Contact Us Page css
25. 404 Error Page css 
26. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #192324;
	--secondery-color: #F8F8F8;
	--text-color: #283132;
	--accent-color: #7C877F;
	--white-color: #FFFFFF;
	--divider-color: #EAF0EC;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Hanken Grotesk", sans-serif;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	margin: 0;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p {
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.1em;
	color: var(--primary-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.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;
	background: #04152e;
	color: var(--white-color);
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	border: none;
	padding: 17px 46px 17px 20px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.btn-default:hover {
	background: transparent;
	color: var(--white-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 16px;
	background-image: url(../images/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate(-20px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translate(-18px, -50%);
}

.btn-default::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -15%;
	right: 0;
	width: 0;
	height: 106%;
	background: var(--primary-color);
	transform: skew(45deg);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover:after {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}

.btn-default.btn-highlighted {
	background-color: var(--white-color);
	color: black;
}

.btn-default.btn-highlighted:hover {
	color: var(--white-color);
}

.btn-default.btn-highlighted::before {
	background-image: url(../images/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before {
	filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after {
	background-color: var(--accent-color);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: 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);
	}
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
	margin-right: 30px;
}

.section-btn {
	text-align: end;
}

.section-title-content {
	margin-left: 120px;
}

.section-title-content p {
	margin: 0;
}

.glow-centered-section-header {
	text-align: center;
	justify-content: center;
}

.glow-centered-section-header .section-title {
	margin-right: 0;
}

.glow-centered-section-header .section-title h3 {
	padding-left: 35px;
}

.glow-centered-section-header .section-title h3::before {
	left: 0;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
}

.glow-centered-section-header .section-title-content {
	max-width: 740px;
	margin: 0 auto;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	display: inline-block;
	position: relative;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6em;
	text-transform: capitalize;
	color: #b72025;
	padding-left: 35px;
	margin-bottom: 20px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url('../images/icon-sub-heading.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	width: 24px;
	height: 5px;
}

.section-title h1 {
	font-size: 80px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span,
.xinterio-title span {
	background: linear-gradient(90deg, #e83443, #2b8be0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-title p {
	margin-top: 30px;
	margin-bottom: 0;
}


.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h2,
.section-title.dark-section h3 {
	color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
	padding: 13px 0;
	align-items: center;
	border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header .header-sticky.active .navbar {
	border-bottom: none;
}

.slider-header .header-sticky {
	background: rgba(25, 35, 36, 0.92);
	backdrop-filter: blur(8px);
}

.slider-header .navbar {
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.navbar-brand.glow-kraft-logo {
	display: inline-flex;
	align-items: center;
	/* background: var(--white-color); */
	border-radius: 6px;
	padding: 7px 12px;
}

.navbar-brand.glow-kraft-logo img {
	width: 210px;
	max-height: 54px;
	object-fit: contain;
	display: block;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin-left: 40px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 6px;
	position: relative;
}

.main-menu ul li a {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	padding: 15px 14px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: #df1f2d;
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 280px 0 250px;
	min-height: 100vh;
	margin-top: -118px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout {
	background: none;
	padding: 0;
	--hero-slider-height: max(760px, 100vh);
}

.hero.hero-slider-layout .swiper,
.hero.hero-slider-layout .swiper-wrapper,
.hero.hero-slider-layout .swiper-slide {
	height: var(--hero-slider-height);
}

.hero.hero-slider-layout .hero-slide {
	position: relative;
	padding: 280px 0 250px;
	min-height: var(--hero-slider-height);
	height: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

.hero.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: transparent;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: center;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero.hero-slider-layout .hero-content {
	max-width: 720px;
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.65);
}

.hero-content .section-title h3,
.hero-content .section-title h1 {
	color: var(--white-color);
	opacity: 1;
	visibility: visible;
}

.hero.hero-slider-layout .hero-content .section-title h3 {
	font-size: 16px;
	margin-bottom: 12px;
}

.hero.hero-slider-layout .hero-content .section-title h1 {
	font-size: 58px;
	line-height: 1.08em;
}

.hero-content .section-title p {
	font-size: 22px;
	color: var(--white-color);
	width: 100%;
	max-width: 600px;
}

.hero.hero-slider-layout .hero-content .section-title p {
	font-size: 18px;
	line-height: 1.55em;
	max-width: 520px;
	margin-top: 20px;
	opacity: 1;
	visibility: visible;
}

.hero-content .section-title h3::before {
	filter: brightness(0) invert(1);
}

.hero-content .btn-default.btn-highlighted {
	margin-left: 30px;
}

/************************************/
/***       05. About Us css 	  ***/
/************************************/

.about-us {
	background-image: url('../images/section-bg-shape-1.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 100px 0;
}

.about-us-images {
	position: relative;
	background-image: url(../images/about-us-bg-shape.svg);
	background-repeat: no-repeat;
	background-position: left 60px bottom 40px;
	background-size: auto;
	padding-right: 100px;
	padding-bottom: 180px;
	margin-right: 30px;
}

.about-img-1 figure,
.about-img-2 figure {
	display: block;
}

.about-img-1 img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
}

.about-img-2 {
	position: absolute;
	width: 100%;
	max-width: 385px;
	bottom: 0;
	right: 0;
}

.about-img-2 img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
}

.about-showcase-images {
	background-image: none;
	padding: 0 95px 95px 0;
	margin-right: 45px;
}

.about-showcase-images .about-img-1 figure {
	border-radius: 8px;
	overflow: hidden;
}

.about-showcase-images .about-img-1 img {
	aspect-ratio: 1 / 1.08;
	object-position: center;
}

.about-showcase-images .about-img-2 {
	max-width: 345px;
	bottom: 0;
	right: 0;
}

.about-showcase-images .about-img-2 figure {
	border: 10px solid var(--white-color);
	border-radius: 50%;
	overflow: hidden;
}

.about-showcase-images .about-img-2 img {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	object-position: center;
}

.about-us.about-us-single {
	background-color: var(--secondery-color);
	background-position: right center;
}

.about-single-image {
	margin-right: 45px;
}

.about-single-image figure {
	display: block;
	border-radius: 8px;
}

.about-single-image img {
	width: 100%;
	height: auto;
	object-fit: contain;
	aspect-ratio: auto;
}

.experience-counter {
	position: absolute;
	top: 0;
	left: 0;
	height: 152px;
	width: 152px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: 6px solid var(--white-color);
	transform: translate(-50%, -6px);
	border-radius: 50%;
}

.experience-counter h3 {
	font-size: 34px;
	color: var(--white-color);
	text-align: center;
	width: 100%;
	margin-bottom: 5px;
}

.experience-counter p {
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--white-color);
	text-align: center;
	margin-bottom: 0;
}

.feedback-counter {
	position: absolute;
	top: 0;
	right: 0;
	transform: rotate(-180deg) translate(20px, -20px);
	writing-mode: vertical-rl;
	display: flex;
	align-items: center;
}

.feedback-counter p {
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	border-radius: 50%;
	margin: 0 0 15px 0;
	transition: all 0.3s ease-in-out;
}

.feedback-counter:hover p {
	background-color: var(--primary-color);
}

.feedback-counter h3 {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	width: calc(100% - 75px);
}

.about-us-content-body {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.about-us-content-body::before {
	content: '';
	position: absolute;
	right: 50%;
	top: 0;
	bottom: 0;
	transform: translateX(-50%);
	border: 1px solid var(--divider-color);
	width: 1px;
	height: 100%;
}

.about-us-content-info {
	width: calc(50% - 40px);
}

.about-us-content-list {
	margin-bottom: 40px;
}

.about-us-content-list ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.about-us-content-list ul li {
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.about-us-content-list ul li:last-child {
	margin-bottom: 0;
}

.about-us-content-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.about-us-contact-list {
	width: calc(50% - 40px);
}

.about-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.about-contact-item:last-child {
	margin-bottom: 0;
}

.about-contact-item .icon-box {
	width: 40px;
	height: 40px;
	background-color: #04152e;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.about-contact-item:hover .icon-box {
	background-color: var(--primary-color);
}

.about-contact-item .icon-box figure {
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

.about-contact-item .icon-box img {
	max-width: 40px;
	border-radius: 50%;
}

.about-contact-item .icon-box i {
	font-size: 18px;
	color: var(--white-color);
}

.about-contact-content {
	width: calc(100% - 55px);
}

.about-contact-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.about-contact-content h3.contact-email {
	text-transform: none;
}

.about-contact-content p {
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

/************************************/
/***     06. Why Choose Us css    ***/
/************************************/

.glow-unique-gallery {
	position: relative;
	padding: 100px 0 0;
	background: #151e22;
	overflow: hidden;
}

.glow-unique-gallery::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #e83443 0%, #1c73c9 48%, #e83443 100%);
}

.glow-unique-gallery .section-row {
	margin-bottom: 70px;
}

.glow-unique-gallery .section-title h3 {
	color: #e83443;
}

.glow-unique-gallery .section-title h3::before {
	filter: brightness(0) saturate(100%) invert(36%) sepia(76%) saturate(2292%) hue-rotate(331deg) brightness(93%) contrast(96%);
}

.glow-unique-gallery .section-title h2,
.glow-unique-gallery .section-title h2 span,
.glow-unique-gallery .section-title-content p {
	color: var(--white-color);
}

.glow-unique-gallery .section-title h2 span {
	background: linear-gradient(90deg, #e83443, #2b8be0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.glow-gallery-container {
	width: 100%;
	padding: 0 95px 100px;
}

.glow-gallery-card {
	position: relative;
	overflow: hidden;
	min-height: 335px;
	height: 100%;
	border-radius: 8px;
	background: var(--primary-color);
}

.glow-gallery-image {
	position: relative;
	height: 100%;
	min-height: 335px;
	overflow: hidden;
}

.glow-gallery-image figure,
.glow-gallery-image img {
	display: block;
	width: 100%;
	height: 100%;
}

.glow-gallery-image img {
	min-height: 335px;
	object-fit: cover;
	transform: scale(1.01);
	transition: all 0.65s ease;
}

.glow-gallery-image .image-hover {
	position: absolute;
	inset: 0;
	transform: translateY(100%);
	transition: all 0.65s ease;
}

.glow-gallery-card:hover .image-main img {
	transform: scale(1.08);
}

.glow-gallery-card:hover .image-hover {
	transform: translateY(0);
}

.glow-gallery-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px;
	background: linear-gradient(180deg, rgba(21, 30, 34, 0.15) 0%, rgba(21, 30, 34, 0.9) 100%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.45s ease;
}

.glow-gallery-card:hover .glow-gallery-content {
	opacity: 1;
	visibility: visible;
}

.glow-gallery-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	transform: translateY(-15px);
	transition: all 0.45s ease;
}

.glow-gallery-card:hover .glow-gallery-actions {
	transform: translateY(0);
}

.glow-gallery-actions a {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--white-color);
	background: #1c73c9;
	border: 1px solid rgba(255, 255, 255, 0.22);
	transition: all 0.35s ease;
}

.glow-gallery-actions .gallery-items a {
	background: #e83443;
}

.glow-gallery-actions a:hover {
	background: var(--white-color);
	color: #151e22;
	transform: translateY(-3px);
}

.glow-gallery-text {
	transform: translateY(22px);
	transition: all 0.45s ease;
}

.glow-gallery-card:hover .glow-gallery-text {
	transform: translateY(0);
}

.glow-gallery-text p {
	color: #b9d9ff;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 8px;
}

.glow-gallery-text h3 {
	color: var(--white-color);
	font-size: 22px;
	line-height: 1.25em;
	text-transform: capitalize;
}

.why-choose-us {
	padding: 100px 0;
	background-color: var(--secondery-color);
}

.why-choose-item {
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.why-choose-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.why-choose-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box {
	background-color: transparent;
}

.why-choose-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	max-width: 24px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-item-content {
	width: calc(100% - 80px);
}

.why-choose-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.why-choose-item-content p {
	color: var(--primary-color);
	margin-bottom: 0;
}

.why-choose-images {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: 30px;
}

.why-choose-img-box-1,
.why-choose-img-box-2 {
	display: flex;
	gap: 20px;
	width: 100%;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure,
.why-choose-img-3 figure,
.why-choose-img-4 figure {
	display: block;
}

.why-choose-img-1 {
	width: calc(57% - 10px);
}

.why-choose-img-1 img {
	width: 100%;
	aspect-ratio: 1 / 0.756;
	object-fit: cover;
}

.why-choose-img-2 {
	width: calc(43% - 10px);
}

.why-choose-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
}

.why-choose-img-3 {
	width: calc(67% - 10px);
}

.why-choose-img-3 img {
	width: 100%;
	aspect-ratio: 1 / 0.746;
	object-fit: cover;
}

.why-choose-img-4 {
	width: calc(33% - 10px);
}

.why-choose-img-4 img {
	width: 100%;
	aspect-ratio: 1 / 1.55;
	object-fit: cover;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services {
	padding: 100px 0;
	background: #04152e;
}

.our-services .container {
	max-width: 1540px;
}

.our-services .products-row {
	--bs-gutter-x: 18px;
}

.our-services .section-title h3 {
	color: #e83443;
}

.our-services .section-title h3::before {
	filter: brightness(0) saturate(100%) invert(36%) sepia(76%) saturate(2292%) hue-rotate(331deg) brightness(93%) contrast(96%);
}

.our-services .section-title h2,
.our-services .section-title-content p {
	color: var(--white-color);
}

.our-services .section-title h2 span {
	background: linear-gradient(90deg, #e83443, #2b8be0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-image a {
	display: block;
	cursor: none;
}

.service-image a figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 105%);
	height: 100%;
	width: 100%;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-image img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.36;
	transition: all 0.4s ease-in-out;
}

.our-services .products-row .service-image img {
	aspect-ratio: 1 / 1.48;
}

.our-services .products-row .service-image a figure::before {
	background: transparent;
	pointer-events: none;
}

.our-services .products-row .service-content {
	top: auto;
	bottom: 24px;
	left: 50%;
	right: auto;
	width: 100%;
	max-width: calc(100% - 48px);
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.95);
	border-radius: 8px;
	padding: 10px 14px;
	z-index: 2;
	visibility: visible;
	opacity: 1;
	text-align: center;
	/* text-shadow: 0 2px 8px rgba(5, 5, 5, 0.9), 0 0 18px rgba(0, 0, 0, 0.65); */
}

.our-services .products-row .service-content * {
	visibility: visible;
}

.our-services .products-row .service-content h3 {
	margin-bottom: 0;
}

.service-item:hover .service-image img {
	transform: scale(1.1);
}

.service-btn {
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 1;
}

.service-btn a {
	background-color: #04152e;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover {
	background-color: var(--primary-color);
}

.service-btn a img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover img {
	transform: rotate(0)
}

.service-content {
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.service-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: ;
	margin-bottom: 10px;
}

.service-content h3 a {
	color: inherit;
}

.service-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.all-services-btn {
	text-align: center;
	margin-top: 20px;
}

.xinterio-why-section {
	position: relative;
	z-index: 1;
	padding: 90px 0 110px;
	background: linear-gradient(135deg, #f8fbff 0%, #ffffff 45%, #fff6f6 100%);
	overflow: hidden;
	isolation: isolate;
}

.xinterio-why-section::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(43, 115, 186, 0.18), rgba(223, 31, 45, 0.18), transparent);
}

.xinterio-why-header {
	margin-bottom: 52px;
}

.xinterio-heading {
	position: relative;
	margin-bottom: 20px;
}

.xinterio-subtitle {
	color: #df1f2d;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.2em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.xinterio-title {
	color: #262326;
	font-size: 46px;
	line-height: 1.08em;
	text-transform: none;
}

.xinterio-heading-desc {
	color: #555b62;
	font-size: 17px;
	line-height: 1.65em;
	max-width: 590px;
	margin: 7px 0 15px;
}

.xinterio-btn-wrap {
	text-align: right;
	padding-top: 8px;
}

.glow-centered-xinterio-header {
	text-align: center;
	justify-content: center;
}

.glow-centered-xinterio-header .xinterio-heading {
	margin-bottom: 14px;
}

.glow-centered-xinterio-header .section-title h3 {
	padding-left: 35px;
}

.glow-centered-xinterio-header .section-title h3::before {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.glow-centered-xinterio-header .xinterio-heading-desc {
	max-width: 720px;
	margin: 0 auto;
}

.glow-centered-xinterio-header .xinterio-btn-wrap {
	text-align: center;
	padding-top: 22px;
}

.xinterio-outline-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 14px 26px;
	border: 1px solid #df1f2d;
	border-radius: 30px;
	color: #df1f2d;
	font-weight: 700;
	line-height: 1.2em;
	text-transform: capitalize;
	overflow: hidden;
	z-index: 1;
	transition: all 0.35s ease;
}

.xinterio-outline-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #df1f2d 0%, #2b73ba 100%);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.38s ease;
	z-index: -1;
}

.xinterio-outline-btn:hover {
	color: var(--white-color);
	border-color: #2b73ba;
}

.xinterio-outline-btn:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.xinterio-why-body {
	position: relative;
	align-items: stretch !important;
}

.xinterio-feature {
	margin-bottom: 22px;
}

.xinterio-feature:last-child {
	margin-bottom: 0;
}

.xinterio-feature-box {
	display: flex;
	align-items: flex-start;
	height: 100%;
	min-height: 144px;
	padding: 20px 18px;
	border: 1px solid rgba(43, 115, 186, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 16px 34px rgba(38, 35, 38, 0.07);
	transition: all 0.35s ease;
}

.xinterio-feature-icon {
	position: relative;
	flex: 0 0 66px;
	width: 66px;
	height: 66px;
	margin-right: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: linear-gradient(135deg, #df1f2d 0%, #2b73ba 100%);
	color: var(--white-color);
	font-size: 25px;
	box-shadow: 0 12px 22px rgba(43, 115, 186, 0.24);
	transition: all 0.35s ease;
}

.xinterio-feature-icon::after {
	content: '';
	position: absolute;
	inset: -6px;
	border: 1px solid rgba(223, 31, 45, 0.22);
	border-radius: 20px;
	transform: scale(0.8);
	opacity: 0;
	transition: all 0.35s ease;
}

.xinterio-feature-box:hover {
	transform: translateY(-5px);
	border-color: rgba(223, 31, 45, 0.22);
	box-shadow: 0 20px 44px rgba(38, 35, 38, 0.11);
}

.xinterio-feature-box:hover .xinterio-feature-icon {
	background: #262326;
	color: var(--white-color);
	transform: rotateY(180deg);
}

.xinterio-feature-box:hover .xinterio-feature-icon i {
	transform: rotateY(180deg);
}

.xinterio-feature-box:hover .xinterio-feature-icon::after {
	transform: scale(1);
	opacity: 1;
}

.xinterio-feature-content {
	flex: 1;
}

.xinterio-feature-content h3 {
	color: #262326;
	font-size: 19px;
	line-height: 1.25em;
	margin-bottom: 7px;
	text-transform: capitalize;
}

.xinterio-feature-content p {
	color: #60656c;
	font-size: 15px;
	line-height: 1.55em;
	margin-bottom: 0;
}

.xinterio-why-image-col {
	text-align: center;
}

.xinterio-image-box {
	position: relative;
	max-width: 640px;
	margin: 0 auto;
	padding: 6px 10px;
}

.xinterio-image-box::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 52%;
	width: 80%;
	aspect-ratio: 1 / 0.38;
	border-radius: 50%;
	background: linear-gradient(90deg, rgba(223, 31, 45, 0.16), rgba(43, 115, 186, 0.16));
	filter: blur(18px);
	transform: translate(-50%, -50%);
}

.xinterio-image-box img {
	position: relative;
	z-index: 1;
	width: 100%;
	animation: xinterioFloat 4.5s ease-in-out infinite;
}

@keyframes xinterioFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

.glow-process-section {
	position: relative;
	padding: 90px 0;
	background: linear-gradient(135deg, #ffffff 0%, #f8fbff 58%, #fff6f7 100%);
	overflow: hidden;
}

.glow-process-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #e83443 0%, #2b8be0 50%, #e83443 100%);
}

.glow-process-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #e83443 0%, #2b8be0 50%, #e83443 100%);
}

.glow-process-section .container {
	position: relative;
	z-index: 1;
}

.glow-process-layout {
	row-gap: 30px;
}

.glow-process-layout>[class*="col-"] {
	display: flex;
}

.glow-process-layout>[class*="col-"]:first-child {
	position: relative;
}

.glow-process-section .section-title h3 {
	color: #e83443;
}

.glow-process-section .section-title h3::before {
	filter: brightness(0) saturate(100%) invert(36%) sepia(76%) saturate(2292%) hue-rotate(331deg) brightness(93%) contrast(96%);
}

.glow-process-section .section-title h2 span {
	background: linear-gradient(90deg, #e83443, #2b8be0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.glow-process-image {
	position: absolute;
	inset: 0 15px;
	width: auto;
}

.glow-process-image figure {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	box-shadow: 0 24px 60px rgba(25, 35, 36, 0.13);
}

.glow-process-image .reveal {
	display: flex;
	width: 100%;
	height: 100%;
}

.glow-process-image img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
}

.glow-process-content-wrap {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-left: 34px;
}

.glow-process-content-wrap .section-title {
	margin-bottom: 24px;
}

.glow-process-content-wrap .section-title p {
	max-width: 590px;
}

.glow-process-list {
	position: relative;
	padding-left: 32px;
	flex: 1;
}

.glow-process-list::before {
	content: '';
	position: absolute;
	top: 22px;
	left: 70px;
	bottom: 22px;
	width: 1px;
	background: linear-gradient(180deg, rgba(232, 52, 67, 0.12), rgba(43, 139, 224, 0.55), rgba(232, 52, 67, 0.12));
}

.glow-process-card {
	position: relative;
	display: grid;
	grid-template-columns: 92px 1fr 68px;
	align-items: center;
	gap: 18px;
	min-height: 98px;
	margin-bottom: 14px;
	padding: 16px 18px 16px 0;
	border-bottom: 1px solid rgba(43, 115, 186, 0.12);
	transition: all 0.35s ease;
}

.glow-process-card:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

.glow-process-card:hover {
	transform: translateX(8px);
}

.glow-process-count {
	position: relative;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--white-color);
	color: #e83443;
	font-size: 21px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 14px 34px rgba(43, 139, 224, 0.14);
	z-index: 1;
}

.glow-process-icon {
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(232, 52, 67, 0.1), rgba(43, 139, 224, 0.12));
	transition: all 0.35s ease;
}

.glow-process-icon img {
	max-width: 26px;
	filter: brightness(0) saturate(100%) invert(40%) sepia(39%) saturate(682%) hue-rotate(165deg) brightness(90%) contrast(92%);
	transition: all 0.35s ease;
}

.glow-process-card:hover .glow-process-icon {
	background: linear-gradient(135deg, #e83443, #2b8be0);
}

.glow-process-card:hover .glow-process-icon img {
	filter: brightness(0) invert(1);
	transform: scale(1.08);
}

.glow-process-content h3 {
	color: #262326;
	font-size: 22px;
	line-height: 1.25em;
	text-transform: capitalize;
	margin-bottom: 8px;
}

.glow-process-content p {
	color: #555b62;
	font-size: 16px;
	line-height: 1.6em;
	margin-bottom: 0;
}

.luxine-how-works {
	position: relative;
	clear: both;
	padding: 88px 0;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #fff6f6 100%);
	overflow: hidden;
}

.luxine-how-works::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(232, 52, 67, 0.28), rgba(43, 139, 224, 0.28), transparent);
	pointer-events: none;
}

.luxine-how-works .container {
	position: relative;
	z-index: 1;
}

.luxine-how-heading {
	max-width: 880px;
	margin: 0 auto 66px;
	text-align: center;
}

.luxine-how-heading h3 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #e83443;
	font-family: var(--default-font);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6em;
	text-transform: capitalize;
	margin-bottom: 14px;
}

.luxine-how-heading h3::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url('../images/icon-sub-heading.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	filter: brightness(0) saturate(100%) invert(36%) sepia(76%) saturate(2292%) hue-rotate(331deg) brightness(93%) contrast(96%);
}

.luxine-how-heading h2 {
	color: var(--primary-color);
	font-family: var(--default-font);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	text-transform: none;
	margin-bottom: 0;
}

.luxine-how-heading h2 span {
	background: linear-gradient(90deg, #e83443 0%, #2b8be0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.luxine-how-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
}

.luxine-how-tabs {
	background: var(--white-color);
	border-radius: 18px;
	padding: 16px;
}

.luxine-how-tab {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 52px;
	padding: 8px 10px;
	border: 1px solid #dfe8f2;
	border-radius: 8px;
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.18em;
	text-align: left;
	background: var(--white-color);
	margin-bottom: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.luxine-how-tab-thumb {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: 8px;
	overflow: hidden;
	background: #f4f7fb;
	margin-right: 10px;
}

.luxine-how-tab-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.luxine-how-tab-text {
	display: block;
	flex: 1;
}

.luxine-how-tab:last-child {
	margin-bottom: 0;
}


.luxine-how-tab:focus {
	outline: none;
}

.luxine-how-tab:focus-visible {
	border-color: rgba(43, 139, 224, 0.65);
	box-shadow: 0 0 0 4px rgba(43, 139, 224, 0.12);
}

.luxine-detail-top,
.luxine-detail-body,
.luxine-how-photo img {
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.luxine-how-detail.is-changing .luxine-detail-top,
.luxine-how-detail.is-changing .luxine-detail-body,
.luxine-how-photo.is-changing img {
	opacity: 0;
	transform: translateY(8px);
}

.luxine-how-tab.is-active,
.luxine-how-tab:hover {
	border-color: rgba(232, 52, 67, 0.32);
	background: linear-gradient(90deg, rgba(232, 52, 67, 0.08) 0%, rgba(43, 139, 224, 0.08) 100%);
	box-shadow: 0 12px 28px rgba(43, 139, 224, 0.08);
}

.luxine-how-detail {
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 22px;
	background: #eef5fb;
	border-radius: 18px;
	padding: 24px 26px;
}

.luxine-detail-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.luxine-detail-top span {
	color: #050505;
	font-size: 22px;
	font-weight: 800;
	line-height: 1em;
	margin-top: 0;
}

.luxine-detail-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #e83443 0%, #2b8be0 100%);
	color: var(--white-color);
	font-size: 21px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.luxine-detail-body {
	border-top: 1px solid #d4e2ef;
	padding-top: 22px;
}

.luxine-detail-body h3 {
	color: var(--primary-color);
	font-family: var(--default-font);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2em;
	text-transform: capitalize;
	margin-bottom: 12px;
}

.luxine-detail-body p {
	color: var(--text-color);
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	margin-bottom: 18px;
}

.luxine-detail-body a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #050505;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2em;
}

.luxine-detail-body a:hover {
	color: #e83443;
}

.luxine-how-photo,
.luxine-how-photo figure {
	height: 352px;
	min-height: 300px;
}

.luxine-how-photo figure {
	display: block;
	width: 100%;
	border-radius: 18px;
	overflow: hidden;
}

.luxine-how-photo img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: center;
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video .container-fluid {
	padding: 0;
}

.intro-video-box {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.intro-video-image a {
	display: block;
	cursor: none;
}

.intro-video-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.6) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.intro-video-image img {
	width: 100%;
	aspect-ratio: 1 / 0.41;
	object-fit: cover;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.video-play-button a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button a:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/************************************/
/***    09. Latest Project css    ***/
/************************************/

.our-project {
	padding: 100px 0 70px;
}

.glow-project-showcase {
	background: linear-gradient(180deg, #f8f8fb 0%, #ffffff 18%);
}

.glow-project-intro {
	display: block;
	margin-bottom: 40px;
}

.glow-project-intro .section-title {
	margin-bottom: 0;
	text-align: center;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.glow-project-intro .section-title h3,
.glow-project-intro .section-title h2 {
	text-align: center;
}

.our-Project-nav {
	text-align: center;
	margin-bottom: 60px;
}

.glow-project-tabs {
	background: var(--white-color);
	padding: 18px 24px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
	margin-bottom: 36px;
}

.our-Project-nav ul {
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 30px;
	padding: 0;
	margin: 0;
}

.our-Project-nav ul li a {
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	padding: 8px 0;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before {
	content: '';
	position: absolute;
	left: 0px;
	bottom: -8px;
	width: 100%;
	height: 2px;
	background-color: var(--accent-color);
	transform-origin: bottom right;
	transition: transform 0.4s ease-in-out;
	transform: scaleX(0);
}

.our-Project-nav ul li a:after {
	top: -8px;
	bottom: auto;
	left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after {
	transform-origin: bottom left;
	transform: scaleX(1);
}

.project-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
	transform: translateY(0);
	transition: all 0.35s ease-in-out;
}

.project-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.project-featured-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 111.33%);
	z-index: 0;
}

.project-featured-image figure::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(89, 103, 210, 0.08) 0%, rgba(0, 0, 0, 0) 28%);
	z-index: 0;
}

.project-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(20px);
	border-radius: 50%;
	transform: translate(-50%, -30%);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%);
}

.project-btn a {
	width: 100px;
	height: 100px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.project-btn img {
	max-width: 24px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.project-btn a:hover {
	background: var(--primary-color);
}

.project-btn a:hover img {
	transform: rotate(0deg);
}

.project-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.79;
	object-fit: cover;
	transition: transform 0.5s ease-in-out;
}

.project-item:hover .project-featured-image img {
	transform: scale(1.05);
}

.project-content {
	position: absolute;
	left: 28px;
	bottom: 26px;
	right: 28px;
}

.project-content h3,
.project-content h2 {
	color: var(--white-color);
	text-transform: capitalize;
	position: relative;
	z-index: 1;
}

.glow-project-tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1em;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(12px);
	color: var(--white-color);
}

.project-content h3 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
	opacity: 0.9;
}

.project-content h2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25em;
}

.project-content h2 a {
	color: inherit;
}

/************************************/
/***      10. How We Work css     ***/
/************************************/

.how-we-work {
	background: #04152e;
	padding: 100px 0;
}

.how-we-work-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-we-work-item {
	width: calc(25% - 22.5px);
}

.how-we-work-item .icon-box {
	margin-bottom: 30px;
}

.how-we-work-item .icon-box img {
	max-width: 60px;
}

.how-we-work-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.how-we-work-content p {
	color: var(--white-color);
	margin: 0;
}

.how-work-company-slider {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding-top: 60px;
}

.how-work-company-slider .company-logo {
	text-align: center;
}

.how-work-company-slider .company-logo img {
	width: 100%;
	max-height: 40px;
}

/************************************/
/***      11. Our Skills css      ***/
/************************************/

.our-skill {
	padding: 100px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.skills-progress-bar {
	margin-bottom: 40px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skillbar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skill-data .skill-title {
	font-size: 16px;
	text-transform: capitalize;
	color: var(--primary-color);
}

.skill-data .skill-no {
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 20px;
}

.skill-progress {
	width: 100%;
	height: 12px;
	background: var(--divider-color);
	border-radius: 99px;
	position: relative;
}

.skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 99px;
}

.our-skill-image {
	position: relative;
	padding-bottom: 155px;
	margin-left: 65px;
}

.our-skill-img-1 {
	width: 333px;
	position: relative;
	background: url('../images/our-skill-img-bg-dot.svg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 84px auto;
	padding: 30px 0 0 30px;
}

.our-skill-img-1 figure,
.our-skill-img-2 figure,
.our-skill-img-3 figure {
	display: block;
}

.our-skill-img-1 img {
	width: 100%;
	aspect-ratio: 1/1.37;
	object-fit: cover;
}

.our-skill-img-2 {
	width: 202px;
	position: absolute;
	top: 70px;
	right: 0;
}

.our-skill-img-2 img {
	width: 100%;
	aspect-ratio: 1/0.93;
	object-fit: cover;
}

.our-skill-img-3 {
	width: 333px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.our-skill-img-3 img {
	width: 100%;
	aspect-ratio: 1/0.97;
	object-fit: cover;
}

.glow-product-info {
	position: relative;
	padding: 10px 0 100px;
	background-image: radial-gradient(rgba(25, 35, 36, 0.10) 1px, transparent 1px);
	background-size: 24px 24px;
	overflow: hidden;
}

.glow-product-info-row {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: center;
	gap: 30px;
	position: relative;
	margin-bottom: 80px;
}

.glow-product-info-row:last-child {
	margin-bottom: 0;
}

.glow-product-info-content {
	grid-column: 1 / span 7;
	position: relative;
	z-index: 2;
}

.glow-product-info-row-reverse .glow-product-info-content {
	grid-column: 6 / span 7;
	grid-row: 1;
}

.glow-product-info-image {
	grid-column: 7 / span 6;
	grid-row: 1;
	position: relative;
	z-index: 1;
}

.glow-product-info-row-reverse .glow-product-info-image {
	grid-column: 1 / span 6;
}

.glow-product-info-image figure,
.glow-product-info-image .reveal {
	display: block;
	width: 100%;
	visibility: visible;
}

.glow-product-info-image img {
	width: 100%;
	min-height: 430px;
	aspect-ratio: 1 / 0.72;
	object-fit: cover;
	display: block;
}

.glow-product-info .section-title {
	margin-bottom: 24px;
}

.glow-product-info .section-title h3 {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #df1f2d;
}

.glow-product-info .section-title h2 {
	max-width: 660px;
}

.glow-product-info-card {
	background: var(--white-color);
	padding: 42px 46px;
	box-shadow: 0 22px 55px rgba(15, 23, 42, 0.10);
	border: 1px solid rgba(25, 35, 36, 0.06);
}

.glow-product-info-card p {
	margin-bottom: 18px;
}

.glow-product-info-card p:last-of-type {
	margin-bottom: 0;
}

.glow-product-info-card ul {
	list-style: none;
	padding: 22px 0 0;
	margin: 22px 0 0;
	border-top: 1px solid var(--divider-color);
	display: grid;
	gap: 10px;
}

.glow-product-info-card li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 0;
	line-height: 1.55em;
	color: var(--primary-color);
}

.glow-product-info-card li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 1px;
	font-size: 14px;
	color: #df1f2d;
}
.glow-product-suite {
	padding: 0 0 100px;
}

.glow-product-suite-header {
	max-width: 860px;
	margin: 0 auto 44px;
	text-align: center;
}

.glow-product-suite-header .section-title {
	margin-bottom: 18px;
}

.glow-product-suite-header .section-title h3,
.glow-product-suite-header .section-title h2,
.glow-product-suite-header p {
	text-align: center;
}

.glow-product-suite-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 24px;
}

.glow-product-suite-card {
	position: relative;
	grid-column: span 4;
	padding: 30px 28px;
	background: var(--white-color);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}

.glow-product-suite-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #df1f2d 0%, #6f77d8 100%);
}

.glow-product-suite-card-large {
	grid-column: span 5;
}

.glow-product-suite-card-wide {
	grid-column: span 7;
}

.glow-product-suite-card-accent {
	background: #f8f8fb;
}

.glow-product-suite-card-dark {
	background: #0f1722;
	border-color: #0f1722;
}

.glow-product-suite-icon {
	height: 58px;
	width: 58px;
	margin-bottom: 22px;
	border-radius: 50%;
	background: var(--secondery-color);
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.glow-product-suite-card > span {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--accent-color);
}

.glow-product-suite-card h3 {
	font-size: 28px;
	margin-bottom: 12px;
}

.glow-product-suite-card p {
	margin-bottom: 0;
}

.glow-product-suite-card ul {
	list-style: none;
	padding: 0;
	margin: 20px 0 0;
	display: grid;
	gap: 10px;
}

.glow-product-suite-card ul li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 0;
}

.glow-product-suite-card ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 2px;
	color: var(--accent-color);
	font-size: 14px;
}

.glow-product-suite-card-dark .glow-product-suite-icon {
	background: rgba(255, 255, 255, 0.08);
	color: var(--white-color);
}

.glow-product-suite-card-dark > span,
.glow-product-suite-card-dark h3,
.glow-product-suite-card-dark p,
.glow-product-suite-card-dark ul li {
	color: var(--white-color);
}

.glow-product-suite-card-dark ul li::before {
	color: #8ea3ff;
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/

.our-testimonials {
	position: relative;
	background: var(--secondery-color);
}

.our-testimonials::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: rgba(232, 52, 67, 0.18);
}

.our-testimonials .container-fluid {
	padding: 0;
}

.our-testimonials-image {
	height: 100%;
}

.our-testimonials-image figure,
.our-testimonials-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
}

.our-testimonial-content {
	padding: 100px;
}

.our-testimonial-content .section-title {
	background: url('../images/testimonial-quote.svg') no-repeat;
	background-position: top right;
	background-size: 162px auto;
}

.our-testimonial-content .testimonial-process-wrap {
	padding-left: 0;
	justify-content: center;
}

.our-testimonial-content .testimonial-process-wrap .section-title {
	background: none;
	margin-bottom: 24px;
}

.our-testimonial-content .testimonial-process-wrap .section-title h3 {
	color: #e83443;
}

.our-testimonial-content .testimonial-process-wrap .section-title h3::before {
	filter: brightness(0) saturate(100%) invert(36%) sepia(76%) saturate(2292%) hue-rotate(331deg) brightness(93%) contrast(96%);
}

.our-testimonial-content .testimonial-process-wrap .section-title h2 span {
	background: linear-gradient(90deg, #e83443, #2b8be0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.our-testimonial-content .testimonial-process-wrap .glow-process-list {
	padding-left: 0;
}

.our-testimonial-content .testimonial-process-wrap .glow-process-list::before {
	left: 38px;
}

.testimonial-slider {
	width: 100%;
	max-width: 620px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--divider-color);
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child {
	margin-right: 0;
}

.testimonial-content {
	margin-bottom: 40px;
}

.testimonial-content p {
	font-size: 20px;
	color: var(--primary-color);
	margin: 0;
}

.testimonial-body {
	display: flex;
	align-items: center;
}

.testimonial-body .author-image {
	margin-right: 15px;
}

.testimonial-body .author-image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.testimonial-body .author-content {
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-body .author-content p {
	text-transform: capitalize;
	margin: 0;
}

.testimonial-rating-counter {
	display: flex;
	align-items: center;
	gap: 20px;
}

.testimonial-rating-counter .rating-counter h2 {
	font-size: 58px;
}

.testimonial-client-rating {
	display: inline-block;
	background: var(--accent-color);
	padding: 0px 5px 3px 5px;
	line-height: 1em;
}

.testimonial-client-rating i {
	font-size: 10px;
	color: var(--white-color);
}

.testimonial-rating-content p {
	color: var(--primary-color);
	font-weight: 500;
	margin: 0;
}

/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog {
	padding: 100px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	margin-bottom: 20px;
}

.post-featured-image a {
	cursor: none;
}

.post-featured-image figure,
.post-featured-image a {
	display: block;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-content {
	margin-bottom: 15px;
}

.post-item-content h3 {
	color: var(--primary-color);
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h3 a {
	color: inherit;
}

.post-item-btn a {
	position: relative;
	color: var(--primary-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-right: 25px;
}

.post-item-btn a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0px, -50%);
	width: 17px;
	height: 16px;
	background: url('../images/arrow-dark.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after {
	transform: translate(2px, -50%);
}

.our-blog-footer {
	margin-top: 20px;
	text-align: center;
}

/************************************/
/***      	14. Footer css 		  ***/
/************************************/

.main-footer {
	padding: 80px 0 0;
	background: #04152e;
}

.main-footer .footer-header {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.main-footer .footer-header .row {
	justify-content: space-between;
}

.main-footer .footer-logo {
	text-align: left;
}

.main-footer .footer-logo img {
	display: inline-block;
}

.footer-social-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	margin-top: 0;
}

.footer-social-link-title h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
}

.footer-social-links ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-social-links ul li {
	display: inline-flex;
}

.footer-social-links ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	height: 42px;
	width: 42px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i {
	font-size: 17px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
	background: linear-gradient(135deg, #df1f2d 0%, #2b73ba 100%);
	border-color: rgba(255, 255, 255, 0.45);
	transform: translateY(-3px);
}

.footer-social-links ul li a:hover i {
	color: var(--white-color);
}

.footer-links h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	margin-bottom: 10px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li:hover {
	color: #df1f2d;
}

.footer-links ul li a {
	display: block;
	color: inherit;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-contact-item:last-child {
	margin-bottom: 0;
}

.footer-contact-item .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box {
	border-color: var(--white-color);
}

.footer-contact-item .icon-box i {
	font-size: 16px;
	color: var(--white-color);
}

.footer-contact-content {
	width: calc(100% - 50px);
}

.footer-contact-content p {
	color: var(--white-color);
	margin: 0;
}

.footer-newsletter-form p {
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-newsletter-form .form-group {
	display: flex;
	background: var(--white-color);
	overflow: hidden;
}

.footer-newsletter-form .form-group .form-control {
	width: 85%;
	border: none;
	border-radius: 0;
	color: var(--text-color);
	background: transparent;
	padding: 13px 10px;
	box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--text-color);
}

.footer-newsletter-form button {
	background-color: transparent;
	width: 15%;
	border: none;
	padding: 0;
}

.footer-newsletter-form button i {
	color: var(--accent-color);
	font-size: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form button:hover i {
	color: var(--primary-color);
}

.footer-copyright {
	border-top: 1px solid var(--dark-divider-color);
	text-align: center;
	margin-top: 65px;
	padding: 40px 0;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***     15. About Us Page css 	  ***/
/************************************/

.page-header {
	position: relative;
	background: url('../images/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 270px 0 180px;
	margin-top: -118px;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 80px;
	font-weight: 700;
	color: var(--white-color);
	letter-spacing: -0.02em;
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	content: "/";
	font-size: 20px;
	color: var(--white-color);
}

.about-us.page-about-us {
	background: transparent;
}

.about-facility-list {
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-facility-item {
	width: calc(33.33% - 20px);
	display: flex;
}

.about-facility-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.about-facility-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 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-facility-item:hover .icon-box:before {
	transform: scale(1);
}

.about-facility-item .icon-box img {
	max-width: 24px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.about-facility-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.about-facility-content {
	width: calc(100% - 80px);
}

.about-facility-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-facility-content p {
	margin-bottom: 0;
}

.glow-factory-showcase {
	position: relative;
	padding: 100px 0 110px;
	background:
		radial-gradient(circle at 8% 12%, rgba(43, 139, 224, 0.11) 0, rgba(43, 139, 224, 0) 28%),
		radial-gradient(circle at 92% 20%, rgba(232, 52, 67, 0.12) 0, rgba(232, 52, 67, 0) 30%),
		linear-gradient(180deg, #f7fbff 0%, #fff8f9 48%, #ffffff 100%),
		var(--secondery-color);
	border-bottom: 1px solid rgba(25, 35, 36, 0.08);
	box-shadow: inset 0 -45px 70px rgba(43, 139, 224, 0.05);
	overflow: hidden;
}

.glow-factory-showcase::before {
	content: '';
	position: absolute;
	width: 420px;
	height: 420px;
	top: -210px;
	right: -120px;
	border: 1px solid rgba(25, 35, 36, 0.08);
	border-radius: 50%;
	pointer-events: none;
}

.glow-factory-showcase::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 82px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(43, 139, 224, 0.08) 100%);
	border-bottom: 4px solid transparent;
	border-image: linear-gradient(90deg, rgba(232, 52, 67, 0.7), rgba(43, 139, 224, 0.7)) 1;
	pointer-events: none;
}

.glow-factory-showcase .container {
	position: relative;
	z-index: 1;
}

.glow-factory-header .section-title h2 {
	white-space: nowrap;
}

.glow-factory-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	z-index: 1;
}

.glow-factory-card {
	position: relative;
	background:
		linear-gradient(var(--white-color), var(--white-color)) padding-box,
		linear-gradient(135deg, rgba(232, 52, 67, 0.55), rgba(43, 139, 224, 0.55)) border-box;
	border: 1px solid transparent;
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(25, 35, 36, 0.1);
	overflow: hidden;
	transition: all 0.35s ease-in-out;
}

.glow-factory-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #e83443 0%, #2b8be0 100%);
	z-index: 2;
}

.glow-factory-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		url('../images/section-bg-shape-1.svg') no-repeat right -110px bottom -105px / 330px auto,
		linear-gradient(135deg, rgba(232, 52, 67, 0.06), rgba(43, 139, 224, 0.06));
	opacity: 0.42;
	pointer-events: none;
	transition: opacity 0.35s ease-in-out;
}

.glow-factory-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 34px 95px rgba(25, 35, 36, 0.16);
}

.glow-factory-card:hover::after {
	opacity: 0.72;
}

.glow-factory-card figure {
	aspect-ratio: 16 / 9;
	background: var(--primary-color);
}

.glow-factory-card figure::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0.06), rgba(25, 35, 36, 0.18));
	z-index: 1;
	pointer-events: none;
}

.glow-factory-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.45s ease-in-out;
}

.glow-factory-card:hover img {
	transform: scale(1.04);
}

.glow-factory-card-content {
	position: relative;
	padding: 26px 28px 28px;
	z-index: 2;
}

.glow-factory-card-content span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--primary-color);
	color: var(--white-color);
	font-size: 14px;
	font-weight: 700;
}

.glow-factory-card-content h3 {
	position: relative;
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 12px;
	padding-bottom: 14px;
}

.glow-factory-card-content h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 58px;
	height: 3px;
	border-radius: 10px;
	background: linear-gradient(90deg, #e83443, #2b8be0);
}

.glow-factory-card-content p {
	color: #566062;
	margin-bottom: 0;
}

.vision-mission {
	padding: 100px 0 50px;
	background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
}

.vision-mission-box {
	background-color: var(--secondery-color);
	padding: 45px 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 150px;
}

.vision-mission-item {
	position: relative;
	width: calc(50% - 75px);
}

.vision-mission-item::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
	right: -75px;
	bottom: 0;
	background-color: var(--divider-color);
	z-index: 1;
}

.vision-mission-item:nth-child(2n + 2)::before,
.vision-mission-item:last-child::before {
	display: none;
}

.vision-mission-item .icon-box {
	position: relative;
	width: 95px;
	height: 95px;
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.vision-mission-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 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;
}

.vision-mission-item:hover .icon-box:before {
	transform: scale(1);
}

.vision-mission-item .icon-box img {
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.vision-mission-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.vision-mission-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.vision-mission-content p {
	margin: 0;
}

.best-selling {
	background: url(../images/section-bg-shape-1.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 50px 0 100px;
}

.best-selling-content-img {
	margin-bottom: 80px;
}

.best-selling-iamge figure,
.best-selling-content-img figure {
	display: block;
}

.best-selling-content-img img {
	width: 100%;
	aspect-ratio: 1 / 0.42;
	object-fit: cover;
}

.best-selling-content .section-title {
	margin-bottom: 0;
}

.best-selling-iamge img {
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
}

.our-team {
	padding: 100px 0 70px;
}

.team-member-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
}

.team-image a {
	display: block;
	cursor: none;
}

.team-image figure {
	display: block;
}

.team-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.11;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image figure img {
	transform: scale(1.1);
}

.team-readmore-btn {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}

.team-readmore-btn a {
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover {
	background-color: var(--primary-color);
}

.team-readmore-btn img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img {
	transform: rotate(0deg);
}

.team-content {
	text-align: center;
	margin-bottom: 20px;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content p {
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li {
	display: inline-flex;
	margin-right: 10px;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a {
	width: 44px;
	height: 44px;
	color: var(--accent-color);
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	color: var(--white-color);
	background: var(--primary-color);
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 18px;
}

.our-faqs {
	padding: 100px 0;
}

.our-faqs-content {
	margin-right: 70px;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 15px;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	align-items: start;
	padding-right: 35px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span {
	margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed) {
	padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	color: var(--primary-color);
	text-align: right;
	top: 0;
	right: 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	content: '\f068';
}

.faq-accordion .accordion-body {
	padding-right: 35px;
}

.faq-accordion .accordion-body p {
	margin: 0;
}

.our-faqs-image {
	text-align: right;
}

.our-faqs-image figure {
	display: block;
}

.our-faqs-image img {
	width: 100%;
	aspect-ratio: 1 / 1.26;
	object-fit: cover;
}

.our-clients {
	background-color: var(--secondery-color);
	padding: 100px 0;
}

.our-clients .our-clients-box {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.our-client-slider .client-logo {
	text-align: center;
}

.our-client-slider .client-logo img {
	width: 100%;
	max-height: 40px;
}

/************************************/
/***     16. Services Page css 	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

/************************************/
/***    17. Service Single css 	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.service-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.service-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 40px;
	overflow: hidden;
}

.service-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.service-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li {
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
	margin: 0;
}

.service-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.service-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.sidebar-cta-image figure {
	display: block;
}

.sidebar-cta-image img {
	width: 100%;
	aspect-ratio: 1 / 0.57;
	object-fit: cover;
}

.sidebar-cta-Body {
	border: 1px solid var(--divider-color);
	padding: 30px;
}

.sidebar-cta-content {
	margin-bottom: 25px;
}

.sidebar-cta-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.sidebar-cta-content p {
	font-weight: 500;
	margin-bottom: 0;
}

.sidebar-cta-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sidebar-cta-contact-item:last-child {
	margin-bottom: 0;
}

.sidebar-cta-contact-item .icon-box {
	position: relative;
	height: 58px;
	width: 58px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item:hover {
	background-color: transparent;
}

.sidebar-cta-contact-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.sidebar-cta-contact-item .icon-box img {
	position: relative;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.sidebar-cta-contact-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.cta-contact-item-content {
	width: calc(100% - 78px);
}

.cta-contact-item-content p {
	font-weight: 500;
	margin: 0;
}

.service-feature-image {
	margin-bottom: 40px;
}

.service-feature-image figure {
	display: block;
}

.service-feature-image img {
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

.service-entry h2 span {
	color: var(--accent-color);
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.service-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.service-entry-list-image {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.service-entry-image,
.service-entry-list {
	width: calc(50% - 15px);
}

.service-entry-image figure {
	display: block;
}

.service-entry-image img {
	width: 100%;
	aspect-ratio: 1 / 0.615;
	object-fit: cover;
}

.service-entry-list ul {
	margin-bottom: 0;
}

.why-choose-content.service-single-why-choose {
	margin-bottom: 60px;
}

/************************************/
/***     18. Blog Archive css 	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 20px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	color: var(--white-color);
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
}

.post-image figure,
.post-image img {
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1 {
	font-size: 80px;
	letter-spacing: -0.02em;
}

.post-entry h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
}

.post-entry h3 {
	font-size: 46px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url(../images/icon-blockquote.svg), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
	background-size: 58px;
	border-radius: 0;
	padding: 30px 30px 30px 100px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	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-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	width: 36px;
	height: 36px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

.page-project {
	padding: 100px 0 70px;
}

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

.page-project-single {
	padding: 100px 0;
}

.project-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.project-detail-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.project-detail-item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.project-detail-item:last-child {
	margin-bottom: 0;
}

.project-detail-item .icon-box {
	position: relative;
	background-color: var(--divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box::before {
	transform: scale(1);
}

.project-detail-item .icon-box i {
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-detail-item:hover .icon-box i {
	color: var(--white-color);
}

.project-detail-content {
	width: calc(100% - 70px);
}

.project-detail-content h3 {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p {
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

.project-single-image {
	margin-bottom: 40px;
}

.project-single-image figure {
	display: block;
}

.project-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
}

.project-info,
.project-design-info {
	margin-bottom: 60px;
}

.project-entry h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 30px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry p:last-child {
	margin-bottom: 0;
}

.project-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.project-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child {
	margin-bottom: 0;
}

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.project-gallery-images {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.project-gallery-img {
	width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure {
	display: block;
	cursor: none;
}

.project-gallery-img figure img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

/************************************/
/***    22. Image Gallery css 	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.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;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.faq-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.faq-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li {
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child {
	margin-bottom: 0;
}

.faq-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.faq-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion {
	margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child {
	margin-bottom: 0;
}

/************************************/
/***   24. Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0 50px;
}

.contact-us-image {
	height: 100%;
}

.contact-us-image figure {
	height: 100%;
	display: block;
}

.contact-us-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.962;
}

.contact-us-form {
	margin-left: 30px;
}

.glow-contact-page {
	padding-bottom: 60px;
}

.glow-contact-page .row {
	row-gap: 30px;
}

.glow-contact-page .col-lg-5,
.glow-contact-page .col-lg-7 {
	display: flex;
}

.glow-contact-intro {
	height: 100%;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	display: flex;
	flex-direction: column;
}

.glow-contact-intro-image figure {
	margin: 0;
	display: block;
}

.glow-contact-intro-image img {
	aspect-ratio: 1 / 0.86;
}

.glow-contact-intro-content {
	padding: 36px 34px;
}

.glow-contact-intro-content .section-title {
	margin-bottom: 0;
}

.glow-contact-points {
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.glow-contact-points li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	font-weight: 500;
}

.glow-contact-points li i {
	height: 36px;
	width: 36px;
	min-width: 36px;
	background: var(--secondery-color);
	color: var(--accent-color);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.glow-contact-direct-links {
	display: grid;
	gap: 14px;
	margin-top: 32px;
}

.glow-contact-link-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	border: 1px solid var(--divider-color);
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.glow-contact-link-card:hover {
	border-color: var(--accent-color);
	transform: translateY(-3px);
}

.glow-contact-link-card .icon-box {
	height: 52px;
	width: 52px;
	min-width: 52px;
	background: var(--secondery-color);
	color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.glow-contact-link-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.glow-contact-link-content strong {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
}

.glow-contact-link-content span {
	color: var(--text-color);
}

.glow-contact-form-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	width: 100%;
	margin-left: 0;
	padding: 30px 32px;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 8px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.glow-contact-form-panel::before,
.glow-contact-visit-panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #df1f2d 0%, #6f77d8 100%);
}

.glow-contact-form-panel .section-title {
	margin-bottom: 18px;
}

.glow-contact-form-panel .contact-form {
	flex: 1;
}

.glow-contact-form-panel form {
	height: 100%;
}

.glow-contact-form-panel .section-title h3,
.glow-contact-visit-panel .section-title h3 {
	margin-bottom: 10px;
}

.glow-contact-form-panel .section-title h2,
.glow-contact-visit-panel .section-title h2 {
	margin-bottom: 12px;
	font-size: 52px;
}

.glow-contact-form-panel .section-title p {
	margin-bottom: 0;
	max-width: 94%;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;
	background-color: #fbfbfc;
	color: var(--text-color);
	border: 1px solid var(--divider-color);
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 12px 14px;
	transition: all 0.3s ease-in-out;
}

.contact-form .form-control::placeholder {
	font-weight: 400;
}

.contact-form .form-control:focus {
	background: var(--white-color);
	border-color: #d7dceb;
	box-shadow: 0 0 0 4px rgba(111, 119, 216, 0.08);
}

.contact-form textarea.form-control {
	min-height: 104px;
	resize: none;
}

.glow-contact-form-note {
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 1.7em;
	max-width: 540px;
}

.glow-contact-form-panel .form-group.mb-4 {
	margin-bottom: 14px !important;
}

.glow-contact-form-panel .form-group.mb-5 {
	margin-bottom: 20px !important;
}

.google-map {
	padding: 50px 0 100px;
}

.google-map .section-title {
	width: 100%;
	max-width: 560px;
	margin: 0 auto 30px;
	text-align: center;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 500px;
}

.contact-info-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}

.contact-info-item {
	width: calc(33.33% - 20px);
	display: flex;
}

.contact-info-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.contact-info-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box:before {
	transform: scale(1);
}

.contact-info-item .icon-box i {
	position: relative;
	font-size: 20px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box i {
	color: var(--white-color);
}

.contact-info-content {
	width: calc(100% - 80px);
}

.contact-info-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-content p {
	margin-bottom: 0;
}

.glow-contact-map-section {
	padding-top: 0;
}

.glow-contact-visit-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	padding: 30px 30px;
	background: var(--secondery-color);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.glow-contact-visit-panel .section-title {
	max-width: 100%;
	margin: 0 0 18px;
	text-align: left;
}

.glow-contact-visit-panel .section-title p {
	max-width: 100%;
}

.glow-contact-visit-panel .section-title p+p {
	margin-top: 8px;
}

.glow-contact-visit-panel .contact-info-box {
	display: grid;
	flex: 0;
	gap: 12px;
	margin-top: 20px;
}

.glow-contact-visit-panel .contact-info-item {
	width: 100%;
	padding: 12px 16px;
	align-items: flex-start;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
	transition: all 0.3s ease-in-out;
}

.glow-contact-visit-panel .contact-info-item:hover {
	transform: translateY(-4px);
	border-color: rgba(111, 119, 216, 0.28);
}

.glow-contact-visit-panel .contact-info-item .icon-box {
	background: #f7f7fb;
	height: 50px;
	width: 50px;
	min-width: 50px;
	margin-right: 14px;
}

.glow-contact-visit-panel .contact-info-content h3 {
	font-size: 16px;
	margin-bottom: 2px;
}

.glow-contact-visit-panel .contact-info-content a {
	color: var(--text-color);
	text-decoration: none;
}

.glow-contact-visit-panel .contact-info-content p {
	font-size: 14px;
	line-height: 1.5em;
}

.glow-contact-social {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	text-align: center;
}

.glow-contact-social h3 {
	font-size: 15px;
	text-transform: capitalize;
	margin-bottom: 12px;
}

.glow-contact-social ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.glow-contact-social ul li a {
	height: 42px;
	width: 42px;
	border-radius: 50%;
	border: 1px solid var(--divider-color);
	background: var(--white-color);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: all 0.3s ease-in-out;
}

.glow-contact-social ul li a:hover {
	color: var(--white-color);
	background: var(--accent-color);
	border-color: var(--accent-color);
	transform: translateY(-3px);
}

.glow-contact-map-section .section-title {
	max-width: 680px;
}

.glow-contact-map-section .google-map-iframe {
	height: 520px;
	min-height: 520px;
	border: 1px solid var(--divider-color);
}

.glow-contact-map-section .google-map-iframe iframe {
	height: 520px;
	min-height: 520px;
}

/************************************/
/***    25. 404 Error Page css 	  ***/
/************************************/

.error-page {
	background-image: url(../images/error-page-bg.svg);
	background-repeat: no-repeat;
	background-position: top -100px center;
	background-size: auto;
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 50%;
}

.error-page-content {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 20px;
}

.error-page-content-body p {
	font-weight: 500;
	margin-bottom: 20px;
}

/************************************/
/***      26. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px) {

	.our-testimonial-content {
		padding: 100px 50px;
	}
}

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0;
	}

	.our-testimonial-content {
		padding: 50px 20px;
	}
}

@media only screen and (max-width: 991px) {

	.navbar {
		padding: 20px 0;
	}

	.glow-factory-showcase {
		padding: 80px 0 90px;
	}

	.glow-factory-header .section-title h2 {
		white-space: normal;
	}

	.glow-factory-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}

	.glow-factory-card-content {
		padding: 22px 22px 24px;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.btn-default {
		padding: 14px 42px 14px 16px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-row .section-title {
		margin-bottom: 0;
		margin-right: 0px;
	}

	.section-title-content {
		margin-left: 0;
		margin-top: 15px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		margin-bottom: 10px;
	}

	.section-title h1 {
		font-size: 50px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.section-title p {
		margin-top: 15px;
	}

	.hero {
		min-height: auto;
		padding: 180px 0 140px;
		margin-top: -92px;
	}

	.hero.hero-slider-layout {
		--hero-slider-height: 680px;
	}

	.hero.hero-slider-layout .hero-slide {
		padding: 180px 0 140px;
		min-height: var(--hero-slider-height);
		height: 100%;
	}

	.hero.hero-slider-layout .hero-content {
		max-width: 620px;
	}

	.hero.hero-slider-layout .hero-content .section-title h1 {
		font-size: 44px;
	}

	.hero.hero-slider-layout .hero-content .section-title p {
		font-size: 17px;
		max-width: 500px;
		margin-top: 16px;
	}

	.hero.hero-slider-layout .hero-pagination {
		padding-left: 15px;
		bottom: 30px;
	}

	.hero-content .section-title p {
		font-size: 20px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us-images {
		margin: 0 0 30px 0;
	}

	.experience-counter {
		height: 137px;
		width: 137px;
	}

	.experience-counter h3 {
		font-size: 28px;
	}

	.about-us-content-list {
		margin-bottom: 30px;
	}

	.about-contact-item {
		margin-bottom: 30px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-content {
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box {
		margin-right: 10px;
	}

	.why-choose-item-content {
		width: calc(100% - 70px);
	}

	.why-choose-images {
		margin-left: 0;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-image img {
		aspect-ratio: 1 / 1.2;
	}

	.service-btn {
		top: 20px;
		right: 20px;
	}

	.service-btn a {
		height: 50px;
		width: 50px;
	}

	.service-content {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.all-services-btn {
		margin-top: 10px;
	}

	.video-play-button a {
		width: 80px;
		height: 80px;
	}

	.our-project {
		padding: 50px 0 20px;
	}

	.our-Project-nav {
		margin-bottom: 50px;
	}

	.project-featured-image img {
		aspect-ratio: 1 / 0.89;
	}

	.project-btn a {
		width: 80px;
		height: 80px;
	}

	.project-content {
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.how-we-work {
		padding: 50px 0;
	}

	.how-we-work-item {
		width: calc(50% - 15px);
	}

	.how-we-work-item .icon-box {
		margin-bottom: 20px;
	}

	.how-work-company-slider {
		margin-top: 40px;
		padding-top: 40px;
	}

	.our-skill {
		padding: 50px 0;
	}

	.our-skill-content {
		margin-bottom: 30px;
	}

	.skills-progress-bar {
		margin-bottom: 30px;
	}

	.our-skill-image {
		max-width: 555px;
		margin: 0 auto;
	}

	.glow-product-info {
		padding: 0 0 50px;
	}

	.glow-product-info-row,
	.glow-product-info-row-reverse {
		grid-template-columns: 1fr;
		gap: 0;
		margin-bottom: 55px;
	}

	.glow-product-info-content,
	.glow-product-info-row-reverse .glow-product-info-content,
	.glow-product-info-image,
	.glow-product-info-row-reverse .glow-product-info-image {
		grid-column: 1;
		grid-row: auto;
	}

	.glow-product-info-content {
		order: 2;
		margin-top: -55px;
	}

	.glow-product-info-image {
		order: 1;
		max-width: 760px;
	}

	.glow-product-info-card {
		padding: 32px 28px;
	}
	.glow-product-suite {
		padding: 0 0 50px;
	}

	.glow-product-suite-header {
		margin-bottom: 30px;
	}

	.glow-product-suite-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.glow-product-suite-card,
	.glow-product-suite-card-large,
	.glow-product-suite-card-wide {
		grid-column: span 1;
	}

	.our-testimonials-image {
		height: auto;
	}

	.our-testimonials-image figure,
	.our-testimonials-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.our-testimonial-content {
		padding: 50px 15px;
	}

	.our-testimonial-content .section-title {
		background-size: contain;
	}

	.testimonial-slider {
		max-width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.testimonial-rating {
		margin-bottom: 15px;
	}

	.testimonial-content {
		margin-bottom: 30px;
	}

	.testimonial-content p {
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2 {
		font-size: 48px;
	}

	.our-blog {
		padding: 50px 0;
	}

	.our-blog .section-title {
		margin-right: 0;
	}

	.post-featured-image img {
		aspect-ratio: 1 / 0.75;
	}

	.our-blog-footer {
		margin-top: 10px;
	}

	.main-footer {
		padding: 40px 0 0;
	}

	.main-footer .footer-header {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.main-footer .footer-logo {
		text-align: left;
	}

	.footer-links {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.footer-newsletter-form p {
		margin-bottom: 20px;
	}

	.footer-copyright {
		margin-top: 0px;
		padding: 20px 0;
	}

	.page-header {
		padding: 180px 0 100px;
		margin-top: -92px;
	}

	.page-header-box h1 {
		font-size: 50px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 18px;
	}

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
		font-size: 16px;
	}

	.about-facility-list {
		margin-top: 50px;
		gap: 20px;
	}

	.about-facility-item {
		width: calc(33.33% - 13.33px);
	}

	.about-facility-item .icon-box {
		height: 45px;
		width: 45px;
		margin-right: 10px;
	}

	.about-facility-item .icon-box img {
		max-width: 20px;
	}

	.about-facility-content {
		width: calc(100% - 55px);
	}

	.about-facility-content h3 {
		font-size: 18px;
	}

	.vision-mission {
		padding: 50px 0 25px;
	}

	.vision-mission-box {
		padding: 30px 15px;
		gap: 30px 40px;
	}

	.vision-mission-item {
		width: calc(50% - 20px);
	}

	.vision-mission-item::before {
		right: -20px;
	}

	.vision-mission-item .icon-box {
		width: 70px;
		height: 70px;
	}

	.vision-mission-item .icon-box img {
		max-width: 30px;
	}

	.vision-mission-content h3 {
		margin-bottom: 15px;
	}

	.best-selling {
		padding: 25px 0 50px;
	}

	.best-selling-content {
		margin-bottom: 20px;
	}

	.best-selling-content-img {
		margin-bottom: 20px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-readmore-btn {
		top: 20px;
		right: 20px;
	}

	.team-readmore-btn a {
		width: 50px;
		height: 50px;
	}

	.team-content {
		margin-bottom: 15px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.our-faqs-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
	}

	.our-faqs-image {
		text-align: center;
		margin-left: 0px;
	}

	.our-faqs-image img {
		aspect-ratio: 1 / 0.8;
	}

	.our-clients {
		padding: 50px 0;
	}

	.our-clients .our-clients-box {
		max-width: 100%;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.service-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.service-catagery-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3 {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.service-catagery-list ul li {
		margin-bottom: 10px;
	}

	.service-catagery-list ul li a::before {
		width: 16px;
		height: 16px;
	}

	.sidebar-cta-Body {
		padding: 20px;
	}

	.sidebar-cta-content {
		margin-bottom: 15px;
	}

	.sidebar-cta-contact-item {
		margin-bottom: 15px;
	}

	.service-feature-image {
		margin-bottom: 30px;
	}

	.service-entry {
		margin-bottom: 30px;
	}

	.service-entry ul li {
		font-size: 14px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before {
		font-size: 18px;
	}

	.why-choose-content.service-single-why-choose {
		margin-bottom: 30px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry blockquote {
		background-position: 25px 25px;
		background-size: 50px;
		padding: 25px 25px 25px 90px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry h2 {
		font-size: 38px;
	}

	.post-entry ul li {
		font-size: 16px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.post-tags .tag-links a {
		padding: 6px 15px;
	}

	.page-project {
		padding: 50px 0 20px;
	}

	.glow-project-intro {
		margin-bottom: 30px;
	}

	.glow-project-tabs {
		padding: 16px 18px;
		margin-bottom: 30px;
	}

	.page-project-single {
		padding: 50px 0;
	}

	.project-single-sidebar {
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px
	}

	.project-detail-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.project-single-image {
		margin-bottom: 30px;
	}

	.project-info,
	.project-design-info {
		margin-bottom: 30px;
	}

	.project-entry h2 {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.project-content {
		left: 20px;
		right: 20px;
		bottom: 20px;
	}

	.project-content h2 {
		font-size: 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery img {
		aspect-ratio: 1 / 0.85;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.faq-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-catagery-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.faq-catagery-list ul li {
		margin-bottom: 15px;
	}

	.faq-catagery-list ul li a::before {
		width: 16px;
		height: 16px;
	}

	.our-faq-section.page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0 25px;
	}

	.contact-us-image {
		height: auto;
		margin-bottom: 30px;
	}

	.contact-us-image img {
		aspect-ratio: 1 / 0.6;
	}

	.contact-us-form {
		margin-left: 0;
	}

	.glow-contact-page {
		padding-bottom: 50px;
	}

	.glow-contact-intro-content {
		padding: 30px 24px;
	}

	.glow-contact-form-panel {
		padding: 26px 22px;
	}

	.glow-contact-page .col-lg-5,
	.glow-contact-page .col-lg-7 {
		display: block;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.google-map {
		padding: 25px 0 50px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 400px;
	}

	.contact-info-box {
		gap: 20px;
		margin-top: 40px;
	}

	.contact-info-item {
		width: calc(33.33% - 13.33px);
	}

	.contact-info-item .icon-box {
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}

	.contact-info-item .icon-box i {
		font-size: 16px;
	}

	.contact-info-content {
		width: calc(100% - 60px);
	}

	.contact-info-content h3 {
		font-size: 18px;
	}

	.glow-contact-visit-panel {
		padding: 26px 22px;
	}

	.glow-contact-form-panel .section-title h2,
	.glow-contact-visit-panel .section-title h2 {
		font-size: 42px;
	}

	.glow-contact-map-section .google-map-iframe,
	.glow-contact-map-section .google-map-iframe iframe {
		min-height: 420px;
		height: 420px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image img {
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px) {

	.hero.hero-slider-layout {
		--hero-slider-height: 760px;
	}

	.glow-factory-showcase {
		padding: 50px 0 65px;
	}

	.glow-factory-showcase::before {
		width: 260px;
		height: 260px;
		top: -130px;
		right: -120px;
	}

	.glow-factory-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.glow-factory-card-content {
		padding: 20px;
	}

	.glow-factory-card-content span {
		width: 38px;
		height: 38px;
		margin-bottom: 14px;
		font-size: 13px;
	}

	.glow-factory-card-content h3 {
		font-size: 20px;
	}

	.hero.hero-slider-layout .hero-slide {
		padding: 145px 0 115px;
	}

	.hero.hero-slider-layout .hero-content {
		max-width: 100%;
	}

	.hero.hero-slider-layout .hero-content .section-title h3 {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.hero.hero-slider-layout .hero-content .section-title h1 {
		font-size: 28px;
		line-height: 1.18em;
	}

	.hero.hero-slider-layout .hero-content .section-title p {
		font-size: 15px;
		line-height: 1.5em;
		max-width: 330px;
		margin-top: 14px;
	}

	.section-row {
		margin-bottom: 30px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-content .section-title p {
		font-size: 18px;
	}

	.hero-content .btn-default {
		margin-right: 40px;
		margin-bottom: 10px;
	}

	.hero-content .btn-default.btn-highlighted {
		margin: 0;
	}

	.about-us-images {
		background-position: left 10px bottom 10px;
		background-size: 20% auto;
		padding: 10px 45px 100px 0;
	}

	.feedback-counter {
		transform: rotate(-180deg) translate(0, 0);
	}

	.feedback-counter p {
		font-size: 12px;
		height: 38px;
		width: 38px;
		margin: 0 0 6px 0;
	}

	.feedback-counter h3 {
		font-size: 12px;
		width: calc(100% - 40px);
	}

	.about-img-2 {
		max-width: 240px !important;
	}

	.experience-counter {
		height: 102px;
		width: 102px;
	}

	.experience-counter h3 {
		font-size: 22px;
	}

	.experience-counter p {
		font-size: 12px;
		line-height: 1.1em;
	}

	.about-us-content-body {
		gap: 0px;
	}

	.about-us-content-body::before {
		display: none;
	}

	.about-us-content-info {
		width: 100%;
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.about-us-content-list {
		margin-bottom: 20px;
	}

	.about-us-contact-list {
		width: 100%;
	}

	.about-us-content-list ul li {
		margin-bottom: 10px;
	}

	.about-us-content-list ul li::before {
		font-size: 18px;
		top: 3px;
	}

	.about-contact-item {
		margin-bottom: 20px;
	}

	.about-contact-content h3 {
		font-size: 18px;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-img-2 img {
		aspect-ratio: 1 / 1.02;
	}

	.why-choose-img-4 img {
		aspect-ratio: 1 / 1.588;
	}

	.service-content h3 {
		font-size: 18px;
	}

	.intro-video-image img {
		aspect-ratio: 1 / 0.7;
	}

	.project-btn a {
		width: 60px;
		height: 60px;
	}

	.project-btn img {
		max-width: 20px;
	}

	.project-content h2 {
		font-size: 18px;
	}

	.glow-project-intro .section-title h2 {
		font-size: 34px;
	}

	.glow-project-tabs {
		padding: 14px 12px;
	}

	.how-we-work-item {
		width: 100%;
	}

	.how-we-work-item .icon-box img {
		max-width: 50px;
	}

	.how-we-work-content h3 {
		font-size: 18px;
	}

	.how-work-company-slider {
		margin-top: 30px;
		padding-top: 30px;
	}

	.our-skill-image {
		padding-bottom: 83px;
	}

	.our-skill-img-1 {
		width: 200px;
		padding: 20px 0 0 20px;
	}

	.our-skill-img-2 {
		width: 130px;
		top: 20px;
	}

	.our-skill-img-3 {
		width: 200px;
	}

	.glow-product-info {
		padding-bottom: 42px;
		background-size: 20px 20px;
	}

	.glow-product-info-row,
	.glow-product-info-row-reverse {
		margin-bottom: 42px;
	}

	.glow-product-info-content {
		margin-top: -28px;
	}

	.glow-product-info .section-title {
		margin-bottom: 16px;
	}

	.glow-product-info .section-title h3 {
		font-size: 13px;
		margin-bottom: 10px;
	}

	.glow-product-info-image img {
		min-height: 0;
		aspect-ratio: 1 / 0.78;
	}

	.glow-product-info-card {
		padding: 22px 18px;
	}

	.glow-product-info-card p {
		margin-bottom: 14px;
	}

	.glow-product-info-card ul {
		padding-top: 16px;
		margin-top: 16px;
	}
	.glow-product-suite-header .section-title {
		margin-bottom: 14px;
	}

	.glow-product-suite-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.glow-product-suite-card,
	.glow-product-suite-card-large,
	.glow-product-suite-card-wide {
		grid-column: auto;
		padding: 22px 18px;
	}

	.glow-product-suite-card h3 {
		font-size: 24px;
	}

	.testimonial-rating {
		margin-bottom: 10px;
	}

	.testimonial-rating i {
		font-size: 16px;
	}

	.testimonial-content {
		margin-bottom: 20px;
	}

	.testimonial-content p {
		font-size: 16px;
	}

	.testimonial-body .author-content h3 {
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2 {
		font-size: 38px;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-item-content {
		margin-bottom: 10px;
	}

	.post-item-content h3 {
		font-size: 18px;
	}

	.footer-logo {
		margin-bottom: 20px;
	}

	.main-footer .footer-logo {
		text-align: center;
	}

	.footer-social-links {
		justify-content: center;
		gap: 14px;
		margin-top: 18px;
	}

	.footer-social-link-title h3 {
		font-size: 18px;
	}

	.footer-links h3 {
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 5px;
	}

	.main-footer>.container>.row>.col-lg-3.col-md-6 {
		width: 50%;
		flex: 0 0 50%;
	}

	.main-footer .footer-links {
		margin-bottom: 24px;
	}

	.main-footer .footer-links h3 {
		font-size: 17px;
	}

	.main-footer .footer-links ul li,
	.main-footer .footer-contact-content p {
		font-size: 14px;
		line-height: 1.45em;
	}

	.main-footer .footer-contact-item {
		align-items: flex-start;
		margin-bottom: 10px;
	}

	.main-footer .footer-contact-item .icon-box {
		width: 32px;
		height: 32px;
		min-width: 32px;
		margin-right: 8px;
	}

	.main-footer .footer-contact-item .icon-box i {
		font-size: 13px;
	}

	.main-footer .footer-contact-content {
		width: calc(100% - 40px);
	}

	.footer-copyright {
		padding: 15px 0;
	}

	.page-header-box h1 {
		font-size: 28px;
		margin-bottom: 5px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 16px;
	}

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
		font-size: 14px;
	}

	.about-facility-item {
		width: 100%;
	}

	.vision-mission {
		background: linear-gradient(180deg, var(--primary-color) 40%, var(--white-color) 40%);
	}

	.vision-mission-box {
		padding: 20px;
		gap: 40px;
	}

	.vision-mission-item {
		width: 100%;
	}

	.vision-mission-item::before {
		height: 1px;
		width: 100%;
		top: auto;
		right: 0;
		bottom: -20px;
	}

	.vision-mission-item:nth-child(2n + 2)::before {
		display: block;
	}

	.vision-mission-item:last-child::before {
		display: none;
	}

	.vision-mission-content h3 {
		font-size: 18px;
	}

	.team-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding-right: 30px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		top: 2px;
	}

	.faq-accordion .accordion-body {
		padding-right: 0;
	}

	.our-faqs-image img {
		aspect-ratio: 1 / 1.26;
	}

	.service-catagery-list h3 {
		font-size: 18px;
	}

	.sidebar-cta-content h3 {
		font-size: 18px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-feature-image {
		margin-bottom: 20px;
	}

	.service-feature-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry-list-image {
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-list {
		width: 100%;
	}

	.post-image figure,
	.post-image img {
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		padding: 70px 20px 20px 20px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.project-single-image {
		margin-bottom: 20px;
	}

	.project-single-image img {
		aspect-ratio: 1 / 0.7;
	}

	.project-info,
	.project-design-highlight {
		margin-bottom: 20px;
	}

	.project-entry h2 {
		font-size: 26px;
		margin-bottom: 15px;
	}

	.project-entry p {
		margin-bottom: 15px;
	}

	.project-entry ul li {
		margin-bottom: 10px;
	}

	.project-entry ul li::before {
		font-size: 18px;
		top: 5px;
	}

	.project-gallery-images {
		gap: 20px;
	}

	.project-gallery-img {
		width: calc(50% - 10px);
	}

	.contact-us-image img {
		aspect-ratio: 1 / 0.75;
	}

	.glow-contact-intro-image img {
		aspect-ratio: 1 / 0.72;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.contact-info-item {
		width: 100%;
	}

	.glow-contact-form-panel {
		padding: 22px 18px;
	}

	.glow-contact-form-panel .section-title h2,
	.glow-contact-visit-panel .section-title h2 {
		font-size: 34px;
		margin-bottom: 10px;
	}

	.glow-contact-link-card,
	.glow-contact-visit-panel .contact-info-item {
		padding: 14px 14px;
	}

	.glow-contact-link-card .icon-box {
		height: 46px;
		width: 46px;
		min-width: 46px;
		font-size: 16px;
	}

	.glow-contact-map-section .google-map-iframe,
	.glow-contact-map-section .google-map-iframe iframe {
		height: 340px;
		min-height: 340px;
	}

	.error-page-image img {
		max-width: 100%;
	}
}

/* Glow Kraft custom responsive overrides */
@media only screen and (max-width: 991px) {
	.navbar-brand.glow-kraft-logo {
		padding: 6px 10px;
	}

	.navbar-brand.glow-kraft-logo img {
		width: 168px;
		max-height: 42px;
	}

	.xinterio-why-section {
		padding: 60px 0 85px;
	}

	.xinterio-why-header {
		margin-bottom: 40px;
	}

	.glow-process-section {
		padding: 55px 0;
	}

	.glow-process-content-wrap {
		padding-left: 0;
	}

	.glow-process-image {
		position: relative;
		inset: auto;
		width: 100%;
		max-width: 620px;
		height: auto;
		margin: 0 0 35px;
	}

	.glow-process-image figure,
	.glow-process-image .reveal {
		height: auto;
	}

	.glow-process-image img {
		height: auto;
		min-height: 0;
		aspect-ratio: 1 / 0.62;
	}

	.glow-process-list {
		padding-left: 0;
	}

	.glow-process-card {
		min-height: 92px;
	}

	.luxine-how-works {
		padding: 38px 0;
	}

	.luxine-how-heading {
		margin-bottom: 26px;
	}

	.luxine-how-heading h2 {
		font-size: 32px;
	}

	.luxine-how-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.luxine-how-tabs {
		padding: 16px;
	}

	.luxine-how-detail {
		min-height: 250px;
	}

	.luxine-how-photo,
	.luxine-how-photo figure {
		height: 250px;
		min-height: 250px;
	}

	.luxine-how-photo img {
		height: 100%;
		min-height: 0;
		aspect-ratio: 1 / 0.62;
	}

	.xinterio-btn-wrap {
		text-align: left;
		padding-top: 10px;
	}

	.xinterio-why-left,
	.xinterio-why-right {
		margin-top: 25px;
	}

	.xinterio-feature {
		margin-bottom: 25px;
	}

	.xinterio-image-box {
		max-width: 570px;
		margin: 15px auto 25px;
	}

	.glow-unique-gallery {
		padding: 60px 0 0;
	}

	.glow-unique-gallery .section-row {
		margin-bottom: 40px;
	}

	.glow-gallery-container {
		padding: 0 24px 60px;
	}

	.glow-gallery-card,
	.glow-gallery-image,
	.glow-gallery-image img {
		min-height: 320px;
	}
}

@media only screen and (max-width: 767px) {
	.xinterio-why-section {
		padding-bottom: 70px;
	}

	.luxine-how-works {
		padding: 32px 0;
	}

	.luxine-how-heading {
		margin-bottom: 22px;
	}

	.luxine-how-heading h3 {
		margin-bottom: 14px;
	}

	.luxine-how-heading h2 {
		font-size: 26px;
	}

	.luxine-how-tabs,
	.luxine-how-detail {
		border-radius: 14px;
		padding: 14px;
	}

	.luxine-how-tab {
		min-height: auto;
		padding: 9px 10px;
		font-size: 14px;
		margin-bottom: 8px;
	}

	.luxine-how-detail {
		min-height: 230px;
	}

	.luxine-detail-top span {
		font-size: 18px;
		margin-top: 0;
	}

	.luxine-detail-icon {
		width: 48px;
		height: 48px;
		font-size: 18px;
	}

	.luxine-detail-body {
		padding-top: 16px;
	}

	.luxine-detail-body h3 {
		font-size: 20px;
	}

	.luxine-detail-body p {
		font-size: 15px;
	}

	.luxine-how-photo,
	.luxine-how-photo figure,
	.luxine-how-photo img {
		height: 190px;
		min-height: 190px;
	}

	.glow-process-section {
		padding: 45px 0;
	}

	.glow-process-content-wrap .section-title {
		margin-bottom: 22px;
	}

	.glow-process-image {
		margin-bottom: 28px;
	}

	.glow-process-image img {
		min-height: 0;
	}

	.glow-process-card {
		grid-template-columns: 58px 1fr;
		gap: 14px;
		min-height: auto;
		padding: 16px 0;
	}

	.glow-process-count {
		width: 56px;
		height: 56px;
		font-size: 18px;
	}

	.glow-process-icon {
		display: none;
	}

	.glow-process-content h3 {
		font-size: 19px;
	}

	.glow-process-content p {
		font-size: 15px;
	}

	.glow-unique-gallery {
		padding: 50px 0 0;
	}

	.glow-gallery-container {
		padding: 0 15px 50px;
	}

	.glow-gallery-card,
	.glow-gallery-image,
	.glow-gallery-image img {
		min-height: 360px;
	}

	.glow-gallery-content {
		opacity: 1;
		visibility: visible;
		padding: 20px;
	}

	.glow-gallery-actions,
	.glow-gallery-title,
	.glow-gallery-text,
	.glow-gallery-meta {
		transform: none;
	}
}

@media only screen and (max-width: 991px) {
	.navbar {
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 12px;
	}

	.navbar-brand {
		flex: 1 1 auto;
		min-width: 0;
		max-width: calc(100% - 56px);
	}

	.navbar-brand img {
		display: block;
		width: min(220px, calc(100vw - 120px));
		max-width: 100%;
		height: auto;
	}

	.navbar-toggle {
		flex: 0 0 auto;
		margin-left: auto;
	}

	.responsive-menu {
		width: 100%;
	}
}

@media only screen and (max-width: 420px) {
	.navbar {
		padding: 16px 0;
	}

	.navbar-brand img {
		width: min(190px, calc(100vw - 120px));
	}
}

/* Glow Kraft premium team section */
.glow-team-showcase {
	background: var(--secondery-color);
	padding: 100px 0 70px;
}

.about-team-showcase {
	background: #04152e;
}

.about-team-showcase .section-title h3 {
	color: #ff4b5b;
}

.about-team-showcase .section-title h3::before {
	filter: brightness(0) invert(1);
}

.about-team-showcase .section-title h2 {
	color: var(--white-color);
}

.glow-team-showcase-header {
	width: 100%;
	max-width: 760px;
	margin: 0 auto 44px;
	text-align: center;
	display: block;
	align-items: initial;
}

.glow-team-showcase .section-title {
	margin-bottom: 0;
}

.glow-team-showcase .section-title h3,
.glow-team-showcase .section-title h2 {
	text-align: center;
}

.glow-team-simple-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.glow-team-card {
	position: relative;
	display: flex;
	min-height: 100%;
	padding: 34px 24px 32px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
	overflow: hidden;
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.glow-team-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #e83443, #2b8be0);
}

.glow-team-card::after {
	content: "";
	position: absolute;
	right: 22px;
	bottom: 20px;
	width: 48px;
	height: 48px;
	/* border: 1px solid rgba(4, 21, 46, 0.08); */
	border-radius: 50%;
	/* background: radial-gradient(circle, rgba(223, 31, 45, 0.08), transparent 68%); */
}

.glow-team-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.glow-team-card-content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	width: 100%;
	padding: 0;
	text-align: center;
	z-index: 1;
}

.glow-team-card-content>span {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #df1f2d;
	background: rgba(223, 31, 45, 0.09);
	border: 1px solid rgba(223, 31, 45, 0.16);
	border-radius: 999px;
	padding: 7px 14px;
	margin-bottom: 0;
}

.glow-team-card-content h3 {
	font-size: 24px;
	line-height: 1.25em;
	margin-bottom: 16px;
	color: #04152e;
}

.glow-team-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.glow-team-socials a {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--divider-color);
	border: 1px solid var(--divider-color);
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.glow-team-socials a:hover {
	background: #df1f2d;
	border-color: #df1f2d;
	color: var(--white-color);
}

@media only screen and (max-width: 991px) {
	.glow-team-showcase {
		padding: 70px 0 40px;
	}

	.glow-team-showcase-header,
	.glow-team-simple-grid {
		grid-template-columns: 1fr;
	}

	.glow-team-showcase-header,
	.glow-team-simple-grid {
		gap: 24px;
	}
}

@media only screen and (max-width: 767px) {
	.glow-team-showcase-header {
		margin-bottom: 30px;
	}

	.glow-team-card-content {
		padding: 0;
	}

	.glow-team-card-content h3 {
		font-size: 24px;
	}
}
/* Glow Kraft product detail alternate sections */
.glow-product-detail-section {
	position: relative;
	padding: 90px 0;
	background: #f8f8f8;
	background-image: radial-gradient(rgba(25, 35, 36, 0.08) 1px, transparent 1px);
	background-size: 24px 24px;
	overflow: hidden;
}

.glow-product-detail-row {
	display: grid;
	grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
	gap: 64px;
	align-items: center;
	margin-bottom: 86px;
}

.glow-product-detail-row:last-child {
	margin-bottom: 0;
}

.glow-product-detail-row-reverse {
	grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.glow-product-detail-row-reverse .glow-product-detail-image {
	grid-column: 2;
	grid-row: 1;
}

.glow-product-detail-row-reverse .glow-product-detail-content {
	grid-column: 1;
	grid-row: 1;
}

.glow-product-detail-image figure {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 430px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.glow-product-detail-image img {
	width: 100%;
	height: 100%;
	min-height: 430px;
	aspect-ratio: 1 / 0.76;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.glow-product-detail-row:hover .glow-product-detail-image img {
	transform: scale(1.04);
}

.glow-product-detail-content {
	min-width: 0;
}

.glow-product-detail-content .section-title {
	margin-bottom: 22px;
}

.glow-product-detail-content .section-title h3 {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #df1f2d;
}

.glow-product-detail-content .section-title h2 {
	font-size: 44px;
	max-width: 650px;
}

.glow-product-detail-card {
	background: var(--white-color);
	padding: 38px;
	border: 1px solid rgba(25, 35, 36, 0.08);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.glow-product-detail-card p {
	margin-bottom: 0;
	font-size: 17px;
	line-height: 1.7em;
}

.glow-product-detail-card ul {
	list-style: none;
	padding: 22px 0 0;
	margin: 22px 0 0;
	border-top: 1px solid var(--divider-color);
	display: grid;
	gap: 10px;
}

.glow-product-detail-card li {
	position: relative;
	padding-left: 26px;
	margin: 0;
	line-height: 1.55em;
	color: var(--primary-color);
}

.glow-product-detail-card li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 1px;
	font-size: 14px;
	color: #df1f2d;
}

.glow-materials-finishes {
	position: relative;
	padding: 90px 0;
	background:
		linear-gradient(180deg, rgba(4, 21, 46, 0.03) 0%, rgba(255, 255, 255, 0.98) 46%, rgba(223, 31, 45, 0.04) 100%),
		#ffffff;
	overflow: hidden;
	--glow-brand-red: #df1f2d;
	--glow-brand-blue: #2b73ba;
	--glow-brand-navy: #04152e;
}

.glow-materials-finishes::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(43, 115, 186, 0.11) 1px, transparent 1px);
	background-size: 24px 24px;
	pointer-events: none;
}

.glow-materials-finishes::after {
	content: '';
	position: absolute;
	right: -140px;
	bottom: -120px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(43, 115, 186, 0.12) 0%, rgba(223, 31, 45, 0.08) 42%, rgba(255, 255, 255, 0) 70%);
	pointer-events: none;
}

.glow-materials-finishes .container {
	position: relative;
	z-index: 1;
}

.glow-materials-header {
	max-width: 760px;
	margin: 0 auto 42px;
	text-align: center;
}

.glow-materials-header .section-title {
	margin-bottom: 16px;
}

.glow-materials-header .section-title h3 {
	color: #df1f2d;
}

.glow-materials-header .section-title h2 {
	color: var(--primary-color);
	font-size: 44px;
}

.glow-materials-header .section-title h2 span {
	color: #df1f2d;
}

.glow-materials-header p {
	color: var(--text-color);
	font-size: 17px;
	line-height: 1.6em;
	margin: 0;
}

.glow-materials-finishes .glow-materials-header .section-title h3 {
	color: var(--glow-brand-red);
}

.glow-materials-finishes .glow-materials-header .section-title h2 {
	color: var(--glow-brand-navy);
}

.glow-materials-finishes .glow-materials-header .section-title h2 span {
	background: linear-gradient(90deg, var(--glow-brand-red) 0%, var(--glow-brand-blue) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.glow-materials-finishes .glow-materials-header p {
	color: #4c596a;
}

.glow-finish-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 26px;
}

.glow-finish-card {
	--card-accent: var(--glow-brand-red);
	--card-accent-rgb: 223, 31, 45;
	position: relative;
	flex: 0 1 calc((100% - 52px) / 3);
	min-width: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	isolation: isolate;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.96) 100%);
	border: 1px solid rgba(var(--card-accent-rgb), 0.2);
	border-radius: 8px;
	box-shadow: 0 20px 48px rgba(4, 21, 46, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glow-finish-card:nth-child(2),
.glow-finish-card:nth-child(4) {
	--card-accent: var(--glow-brand-blue);
	--card-accent-rgb: 43, 115, 186;
}

.glow-finish-card:nth-child(3) {
	--card-accent: var(--glow-brand-navy);
	--card-accent-rgb: 4, 21, 46;
}

.glow-finish-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--glow-brand-red) 0%, var(--card-accent) 52%, var(--glow-brand-blue) 100%);
	z-index: 2;
	pointer-events: none;
}

.glow-finish-card::after {
	display: none;
	content: '';
	position: absolute;
	top: 18px;
	right: 18px;
	width: 34px;
	height: 34px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
		linear-gradient(135deg, var(--glow-brand-red), var(--glow-brand-blue));
	border: 1px solid rgba(var(--card-accent-rgb), 0.42);
	box-shadow: 0 10px 26px rgba(4, 21, 46, 0.16);
	transform: rotate(45deg);
	z-index: 3;
	pointer-events: none;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.glow-finish-card:hover {
	transform: translateY(-6px);
	border-color: rgba(var(--card-accent-rgb), 0.36);
	box-shadow: 0 28px 62px rgba(4, 21, 46, 0.14);
}

.glow-finish-card:hover::after {
	transform: rotate(45deg) scale(1.08);
	border-color: rgba(var(--card-accent-rgb), 0.64);
}

.glow-finish-card figure {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 0.66;
	overflow: hidden;
	margin: 0;
	background: #eef4fb;
	border-bottom: 1px solid rgba(var(--card-accent-rgb), 0.16);
}

.glow-finish-card figure::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(4, 21, 46, 0) 48%, rgba(4, 21, 46, 0.26) 100%),
		linear-gradient(135deg, rgba(var(--card-accent-rgb), 0.18) 0%, rgba(255, 255, 255, 0) 38%);
	pointer-events: none;
}

.glow-finish-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.35s ease;
}

.glow-finish-card:hover img {
	transform: scale(1.04);
}

.glow-finish-card h3 {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--glow-brand-navy);
	font-size: 21px;
	font-weight: 800;
	line-height: 1.25em;
	margin: 24px 24px 10px;
}

.glow-finish-card h3::before {
	content: '';
	width: 12px;
	height: 12px;
	flex: 0 0 12px;
	background: linear-gradient(135deg, var(--glow-brand-red) 0%, var(--card-accent) 52%, var(--glow-brand-blue) 100%);
	border-radius: 2px;
	box-shadow: 0 5px 14px rgba(var(--card-accent-rgb), 0.28);
	transform: rotate(45deg);
}

.glow-finish-card p {
	position: relative;
	z-index: 1;
	flex: 1;
	color: #526071;
	font-size: 15px;
	line-height: 1.65em;
	margin: 0 24px 26px;
}

.glow-premium-materials {
	position: relative;
	padding: 70px 0;
	background:
		linear-gradient(135deg, rgba(4, 21, 46, 0.05) 0%, rgba(255, 255, 255, 0.95) 42%, rgba(43, 115, 186, 0.1) 100%),
		#f7faff;
	overflow: hidden;
	--glow-brand-red: #df1f2d;
	--glow-brand-blue: #2b73ba;
	--glow-brand-navy: #04152e;
	--glow-brand-ink: #192324;
}

.glow-premium-materials::before,
.glow-premium-materials::after {
	content: '';
	position: absolute;
	width: 420px;
	height: 210px;
	border: 1px solid rgba(43, 115, 186, 0.18);
	border-radius: 50%;
	pointer-events: none;
}

.glow-premium-materials::before {
	top: -72px;
	left: -70px;
	background: radial-gradient(circle, rgba(223, 31, 45, 0.12) 0%, rgba(223, 31, 45, 0) 68%);
}

.glow-premium-materials::after {
	top: -88px;
	right: -80px;
	background: radial-gradient(circle, rgba(43, 115, 186, 0.14) 0%, rgba(43, 115, 186, 0) 70%);
}

.glow-premium-materials .container {
	position: relative;
	z-index: 1;
}

.glow-premium-materials .glow-materials-header {
	max-width: 820px;
	margin-bottom: 36px;
}

.glow-premium-materials .glow-materials-header .section-title h3 {
	color: var(--glow-brand-red);
}

.glow-premium-materials .glow-materials-header .section-title h2 {
	color: var(--glow-brand-navy);
}

.glow-premium-materials .glow-materials-header .section-title h2 span {
	background: linear-gradient(90deg, var(--glow-brand-red) 0%, var(--glow-brand-blue) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.glow-premium-materials .glow-materials-header p {
	color: #4c596a;
}

.glow-premium-materials-header {
	max-width: 760px;
	margin: 0 auto 26px;
	text-align: center;
}

.glow-premium-materials-header > span {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #df1f2d;
	font-size: 14px;
	font-weight: 800;
	line-height: 1em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.glow-premium-materials-header > span::before,
.glow-premium-materials-header > span::after {
	content: '';
	width: 44px;
	height: 1px;
	background: rgba(223, 31, 45, 0.45);
}

.glow-premium-materials-header h2 {
	color: var(--primary-color);
	font-size: 44px;
	font-weight: 700;
	line-height: 1.1em;
	margin-bottom: 10px;
}

.glow-premium-materials-header h2 strong {
	color: #df1f2d;
	font-weight: inherit;
}

.glow-premium-materials-header p {
	color: var(--text-color);
	font-size: 17px;
	line-height: 1.6em;
	margin: 0 auto;
}

.glow-premium-materials-main {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 28px;
	align-items: stretch;
}

.glow-material-showcase {
	position: relative;
	min-height: 280px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(43, 115, 186, 0.16);
	box-shadow: 0 28px 70px rgba(4, 21, 46, 0.18);
}

.glow-material-showcase::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 21, 46, 0) 48%, rgba(4, 21, 46, 0.22) 100%);
	pointer-events: none;
}

.glow-material-showcase figure,
.glow-material-showcase img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 280px;
}

.glow-material-showcase img {
	object-fit: cover;
	object-position: center;
}

.glow-material-showcase ul {
	position: absolute;
	left: 28px;
	bottom: 28px;
	list-style: none;
	width: min(270px, calc(100% - 56px));
	padding: 22px 24px;
	margin: 0;
	background: rgba(25, 35, 36, 0.64);
	backdrop-filter: blur(10px);
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2);
}

.glow-material-showcase li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--white-color);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25em;
	margin-bottom: 16px;
}

.glow-material-showcase li:last-child {
	margin-bottom: 0;
}

.glow-material-showcase li i {
	width: 22px;
	color: var(--glow-brand-blue);
	font-size: 17px;
	text-align: center;
}

.glow-material-feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.glow-material-feature-card {
	position: relative;
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	min-height: 132px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(43, 115, 186, 0.13);
	border-radius: 8px;
	box-shadow: 0 18px 42px rgba(4, 21, 46, 0.09);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.glow-material-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--glow-brand-red) 0%, var(--glow-brand-blue) 100%);
	opacity: 0.85;
}

.glow-material-feature-card:hover {
	transform: translateY(-4px);
	border-color: rgba(223, 31, 45, 0.2);
	box-shadow: 0 24px 54px rgba(4, 21, 46, 0.14);
}

.glow-material-feature-card-wide {
	grid-column: span 2;
	min-height: 120px;
}

.glow-material-feature-icon {
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(223, 31, 45, 0.12) 0%, rgba(43, 115, 186, 0.1) 100%);
	color: var(--glow-brand-blue);
	font-size: 28px;
}

.glow-material-feature-card:nth-child(2n) .glow-material-feature-icon {
	background: linear-gradient(135deg, rgba(43, 115, 186, 0.15) 0%, rgba(4, 21, 46, 0.08) 100%);
	color: var(--glow-brand-blue);
}

.glow-material-feature-card:nth-child(3n) .glow-material-feature-icon {
	background: linear-gradient(135deg, rgba(223, 31, 45, 0.13) 0%, rgba(4, 21, 46, 0.08) 100%);
	color: var(--glow-brand-blue);
}

.glow-material-feature-card h3 {
	color: var(--glow-brand-navy);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.2em;
	margin-bottom: 6px;
}

.glow-material-feature-card span {
	display: block;
	color: var(--glow-brand-red);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3em;
	margin-bottom: 8px;
}

.glow-material-feature-card p {
	color: #526071;
	font-size: 14px;
	line-height: 1.6em;
	margin: 0;
}

.glow-material-promise {
	display: grid;
	grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
	gap: 24px;
	align-items: center;
	margin-top: 24px;
	padding: 24px 28px;
	background: linear-gradient(135deg, var(--glow-brand-navy) 0%, #0a2b5c 58%, var(--glow-brand-blue) 100%);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	box-shadow: 0 28px 70px rgba(4, 21, 46, 0.22);
}

.glow-material-promise-copy {
	padding-right: 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.glow-material-promise-copy span {
	display: block;
	color: #de212e;
	font-size: 13px;
	font-weight: 800;
	line-height: 1em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.glow-material-promise-copy h3 {
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2em;
	margin-bottom: 14px;
}

.glow-material-promise-copy h3 strong {
	display: block;
	/* color: #ff6b75; */
	font-weight: inherit;
}

.glow-material-promise-copy p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	line-height: 1.65em;
	margin: 0;
}

.glow-material-promise-points {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
	text-align: center;
}

.glow-material-promise-points div {
	min-width: 0;
}

.glow-material-promise-points i {
	display: block;
	color: var(--glow-brand-blue);
	font-size: 28px;
	line-height: 1em;
	margin-bottom: 12px;
}

.glow-material-promise-points strong,
.glow-material-promise-points span {
	display: block;
}

.glow-material-promise-points strong {
	color: var(--white-color);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25em;
	margin-bottom: 3px;
}

.glow-material-promise-points span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	line-height: 1.35em;
}

@media only screen and (max-width: 991px) {
	.glow-product-detail-section {
		padding: 65px 0;
	}

	.glow-product-detail-row,
	.glow-product-detail-row-reverse {
		grid-template-columns: 1fr;
		gap: 28px;
		margin-bottom: 58px;
	}

	.glow-product-detail-row-reverse .glow-product-detail-image,
	.glow-product-detail-row-reverse .glow-product-detail-content {
		grid-column: 1;
		grid-row: auto;
	}

	.glow-product-detail-image figure,
	.glow-product-detail-image img {
		min-height: 340px;
		aspect-ratio: 1 / 0.62;
	}

	.glow-product-detail-content .section-title h2 {
		font-size: 38px;
	}

	.glow-materials-finishes {
		padding: 65px 0;
	}

	.glow-materials-header .section-title h2 {
		font-size: 38px;
	}

	.glow-finish-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.glow-finish-card {
		flex-basis: calc((100% - 26px) / 2);
	}

	.glow-premium-materials {
		padding: 60px 0;
	}

	.glow-premium-materials .glow-materials-header .section-title h2,
	.glow-premium-materials-header h2 {
		font-size: 38px;
	}

	.glow-premium-materials-main,
	.glow-material-promise {
		grid-template-columns: 1fr;
	}

	.glow-material-showcase,
	.glow-material-showcase figure,
	.glow-material-showcase img {
		min-height: 210px;
	}

	.glow-material-promise-copy {
		padding-right: 0;
		padding-bottom: 24px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	}

	.glow-material-promise-points {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 767px) {
	.glow-product-detail-section {
		padding: 50px 0;
		background-size: 20px 20px;
	}

	.glow-product-detail-row,
	.glow-product-detail-row-reverse {
		gap: 22px;
		margin-bottom: 44px;
	}

	.glow-product-detail-image figure,
	.glow-product-detail-image img {
		min-height: 240px;
		aspect-ratio: 1 / 0.72;
	}

	.glow-product-detail-content .section-title {
		margin-bottom: 16px;
	}

	.glow-product-detail-content .section-title h3 {
		font-size: 13px;
		margin-bottom: 10px;
	}

	.glow-product-detail-content .section-title h2 {
		font-size: 28px;
	}

	.glow-product-detail-card {
		padding: 22px 18px;
	}

	.glow-product-detail-card p {
		font-size: 15px;
	}

	.glow-product-detail-card ul {
		padding-top: 16px;
		margin-top: 16px;
	}

	.glow-materials-finishes {
		padding: 50px 0;
	}

	.glow-materials-header {
		margin-bottom: 26px;
	}

	.glow-materials-header .section-title h3 {
		font-size: 13px;
	}

	.glow-materials-header .section-title h2 {
		font-size: 30px;
	}

	.glow-materials-header p {
		font-size: 15px;
	}

	.glow-finish-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.glow-finish-card {
		flex-basis: 100%;
	}

	.glow-finish-card figure {
		aspect-ratio: 1 / 0.62;
	}

	.glow-finish-card::after {
		top: 14px;
		right: 14px;
		width: 28px;
		height: 28px;
	}

	.glow-finish-card h3 {
		font-size: 20px;
		margin: 20px 18px 8px;
	}

	.glow-finish-card p {
		margin: 0 18px 22px;
	}

	.glow-premium-materials {
		padding: 48px 0;
	}

	.glow-premium-materials .glow-materials-header {
		margin-bottom: 24px;
	}

	.glow-premium-materials-header {
		margin-bottom: 20px;
	}

	.glow-premium-materials-header > span {
		font-size: 12px;
		gap: 10px;
		margin-bottom: 12px;
	}

	.glow-premium-materials-header > span::before,
	.glow-premium-materials-header > span::after {
		width: 26px;
	}

	.glow-premium-materials .glow-materials-header .section-title h2,
	.glow-premium-materials-header h2 {
		font-size: 30px;
	}

	.glow-premium-materials .glow-materials-header p,
	.glow-premium-materials-header p {
		font-size: 15px;
	}

	.glow-premium-materials-main {
		gap: 22px;
	}

	.glow-material-showcase,
	.glow-material-showcase figure,
	.glow-material-showcase img {
		min-height: 165px;
	}

	.glow-material-showcase ul {
		position: static;
		width: 100%;
		background: #192324;
		box-shadow: none;
	}

	.glow-material-feature-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.glow-material-feature-card,
	.glow-material-feature-card-wide {
		grid-column: span 1;
		grid-template-columns: 56px minmax(0, 1fr);
		min-height: auto;
		padding: 20px;
	}

	.glow-material-feature-icon {
		width: 54px;
		height: 54px;
		font-size: 22px;
	}

	.glow-material-promise {
		gap: 22px;
		margin-top: 22px;
		padding: 24px 20px;
	}

	.glow-material-promise-copy h3 {
		font-size: 24px;
	}

	.glow-material-promise-points {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 14px;
	}
}
/* Glow Kraft home centered headers */
.glow-home-center-header {
	justify-content: center;
	text-align: center;
}

.glow-home-center-header .section-title,
.glow-home-center-header .xinterio-heading {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	text-align: center;
}

.our-services .glow-home-center-header .section-title {
	max-width: 1120px;
	margin-right: auto;
}

.our-services .glow-home-center-header .section-title h3,
.our-services .glow-home-center-header .section-title h2,
.our-services .glow-home-center-header .section-title p {
	text-align: center;
}

.our-services .glow-home-center-header .section-title p {
	max-width: 820px;
	margin: 22px auto 0;
	color: var(--white-color);
}

.xinterio-why-header.glow-home-center-header {
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.xinterio-why-header.glow-home-center-header .xinterio-heading {
	margin-bottom: 0;
}

.xinterio-why-header.glow-home-center-header .section-title h3 {
	padding-left: 35px;
}

.xinterio-why-header.glow-home-center-header .section-title h3::before {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.xinterio-why-header.glow-home-center-header .xinterio-heading-desc {
	max-width: 760px;
	margin: 18px auto 0;
	text-align: center;
}

.xinterio-why-header.glow-home-center-header .xinterio-btn-wrap {
	padding-top: 26px;
	text-align: center;
}

@media only screen and (min-width: 1200px) {
	.our-services .glow-home-center-header .section-title h2,
	.xinterio-why-header.glow-home-center-header .xinterio-title {
		white-space: nowrap;
	}
}

@media only screen and (max-width: 767px) {
	.our-services .glow-home-center-header .section-title p,
	.xinterio-why-header.glow-home-center-header .xinterio-heading-desc {
		margin-top: 14px;
	}

	.xinterio-why-header.glow-home-center-header .xinterio-btn-wrap {
		padding-top: 18px;
	}
}

/* Glow Kraft contact equal card structure */
.glow-contact-page>.container>.row {
	align-items: stretch;
}

.glow-contact-page>.container>.row>.col-lg-5,
.glow-contact-page>.container>.row>.col-lg-7 {
	display: flex;
}

.glow-contact-visit-panel,
.glow-contact-form-panel {
	min-height: 100%;
}

.glow-contact-visit-panel {
	justify-content: flex-start;
}

.glow-contact-visit-panel .section-title {
	margin-bottom: 24px;
}

.glow-contact-visit-panel .contact-info-box {
	flex: 1;
	display: grid;
	grid-template-rows: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 0;
}

.glow-contact-visit-panel .contact-info-item {
	min-height: 0;
	height: 100%;
	align-items: center;
	padding: 18px 18px;
}

.glow-contact-visit-panel .contact-info-content {
	flex: 1;
	min-width: 0;
	width: auto;
}

.glow-contact-visit-panel .contact-info-content p,
.glow-contact-form-panel .section-title h2,
.glow-contact-visit-panel .section-title h2 {
	overflow-wrap: anywhere;
	white-space: normal;
}

.glow-contact-form-panel {
	justify-content: flex-start;
}

@media only screen and (max-width: 991px) {
	.glow-contact-page>.container>.row>.col-lg-5,
	.glow-contact-page>.container>.row>.col-lg-7 {
		display: block;
	}

	.glow-contact-visit-panel,
	.glow-contact-form-panel {
		min-height: auto;
	}

	.glow-contact-form-panel .section-title h2,
	.glow-contact-visit-panel .section-title h2 {
		line-height: 1.14em;
	}

	.glow-contact-visit-panel .contact-info-box {
		grid-template-rows: none;
	}
}

/* Floating WhatsApp and phone dialers */
.btn-whatsapp-pulse,
.btn-phone-pulse {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	padding: 0;
	border-radius: 50%;
	color: #ffffff;
	text-decoration: none;
	z-index: 9999;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.btn-whatsapp-pulse {
	left: 6px;
	bottom: 16px;
	background: #25d366;
	font-size: 30px !important;
	animation: glow-whatsapp-pulse 1.5s ease-out infinite;
}

.btn-phone-pulse {
	right: 6px;
	bottom: 16px;
	background: #fcb412;
	font-size: 40px;
	animation: glow-phone-pulse 1.5s ease-out infinite;
}

.btn-whatsapp-pulse:hover,
.btn-phone-pulse:hover {
	color: #ffffff;
	text-decoration: none;
}

.btn-whatsapp-pulse i,
.btn-phone-pulse i {
	position: relative;
	z-index: 1;
	line-height: 1;
	color: #ffffff;
}

.btn-whatsapp-pulse i {
	animation: glow-dialer-spin 4s linear infinite;
}

.btn-whatsapp-pulse-border {
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before,
.btn-phone-pulse-border::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	opacity: 0.75;
	transform: scale(1);
	animation: glow-pulse-border 1.5s ease-out infinite;
	pointer-events: none;
}

.btn-whatsapp-pulse-border::before {
	border: 5px solid #25d366;
}

.btn-phone-pulse-border::before {
	border: 5px solid #fcb412;
}

@keyframes glow-whatsapp-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}

	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

@keyframes glow-phone-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(252, 180, 18, 0.55);
	}

	80% {
		box-shadow: 0 0 0 14px rgba(252, 180, 18, 0);
	}
}

@keyframes glow-pulse-border {
	0% {
		opacity: 0.75;
		transform: scale(0.82);
	}

	75% {
		opacity: 0;
		transform: scale(1.55);
	}

	100% {
		opacity: 0;
		transform: scale(1.55);
	}
}

@keyframes glow-dialer-spin {
	100% {
		transform: rotate(-25deg);
	}
}

@media only screen and (max-width: 575px) {
	.btn-whatsapp-pulse,
	.btn-phone-pulse {
		width: 60px;
		height: 60px;
	}

	.btn-whatsapp-pulse {
		font-size: 26px !important;
	}

	.btn-phone-pulse {
		font-size: 32px;
	}
}
