/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Custom Variable Colors */
:root {
	/* Colors */
	--bx-white-color: #fff;
	--bx-offwhite-color: #f6f9f2;
	--bx-paragraph-color: #4b5563;
	--bx-border-color: #e5eadf;
	--bx-muted-color: #9ca3af;

	/* Typography */
	--bx-font-1: "Plus Jakarta Sans", sans-serif;
	--bx-font-2: "Inter", sans-serif;

	/* Type scale */
	--text-xs: 11px;
	--text-sm: 13px;
	--text-base: 15px;
	--text-md: 17px;
	--text-lg: 20px;
	--text-xl: 24px;
	--text-2xl: 30px;
	--text-3xl: 38px;
	--text-4xl: 48px;
	--text-hero: 58px;
}

*,
*::after *::before {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Selection CSS */
::-moz-selection {
	color: var(--bx-white-color);
	background: var(--bx-primary-color);
}

::selection {
	color: var(--bx-white-color);
	background: var(--bx-primary-color);
}

/* ScrollBar CSS */
::-webkit-scrollbar {
	width: 8px !important;
	height: 8px !important;
	display: block;
}

::-moz-scrollbar {
	width: 8px !important;
	height: 8px !important;
	display: block;
}

::-ms-scrollbar {
	width: 8px !important;
	height: 8px !important;
}

::-webkit-scrollbar-thumb {
	cursor: pointer !important;
	background: var(--bx-primary-color) !important;
	border-radius: 4px;
}

/* Main Body CSS */
body {
	font-family: var(--bx-font-2);
	background: var(--bx-white-color);
	color: var(--bx-paragraph-color);
	font-size: var(--text-base);
	font-weight: 400;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html {
	font-family: var(--bx-font-2);
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--bx-font-1);
	color: var(--bx-title-color);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.02em;
}

h1 {
	font-size: var(--text-hero);
}

h2 {
	font-size: var(--text-4xl);
}

h3 {
	font-size: var(--text-3xl);
}

h4 {
	font-size: var(--text-xl);
}

h5 {
	font-size: var(--text-lg);
}

h6 {
	font-size: var(--text-md);
}

p {
	font-size: var(--text-base);
	line-height: 1.7;
	color: var(--bx-paragraph-color);
}

small,
.small {
	font-size: var(--text-sm);
}

html,
body {
	height: 100%;
	margin: 0;
}

/* Main Container */
.bx-container {
	max-width: 1690px;
	margin: auto;
	padding: 0;
}

.bx-container-expand {
	max-width: 1760px;
	margin: auto;
	padding: 0;
}

.bx-container-xxl {
	max-width: 1570px;
	margin: auto;
	padding: 0;
}

.bx-container-fluid {
	padding: 0;
	padding: 0px 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1700px) {

	.bx-container-expand,
	.bx-container-xxl,
	.bx-container {
		padding: 0px 24px;
	}
}

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

	.bx-container,
	.bx-container-fluid,
	.bx-container-expand,
	.bx-container-xxl {
		padding: 0% 5%;
	}
}

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

	.bx-container,
	.bx-container-fluid,
	.bx-container-expand,
	.bx-container-xxl {
		padding: 0% 10%;
	}
}

/* Theme Typhography */
img {
	max-width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	text-decoration: none;
}

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

.animated:focus-visible {
	outline: none;
}

.table {
	display: table;
	width: 100%;
	height: 100%;
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	transition: all 0.4s ease;
}

button:focus-visible {
	outline: none;
}

input:focus-visible {
	outline: none;
}

textarea:focus-visible {
	outline: none;
}

button {
	overflow: visible;
	border: none !important;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

.btn-close:focus {
	box-shadow: none;
}

button,
input,
select,
optgroup,
textarea {
	font-family: var(--bx-font-2);
	color: var(--bx-paragraph-color);
	font-weight: 500;
	font-size: var(--text-base);
	line-height: 160%;
}

.c-font,
.c-font a {
	font-family: var(--bx-font-2);
}

a,
button,
input,
textarea {
	font-weight: 400;
}

img,
a,
input,
h1,
h2,
h3,
h4,
h5,
h6,
p {
	transition: all 0.4s ease;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: var(--bx-border-color);

	font-size: var(--text-base);
	font-size: var(--text-base);
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: var(--bx-font-2);
	font-size: var(--text-base);
	font-size: var(--text-base);
}

abbr,
acronym {
	border-bottom: 1px dotted var(--bx-border-color);
	cursor: help;
}

mark,
ins {
	background: var(--bx-white-color) 9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth !important;
}

hr {
	background-color: var(--bx-border-color);
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ul li,
li {
	list-style-type: disc;
	list-style: none;
	padding: 0;
	margin: 0;
}

a {
	display: inline-block;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: var(--bx-border-color) var(--bx-border-color) var(--bx-border-color);
	border-radius: 3px;
	background: var(--bx-white-color);
	color: var(--bx-paragraph-color);
	line-height: 1;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: var(--bx-paragraph-color);
	border: 1px solid var(--bx-border-color);
	border-radius: 4px;
	padding: 12px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #393e46;
}

input[type="number"] {
	-moz-appearance: textfield;
}

select {
	border: 1px solid var(--bx-border-color);
}

textarea {
	width: 100%;
}

a {
	color: inherit;
}

a:hover,
a:focus,
a:active {
	color: var(--bx-primary-color);
}

a:hover,
a:active {
	outline: 0;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--bx-white-color);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	color: var(--bx-secondary-color);
	display: block;
	font-size: var(--text-sm);
	font-size: var(--text-sm);
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

#content[tabindex="-1"]:focus {
	outline: 0;
}

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

embed,
iframe,
object {
	max-width: 100%;
}

.custom-logo-link {
	display: inline-block;
}

/* Heading Title */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 15px;
}

h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a {
	font-family: var(--bx-font-1);
	color: var(--bx-secondary-color);
	font-weight: 700;
	line-height: 130%;
}

h1 {
	font-size: var(--text-hero);
}

h2 {
	font-size: var(--text-hero);
}

h3 {
	font-size: var(--text-4xl);
}

h4 {
	font-size: var(--text-3xl);
}

h5 {
	font-size: var(--text-2xl);
}

h6 {
	font-size: var(--text-lg);
}

/* Paragraph Text */
p {
	color: var(--bx-paragraph-color);
	margin: 0;
	line-height: 28px;
	font-weight: 400;
	font-size: var(--text-base);
	margin: 0;
}

@media only screen and (max-width: 767px) {
	p {
		font-size: 15px !important;
	}
}

/* Cutom Padding */
.pd-top-10 {
	padding-top: 10px;
}

.pd-top-20 {
	padding-top: 20px;
}

.pd-top-30 {
	padding-top: 30px;
}

.pd-top-40 {
	padding-top: 40px;
}

.pd-top-50 {
	padding-top: 50px;
}

.pd-top-55 {
	padding-top: 55px;
}

.pd-top-60 {
	padding-top: 60px;
}

.pd-top-70 {
	padding-top: 70px;
}

.pd-top-80 {
	padding-top: 80px;
}

.pd-top-90 {
	padding-top: 90px !important;
}

.pd-top-100 {
	padding-top: 100px;
}

.pd-top-120 {
	padding-top: 120px;
}

.pd-btm-10 {
	padding-bottom: 10px;
}

.pd-btm-20 {
	padding-bottom: 20px;
}

.pd-btm-30 {
	padding-bottom: 30px;
}

.pd-btm-40 {
	padding-bottom: 40px;
}

.pd-btm-50 {
	padding-bottom: 50px;
}

.pd-btm-60 {
	padding-bottom: 60px;
}

.pd-btm-70 {
	padding-bottom: 70px;
}

.pd-btm-80 {
	padding-bottom: 80px;
}

.pd-btm-90 {
	padding-bottom: 90px;
}

.pd-btm-100 {
	padding-bottom: 100px;
}

.pd-btm-120 {
	padding-bottom: 120px;
}

.pd-btm-140 {
	padding-bottom: 140px;
}

/* Cutom Margin */
.mg-top-10 {
	margin-top: 10px;
}

.mg-top-20 {
	margin-top: 20px !important;
}

.mg-top-25 {
	margin-top: 25px !important;
}

.mg-top-30 {
	margin-top: 30px;
}

.mg-top-40 {
	margin-top: 40px !important;
}

.mg-top-42 {
	margin-top: 42px !important;
}

.mg-top-46 {
	margin-top: 46px !important;
}

.mg-top-50 {
	margin-top: 50px;
}

.mg-top-60 {
	margin-top: 60px;
}

.mg-top-70 {
	margin-top: 70px;
}

.mg-top-80 {
	margin-top: 80px;
}

.mg-top-90 {
	margin-top: 90px;
}

.mg-btm-10 {
	margin-bottom: 10px;
}

.mg-btm-20 {
	margin-bottom: 20px;
}

.mg-btm-25 {
	margin-bottom: 25px;
}

.mg-btm-30 {
	margin-bottom: 30px;
}

.mg-btm-35 {
	margin-bottom: 35px;
}

.mg-btm-40 {
	margin-bottom: 40px;
}

.mg-btm-50 {
	margin-bottom: 50px;
}

.mg-btm-80 {
	margin-bottom: 80px;
}

.mg-btm-120 {
	margin-bottom: 120px;
}

/* Section BG Color */
.bg-primary-color {
	background: var(--bx-primary-color) !important;
}

.bg-secondary-color {
	background: var(--bx-secondary-color);
}

.bg-color-1 {
	background-color: #f0f0f0 !important;
}

.bg-color-2 {
	background-color: var(--bx-secondary-color) !important;
}

.bg-color-3 {
	background-color: #0a1a1a !important;
}

.bg-color-4 {
	background-color: var(--bx-primary-color) !important;
}

.dark-bg-1 {
	background-color: var(--bx-secondary-color) !important;
}

.dark-bg-2 {
	background-color: #142125 !important;
}

.bg-white {
	background: var(--bx-white-color) !important;
}

.bg-transparent {
	background: transparent;
	background-color: transparent;
}

.bg-overlay {
	position: relative;
	z-index: 2;
}

.bg-overlay::before,
.bg-overlay::after {
	position: absolute;
	content: "";
	width: 100%;
	left: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

.bg-overlay::before {
	top: 0;

	height: 825px;
	background-image: url("../images/patterns/white-pattern-top.png");
}

.bg-overlay::after {
	bottom: 0;
	height: 810px;
	background-image: url("../images/patterns/white-pattern-bottom.png");
}

/* Display Flex CSS */
.d-flex-end-between {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.d-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.d-flex-between-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.d-flex-between-end {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.d-flex-center {
	display: flex;
	align-items: center;
}

/* Display Grid CSS */
.grid-3-col {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* Z-Indexs */
.z-index2,
.z-index3 {
	position: relative;
}

.z-index2 {
	z-index: 2;
}

.z-index3 {
	z-index: 3;
}

/* Order Class */
@media only screen and (max-width: 991.99px) {
	.order-class {
		order: -1;
	}
}

/* Background Image */
.background-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bx-literata {
	font-family: var(--bx-font-1);
	font-style: italic;
}

/* RTL Config */
.rtl {
	direction: rtl;
	text-align: right;
}

.rtl .owl-carousel .owl-controls {
	direction: rtl;
}

.rtl .owl-carousel {
	direction: ltr;
}

.rtl .owl-carousel .owl-item {
	direction: rtl;
	text-align: right;
}

.rtl .owl-carousel .owl-nav {
	direction: rtl;
}

.rtl .owl-carousel .owl-nav .owl-prev {
	left: auto;
	right: 10px;
}

.rtl .owl-carousel .owl-nav .owl-next {
	right: auto;
	left: 10px;
}

.rtl .owl-carousel .owl-nav .owl-prev i,
.rtl .owl-carousel .owl-nav .owl-next i {
	transform: rotate(180deg);
}

.rtl .owl-carousel .owl-dots {
	direction: rtl;
}



/* Section Gap */
.section-gap {
	padding: 140px 0px;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.section-gap {
		padding: 80px 0px;
	}
}

@media only screen and (max-width: 767px) {
	.section-gap {
		padding: 56px 0px;
	}
}

/* Section Head */
.bx-section-head {
	margin-bottom: 30px;
}

.bx-section-head__label {
	border-radius: 20px;
	background: rgba(125, 184, 42, 0.1);
	border: 1px solid rgba(125, 184, 42, 0.25);
	color: var(--bx-primary-color);
	display: inline-block;
	padding: 5px 16px;
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bx-section-head__label.text-white,
.bx-section-head__label.bg-white {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.bx-section-head__title {
	margin: 0;
	margin-top: 16px;
	font-size: var(--text-3xl);
	font-family: var(--bx-font-1);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: var(--bx-title-color);
}

.bx-section-head__title span {
	font-weight: 800;
	color: var(--bx-primary-color);
}

.bx-section-head__text {
	color: var(--bx-paragraph-color);
	font-size: var(--text-base);
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0;
	margin-top: 24px;
}

.bx-section-head__btn .bx-btn {
	padding: 12px 24px;
}

/* Style 2 */
.bx-section-head.style-2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bx-section-head.style-2 .bx-section-head__title {
	margin: 0;
	margin-left: -340px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
	.bx-section-head__title br {
		display: none;
	}

	.bx-section-head__title {
		font-size: var(--text-4xl);
		line-height: 120%;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {

	.bx-section-head,
	.bx-section-head.style-2 {
		display: block;
	}

	.bx-section-head__title {
		font-size: var(--text-4xl);
		line-height: 120%;
	}

	.bx-section-head__label {
		padding: 6px 12px;
	}

	.bx-section-head.style-2 .bx-section-head__title {
		margin-left: 0;
		margin-top: 16px;
	}

	.bx-section-head__btn {
		margin-top: 24px;
	}

	.bx-section-head__title br {
		display: none;
	}
}

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

	.bx-section-head.style-2,
	.bx-section-head {
		flex-wrap: wrap;
	}

	.bx-section-head__label {
		padding: 6px 16px;
		font-size: var(--text-sm);
	}

	.bx-section-head__title {
		margin-top: 12px;
		font-size: var(--text-2xl);
		line-height: 130%;
	}

	.bx-section-head__title br {
		display: none;
	}

	.bx-section-head__btn {
		margin-top: 24px;
	}
}

/* RTL  */

.rtl .bx-section-head.style-2 .bx-section-head__title {
	margin-left: 0;
	margin-right: -340px;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.rtl .bx-section-head.style-2 .bx-section-head__title {
		margin-right: 0;
	}
}

/* Dark  */
.dark-demo .bx-section-head__label {
	background: rgba(255, 255, 255, 0.14) !important;
	color: var(--bx-white-color);
}

.dark-demo .bx-section-head__title {
	color: var(--bx-white-color);
}

.dark-demo .bx-section-head__text {
	color: rgba(255, 255, 255, 0.75);
}

/* Animation  */
.updown-ani {
	-webkit-animation-name: UpDown;
	animation-name: UpDown;
	-webkit-animation-duration: 2.5s;
	animation-duration: 2.5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.rotate-ani {
	animation-name: Rotate;
	-webkit-animation-duration: 1.8s;
	animation-duration: 1.8s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
}

.spinner-ani {
	animation: spin 9s linear infinite;
}

@-webkit-keyframes UpDown {
	0% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}

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

	100% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

@-webkit-keyframes Rotate {
	from {
		-webkit-transform: rotate(-0deg);
		transform: rotate(-0deg);
	}

	to {
		-webkit-transform: rotate(-8deg);
		transform: rotate(-8deg);
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Zoom In Animation  */
@-webkit-keyframes zoomin {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.5);
	}

	100% {
		transform: scale(1);
	}
}

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

	50% {
		transform: scale(1.5);
	}

	100% {
		transform: scale(1);
	}
}

/* Preloader CSS */
#preloader {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 99999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--bx-secondary-color);
	transition: all 1s cubic-bezier(0.55, 0.085, 0, 0.99);
}

#preloader .preloader-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

#preloader .preloader-wrap .loader {
	display: flex;
	gap: 5px;
	align-items: flex-end;
}

#preloader .preloader-wrap .dot {
	width: 10px;
	height: 20px;
	background-color: var(--bx-primary-color);
	border-radius: 5px;
	animation: heightBounce 0.6s infinite alternate;
}

#preloader .preloader-wrap .dot:nth-child(2) {
	animation-delay: 0.1s;
	opacity: 0.9;
}

#preloader .preloader-wrap .dot:nth-child(3) {
	animation-delay: 0.2s;
	opacity: 0.8;
}

#preloader .preloader-wrap .dot:nth-child(4) {
	animation-delay: 0.3s;
	opacity: 0.7;
}

#preloader .preloader-wrap .dot:nth-child(5) {
	animation-delay: 0.4s;
	opacity: 0.6;
}

#preloader.preloaded {
	transform: scale(0.9) translateY(100%);
	border-radius: 20px;
	opacity: 0;
}

@keyframes heightBounce {
	from {
		height: 10px;
	}

	to {
		height: 50px;
	}
}

/* Pagination */
.pagination {
	margin-top: 90px;
	justify-content: center;
}

.pagination-list {
	display: flex;
	align-items: center;
	gap: 16px;
}

.pagination-list li {
	display: inline-block;
}

.pagination-list li a {
	width: 48px;
	height: 48px;
	line-height: 48px;
	border: 1px solid var(--bx-secondary-color);
	text-align: center;
	border-radius: 100%;
	font-size: var(--text-base);
	font-weight: 500;
	transition: all 0.3s ease;
	color: var(--bx-secondary-color);
}

.pagination-list li.active a,
.pagination-list li a:hover {
	background: var(--bx-secondary-color);
	color: var(--bx-white-color);
	border: 1px solid transparent;
}

@media only screen and (max-width: 767px) {
	.pagination {
		margin-top: 40px;
	}
}

/* Hobble Effect CSS */
.bx-hover-layer,
.bx-hover-layer-1,
.bx-hover-layer-2,
.bx-hover-layer-4 {
	position: relative;
	-webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
	-webkit-transform: perspective(600px) translate3d(0, 0, 0);
	transform: perspective(600px) translate3d(0, 0, 0);
}

/* SVG Draw Animation CSS */
.animated-svg path {
	stroke-dasharray: 300;
	stroke-dashoffset: 300;
	transition: stroke-dashoffset 1.5s ease-out;
}

/* Backdrop  */
.offcanvas-backdrop.show {
	opacity: 0.5;
	background: var(--bx-secondary-color);
}

.offcanvas-backdrop {
	z-index: 9999;
}

/* Back To Top CSS */
.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px #543ee821;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	content: "\f181";
	font-family: uicons-regular-rounded !important;
	text-align: center;
	line-height: 46px;
	font-size: var(--text-2xl);
	color: var(--bx-primary-color);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: var(--bx-primary-color);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

@media only screen and (min-width: 768px) and (max-width: 991.99px) {
	.progress-wrap {
		right: 5%;
	}
}

@media only screen and (max-width: 767px) {
	.progress-wrap {
		right: 5%;
	}
}

/* Nice Select CSS */
.nice-select:active,
.nice-select.open,
.nice-select:focus {
	border-color: var(--bx-primary-color) !important;
	box-shadow: none;
}

.nice-select:hover {
	border-color: var(--bx-border-color);
}

.nice-select::after {
	margin-top: -5px;
}

.nice-select .list {
	width: 100%;
	transform: none !important;
	max-height: 320px;
	overflow-y: scroll;
	border: 1px solid var(--bx-border-color);
	box-shadow: none;
}

.nice-select .option:hover {
	background-color: var(--bx-primary-color);
}

.nice-select .option {
	line-height: 42px;
	min-height: 42px;
	padding-left: 16px;
	padding-right: 16px;
}

.nice-select::after {
	right: 18px;
}

.nice-select .option.selected {
	font-weight: 600;
}

.nice-select .option.selected {
	background: var(--bx-primary-color);
	color: var(--bx-white-color);
}

.nice-select .list:hover .option:not(:hover) {
	color: var(--bx-paragraph-color);
}

.nice-select .list::-webkit-scrollbar {
	width: 4px !important;
	height: 4px !important;
	display: block;
}

.nice-select .list::-moz-scrollbar {
	width: 4px !important;
	height: 4px !important;
	display: block;
}

.nice-select .list::-ms-scrollbar {
	width: 4px !important;
	height: 4px !important;
}

.list-group-item+.list-group-item.active {
	margin-top: 0;
}

/* Theme Button */
.bx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: var(--bx-primary-color);
	color: var(--bx-white-color);
	font-family: var(--bx-font-2);
	font-size: var(--text-base);
	font-style: normal;
	font-weight: 600;
	line-height: 25px;
	letter-spacing: -0.01em;
	padding: 6px 32px;
	border-radius: 4px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.bx-btn:hover {
	background: var(--bx-secondary-color);
	color: var(--bx-white-color);
}

.bx-btn i {
	font-size: var(--text-lg);
	position: relative;
	top: 2px;
}

.bx-btn.outline-btn {
	background: transparent;
	border: 1px solid var(--bx-primary-color);
	color: var(--bx-primary-color);
}

.bx-btn.outline-btn:hover {
	background: var(--bx-primary-color);
	color: var(--bx-white-color);
}

@media only screen and (max-width: 767px) {
	.bx-btn {
		font-size: var(--text-sm);
		padding: 8px 24px !important;
	}

	.bx-btn i {
		font-size: var(--text-base);
		top: 3px;
	}
}

/* Dark  */
.dark-demo .bx-btn:hover {
	background: #000;
}

/*============================================================================================
	End Theme Reset
==============================================================================================*/



/*================================================================================================
    Mobile Menu 
===================================================================================================*/
.mobile-menu-modal {
	z-index: 9999999;
}

.modal-backdrop.fade.show {
	background: var(--bx-secondary-color);
	opacity: 0.5;
	z-index: 999;
}

.mobile-menu-modal .offcanvas-logo img {
	max-width: 140px;
	height: 34px;
	object-fit: contain;
}

.mobile-menu-offcanvas-toggler {
	text-align: center;
	display: inline-block;
	padding: 0px !important;
	z-index: 3;
	border-radius: 50%;
	border: none;
	display: none;
	width: 28px;
	height: 14px;
	line-height: 50px;
	background: transparent;
	z-index: 888;
	float: right;
}

.mobile-menu-offcanvas-toggler .line {
	position: relative;
	display: block;
	width: 24px;
	height: 2px;
	background: var(--bx-white-color);
	margin-left: auto;
	margin-right: auto;
	transition: all 0.3s;
	border-radius: 30px;
}

.mobile-menu-offcanvas-toggler .line+.line {
	margin-top: 4px;
}

.mobile-menu-offcanvas-toggler:hover .line {
	background: var(--bx-primary-color);
}

.mobile-menu-modal-main-body {
	padding: 24px 20px;
	overflow-y: scroll;
}

.mobile-menu-modal.offcanvas-modal.modal.fade .modal-dialog {
	transform: translateX(-100%);
}

.mobile-menu-modal.offcanvas-modal.modal.show .modal-dialog {
	transform: translateX(0%);
}

.mobile-menu-modal .offcanvas-dialog {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}

.mobile-menu-modal .offcanvas-dialog .modal-content {
	height: 100%;
	border-radius: 0;
	border: 0;
}

.mobile-menu-modal .offcanvas-header {
	border: none;
	padding: 18px 20px !important;
	position: relative;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--bx-offwhite-color);
}

.mobile-menu-modal .offcanvas-header .btn-close {
	color: var(--bx-title-color);
	border: 1px solid var(--bx-title-color) !important;
	opacity: 1;
	width: 35px;
	height: 35px;
	line-height: 39px;
	border-radius: 100%;
	padding: 0;
	font-size: var(--text-sm);
	background: transparent;
	transition: all 0.4s ease;
	margin: 0;
}

.mobile-menu-modal .offcanvas-header .btn-close:hover {
	background: var(--bx-title-color);
	color: var(--bx-white-color);
	border: 1px solid transparent !important;
}

.offcanvas__menu_ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.offcanvas__menu_li {
	position: relative;
}

.offcanvas__menu_item {
	line-height: 1;
	display: block;
	padding: 16px 0px;
	border-bottom: 1px solid #ebebeb;
	color: var(--bx-title-color);
	font-weight: 500;
}

.offcanvas__menu_item:hover {
	color: var(--bx-primary-color);
}

.offcanvas__menu_item:last-child {
	border: none;
}

.offcanvas__sub_menu {
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
}

.offcanvas__sub_menu_li {
	position: relative;
	border-top: 1px solid var(--border-color);
}

.offcanvas__sub_menu_item {
	line-height: 1;
	display: block;
	padding: 16px 0px;
	border-bottom: 1px solid #ebebeb;
	color: var(--bx-title-color);
	font-weight: 500;
	margin-left: 16px;
}

.offcanvas__sub_menu_item.active,
.offcanvas__menu_item.active,
.offcanvas__sub_menu_item:hover {
	color: var(--bx-primary-color);
}

.offcanvas__sub_menu_item~.offcanvas__sub_menu .offcanvas__sub_menu_item {
	margin-left: 32px;
}

.offcanvas__sub_menu_toggle {
	font-size: var(--text-lg);
	position: absolute;
	z-index: 9;
	top: 8px;
	right: 8px;
	width: 32px;
	height: 32px;
	padding: 0;
	border-radius: 100%;
	background-color: var(--bx-offwhite-color);
}

.offcanvas__sub_menu_toggle::after,
.offcanvas__sub_menu_toggle::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	content: "";
	-webkit-transition: var(--transition);
	transition: var(--transition);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background-color: var(--bx-primary-color);
}

.offcanvas__sub_menu_toggle:not(.active)::after {
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
	transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
	.mobile-menu-offcanvas-toggler {
		display: block;
	}

	.mobile-menu-modal .offcanvas-dialog {
		width: 400px;
	}
}

@media only screen and (max-width: 767px) {
	.mobile-menu-offcanvas-toggler {
		display: block;
	}
}

/* RTL  */
/*================================================================================================
    Mobile Menu 
===================================================================================================*/
.mobile-menu-modal {
	z-index: 9999999;
}

.modal-backdrop.fade.show {
	background: var(--bx-secondary-color);
	opacity: 0.5;
	z-index: 999;
}

.mobile-menu-modal .offcanvas-logo img {
	width: auto;
	height: 35px;
	object-fit: contain;
}

.mobile-menu-offcanvas-toggler {
	text-align: center;
	display: inline-block;
	padding: 0px !important;
	z-index: 3;
	border-radius: 50%;
	border: none;
	display: none;
	width: 28px;
	height: 14px;
	line-height: 50px;
	background: transparent;
	z-index: 888;
	float: right;
}

.mobile-menu-offcanvas-toggler .line {
	position: relative;
	display: block;
	width: 24px;
	height: 2px;
	background: var(--bx-white-color);
	margin-left: auto;
	margin-right: auto;
	transition: all 0.3s;
	border-radius: 30px;
}

.mobile-menu-offcanvas-toggler .line+.line {
	margin-top: 4px;
}

.mobile-menu-offcanvas-toggler:hover .line {
	background: var(--bx-primary-color);
}

.mobile-menu-modal-main-body {
	padding: 24px 20px;
	overflow-y: scroll;
}

.mobile-menu-modal.offcanvas-modal.modal.fade .modal-dialog {
	transform: translateX(-100%);
}

.mobile-menu-modal.offcanvas-modal.modal.show .modal-dialog {
	transform: translateX(0%);
}

.mobile-menu-modal .offcanvas-dialog {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}

.mobile-menu-modal .offcanvas-dialog .modal-content {
	height: 100%;
	border-radius: 0;
	border: 0;
}

.mobile-menu-modal .offcanvas-header {
	border: none;
	padding: 10px 20px !important;
	position: relative;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--bx-offwhite-color);
}

.mobile-menu-modal .offcanvas-header .btn-close {
	color: var(--bx-title-color);
	border: 1px solid var(--bx-title-color) !important;
	opacity: 1;
	width: 25px;
	height: 25px;
	line-height: 29px;
	border-radius: 100%;
	padding: 0;
	font-size: var(--text-sm);
	background: transparent;
	transition: all 0.4s ease;
	margin: 0;
}

.mobile-menu-modal .offcanvas-header .btn-close:hover {
	background: var(--bx-title-color);
	color: var(--bx-white-color);
	border: 1px solid transparent !important;
}

.offcanvas__menu_ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.offcanvas__menu_li {
	position: relative;
}

.offcanvas__menu_item {
	line-height: 1;
	display: block;
	padding: 16px 0px;
	border-bottom: 1px solid #ebebeb;
	color: var(--bx-title-color);
	font-weight: 500;
}

.offcanvas__menu_item:hover {
	color: var(--bx-primary-color);
}

.offcanvas__menu_item:last-child {
	border: none;
}

.offcanvas__sub_menu {
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
}

.offcanvas__sub_menu_li {
	position: relative;
	border-top: 1px solid var(--border-color);
}

.offcanvas__sub_menu_item {
	line-height: 1;
	display: block;
	padding: 16px 0px;
	border-bottom: 1px solid #ebebeb;
	color: var(--bx-title-color);
	font-weight: 500;
	margin-left: 16px;
}

.offcanvas__sub_menu_item.active,
.offcanvas__menu_item.active,
.offcanvas__sub_menu_item:hover {
	color: var(--bx-primary-color);
}

.offcanvas__sub_menu_item~.offcanvas__sub_menu .offcanvas__sub_menu_item {
	margin-left: 32px;
}

.offcanvas__sub_menu_toggle {
	font-size: var(--text-lg);
	position: absolute;
	z-index: 9;
	top: 8px;
	right: 8px;
	width: 32px;
	height: 32px;
	padding: 0;
	border-radius: 100%;
	background-color: var(--bx-offwhite-color);
}

.offcanvas__sub_menu_toggle::after,
.offcanvas__sub_menu_toggle::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	content: "";
	-webkit-transition: var(--transition);
	transition: var(--transition);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background-color: var(--bx-primary-color);
}

.offcanvas__sub_menu_toggle:not(.active)::after {
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
	transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
	.mobile-menu-offcanvas-toggler {
		display: block;
	}

	.mobile-menu-modal .offcanvas-dialog {
		width: 400px;
	}
}

@media only screen and (max-width: 767px) {
	.mobile-menu-offcanvas-toggler {
		display: block;
	}
}

/* RTL  */
.rtl .offcanvas__sub_menu_item {
	margin-left: 0;
	margin-right: 16px;
}

.rtl .offcanvas__sub_menu_item~.offcanvas__sub_menu .offcanvas__sub_menu_item {
	margin-left: 0;
	margin-right: 32px;
}

.rtl .offcanvas__sub_menu_toggle {
	right: auto;
	left: 8px;
}


/* Dark  */
.dark-demo .mobile-menu-modal {
	background-color: #002D2D;
}

.dark-demo .mobile-menu-modal .offcanvas-dialog .modal-content {
	background: #002D2D;
}

.dark-demo .mobile-menu-modal .offcanvas-header {
	background: #002D2D;
}

.dark-demo .mobile-menu-modal .offcanvas-header .btn-close {
	color: var(--bx-white-color);
	border: 1px solid var(--bx-white-color) !important;
}

.dark-demo .mobile-menu-modal .offcanvas-header .btn-close:hover {
	background: var(--bx-white-color);
	color: var(--bx-title-color);
}

.dark-demo .offcanvas__menu_item {
	border-bottom: 1px solid #ebebeb30;
	color: var(--bx-white-color);
}

.dark-demo .offcanvas__sub_menu_toggle::after,
.offcanvas__sub_menu_toggle::before {
	background-color: #85a6a6;
}

.dark-demo .offcanvas__sub_menu_toggle {
	background-color: #f5f5f512;
}

.dark-demo .offcanvas__sub_menu_item {
	border-bottom: 1px solid #ebebeb30;
	color: var(--bx-white-color);
}



/*================================================================================================
    End Mobile Menu 
===================================================================================================*/




/*================================================================================================
    Start Header CSS
===================================================================================================*/
/* Topbar  */
.bx-topbar {
	background-color: rgba(255, 255, 255, 0.12);
	padding: 12px 0px;
}

.bx-topbar__data ul li {
	display: inline-block;
	margin-right: 16px;
	padding-right: 16px;
	position: relative;
}

.bx-topbar__data ul li::before {
	position: absolute;
	content: "/";
	top: -1px;
	right: -4px;
	font-size: var(--text-lg);
}

.bx-topbar__data ul li:last-child {
	padding: 0;
	margin: 0;
}

.bx-topbar__data ul li:last-child::before {
	display: none;
}

.bx-topbar__data ul li a {
	color: rgba(255, 255, 255, 0.65);
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: 16px;
	letter-spacing: -0.28px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.bx-topbar__data ul li a:hover {
	color: var(--bx-white-color);
}

.bx-topbar__data ul li a i {
	font-size: var(--text-md);
	position: relative;
	top: 2px;
}

.bx-topbar__social {
	text-align: right;
}

.bx-topbar__social li a {
	color: rgba(255, 255, 255, 0.7);
}

.bx-topbar__data .bx-topbar__social li {
	padding: 0;
	margin-right: 16px;
}

.bx-topbar__data .bx-topbar__social li::before {
	display: none;
}

.bx-topbar__data .bx-topbar__social li i {
	position: initial;
	font-size: var(--text-base);
}

/* Header  */
.bx-header {
	z-index: 100;
}

.bx-header__inner {
	position: absolute;
	width: 100%;
}

.bx-header__block {
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.header-main.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	box-shadow: 0 1px 1px #20262e26;
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	backdrop-filter: saturate(180%) blur(10px);
	background: var(--bx-secondary-color)d4;
	-webkit-animation: sticky 1.2s;
	animation: sticky 1.2s;
}

@-webkit-keyframes sticky {
	0% {
		top: -200px;
	}

	100% {
		top: 0;
	}
}

@keyframes sticky {
	0% {
		top: -200px;
	}

	100% {
		top: 0;
	}
}

.bx-header__logo {
	border-right: 1px solid rgba(255, 255, 255, 0.16);
	height: 100px;
	display: flex;
	align-items: center;
	padding-right: 50px;
}

.bx-header__logo img {
	width: auto;
	height: 40px;
}

.bx-header__main {
	align-items: center;
	justify-content: space-between;
}

.bx-header__right {
	gap: 50px;
	align-items: center;
}

.bx-header__nav {
	border-right: 1px solid rgba(255, 255, 255, 0.16);
	padding-right: 50px;
}

.bx-header__nav-menu li {
	display: inline-block;
	margin-right: 20px;
	position: relative;
}

.bx-header__nav-menu li:last-child {
	margin: 0;
}

.bx-header__nav-menu li a {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: var(--text-base);
	font-weight: 600;
	line-height: 120%;
	color: rgba(255, 255, 255, 0.65);
	padding: 40px 0px;
	letter-spacing: -0.14px;
}

.bx-header__nav-menu li a i {
	position: relative;
	top: 2px;
	font-size: var(--text-base);
}

.bx-header__nav-menu li.active a {
	color: var(--bx-white-color);
}

.bx-header__nav-menu li:hover>a,
.bx-header__nav-menu li.active a {
	color: var(--bx-white-color);
}

/* Mega Menu  */
.bx-header__nav-menu .megamenu-active {
	position: initial;
}

.bx-header__nav-menu .megamenu-active:hover>a,
.bx-header__nav-menu .megamenu-active a {
	color: var(--bx-white-color);
}

.bx-header__nav-menu .megamenu-active:hover>.dropdown-megamenu {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.bx-header__nav-menu .dropdown-megamenu {
	position: absolute;
	width: 100vw;
	left: 0;
	z-index: 22;
	border-radius: 0px 0px 24px 24px;
	padding: 40px 80px;
	top: 100%;
	opacity: 0;
	visibility: hidden;
	transform: scaleY(0);
	transform-origin: 0 0;
	transition: all 0.3s ease-out 0s;
	-moz-background-color: rgba(0, 0, 0, 5%);
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	max-height: 740px;
	overflow-y: scroll;
	overflow-x: hidden;
}

.bx-header__nav-menu .megamenu-wrapper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px 16px;
	max-width: 1760px;
	margin: auto;
}

.mega-menu__item {
	display: block !important;
	overflow: hidden;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 4%);
	border-radius: 6px;
	padding: 0 !important;
}

.mega-menu__item-image {
	position: relative;
}

.mega-menu__item-image img {
	border-radius: 6px 6px 0px 0px;
}

.mega-menu__item-head {
	position: relative;
	overflow: hidden;
}

.mega-menu__item-action {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.mega-menu__item:hover .mega-menu__item-action {
	opacity: 1;
	visibility: visible;
}

.mega-menu__item-action .top-btn {
	transform: translateY(0);
	opacity: 0;
	visibility: hidden;
}

.mega-menu__item-action .bottom-btn {
	transform: translateY(0);
	opacity: 0;
	visibility: hidden;
}

.mega-menu__item-action .bx-btn {
	gap: 12px;
	font-size: var(--text-sm);
	font-weight: 600;
	background: var(--bx-primary-color);
	color: var(--bx-white-color) !important;
	line-height: 14px;
	letter-spacing: -0.32px;
	padding: 12px 24px;
	border-radius: 52px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
	width: 142px;
	white-space: nowrap;
}

.mega-menu__item-action .bx-btn:hover {
	background: var(--bx-secondary-color);
}

.mega-menu__item:hover .mega-menu__item-action .top-btn {
	transform: translateY(-12%);
	opacity: 1;
	visibility: visible;
}

.mega-menu__item:hover .mega-menu__item-action .bottom-btn {
	transform: translateY(12%);
	opacity: 1;
	visibility: visible;
}

.mega-menu__item-title {
	display: inline-block;
	margin: 0;
	font-size: var(--text-base);
	font-weight: 500;
	color: #fff;
	text-align: center;
	padding: 15px 0;
	width: 100%;
	background-color: var(--bx-title-color);
}

/* DropDown Menu */
.bx-header__nav-menu li:hover>.sub-menu {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.bx-header__nav-menu li .sub-menu {
	position: absolute;
	background: var(--bx-white-color);
	min-width: 240px;
	transition: all 0.3s ease-out 0s;
	top: 100%;
	opacity: 0;
	box-shadow: -2px 2px 70px -25px rgb(0 0 0 / 30%);
	visibility: hidden;
	z-index: 99;
	text-align: left;
	transform: scaleY(0);
	transform-origin: 0 0;
	border-radius: 0px 0px 4px 4px;
	border-top: 2px solid var(--bx-primary-color);
}

.bx-header__nav-menu li .sub-menu li {
	display: block;
	margin: 0;
	border-bottom: 1px solid var(--bx-border-color);
	position: relative;
}

.bx-header__nav-menu li .sub-menu li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--bx-secondary-color);
	padding: 16px 20px !important;
	transition: all 0.4s ease-out 0s;
	font-size: var(--text-base);
	text-transform: capitalize;
	font-weight: 500;
}

.bx-header__nav-menu li .sub-menu li:hover>a,
.bx-header__nav-menu li .sub-menu li.active a {
	color: var(--bx-primary-color);
	padding-left: 25px;
}

.bx-header__nav-menu li .sub-menu li:last-child {
	border: none;
}

.bx-header__info {
	align-items: center;
	gap: 30px;
}

.bx-header__search {
	font-size: var(--text-xl);
	color: var(--bx-white-color);
}

.bx-header__search:hover {
	color: var(--bx-primary-color);
}

.bx-header__info .support-text {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 120%;
	font-size: var(--text-base);
	font-weight: 400;
}

.bx-header__info .support-text i {
	color: var(--bx-white-color);
	position: relative;
	top: 2px;
}

.bx-header__info .phone-number {
	color: var(--bx-white-color);
	font-size: var(--text-lg);
	font-weight: 700;
	line-height: 120%;
	margin-top: 10px;
}

.bx-header__info .phone-number:hover {
	color: var(--bx-primary-color);
}

@media only screen and (min-width: 1280px) and (max-width: 1600px) {
	.bx-header__nav-menu .dropdown-megamenu {
		padding: 40px 24px;
		max-height: 600px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
	.bx-header__logo {
		height: 80px;
		padding-right: 24px;
	}

	.bx-header__logo img {
		max-width: 154px;
		height: auto;
	}

	.bx-header__nav {
		display: none;
	}

	.bx-header__contact-info {
		display: none;
	}

	.bx-header__right {
		border-left: 1px solid rgba(255, 255, 255, 0.16);
		height: 80px;
		padding-left: 24px;
	}

	.bx-header__btn {
		display: none;
	}
}

@media only screen and (max-width: 991px) {
	.bx-topbar {
		text-align: center;
	}

	.bx-topbar__social {
		text-align: center;
		margin-top: 12px;
	}

	.bx-header__logo {
		height: 60px;
		padding-right: 16px;
	}

	.bx-header__logo img {
		width: auto;
		height: 30px;
	}

	.bx-header__nav {
		display: none;
	}

	.bx-header__contact-info {
		display: none;
	}

	.bx-header__right {
		border-left: 1px solid rgba(255, 255, 255, 0.16);
		height: 60px;
		padding-left: 16px;
	}

	.bx-header__btn {
		display: none;
	}
}

/* RTL  */

/* RTL Header CSS Changes */

/* Topbar RTL */
.rtl .bx-topbar__data ul li {
	margin-right: 0;
	padding-right: 0;
	margin-left: 16px;
	padding-left: 16px;
}

.rtl .bx-topbar__data ul li::before {
	right: auto;
	left: -4px;
}

.rtl .bx-topbar__data ul li a {
	gap: 6px;
}

.rtl .bx-topbar__social {
	text-align: left;
}

.rtl .bx-topbar__data .bx-topbar__social li {
	margin-right: 0;
	margin-left: 16px;
}

/* Header RTL */
.rtl .bx-header__logo {
	border-right: none;
	border-left: 1px solid rgba(255, 255, 255, 0.16);
	padding-right: 0;
	padding-left: 32px;
}

.rtl .bx-header__nav {
	border-right: none;
	border-left: 1px solid rgba(255, 255, 255, 0.16);
	padding-right: 0;
	padding-left: 32px;
}

.rtl .bx-header__nav-menu li {
	margin-right: 0;
	margin-left: 16px;
}

.rtl .bx-header__nav-menu li:last-child {
	margin-left: 0;
}

.rtl .bx-header__nav-menu li a {
	gap: 4px;
}

/* Mega Menu RTL */
.rtl .bx-header__nav-menu .dropdown-megamenu {
	left: auto;
	right: 0;
}

/* DropDown Menu RTL */
.rtl .bx-header__nav-menu li .sub-menu {
	text-align: right;
}

.rtl .bx-header__nav-menu li .sub-menu li:hover>a,
.rtl .bx-header__nav-menu li .sub-menu li.active a {
	padding-left: 20px;
	padding-right: 25px;
}

/* Header Info RTL */
.rtl .bx-header__right {
	border-left: none;
	border-right: none;
	padding-left: 0;
	padding-right: 24px;
}

.rtl .bx-header__info {
	gap: 30px;
}

.rtl .bx-header__info .support-text {
	gap: 8px;
}

/* Media Queries RTL adjustments */
@media only screen and (min-width: 992px) and (max-width: 1280px) {
	.rtl .bx-header__logo {
		padding-right: 0;
		padding-left: 24px;
	}

	.rtl .bx-header__right {
		border-left: none;
		border-right: 1px solid rgba(255, 255, 255, 0.16);
		padding-left: 0;
		padding-right: 24px;
	}
}

@media only screen and (max-width: 991px) {
	.rtl .bx-header__logo {
		padding-right: 0;
		padding-left: 16px;
	}

	.rtl .bx-header__right {
		border-left: none;
		border-right: 1px solid rgba(255, 255, 255, 0.16);
		padding-left: 0;
		padding-right: 16px;
	}
}

/*================================================================================================
    End Header CSS
===================================================================================================*/


/* Home Reset  */
:root {
	--bx-primary-color: #059669;
	--bx-secondary-color: #1B3A4B;
	--bx-title-color: #1B3A4B;
}

/* Container  */
.container.bx-container-xxl {
	max-width: 1476px;
	padding: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
	.container.bx-container-xxl {
		padding: 0px 24px;
	}
}

@media only screen and (max-width: 1199.99px) {
	.container.bx-container-xxl {
		padding: 0% 5%;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.container.bx-container-xxl {
		padding: 0% 10%;
	}
}

/* Section Head  */
.bx-section-head__label {
	background: #f9f3eb;
	color: var(--bx-title-color);
}

/* Header  */
.bx-header {
	background-color: var(--bx-white-color);
}

.bx-topbar {
	background-color: var(--bx-title-color);
	padding: 12px 0px;
}

.bx-topbar__contact {
	gap: 60px;
	font-size: var(--text-sm);
	font-weight: 500 !important;
	color: var(--bx-white-color) !important;
}

.bx-topbar__contact .contact-item {
	gap: 14px;
}

.bx-topbar__contact .contact-item .icon {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	text-align: center;
	line-height: 50px;
	transition: all 0.3s ease;
	background: var(--bx-white-color);
}

.bx-topbar__contact .contact-item:hover .icon {
	background: var(--bx-primary-color);
	color: var(--bx-white-color);
}

.bx-topbar__contact .contact-item .icon img {
	max-width: 24px;
	transition: all 0.3s ease;
}

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

.bx-topbar__contact .contact-item .info span {
	display: block;
	color: var(--bx-paragraph-color);
	font-size: var(--text-base);
	font-weight: 400;
	line-height: 120%;
	margin-bottom: 6px;
}

.bx-topbar__contact .contact-item .info a {
	font-size: var(--text-base);
	font-weight: 600;
	line-height: 120%;
	color: var(--bx-title-color);
}

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

.bx-header__inner {
	position: initial;
}

.header-main.sticky {
	background: #ffffffcf;
}

.bx-topbar__items-group.group-1 {
	gap: 80px;
}

.bx-topbar__items-group.group-2 {
	gap: 40px;
}

.bx-topbar__social {}

.bx-topbar__social li {
	display: inline-block;
	margin-right: 8px;
}

.bx-topbar__social li:last-child {
	margin: 0;
}

.bx-topbar__social li a {
	font-size: var(--text-sm);
	position: relative;
	top: 2px;
	color: var(--bx-white-color);
}

.bx-topbar__social li a:hover {
	color: var(--bx-primary-color);
}

.bx-header__logo {
	padding: 0;
	border-right: 0;
	height: auto;
}

.bx-header__logo.logo-2 {
	display: none;
}

.bx-header__notice .text {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bx-header__notice .text a {
	color: var(--bx-title-color);
	font-weight: 700;
}

.bx-header__notice .text a:hover {
	color: var(--bx-primary-color);
}

.bx-header__right {
	gap: 40px;
}

.bx-header__block {
	border-bottom: none;
	background: var(--bx-white-color);
}

.bx-header__info .support-text {
	color: rgba(34, 48, 53, 0.75);
}

.bx-header__info .phone-number {
	color: var(--bx-title-color);
}

.bx-header__action {
	gap: 12px;
}

.bx-header__search {
	background: var(--bx-white-color);
	color: var(--bx-title-color);
	width: 44px;
	height: 44px;
	border-radius: 100%;
	text-align: center;
	line-height: 48px;
	font-size: var(--text-lg);
	border: 1px solid var(--bx-title-color);
}

.bx-header__search:hover {
	border: 1px solid transparent;
	background: var(--bx-primary-color);
	color: var(--bx-white-color);
}

.bx-header__btn .bx-btn {
	/* background: transparent; */
	/* color: var(--bx-title-color); */
	/* border: 1px solid var(--bx-title-color); */
}

.bx-header__btn .bx-btn:hover {
	border: 1px solid transparent;
	background: rgb(94, 123, 31);
	color: var(--bx-white-color);
}

.bx-header__menu button {
	background: transparent;
	padding: 0;
}

.bx-header__nav {
	border-right: none;
	padding: 0;
}

.bx-header__nav-menu li a {
	padding: 30px 0px;
}

.bx-header__nav-menu li a,
.bx-header__info .support-text i {
	color: var(--bx-title-color);
}

.bx-header__nav-menu li:hover>a,
.bx-header__nav-menu li.active a,
.header-main.sticky .bx-header__nav-menu li .active {
	color: var(--bx-title-color);
}

.bx-header__nav-menu li .sub-menu li a,
.bx-header__nav-menu li .sub-menu li .third-menu li a {
	color: var(--bx-title-color);
}

.bx-header__nav-menu .megamenu-active:hover>a,
.bx-header__nav-menu .megamenu-active a {
	color: var(--bx-primary-color);
}

.mobile-menu-offcanvas-toggler .line {
	background: var(--bx-title-color);
}

/* Hero  */
.bx-hero {
	overflow: hidden;
	padding-top: 184px;
}

.bx-hero__slider-items {
	height: 650px;
	position: relative;
}

.bx-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}

.bx-hero__bg img {
	width: 100%;
	height: 650px;
	object-fit: cover;
	border-radius: 8px;
}

.bx-hero__content {
	max-width: 450px;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 70px 0px 70px 70px;
}

.bx-hero__shape {
	margin-bottom: 70px;
}

.bx-hero__content h1 {
	color: var(--bx-white-color);
	font-size: var(--text-4xl);
	font-weight: 500;
	line-height: 140%;
	letter-spacing: -0.8px;
	margin: 0;
	opacity: 0;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.bx-hero__slider-2 .owl-item.active .bx-hero__content h1 {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
}

.bx-hero__content h1 span {
	color: var(--bx-white-color);
	font-family: var(--bx-font-1);
	font-size: var(--text-4xl);
	font-style: italic;
	font-weight: 800;
	line-height: 56px;
	display: block;
	letter-spacing: -1.6px;
}

.bx-hero__content-btm {
	margin-top: 16px;
}

.bx-hero__content-btm .text {
	color: var(--bx-white-color);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: 32px;
	opacity: 0;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 1200ms ease;
	-moz-transition: all 1200ms ease;
	-ms-transition: all 1200ms ease;
	-o-transition: all 1200ms ease;
	transition: all 1200ms ease;
}

.bx-hero__slider-2 .owl-item.active .text {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}

.bx-hero__content-btm .bx-btn {
	margin-top: 24px;
	opacity: 0;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 1300ms ease;
	-moz-transition: all 1300ms ease;
	-ms-transition: all 1300ms ease;
	-o-transition: all 1300ms ease;
	transition: all 1300ms ease;
}

.bx-hero__slider-2 .owl-item.active .bx-btn {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1300ms;
	-moz-transition-delay: 1300ms;
	-ms-transition-delay: 1300ms;
	-o-transition-delay: 1300ms;
	transition-delay: 1300ms;
}

/* Slider Controls */
.owl-carousel.bx-hero__slider-2 .owl-nav [class*="owl-"] {
	margin: 0px;
	padding: 0 !important;
	border-radius: 100%;
	width: 52px;
	height: 52px;
	border: 2px solid #dbdede !important;
	background: transparent;
	transition: all 0.4s ease;
	font-size: var(--text-xl);
	color: var(--bx-title-color);
	line-height: 54px;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.owl-carousel.bx-hero__slider-2 .owl-prev:hover,
.owl-carousel.bx-hero__slider-2 .owl-next:hover {
	border: 2px solid transparent !important;
	background: var(--bx-primary-color);
	color: var(--bx-white-color);
}

.owl-carousel.bx-hero__slider-2 .owl-nav .owl-next {
	right: -100px;
}

.owl-carousel.bx-hero__slider-2 .owl-nav .owl-prev {
	left: -100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.owl-carousel.bx-hero__slider-2 .owl-nav .owl-prev {
		left: -20px;
	}

	.owl-carousel.bx-hero__slider-2 .owl-nav .owl-next {
		right: -20px;
	}

	.owl-carousel.bx-hero__slider-2 .owl-nav [class*="owl-"] {
		border: 2px solid transparent !important;
		background: var(--bx-primary-color);
		color: var(--bx-white-color);
	}

	.owl-carousel.bx-hero__slider-2 .owl-nav [class*="owl-"]:hover {
		background: var(--bx-secondary-color);
	}
}

/* Subscripntion Area  */
.bx-subscription__inner {
	gap: 40px;
}

.bx-subscription .sub-newsletter {
	min-width: 605px;
	position: relative;
}

.bx-subscription .sub-newsletter .title {
	font-size: var(--text-2xl);
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 32px;
	color: var(--bx-title-color);
}

.bx-subscription .sub-newsletter form {
	position: relative;
}

.bx-subscription .sub-newsletter input {
	width: 100%;
	padding: 20px 232px 20px 30px;
	color: var(--bx-paragraph-color);
	font-weight: 400;
	height: 72px;
	border-radius: 55px;
	background: transparent;
	border: 1px solid rgba(34, 48, 53, 0.16);
}

.bx-subscription .sub-newsletter .bx-btn {
	position: absolute;
	right: 10px;
	bottom: 10px;
	font-size: var(--text-sm);
	border-radius: 52px;
	text-align: center;
	padding: 16px 40px;
	justify-content: center;
	height: 52px;
	background: var(--bx-title-color);
}

.bx-subscription .sub-newsletter .bx-btn:hover {
	background: var(--bx-primary-color);
}

.bx-subscription .sub-reviews-inner {
	display: flex;
	align-items: center;
	gap: 16px;
	position: relative;
}

.bx-subscription .sub-reviews .client-img-list li {
	display: inline-block;
}

.bx-subscription .sub-reviews .client-img-list li img {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	border: 2px solid var(--bx-white-color);
}

.bx-subscription .sub-reviews .client-img-list li {
	margin-left: -16px;
}

.bx-subscription .sub-reviews .client-img-list {
	margin-left: 16px;
}

.bx-subscription .sub-reviews {
	max-width: 328px;
}

.bx-subscription .sub-reviews .trustpilot-info {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bx-subscription .sub-reviews .trustpilot-info span {
	font-size: var(--text-lg);
	font-weight: 800;
	line-height: 25px;
	letter-spacing: -0.18px;
	color: var(--bx-title-color);
}

.bx-subscription .sub-reviews .text {
	color: #748aa0;
	font-size: var(--text-base);
	font-weight: 400;
	line-height: 120%;
	margin-top: 8px;
}

.bx-subscription .sub-reviews .trustpilot-info img {
	max-width: 96px;
}

.bx-subscription .sub-reviews .review-text {
	margin-top: 32px;
	font-size: var(--text-base);
	font-weight: 400;
	line-height: 26px;
	letter-spacing: -0.32px;
	color: #6e7d8c;
}

.bx-subscription .sub-reviews .title {
	font-size: var(--text-2xl);
	font-weight: 400;
	line-height: 38px;
	margin: 0px;
	margin-top: 32px;
}

.bx-award__medal-list .title {
	margin: 0;
	color: var(--bx-title-color);
	font-size: var(--text-2xl);
	font-style: normal;
	font-weight: 600;
	line-height: 38px;
}

.bx-award__medal-icons {
	margin-top: 32px;
	display: flex;
	align-items: center;
	gap: 30px;
}

.bx-award__medal-icons img {
	max-width: 80px;
}

/* About  */
.bx-about__inner {
	gap: 26px;
	padding: 0px 80px;
	margin-top: 30px;
}

.bx-about__grid.column-2 {
	margin-top: 50px;
}

.bx-about__card.card-icon {
	gap: 76px;
	min-width: 856px;
}

.bx-about__card-icon img {
	max-width: 298px;
	border-radius: 6px;
}

.bx-about__card {
	border-radius: 10px;
	background: var(--bx-offwhite-color);
	border: 1px solid var(--bx-border-color);
	padding: 60px 48px;
	min-width: 420px;
}

.bx-about__card .title {
	font-size: var(--text-xl);
	font-family: var(--bx-font-1);
	font-weight: 700;
	line-height: 1.25;
	color: var(--bx-title-color);
	margin-bottom: 12px;
}

.bx-about__card-btn {
	padding-top: 35px;
	margin-top: 35px;
	border-top: 1px solid var(--bx-border-color);
}

.bx-about__card .bx-btn {
	background: var(--bx-white-color);
	color: var(--bx-title-color);
}

.bx-about__card .bx-btn:hover {
	background: var(--bx-primary-color);
	color: var(--bx-white-color);
}

.bx-about__grid-child {
	gap: 26px;
	margin-top: 26px;
}

.bx-about__grid-img img {
	min-width: 420px;
	border-radius: 6px;
	object-fit: cover;
}

/* Partners  */
.bx-partner__section-head {
	border-bottom: 1px solid rgba(34, 48, 53, 0.17);
	padding-bottom: 40px;
}

.bx-partner__section-head .title {
	color: var(--bx-paragraph-color);
	font-size: var(--text-lg);
	font-weight: 400;
	letter-spacing: -0.4px;
	margin: 0;
}

.owl-carousel.bx-partner__slider {
	margin-top: 40px;
}

.bx-partner__item img {
	max-width: 174px;
}

/* Funfact  */
.bx-funfact__inner {
	display: flex;
	justify-content: space-between;
	align-items: end;
	padding-left: 222px;
	padding-bottom: 115px;
	height: 790px;
	overflow: hidden;
	border-radius: 136px 136px 0px 0px;
}

.bx-funfact__inner::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 8px;
	z-index: -1;
	background: rgba(0, 17, 17, 0.24);
}

.bx-funfact__title {
	color: var(--bx-white-color);
	font-size: var(--text-4xl);
	font-weight: 600;
	line-height: 60px;
	position: relative;
	padding-left: 45px;
	margin: 0;
}

.bx-funfact__title::before {
	position: absolute;
	content: "";
	width: 3px;
	height: 94px;
	background: var(--bx-primary-color);
	left: 0;
	top: 16px;
}

.bx-funfact__counter {
	text-align: center;
	position: relative;
	margin-bottom: 70px;
	margin-right: 352px;
	top: 114px;
}

.bx-funfact__counter .circle-overlay {
	position: absolute;
	width: 438px;
	height: 438px;
	border-radius: 438px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(8.199999809265137px);
	z-index: -1;
	left: 50%;
	transform: translate(-50%, 0);
	top: 36px;
}

.bx-funfact__counter-icon {
	width: 90px;
	height: 90px;
	line-height: 90px;
	background: var(--bx-primary-color);
	border-radius: 100%;
	color: var(--bx-white-color);
	display: inline-block;
}

.bx-funfact__counter-desc {
	margin-top: 45px;
}

.bx-funfact__counter-desc h4 {
	color: #fff;
	text-align: center;
	font-size: var(--text-4xl);
	font-weight: 500;
	letter-spacing: -0.88px;
	line-height: 84%;
	margin: 0;
}

.bx-funfact__counter-desc h4 span {
	color: var(--bx-white-color);
	font-size: var(--text-4xl);
	font-weight: 500;
	letter-spacing: -0.88px;
	line-height: 38px !important;
	font-family: var(--bx-font-2) !important;
}

.bx-funfact__counter-desc p {
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--text-lg);
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -0.36px;
	margin-top: 24px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.bx-funfact__inner {
		padding-left: 90px;
	}
}

/* Service  */
.bx-service {
	overflow: hidden;
}

.bx-service__shape {
	position: absolute;
	z-index: -1;
	right: 8%;
	top: 68px;
}

.bx-service__wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 75px 80px;
	margin-top: 40px;
}

.bx-service__card {
	gap: 35px;
}

.bx-service__card .title {
	font-size: var(--text-xl);
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 10px;
}

.bx-service__card:hover .title {
	color: var(--bx-primary-color);
}

.bx-service__card .text {
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: 30px;
	letter-spacing: -0.36px;
}

.bx-service__card .service-img img {
	max-width: 148px;
}

.bx-service__section-btn {
	text-align: center;
	margin-top: 65px;
}

/* Why Choose  */

.bx-why-choose {
	background-color: var(--bx-offwhite-color);
}

.bx-why-choose__image {
	width: 48%;
	height: 845px;
	left: 0;
	position: absolute;
	top: 0;
}

.bx-why-choose__image img {
	width: 100%;
	height: 845px;
	object-fit: cover;
	border-radius: 0px 0px 6px 0px;
}

.bx-why-choose__content {
	padding-top: 140px;
	margin-left: 80px;
	margin-right: 40px;
}

.bx-why-choose__content .bx-section-head__text {
	color: var(--bx-font-2);
	font-size: var(--text-base);
	line-height: 28px;
	letter-spacing: -0.36px;
}

.bx-why-choose__info-list {
	margin-top: 50px;
	gap: 70px;
}

.bx-why-choose__info-list li {
	font-size: var(--text-base);
	font-weight: 500;
	line-height: 28px;
	color: var(--bx-title-color);
	position: relative;
	padding-left: 28px;
	margin-bottom: 24px;
}

.bx-why-choose__info-list li:last-child {
	margin: 0;
}

.bx-why-choose__info-list li i {
	color: var(--bx-primary-color);
	position: absolute;
	left: 0;
	top: 2px;
}

.bx-why-choose__btn {
	margin-top: 50px;
}

.bx-why-choose__btn .bx-btn {
	background: var(--bx-secondary-color);
}

.bx-why-choose__btn .bx-btn:hover {
	background: var(--bx-primary-color);
}

.bx-why-choose__bottom {
	gap: 286px;
	margin-top: 94px;
}

.bx-why-choose__progress {
	width: 720px;
}

.bx-why-choose__progress .title {
	font-size: var(--text-2xl);
	font-weight: 500;
	line-height: 38px;
	color: var(--bx-title-color);
	margin-bottom: 30px;
}

.bx-why-choose__progress .progress-item {
	margin-bottom: 50px;
}

.bx-why-choose__progress .progress-item:last-child {
	margin: 0;
}

.bx-why-choose__progress .progress-item__label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.bx-why-choose__progress .progress-item__title,
.bx-why-choose__progress .progress-item__percentage {
	margin: 0;
	font-size: var(--text-lg);
	font-weight: 500;
	line-height: 120%;
	color: var(--bx-title-color);
}

.bx-why-choose__progress .progress-container,
.bx-why-choose__progress .progress {
	border-radius: 500px;
	position: relative;
	height: 6px;
	width: 100%;
	border: 1px solid var(--bx-primary-color);
	border-radius: 12px;
}

.bx-why-choose__progress .progress {
	background-color: var(--bx-primary-color);
	width: 0;
	transition: width 0.3s linear;
	height: 6px;
	top: -1px;
	left: 0;
}

.bx-why-choose__progress .percentage {
	font-size: 0px;
	position: absolute;
	left: 0;
	transition: left 0.3s linear;
}

.bx-why-choose__shape img {
	max-width: 330px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.bx-why-choose__content {
		margin-left: 0;
		margin-right: 0;
	}

	.bx-why-choose__image {
		width: 46%;
	}
}

/* Work Process  */
.bx-work-process {
	overflow: hidden;
}

.bx-work-process__wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 116px;
	padding-left: 485px;
}

.w-process-card {
	position: relative;
}

.w-process-card.card-1 {
	margin-top: 190px;
}

.w-process-card.card-2 {
	margin-top: 115px;
}

.w-process-card.card-3 {
	margin-top: 45px;
}

.w-process-card.process-icon::before {
	position: absolute;
	content: "";
	background-image: url("../../images/process-line.svg");
	width: 312px;
	height: 70px;
	background-size: contain;
	background-repeat: no-repeat;
	right: -96px;
	background-position: center;
	top: -21px;
	z-index: -1;
}

.w-process-card .process-number {
	width: 90px;
	height: 90px;
	line-height: 90px;
	border: 1px solid var(--bx-title-color);
	border-radius: 100%;
	text-align: center;
	font-size: var(--text-2xl);
	font-weight: 600;
	color: var(--bx-title-color);
	transition: all 0.3s ease;
}

.w-process-card:hover .process-number {
	background: var(--bx-primary-color);
	color: var(--bx-white-color);
	border: 1px solid transparent;
}

.w-process-card .process-content {
	margin-top: 42px;
}

.w-process-card .process-content .title {
	font-size: var(--text-xl);
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 16px;
}

.w-process-card .process-content .text {
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: -0.36px;
}

.bx-work-process__shape {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.bx-work-process__arrow {
	position: absolute;
	left: 115px;
	top: 376px;
}

.bx-work-process__shape .shape-1 {
	position: absolute;
	right: 175px;
	top: 140px;
}

.bx-work-process__shape .shape-2 {
	position: absolute;
	right: -40px;
	bottom: 72px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.w-process-card.process-icon::before {
		width: 250px;
	}
}

/* Portfolio  */
.bx-portfolio {
	background-color: #fafcf0;
}

.bx-portfolio__inner {
	gap: 80px;
}

.bx-portfolio .bx-section-head__btn {
	margin-top: 40px;
}

.bx-portfolio .bx-section-head {
	max-width: 636px;
	/* position: sticky;
  top: 12%; */
	margin: 0;
}

.bx-portfolio__wrapper {
	text-align: center;
}

.portfolio-item {
	position: relative;
	text-align: center;
	overflow: hidden;
	margin-top: 30px;
}

.portfolio-item:first-child {
	margin: 0;
}

.portfolio-item::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 17, 17, 0.26);
	border-radius: 8px;
	z-index: 1;
}

.portfolio-img {
	position: relative;
	max-width: 1574px;
	margin: auto;
	border-radius: 8px;
	overflow: hidden;
}

.portfolio-img img {
	max-width: 1574px;
	border-radius: 8px;
}

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

.portfolio-item .date {
	position: absolute;
	padding: 9px 18px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.22);
	display: inline-block;
	z-index: 2;
	font-size: var(--text-base);
	font-weight: 500;
	line-height: 120%;
	letter-spacing: 0.15px;
	color: var(--bx-white-color);
	top: 40px;
	left: 40px;
}

.portfolio-icon {
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 2;
	transition: all 0.3s ease;
	width: 44px;
	height: 44px;
	border: 1px solid var(--bx-white-color);
	border-radius: 100%;
	line-height: 50px;
	color: var(--bx-white-color);
	font-size: var(--text-xl);
	transform: rotate(-40deg);
}

.portfolio-item:hover .portfolio-icon {
	background: var(--bx-white-color);
	color: var(--bx-primary-color);
}

.portfolio-content {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	text-align: left;
	padding: 0px 40px 40px 40px;
	width: 100%;
}

.portfolio-content .title {
	font-size: var(--text-xl);
	font-weight: 600;
	line-height: 120%;
	color: var(--bx-white-color);
	display: inline-block;
	margin-top: 12px;
}

.portfolio-content .title:hover {
	color: var(--bx-primary-color);
}

.portfolio-content .category li {
	display: inline-block;
	margin-right: 12px;
}

.portfolio-content .category li:last-child {
	margin: 0;
}

.portfolio-content .category li a {
	border-radius: 4px;
	font-size: var(--text-lg);
	font-weight: 400;
	color: var(--bx-white-color);
	line-height: 120%;
	letter-spacing: -0.36px;
}

/* Testimonial  */
.bx-testimonial {
	background-color: var(--bx-offwhite-color);
}

.owl-carousel.bx-testimonial__slider {
	margin-top: 40px;
}

/* Colonne 2 lignes */
.bx-testi-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Nouvelle carte témoignage */
.bx-testi-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bx-testi-badge {
	height: 14px !important;
	width: auto !important;
	max-width: none !important;
	opacity: 0.8;
}

.bx-google-badge {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: var(--text-sm);
	font-weight: 600;
	color: #555;
}

.bx-testi-card {
	background: #fff;
	border-radius: 12px;
	padding: 32px 28px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bx-testi-card__quote i {
	font-size: var(--text-xl);
	color: var(--bx-primary-color);
	opacity: 0.6;
}

.bx-testi-card__text {
	font-size: var(--text-base);
	line-height: 1.7;
	color: #444;
	margin: 0;
	flex: 1;
}

.bx-testi-card__stars {
	display: flex;
	gap: 3px;
}

.bx-testi-card__stars i {
	font-size: var(--text-sm);
	color: #f5b82e;
}

.bx-testi-card__author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid #f0f0f0;
}

.bx-testi-card__author img {
	width: 32px !important;
	height: 32px !important;
	min-width: 32px;
	border-radius: 50%;
	object-fit: cover;
}

.bx-testi-avatar {
	width: 32px;
	height: 32px;
	min-width: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	flex-shrink: 0;
}
.bx-testi-avatar--1 { background-color: #2563eb; }
.bx-testi-avatar--2 { background-color: #16a34a; }
.bx-testi-avatar--3 { background-color: #9333ea; }
.bx-testi-avatar--4 { background-color: #ea580c; }

.bx-testi-card__author strong {
	display: block;
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--bx-secondary-color);
}

.bx-testi-card__author span {
	font-size: var(--text-sm);
	color: #999;
}

/* Blog  */
.bx-blog {}

.bx-blog__wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.bx-blog__card {
	gap: 30px;
	padding: 30px;
	border-radius: 8px;
	align-items: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(34, 48, 53, 0.25);
}

.bx-blog__cover {
	/* min-width: 400px; */
	/* border-radius: 8px; */
	overflow: hidden;
	position: relative;
}

.bx-blog__cover img {
	max-width: 400px;
	border-radius: 8px;
}

.bx-blog__card:hover .bx-blog__cover img {
	transform: scale(1.04);
}

.bx-blog__meta .category {
	padding: 12px 20px;
	border-radius: 57px;
	font-size: var(--text-sm);
	font-weight: 500;
	line-height: 16px;
	color: var(--bx-primary-color);
	display: inline-block;
	border: 1px solid rgba(34, 48, 53, 0.25);
}

.bx-blog__meta .category:hover {
	background: var(--bx-primary-color);
	border: 1px solid transparent;
	color: var(--bx-white-color);
}

.bx-blog__meta {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 20px;
}

.bx-blog__meta .date {
	color: var(--bx-primary-color);
	font-size: var(--text-sm);
	font-weight: 500;
	line-height: 16px;
}

.bx-blog__content .title {
	margin-bottom: 16px;
	font-size: var(--text-2xl);
	font-weight: 400;
}

.bx-blog__content .title a {
	font-weight: 400;
	line-height: 40px;
	color: var(--bx-title-color);
}

.bx-blog__content .title a:hover {
	color: var(--bx-primary-color);
	text-decoration: underline;
}

.bx-blog__content .text {
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: 30px;
	letter-spacing: -0.36px;
	color: var(--bx-paragraph-color);
}

/* Call Action  */
.bx-call-action {
	background-color: var(--bx-primary-color);
}

.bx-call-action::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("../../images/patterns/white-pattern-group-2.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	left: 0;
	top: 0;
}

.bx-call-action__shapes {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.bx-call-action__shapes .shape-1 {
	position: absolute;
	left: 18%;
	top: 28%;
}

.bx-call-action__shapes .shape-2 {
	position: absolute;
	right: 22%;
	bottom: 24%;
}

.bx-call-action__content {}

.bx-call-action__content .sm-title {
	font-size: var(--text-base);
	font-weight: 500;
	line-height: 16px;
	letter-spacing: 0.15px;
	color: var(--bx-white-color);
	padding: 10px 18px;
	border-radius: 4px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.08);
}

.bx-call-action__content .title {
	margin: 0;
	margin-top: 24px;
	font-size: var(--text-4xl);
	font-weight: 500;
	line-height: 64px;
	letter-spacing: -0.48px;
	color: var(--bx-white-color);
}

.bx-call-action__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	gap: 32px;
}

.bx-call-action__btn .bx-btn,
.bx-call-action__btn .bx-btn.outline-btn:hover {
	background: var(--bx-white-color);
	color: var(--bx-title-color);
	border: 1px solid transparent;
}

.bx-call-action__btn .bx-btn.outline-btn,
.bx-call-action__btn .bx-btn:hover {
	background: transparent;
	color: var(--bx-white-color);
	border: 1px solid var(--bx-white-color);
}

.bx-call-action__desc {
	color: rgba(255, 255, 255, 0.75);
	font-size: var(--text-base);
	margin-top: 16px;
	margin-bottom: 0;
}

.bx-call-action__trust {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px 36px;
	margin-top: 32px;
}

.bx-call-action__trust .trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.9);
	font-size: var(--text-sm);
	font-weight: 500;
}

.bx-call-action__trust .trust-item i {
	font-size: 17px;
	color: var(--bx-white-color);
	opacity: 0.85;
}

/* Footer refonte */
.ft-new {
	background-color: #0f2232;
	font-family: var(--bx-font-2);
}

.ft-new__top {
	padding: 64px 0 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ft-new__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
	gap: 48px;
}

/* Brand */
.ft-new__logo {
	display: inline-block;
	font-family: var(--bx-font-1);
	font-size: var(--text-xl);
	font-weight: 800;
	color: #fff;
	text-decoration: none;
	margin-bottom: 14px;
}

.ft-new__brand p {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.7;
	margin: 0 0 20px;
}

.ft-new__trust {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ft-new__trust span {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: var(--text-xs);
	color: rgba(255, 255, 255, 0.4);
}

.ft-new__trust i {
	color: var(--bx-primary-color);
	font-size: var(--text-sm);
}

/* Headings */
.ft-new__heading {
	font-family: var(--bx-font-1);
	font-size: var(--text-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--bx-primary-color);
	margin-bottom: 20px;
}

/* Nav */
.ft-new__nav ul,
.ft-new__contact ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ft-new__nav ul li a {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transition: color 0.2s;
}

.ft-new__nav ul li a:hover {
	color: #fff;
}

/* Contact */
.ft-new__contact ul li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.ft-new__contact ul li i {
	font-size: var(--text-sm);
	color: var(--bx-primary-color);
	margin-top: 2px;
	flex-shrink: 0;
}

.ft-new__contact ul li div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ft-new__contact ul li span {
	font-size: var(--text-xs);
	color: rgba(255, 255, 255, 0.35);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.ft-new__contact ul li a {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.2s;
}

.ft-new__contact ul li a:hover {
	color: #fff;
}

/* CTA column */
.ft-new__cta p {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
	margin-bottom: 20px;
}

.ft-new__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--bx-primary-color);
	color: #fff;
	font-size: var(--text-sm);
	font-weight: 600;
	padding: 12px 22px;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
}

.ft-new__btn:hover {
	background: #6a9e22;
	color: #fff;
	transform: translateY(-1px);
}

/* Bottom bar */
.ft-new__bottom {
	padding: 16px 0;
	background: rgba(0, 0, 0, 0.2);
}

.ft-new__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.ft-new__bottom-inner p {
	font-size: var(--text-xs);
	color: rgba(255, 255, 255, 0.3);
	margin: 0;
}

.ft-new__bottom-inner ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 20px;
}

.ft-new__bottom-inner ul li a {
	font-size: var(--text-xs);
	color: rgba(255, 255, 255, 0.3);
	text-decoration: none;
	transition: color 0.2s;
}

.ft-new__bottom-inner ul li a:hover {
	color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1199px) {
	.ft-new__grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
}

@media (max-width: 767px) {
	.ft-new__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.ft-new__bottom-inner {
		flex-direction: column;
		text-align: center;
		gap: 0px;
	}

	.ft-new__bottom-inner p {
		font-size: 12px !important;
	}

	.ft-new__nav ul {
		gap: 2px;
	}
	.ft-new__brand p {
		font-size: 14px	!important;
	}
}

/* Footer  */
.bx-footer {
	z-index: 2;
}

.bx-footer::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 17, 17, 0.9);
	z-index: -1;
}

.bx-footer__main {
	display: flex;
	padding: 30px 0px;
}

.bx-footer__widget {
	margin-top: 40px;
}

.bx-footer__widget.bx-footer__about {
	min-width: 465px;
}

.bx-footer__logo img {
	max-width: 142px;
}

.bx-footer__about .title {
	color: var(--bx-white-color);
	font-size: var(--text-4xl);
	font-weight: 500;
	line-height: 120%;
	margin: 0;
	margin-top: 32px;
}

.bx-footer__social {
	margin-top: 56px;
}

.bx-footer__social li {
	display: inline-block;
	align-content: ;
	margin-right: 24px;
}

.bx-footer__social li a {
	font-size: var(--text-xl);
	color: var(--bx-white-color);
}

.bx-footer__social li a:hover {
	color: var(--bx-primary-color);
}

.bx-footer__social li:last-child {
	margin: 0;
}

.bx-footer__widget-group {
	min-width: 632px;
}

.bx-footer__widget-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 116px;
}

.bx-footer__widget .widget-title {
	color: var(--bx-white-color);
	font-size: var(--text-xl);
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 32px;
}

.bx-footer__widget .list-links li {
	margin-bottom: 28px;
}

.bx-footer__widget .list-links li a {
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--text-base);
	font-weight: 400;
	line-height: 120%;
}

.bx-footer__widget .list-links li:last-child {
	margin: 0;
}

.bx-footer__widget .list-links li a:hover {
	color: var(--bx-primary-color);
}

.bx-footer__widget .contact-item {
	display: flex;
	gap: 24px;
	margin-bottom: 56px;
}

.bx-footer__widget .contact-icon img {
	max-width: 53px;
}

.bx-footer__widget .contact-info .label {
	display: block;
	color: rgba(255, 255, 255, 0.69);
	font-size: var(--text-sm);
	font-weight: 400;
	line-height: 120%;
	margin-bottom: 10px;
}

.bx-footer__widget .contact-info .links {
	color: var(--bx-white-color);
	font-size: var(--text-lg);
	font-weight: 500;
	line-height: 34px;
}

.bx-footer__widget .contact-info .links:hover {
	color: var(--bx-primary-color);
}

.bx-footer__widget .contact-item:last-child {
	margin: 0;
}

.bx-footer__copyright-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bx-footer__copyright {
	background: #3c525a;
	padding: 12px 0px;
}

.bx-footer__links li {
	display: inline-block;
	padding-right: 20px;
	margin-right: 20px;
	position: relative;
}

.bx-footer__links li::before {
	position: absolute;
	content: "";
	width: 1px;
	height: 18px;
	background: rgba(255, 255, 255, 0.16);
	right: 0;
	top: 4px;
}

.bx-footer__links li:last-child {
	padding: 0;
	margin: 0;
}

.bx-footer__links li:last-child::before {
	display: none;
}

.bx-footer__links li a {
	color: rgba(255, 255, 255, 0.69);
	font-size: var(--text-sm);
	font-weight: 400;
	line-height: 24px;
}

.bx-footer__links li a:hover {
	color: var(--bx-primary-color);
}

.copyright-text {
	color: rgba(255, 255, 255, 0.69);
	text-align: right;
	font-size: var(--text-sm);
	font-weight: 400;
	line-height: 24px;
}

.bx-footer__newsletter {
	margin-top: 64px;
	position: relative;
}

.bx-footer__newsletter input {
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.19);
	border-radius: 0;
	width: 100%;
	padding: 14px 180px 22px 0px;
	color: var(--bx-white-color);
	font-weight: 400;
}

.bx-footer__newsletter input:focus {
	color: var(--bx-white-color);
}

.bx-footer__newsletter .bx-btn {
	position: absolute;
	right: 0;
	bottom: 10px;
	font-size: var(--text-base);
	padding: 8px 18px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.bx-footer__main {
		gap: 40px;
	}

	.bx-footer__widget-inner {
		gap: 60px;
	}

	.bx-footer__widget.bx-footer__about {
		min-width: 423px;
	}

	.bx-footer__widget-group {
		min-width: 560px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {

	/* Header  */
	.bx-topbar__items-group.group-1 {
		gap: 40px;
	}

	/* Hero  */
	.bx-hero__slider-items {
		height: 550px;
	}

	.bx-hero__bg img {
		height: 550px;
	}

	.bx-hero__content {
		max-width: 400px;
		padding: 50px 0px 50px 50px;
	}

	.bx-hero__shape {
		margin-bottom: 50px;
	}

	.bx-hero__content h1 {
		font-size: var(--text-3xl);
	}

	.bx-hero__content h1 span {
		font-size: var(--text-3xl);
		line-height: 48px;
	}

	.bx-hero__content-btm .text {
		font-size: var(--text-lg);
		line-height: 28px;
	}

	.owl-carousel.bx-hero__slider-2 .owl-nav .owl-next {
		right: -24px;
	}

	.owl-carousel.bx-hero__slider-2 .owl-nav .owl-prev {
		left: -24px;
	}

	.owl-carousel.bx-hero__slider-2 .owl-nav [class*="owl-"] {
		width: 45px;
		height: 45px;
		line-height: 45px;
	}

	/* Subscription  */
	.bx-subscription__inner {
		gap: 30px;
	}

	.bx-subscription .sub-newsletter {
		min-width: 500px;
	}

	.bx-subscription .sub-newsletter .title {
		font-size: var(--text-xl);
		margin-bottom: 24px;
	}

	.bx-subscription .sub-newsletter input {
		padding: 18px 220px 18px 25px;
		height: 65px;
	}

	.bx-award__medal-icons {
		gap: 20px;
	}

	.bx-award__medal-icons img {
		max-width: 70px;
	}

	.bx-subscription .sub-reviews-inner {
		flex-wrap: wrap;
	}

	/* About  */
	.bx-about__inner {
		padding: 0px 40px;
		gap: 20px;
	}

	.bx-about__card.card-icon {
		gap: 50px;
		min-width: 700px;
		max-width: 700px;
	}

	.bx-about__card-icon img {
		max-width: 250px;
	}

	.bx-about__card {
		padding: 50px 40px;
		min-width: 300px;
	}

	.bx-about__grid-img img {
		min-width: 380px;
	}

	.bx-about__grid-img.image-1 img {
		height: 410px;
	}

	.bx-about__grid.column-2 {
		margin-top: 40px;
	}

	.bx-about__grid-child {
		gap: 20px;
		margin-top: 20px;
	}

	/* Funfact  */
	.bx-funfact__inner {
		padding-left: 150px;
		padding-bottom: 90px;
		height: 650px;
		border-radius: 100px 100px 0px 0px;
	}

	.bx-funfact__title {
		font-size: var(--text-3xl);
		line-height: 54px;
		padding-left: 35px;
	}

	.bx-funfact__title::before {
		height: 80px;
	}

	.bx-funfact__counter {
		margin-right: 200px;
		top: 90px;
	}

	.bx-funfact__counter .circle-overlay {
		width: 380px;
		height: 380px;
		top: 30px;
	}

	.bx-funfact__counter-desc h4,
	.bx-funfact__counter-desc h4 span {
		font-size: var(--text-4xl);
	}

	.bx-funfact__counter-desc p {
		font-size: var(--text-base);
		margin-top: 20px;
	}

	/* Service  */
	.bx-service__wrapper {
		gap: 60px 50px;
	}

	.bx-service__card {
		gap: 25px;
	}

	.bx-service__card .title {
		font-size: var(--text-lg);
	}

	.bx-service__card .text {
		font-size: var(--text-base);
		line-height: 26px;
	}

	.bx-service__card .service-img img {
		max-width: 130px;
	}

	.bx-service__section-btn {
		margin-top: 55px;
	}

	.bx-service__shape {
		width: 250px;
		height: auto;
		right: 5%;
	}

	/* Why Choose  */
	.bx-why-choose__image {
		width: 46%;
		height: 750px;
	}

	.bx-why-choose__image img {
		height: 750px;
	}

	.bx-why-choose__content {
		padding-top: 120px;
		margin-left: 60px;
		margin-right: 30px;
	}

	.bx-why-choose__info-list {
		margin-top: 40px;
		gap: 40px;
	}

	.bx-why-choose__info-list li {
		font-size: var(--text-base);
		line-height: 28px;
		padding-left: 25px;
		margin-bottom: 20px;
	}

	.bx-why-choose__btn {
		margin-top: 40px;
	}

	.bx-why-choose__bottom {
		gap: 200px;
		margin-top: 80px;
	}

	.bx-why-choose__progress {
		width: 600px;
	}

	.bx-why-choose__progress .title {
		font-size: var(--text-xl);
		line-height: 34px;
		margin-bottom: 25px;
	}

	.bx-why-choose__progress .progress-item {
		margin-bottom: 40px;
	}

	.bx-why-choose__progress .progress-item__title,
	.bx-why-choose__progress .progress-item__percentage {
		font-size: var(--text-lg);
	}

	.bx-why-choose__shape img {
		max-width: 280px;
	}

	/* Work Progress  */
	.bx-work-process__wrapper {
		padding-left: 350px;
		gap: 80px;
	}

	.bx-work-process__arrow {
		left: 0px;
		top: 350px;
		transform: scale(0.85);
	}

	.w-process-card.card-1 {
		margin-top: 160px;
	}

	.w-process-card.card-2 {
		margin-top: 95px;
	}

	.w-process-card.card-3 {
		margin-top: 35px;
	}

	.w-process-card.process-icon::before {
		width: 260px;
		right: -80px;
	}

	.bx-work-process__shape .shape-1 {
		right: 120px;
	}

	.bx-work-process__shape .shape-2 {
		right: -20px;
	}

	/* Portfolio  */
	.bx-portfolio__inner {
		gap: 60px;
	}

	.bx-portfolio .bx-section-head {
		max-width: 500px;
	}

	.portfolio-img img {
		width: 100%;
	}

	.portfolio-content .title {
		font-size: var(--text-lg);
	}

	.portfolio-content .category li a {
		font-size: var(--text-base);
	}

	/* Blog  */
	.bx-blog__card {
		display: block;
	}

	.bx-blog__cover img {
		max-width: 100%;
		width: 100%;
	}

	.bx-blog__content {
		margin-top: 40px;
	}

	/* Call Action  */
	.bx-call-action__content .title {
		font-size: var(--text-3xl);
		margin-bottom: 35px;
	}

	/* Footer  */
	.bx-footer__main {
		grid-template-columns: repeat(2, 1fr);
	}

	.bx-footer__widget.bx-footer__contact {
		margin-top: -160px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {

	/* Header  */
	.bx-topbar {
		display: none;
	}

	.bx-header__main {
		background: transparent;
		padding: 0;
	}

	.bx-header__block {
		background: var(--bx-white-color);
	}

	.bx-header__logo.logo-2 {
		display: block;
		padding-right: 0px;
		line-height: 80px;
		border: none;
		height: 80px;
	}

	.bx-header__right {
		height: 80px;
	}

	.bx-header__inner {
		height: auto;
	}

	/* Hero  */
	.bx-hero {
		padding-top: 80px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {

	/* Hero  */
	.bx-hero {
		padding-top: 80px;
	}

	.bx-hero__slider-items {
		height: 500px;
	}

	.bx-hero__bg img {
		height: 500px;
	}

	.bx-hero__content {
		max-width: 350px;
		padding: 40px 0px 40px 40px;
	}

	.bx-hero__shape {
		margin-bottom: 40px;
		width: 60px;
		height: 56px;
	}

	.bx-hero__content h1 {
		font-size: var(--text-3xl);
		line-height: 130%;
		letter-spacing: -0.5px;
	}

	.bx-hero__content h1 span {
		font-size: var(--text-3xl);
		line-height: 42px;
		letter-spacing: -1px;
	}

	.bx-hero__content-btm {
		margin-top: 12px;
	}

	.bx-hero__content-btm .text {
		font-size: var(--text-base);
		line-height: 24px;
	}

	.bx-hero__content-btm .bx-btn {
		margin-top: 18px;
		padding: 12px 20px;
		font-size: var(--text-sm);
	}

	.owl-carousel.bx-hero__slider-2 .owl-nav [class*="owl-"] {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: var(--text-lg);
		background: var(--bx-primary-color);
		border: 1px solid transparent !important;
		color: var(--bx-white-color);
	}

	.owl-carousel.bx-hero__slider-2 .owl-nav .owl-next {
		right: 15px;
	}

	.owl-carousel.bx-hero__slider-2 .owl-nav .owl-prev {
		left: 15px;
	}

	/* Subscription  */
	.bx-subscription__inner {
		flex-direction: column;
		gap: 40px;
	}

	.bx-subscription .sub-newsletter {
		min-width: 100%;
		width: 100%;
	}

	.bx-subscription .sub-newsletter input {
		padding: 18px 200px 18px 25px;
		height: 65px;
	}

	.bx-subscription .sub-newsletter .bx-btn {
		padding: 14px 30px;
		height: 45px;
		font-size: var(--text-sm);
	}

	.bx-subscription .sub-reviews {
		max-width: 100%;
	}

	.bx-award__medal-list {
		width: 100%;
		text-align: center;
	}

	.bx-award__medal-icons {
		justify-content: center;
		gap: 25px;
	}

	.bx-award__medal-icons img {
		max-width: 60px;
	}

	/* About  */
	.bx-about__inner {
		flex-direction: column;
		padding: 0px;
		gap: 30px;
	}

	.bx-about__card.card-icon {
		gap: 40px;
		min-width: 100%;
		flex-wrap: wrap;
	}

	.bx-about__card-icon img {
		max-width: 200px;
	}

	.bx-about__card-icon {
		order: -1;
		/* Move icon to top on medium screens */
		margin-bottom: 20px;
	}

	.bx-about__card {
		padding: 40px 30px;
		min-width: 100%;
	}

	.bx-about__grid-img img {
		min-width: 0;
		width: 100%;
	}

	.bx-about__grid.column-2 {
		margin-top: 0;
		display: flex;
		flex-direction: column;
		gap: 30px;
	}

	.bx-about__grid-child {
		flex-direction: column;
		gap: 30px;
		margin-top: 30px;
	}

	.bx-about__card .title {
		font-size: var(--text-xl);
	}

	.bx-about__card-btn {
		padding-top: 25px;
		margin-top: 25px;
	}

	/* Funfact  */
	.bx-funfact__inner {
		flex-direction: column;
		align-items: center;
		padding-left: 50px;
		padding-right: 50px;
		padding-bottom: 60px;
		height: auto;
		min-height: 580px;
		border-radius: 80px 80px 0px 0px;
	}

	.bx-funfact__title {
		font-size: var(--text-3xl);
		line-height: 48px;
		padding-left: 30px;
		margin-top: 60px;
		text-align: left;
		width: 100%;
	}

	.bx-funfact__title::before {
		height: 70px;
		top: 12px;
	}

	.bx-funfact__counter {
		margin-right: 0;
		margin-top: 60px;
		margin-bottom: -10px;
		top: 0;
	}

	.bx-funfact__counter .circle-overlay {
		width: 320px;
		height: 320px;
		top: 25px;
	}

	.bx-funfact__counter-icon {
		width: 80px;
		height: 80px;
		line-height: 80px;
	}

	.bx-funfact__counter-icon svg {
		width: 28px;
		height: 28px;
	}

	.bx-funfact__counter-desc {
		margin-top: 35px;
	}

	.bx-funfact__counter-desc h4,
	.bx-funfact__counter-desc h4 span {
		font-size: var(--text-3xl);
	}

	.bx-funfact__counter-desc p {
		font-size: var(--text-base);
		margin-top: 18px;
	}

	/* Service  */
	.bx-service__wrapper {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px 40px;
		margin-top: 30px;
	}

	.bx-service__card {
		gap: 20px;
	}

	.bx-service__card .title {
		font-size: var(--text-lg);
	}

	.bx-service__card .text {
		font-size: var(--text-base);
		line-height: 24px;
	}

	.bx-service__card .service-img img {
		max-width: 120px;
	}

	.bx-service__section-btn {
		margin-top: 45px;
	}

	.bx-service__shape {
		width: 200px;
		height: auto;
		right: 3%;
		top: 40px;
	}

	/* Why Choose  */
	.bx-why-choose__inner {
		display: flex;
		flex-direction: column;
	}

	.bx-why-choose__image {
		position: relative;
		width: 100%;
		height: 500px;
		order: 1;
	}

	.bx-why-choose__image img {
		height: 500px;
		border-radius: 0;
	}

	.bx-why-choose__content {
		padding-top: 60px;
		padding-bottom: 60px;
		margin-left: 0;
		margin-right: 0;
		order: 2;
	}

	.bx-why-choose__content .bx-section-head__text {
		font-size: var(--text-base);
		line-height: 26px;
	}

	.bx-why-choose__info-list {
		margin-top: 30px;
		gap: 30px;
	}

	.bx-why-choose__info-list li {
		font-size: var(--text-base);
		line-height: 26px;
		padding-left: 25px;
		margin-bottom: 18px;
	}

	.bx-why-choose__btn {
		margin-top: 30px;
	}

	.bx-why-choose__bottom {
		flex-direction: column;
		gap: 40px;
		margin-top: 50px;
		padding-bottom: 60px;
	}

	.bx-why-choose__progress {
		width: 100%;
	}

	.bx-why-choose__progress .title {
		font-size: var(--text-xl);
		line-height: 32px;
		margin-bottom: 20px;
	}

	.bx-why-choose__progress .progress-item {
		margin-bottom: 30px;
	}

	.bx-why-choose__progress .progress-item__label {
		margin-bottom: 15px;
	}

	.bx-why-choose__progress .progress-item__title,
	.bx-why-choose__progress .progress-item__percentage {
		font-size: var(--text-md);
	}

	.bx-why-choose__shape {
		align-self: center;
	}

	.bx-why-choose__shape img {
		max-width: 250px;
	}

	/* Work Progress  */
	.bx-work-process__wrapper {
		grid-template-columns: repeat(2, 1fr);
		padding-left: 0;
		gap: 40px;
		margin-top: 60px;
	}

	.w-process-card.card-1,
	.w-process-card.card-2,
	.w-process-card.card-3 {
		margin-top: 0;
	}

	.w-process-card.process-icon::before {
		display: none;
	}

	.bx-work-process__arrow {
		display: none;
	}

	.w-process-card .process-number {
		width: 75px;
		height: 75px;
		line-height: 75px;
		font-size: var(--text-xl);
	}

	.w-process-card .process-content {
		margin-top: 25px;
	}

	.w-process-card .process-content .title {
		font-size: var(--text-lg);
		margin-bottom: 12px;
	}

	.w-process-card .process-content .text {
		font-size: var(--text-base);
		line-height: 26px;
	}

	.bx-work-process__shape .shape-1 {
		right: 50px;
		top: 80px;
		max-width: 120px;
	}

	.bx-work-process__shape .shape-2 {
		right: -20px;
		bottom: 40px;
		max-width: 80px;
	}

	/* Portfolio  */
	.bx-portfolio__inner {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	.bx-portfolio .bx-section-head {
		position: relative;
		top: 0;
		max-width: 100%;
		text-align: center;
	}

	.bx-portfolio .bx-section-head__btn {
		margin-top: 30px;
		text-align: center;
	}

	.portfolio-item .date {
		padding: 7px 14px;
		font-size: var(--text-sm);
		top: 20px;
		left: 20px;
	}

	.portfolio-icon {
		top: 20px;
		right: 20px;
		width: 38px;
		height: 38px;
		line-height: 44px;
		font-size: var(--text-lg);
	}

	.portfolio-content {
		padding: 0px 20px 20px 20px;
	}

	.portfolio-content .title {
		font-size: var(--text-lg);
	}

	.portfolio-content .category li a {
		font-size: var(--text-base);
	}

	/* Testimonial  */
	.bx-testimonial__item {
		padding: 40px;
	}

	.bx-testimonial__content .text {
		font-size: var(--text-xl);
	}

	/* Blog  */
	.bx-blog__wrapper {
		display: grid;
		margin-top: 20px;
		gap: 24px;
		grid-template-columns: repeat(2, 1fr);
	}

	.bx-blog__cover {
		min-width: 100%;
		width: 100%;
	}

	.bx-blog__card {
		display: block;
		min-width: 100%;
		width: 100%;
		padding: 24px;
	}

	.bx-blog__cover img {
		max-width: 100%;
		border-radius: 8px;
		width: 100%;
	}

	.bx-blog__content .title {
		margin-bottom: 9px;
		font-size: var(--text-xl);
	}

	.bx-blog__content .title a {
		line-height: 32px;
	}

	.bx-blog__content .text {
		line-height: 25px;
	}

	.bx-blog__meta .category {
		padding: 8px 12px;
		line-height: 11px;
	}

	.bx-blog__content {
		margin-top: 32px;
	}

	/* Call Action  */
	.bx-call-action__content .title {
		font-size: var(--text-3xl);
		line-height: 130%;
		margin-bottom: 30px;
	}

	.bx-call-action__shapes .shape-1 {
		left: 5%;
	}

	.bx-call-action__shapes .shape-2 {
		right: 5%;
	}

	/* Footer  */
	.bx-footer__main {
		display: flex;
		gap: 40px;
		padding: 40px 0px 80px;
		flex-wrap: wrap;
	}

	.bx-footer__widget.bx-footer__about {
		min-width: 100%;
	}

	.bx-footer__about .title {
		font-size: var(--text-xl);
	}

	.bx-footer__social {
		margin-top: 40px;
	}

	.bx-footer__social li a {
		font-size: var(--text-lg);
	}

	.bx-footer__widget-group {
		min-width: 100%;
	}

	.bx-footer__copyright-inner {
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
	}
}

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

	/* Header  */
	.bx-topbar {
		display: none;
	}

	.bx-header__block {
		background: var(--bx-white-color);
	}

	.bx-header__main {
		background: transparent;
		padding: 0;
	}

	.bx-header__logo.logo-2 {
		display: block;
		padding-right: 0px;
		line-height: 60px;
		border: none;
	}

	.bx-header__inner {
		height: auto;
	}

	.bx-header__logo {
		height: auto;
	}

	.bx-header__action {
		gap: 24px;
	}

	/* Hero  */
	.bx-hero {
		padding-top: 70px;
	}

	.bx-hero__slider-items {
		height: 450px;
	}

	.bx-hero__bg img {
		height: 450px;
	}

	.bx-hero__content {
		max-width: 100%;
		position: relative;
		padding: 30px 20px;
		text-align: center;
		border-radius: 0 0 8px 8px;
	}

	.bx-hero__shape {
		margin: 0 auto 30px;
		width: 50px;
		height: 48px;
	}

	.bx-hero__content h1 {
		font-size: var(--text-2xl);
		line-height: 130%;
		letter-spacing: -0.4px;
		margin: 0 auto;
	}

	.bx-hero__content h1 span {
		font-size: var(--text-2xl);
		line-height: 36px;
		letter-spacing: -0.8px;
	}

	.bx-hero__content-btm {
		margin-top: 12px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.bx-hero__content-btm .text {
		font-size: var(--text-base);
		line-height: 24px;
	}

	.bx-hero__content-btm .bx-btn {
		margin-top: 16px;
		padding: 10px 18px;
		font-size: var(--text-sm);
	}

	.owl-carousel.bx-hero__slider-2 .owl-dots {
		display: flex;
		justify-content: center;
		margin-top: 15px;
	}

	.owl-carousel.bx-hero__slider-2 .owl-dot {
		width: 10px;
		height: 10px;
		margin: 0 5px;
		border-radius: 50%;
		background: #dbdede;
	}

	.owl-carousel.bx-hero__slider-2 .owl-dot.active {
		background: var(--bx-primary-color);
	}

	.owl-carousel.bx-hero__slider-2 .owl-nav .owl-prev {
		left: 0;
	}

	.owl-carousel.bx-hero__slider-2 .owl-nav .owl-next {
		right: 0;
	}

	.owl-carousel.bx-hero__slider-2 .owl-nav [class*="owl-"] {
		border: none !important;
		background: var(--bx-primary-color);
		color: var(--bx-white-color);
		width: 32px;
		height: 32px;
		line-height: 36px;
		opacity: 0;
		visibility: hidden;
		font-size: var(--text-sm);
	}

	.bx-hero:hover .owl-nav [class*="owl-"] {
		opacity: 1;
		visibility: visible;
	}

	.owl-carousel.bx-hero__slider-2 .owl-nav [class*="owl-"]:hover {
		background: var(--bx-title-color);
	}

	/* Subscription  */
	.bx-subscription__inner {
		flex-direction: column;
		gap: 40px;
	}

	.bx-subscription .sub-newsletter {
		min-width: 100%;
	}

	.bx-subscription .sub-newsletter .title {
		font-size: var(--text-lg);
		margin-bottom: 20px;
	}

	.bx-subscription .sub-newsletter input {
		padding: 15px 15px 15px 20px;
		height: 56px;
		border-radius: 30px;
	}

	.bx-subscription .sub-newsletter .bx-btn {
		position: static;
		width: 100%;
		margin-top: 15px;
		height: 50px;
	}

	.bx-subscription .sub-newsletter form {
		display: flex;
		flex-direction: column;
	}

	.bx-subscription .sub-reviews {
		max-width: 100%;
	}

	.bx-subscription .sub-reviews .client-img-list {
		margin-left: 16px;
		margin-bottom: 15px;
	}

	.bx-award__medal-list .title {
		font-size: var(--text-xl);
		line-height: 30px;
	}

	.bx-award__medal-icons {
		gap: 15px;
		flex-wrap: wrap;
		margin-top: 20px;
	}

	.bx-award__medal-icons img {
		max-width: 55px;
	}

	.bx-subscription .sub-reviews .review-text {
		margin-top: 20px;
		font-size: var(--text-sm);
		line-height: 22px;
	}

	.bx-subscription .sub-reviews .trustpilot-info span {
		font-size: var(--text-base);
	}

	.bx-subscription .sub-reviews .trustpilot-info img {
		max-width: 80px;
	}

	.bx-subscription .d-flex-between {
		display: flex;
		flex-direction: column;
	}

	.bx-subscription .sub-reviews-inner {
		justify-content: center;
		align-items: center;
	}

	/* About  */
	.bx-about__inner {
		flex-direction: column;
		padding: 0px 15px;
		gap: 25px;
	}

	.bx-about__card.card-icon {
		gap: 25px;
		min-width: 100%;
		flex-direction: column;
		align-items: flex-start;
	}

	.bx-about__card-icon img {
		max-width: 100%;
	}

	.bx-about__card {
		padding: 30px 15px;
		min-width: 100%;
	}

	.bx-about__grid-img {
		width: 100%;
	}

	.bx-about__grid-img img {
		min-width: 0;
		width: 100%;
		height: auto;
	}

	.bx-about__grid.column-2 {
		margin-top: 0;
	}

	.bx-about__grid-child {
		flex-direction: column;
		gap: 25px;
		margin-top: 25px;
	}

	.bx-about__card .title {
		font-size: var(--text-xl);
	}

	.bx-about__card-btn {
		padding-top: 20px;
		margin-top: 20px;
	}

	.bx-about__card .text {
		font-size: var(--text-base);
		line-height: 1.5;
	}

	/* Partner  */
	.bx-partner__section-head {
		padding-bottom: 24px;
	}

	.bx-partner__section-head .title {
		font-size: var(--text-lg);
	}

	.owl-carousel.bx-partner__slider {
		margin-top: 32px;
	}

	/* Funfact  */
	.bx-funfact__inner {
		flex-direction: column;
		align-items: center;
		padding: 50px 20px 50px;
		height: auto;
		min-height: 480px;
		border-radius: 50px 50px 0px 0px;
	}

	.bx-funfact__title {
		font-size: var(--text-xl);
		line-height: 36px;
		padding-left: 20px;
		text-align: left;
		width: 100%;
	}

	.bx-funfact__title::before {
		height: 60px;
		width: 2px;
		top: 8px;
	}

	.bx-funfact__counter {
		margin-right: 0;
		margin-top: 50px;
		margin-bottom: -24px;
		top: 0;
	}

	.bx-funfact__counter .circle-overlay {
		width: 280px;
		height: 280px;
		top: 20px;
	}

	.bx-funfact__counter-icon {
		width: 70px;
		height: 70px;
		line-height: 70px;
	}

	.bx-funfact__counter-icon svg {
		width: 24px;
		height: 24px;
	}

	.bx-funfact__counter-desc {
		margin-top: 30px;
	}

	.bx-funfact__counter-desc h4,
	.bx-funfact__counter-desc h4 span {
		font-size: var(--text-3xl);
		line-height: 32px;
	}

	.bx-funfact__counter-desc p {
		font-size: var(--text-sm);
		margin-top: 15px;
	}

	/* Service  */
	.bx-service__wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-top: 25px;
	}

	.bx-service__card {
		gap: 20px;
	}

	.bx-service__card .title {
		font-size: var(--text-lg);
	}

	.bx-service__card .text {
		font-size: var(--text-base);
		line-height: 24px;
	}

	.bx-service__card .service-img img {
		max-width: 100px;
	}

	.bx-service__section-btn {
		margin-top: 40px;
	}

	.bx-service__shape {
		width: 150px;
		height: auto;
		right: 0;
		top: 20px;
	}

	/* Why Choose  */
	.bx-why-choose__inner {
		display: flex;
		flex-direction: column;
	}

	.bx-why-choose__image {
		position: relative;
		width: 100%;
		height: 400px;
		order: 1;
	}

	.bx-why-choose__image img {
		height: 400px;
		border-radius: 0;
	}

	.bx-why-choose__content {
		padding-top: 50px;
		padding-bottom: 50px;
		margin-left: 0;
		margin-right: 0;
		order: 2;
	}

	.bx-why-choose__content .bx-section-head__text {
		font-size: var(--text-base);
		line-height: 24px;
	}

	.bx-why-choose__info-list {
		margin-top: 25px;
		gap: 0;
		flex-direction: column;
	}

	.bx-why-choose__info-list li {
		font-size: var(--text-base);
		line-height: 24px;
		padding-left: 22px;
		margin-bottom: 15px;
	}

	.bx-why-choose__btn {
		margin-top: 25px;
	}

	.bx-why-choose__bottom {
		flex-direction: column;
		gap: 30px;
		margin-top: 40px;
		padding-bottom: 50px;
	}

	.bx-why-choose__progress {
		width: 100%;
	}

	.bx-why-choose__progress .title {
		font-size: var(--text-lg);
		line-height: 28px;
		margin-bottom: 20px;
	}

	.bx-why-choose__progress .progress-item {
		margin-bottom: 25px;
	}

	.bx-why-choose__progress .progress-item__label {
		margin-bottom: 12px;
	}

	.bx-why-choose__progress .progress-item__title,
	.bx-why-choose__progress .progress-item__percentage {
		font-size: var(--text-base);
	}

	.bx-why-choose__shape {
		align-self: center;
	}

	.bx-why-choose__shape img {
		max-width: 200px;
	}

	/* Work Progress  */
	.bx-work-process__wrapper {
		grid-template-columns: 1fr;
		padding-left: 0;
		gap: 30px;
		margin-top: 40px;
	}

	.w-process-card.card-1,
	.w-process-card.card-2,
	.w-process-card.card-3 {
		margin-top: 0;
	}

	.w-process-card.process-icon::before {
		display: none;
	}

	.bx-work-process__arrow {
		display: none;
	}

	.w-process-card {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.w-process-card .process-number {
		width: 70px;
		height: 70px;
		line-height: 70px;
		font-size: var(--text-lg);
	}

	.w-process-card .process-content {
		margin-top: 20px;
	}

	.w-process-card .process-content .title {
		font-size: var(--text-lg);
		margin-bottom: 10px;
	}

	.w-process-card .process-content .text {
		font-size: var(--text-base);
		line-height: 24px;
	}

	.bx-work-process__shape .shape-1,
	.bx-work-process__shape .shape-2 {
		max-width: 60px;
	}

	.bx-work-process__shape .shape-1 {
		right: 20px;
		top: 60px;
	}

	.bx-work-process__shape .shape-2 {
		right: -10px;
		bottom: 30px;
	}

	/* Portfolio  */
	.bx-portfolio__inner {
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}

	.bx-portfolio .bx-section-head {
		position: relative;
		top: 0;
		max-width: 100%;
		text-align: center;
	}

	.bx-portfolio .bx-section-head__title {
		font-size: var(--text-xl);
	}

	.bx-portfolio .bx-section-head__title br {
		display: none;
	}

	.bx-portfolio .bx-section-head__btn {
		margin-top: 20px;
		text-align: center;
	}

	.bx-portfolio__wrapper {
		margin-bottom: 20px;
	}

	.portfolio-item {
		margin-top: 20px;
	}

	.portfolio-item .date {
		padding: 5px 10px;
		font-size: var(--text-sm);
		top: 15px;
		left: 15px;
	}

	.portfolio-icon {
		top: 15px;
		right: 15px;
		width: 32px;
		height: 32px;
		line-height: 38px;
		font-size: var(--text-lg);
	}

	.portfolio-content {
		padding: 0px 15px 15px 15px;
	}

	.portfolio-content .title {
		font-size: var(--text-base);
		margin-top: 8px;
	}

	.portfolio-content .category li {
		margin-right: 8px;
	}

	.portfolio-content .category li a {
		font-size: var(--text-sm);
	}

	.portfolio-img,
	.portfolio-img img {
		max-width: 100%;
	}

	/* Testimonial  */
	.owl-carousel.bx-testimonial__slider {
		margin-top: 20px;
	}

	.bx-testimonial__content .text {
		line-height: 30px;
	}

	.bx-testimonial__item {
		padding: 24px;
	}

	.bx-testimonial__content {
		margin-top: 24px;
	}

	.bx-testimonial__info {
		margin-top: 24px;
	}

	.bx-testimonial__info .name {
		font-size: var(--text-base);
		margin-bottom: 8px;
	}

	.bx-testimonial__reviews .title {
		font-size: var(--text-lg);
	}

	.bx-testimonial__reviews .text {
		line-height: 20px;
	}

	.bx-testimonial__reviews {
		padding-top: 16px;
		margin-top: 16px;
	}

	/* Blog  */
	.bx-blog__wrapper {
		display: grid;
		margin-top: 20px;
		gap: 24px;
		grid-template-columns: repeat(1, 1fr);
	}

	.bx-blog__cover {
		min-width: 100%;
		width: 100%;
	}

	.bx-blog__cover img {
		max-width: 100%;
		border-radius: 8px;
		width: 100%;
	}

	.bx-blog__card {
		display: block;
		min-width: 100%;
		width: 100%;
		padding: 24px;
	}

	.bx-blog__content .title {
		margin-bottom: 9px;
		font-size: var(--text-xl);
	}

	.bx-blog__content .title a {
		line-height: 32px;
	}

	.bx-blog__content .text {
		line-height: 25px;
	}

	.bx-blog__meta .category {
		padding: 8px 12px;
		line-height: 11px;
	}

	.bx-blog__content {
		margin-top: 32px;
	}

	/* Call Action  */
	.bx-call-action__content .sm-title {
		font-size: var(--text-sm);
		margin-bottom: 16px;
	}

	.bx-call-action__content .title {
		font-size: var(--text-2xl);
		line-height: 130%;
		margin-bottom: 24px;
	}

	.bx-call-action__btn {
		flex-direction: column;
		gap: 16px;
	}

	.bx-call-action__shapes .shape-1 {
		left: 5%;
		max-width: 24px;
	}

	.bx-call-action__shapes .shape-2 {
		right: 5%;
		max-width: 24px;
	}

	/* Footer  */
	.bx-footer__main {
		grid-template-columns: repeat(1, 1fr);
		padding: 16px 0px 56px;
	}

	.bx-footer__widget.bx-footer__about {
		min-width: 100%;
	}

	.bx-footer__about .title {
		font-size: var(--text-xl);
		margin-top: 24px;
	}

	.bx-footer__social {
		margin-top: 24px;
	}

	.bx-footer__social li {
		margin-right: 22px;
	}

	.bx-footer__social li a {
		font-size: var(--text-lg);
	}

	.bx-footer__widget-group {
		min-width: 100%;
	}

	.bx-footer__main {
		gap: 0;
	}

	.bx-footer__widget .widget-title {
		font-size: var(--text-lg);
	}

	.bx-footer__widget-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.bx-footer__newsletter input {
		height: 48px;
	}

	.bx-footer__newsletter {
		margin-top: 40px;
	}

	.bx-footer__widget .contact-icon img {
		max-width: 40px;
	}

	.bx-footer__widget .contact-info .links {
		font-size: var(--text-base);
		line-height: 120%;
	}

	.bx-footer__widget .contact-item {
		margin-bottom: 32px;
	}

	.bx-footer__copyright-inner {
		display: block;
		text-align: left;
	}

	.copyright-text {
		text-align: left;
	}

	.bx-footer__links li {
		padding-right: 12px;
		margin-right: 12px;
	}
}



/* RTL  */
.rtl .bx-hero__content {
	left: auto;
	right: 0;
	text-align: right;
	padding: 70px 70px 70px 0;
}

.rtl .owl-carousel.bx-hero__slider-2 .owl-nav .owl-next {
	right: auto;
	left: -100px;
}

.rtl .owl-carousel.bx-hero__slider-2 .owl-nav .owl-prev {
	left: auto;
	right: -100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.rtl .owl-carousel.bx-hero__slider-2 .owl-nav .owl-prev {
		left: auto;
		right: -20px;
	}

	.rtl .owl-carousel.bx-hero__slider-2 .owl-nav .owl-next {
		right: auto;
		left: -20px;
	}
}

.rtl .bx-subscription .sub-newsletter .bx-btn {
	right: auto;
	left: 10px;
}

.rtl .bx-subscription .sub-reviews .client-img-list li {
	margin-left: 0;
	margin-right: -16px;
}

.rtl .bx-subscription .sub-reviews .client-img-list {
	margin-left: 0;
	margin-right: 16px;
}

.rtl .bx-funfact__inner {
	padding-left: 0;
}

.rtl .bx-funfact__title {
	padding-left: 0;
	padding-right: 45px;
}

.rtl .bx-funfact__title::before {
	left: auto;
	right: 0;
}

.rtl .bx-funfact__counter {
	margin-right: 0;
	margin-left: 352px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.rtl .bx-funfact__inner {
		padding-right: 90px;
	}
}

.rtl .bx-service__shape {
	right: auto;
	left: 8%;
}

.rtl .bx-why-choose__image {
	left: auto;
	right: 0;
}

.rtl .bx-why-choose__image img {
	border-radius: 0px 0px 0px 6px;
}

.rtl .bx-why-choose__content {
	margin-left: 40px;
	margin-right: 80px;
}

.rtl .bx-why-choose__info-list li {
	padding-left: 0;
	padding-right: 28px;
}

.rtl .bx-why-choose__info-list li i {
	left: auto;
	right: 0;
}

.rtl .bx-why-choose__progress .progress {
	right: 0;
	left: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.rtl .bx-why-choose__content {
		margin-right: 0;
		margin-left: 0;
	}
}

.rtl .bx-work-process__wrapper {
	padding-left: 0;
	padding-right: 485px;
}

.rtl .bx-work-process__arrow {
	left: auto;
	right: 115px;
	transform: scaleX(-1);
}

.rtl .w-process-card.process-icon::before {
	right: auto;
	left: -96px;
	transform: scaleX(-1);
}

.rtl .bx-work-process__shape .shape-1 {
	right: auto;
	left: 175px;
}

.rtl .bx-work-process__shape .shape-2 {
	right: auto;
	left: -40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.rtl .w-process-card.process-icon::before {
		width: 250px;
		left: -80px;
	}

	.rtl .bx-work-process__wrapper {
		padding-right: 350px;
	}

	.rtl .bx-work-process__arrow {
		right: 0px;
	}

	.rtl .bx-work-process__shape .shape-1 {
		left: 120px;
	}

	.rtl .bx-work-process__shape .shape-2 {
		left: -20px;
	}
}

.rtl .portfolio-item .date {
	left: auto;
	right: 40px;
}

.rtl .portfolio-icon {
	right: auto;
	left: 40px;
	transform: rotate(40deg);
}

.rtl .portfolio-content {
	text-align: right;
}

.rtl .portfolio-content .category li {
	margin-right: 0;
	margin-left: 12px;
}

.rtl .portfolio-content .category li:last-child {
	margin-left: 0;
}

.rtl .bx-testimonial__image,
.rtl .bx-testimonial__info,
.rtl .bx-testimonial__reviews {
	text-align: right;
}

.rtl .bx-blog__meta .category {
	margin-left: 0;
	margin-right: 0;
}

.rtl .bx-blog__meta .date {
	margin-left: 0;
	margin-right: 18px;
}

.rtl .bx-call-action__shapes .shape-1 {
	left: auto;
	right: 18%;
}

.rtl .bx-call-action__shapes .shape-2 {
	right: auto;
	left: 22%;
}

.rtl .bx-footer__social li {
	margin-right: 0;
	margin-left: 24px;
}

.rtl .bx-footer__social li:last-child {
	margin-left: 0;
}

.rtl .bx-footer__widget .list-links li a {
	display: block;
}

.rtl .bx-footer__newsletter .bx-btn {
	right: auto;
	left: 0;
}

.rtl .bx-footer__links li {
	padding-right: 0;
	padding-left: 20px;
	margin-right: 0;
	margin-left: 20px;
}

.rtl .bx-footer__links li::before {
	right: auto;
	left: 0;
}

.rtl .bx-footer__links li:last-child {
	padding-left: 0;
	margin-left: 0;
}

.rtl .copyright-text {
	text-align: left;
}

.rtl .mobile-menu-offcanvas-toggler {
	margin-left: 0;
	margin-right: 15px;
}

.rtl .offcanvas-modal .modal-header .btn-close {
	margin-left: 0;
	margin-right: auto;
}

.rtl .offcanvas__menu_item i {
	float: left;
}

.rtl .offcanvas__menu_ul .offcanvas__menu_li .offcanvas__sub_menu {
	padding-left: 0;
	padding-right: 15px;
}

.rtl .bx-sidebar {
	left: 0;
	right: auto;
}

.rtl .bx-sidebar-header button {
	margin-left: 0;
	margin-right: auto;
}

.rtl .bx-contact__info-item {
	text-align: right;
}

.rtl .bx-contact__info-icon {
	margin-right: 0;
	margin-left: 15px;
}

.rtl .bx-searchbar-from button {
	right: auto;
	left: 10px;
}

@media only screen and (max-width: 767px) {
	.rtl .bx-hero__content {
		padding: 30px 20px;
		text-align: center;
	}

	.rtl .owl-carousel.bx-hero__slider-2 .owl-nav .owl-prev {
		left: auto;
		right: 0;
	}

	.rtl .owl-carousel.bx-hero__slider-2 .owl-nav .owl-next {
		right: auto;
		left: 0;
	}

	.rtl .bx-subscription .sub-newsletter .bx-btn {
		position: static;
	}

	.rtl .portfolio-item .date {
		right: 15px;
	}

	.rtl .portfolio-icon {
		left: 15px;
	}

	.rtl .bx-call-action__shapes .shape-1 {
		right: 5%;
	}

	.rtl .bx-call-action__shapes .shape-2 {
		left: 5%;
	}

	.rtl .bx-footer__copyright-inner {
		text-align: center;
	}

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

	.rtl .bx-funfact__title {
		padding-left: 40px;
		padding-right: 0;
	}

	.rtl .bx-funfact__counter {
		margin-right: 0;
		margin-left: 0;
	}

	.rtl .bx-funfact__title::before {
		left: 20px;
		right: auto;
	}

	.rtl .bx-why-choose__content {
		margin-left: 0;
		margin-right: 0;
	}

	.rtl .bx-work-process__wrapper {
		padding-right: 0;
	}

}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.rtl .bx-why-choose__image {
		order: 1;
	}

	.rtl .bx-why-choose__content {
		order: 2;
		margin-right: 0;
	}

	.rtl .bx-work-process__wrapper {
		padding-right: 0;
	}

	.rtl .w-process-card.process-icon::before {
		display: none;
	}
}



/*================================================================================================
  End Business Home CSS
===================================================================================================*/



/* Loader Animation */
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

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

.loader-container {
	display: none;
	text-align: center;
	margin: 30px 0;
}

.loader-container.active {
	display: block;
}

.loader {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #333;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
	margin: 0 auto 15px;
}

.loader-text {
	font-size: var(--text-sm);
	color: #666;
	font-weight: 500;
}





.text-home {
	color: var(--bx-primary-color, var(--bx-primary-color)) !important;
}

.text-bg-home {
	background-color: var(--bx-primary-color, var(--bx-primary-color)) !important;
	color: #fff !important;
}

.bg-home {
	background-color: var(--bx-primary-color, var(--bx-primary-color)) !important;
}





section.service-details {
	padding: 250px 100px 100px 100px;
}

.service-details__inner {
	justify-content: space-between;
	gap: 86px;
}

.service-details__content h3 {
	font-size: var(--text-4xl);
	font-weight: 500;
	line-height: 60px;
	letter-spacing: -0.4px;
	margin-bottom: 16px;
}

.service-details__content p {
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: 34px;
	letter-spacing: -0.4px;
}

.service-details__content img {
	width: 100%;
	margin: 50px 0px;
	border-radius: 12px;
}

.service-details__content h4 {
	font-size: var(--text-2xl);
	font-weight: 600;
	line-height: 38px;
	margin-bottom: 16px;
}

.service-details__content ul {
	margin: 50px 0px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.service-details__content ul li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: var(--text-lg);
	font-weight: 500;
	line-height: 30px;
	color: var(--bx-title-color);
}

.service-details__content ul li i {
	color: var(--bx-primary-color);
	position: relative;
	top: 2px;
}

.service-work-process {
	margin-top: 90px;
}

.service-work-process .work-process-title {
	font-size: var(--text-4xl);
	font-weight: 500;
	line-height: 60px;
	letter-spacing: -0.4px;
	border-bottom: 1px solid rgba(34, 48, 53, 0.17);
	line-height: 120%;
	padding-bottom: 25px;
	margin-bottom: 32px;
}

.service-work-process__wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 112px;
}

.work-process__item:hover .number {
	background: var(--bx-primary-color);
	color: var(--bx-white-color);
	border: 1px solid transparent;
}

.work-process__item .number {
	width: 90px;
	height: 90px;
	border: 1px solid var(--bx-title-color);
	border-radius: 100%;
	display: block;
	text-align: center;
	line-height: 90px;
	font-size: var(--text-2xl);
	font-style: normal;
	font-weight: 600;
	color: var(--bx-title-color);
	margin-bottom: 48px;
	transition: all 0.3s ease;
}

.work-process__item .title {
	font-size: var(--text-xl);
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 16px;
}

.work-process__item .text {
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: 30px;
	letter-spacing: -0.36px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {

	.service-work-process__wrapper {
		gap: 56px;
	}
}

@media (max-width: 1199px) {
	section.service-details {
		padding: 100px 20px 100px;
	}

	.service-details__inner {
		gap: 60px;
	}

	.service-work-process__wrapper {
		gap: 60px;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 991px) {
	.service-details__inner {
		flex-direction: column;
		gap: 50px;
	}

	.service-details__main {
		order: 1;
	}


	.service-details__content h3 {
		font-size: var(--text-3xl);
		line-height: 48px;
	}

	.service-details__content h4 {
		font-size: var(--text-xl);
		line-height: 36px;
	}

	.service-work-process .work-process-title {
		font-size: var(--text-3xl);
		line-height: 48px;
	}

	.work-process__item .number {
		width: 80px;
		height: 80px;
		line-height: 80px;
		margin-bottom: 36px;
	}
}

@media (max-width: 767px) {
	.service-details__content ul {
		grid-template-columns: 1fr;
		gap: 16px;
		margin: 30px 0;
	}

	.service-work-process__wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.service-details__content p {
		font-size: var(--text-lg);
		line-height: 30px;
	}

	.service-details__content img {
		margin: 30px 0;
	}

	.service-work-process {
		margin-top: 60px;
	}


}

@media (max-width: 575px) {
	.service-details__content h3 {
		font-size: var(--text-2xl);
		line-height: 42px;
	}

	.service-details__content h4 {
		font-size: var(--text-xl);
		line-height: 32px;
	}

	.service-work-process .work-process-title {
		font-size: var(--text-2xl);
		line-height: 42px;
		padding-bottom: 20px;
		margin-bottom: 28px;
	}

	.work-process__item .number {
		width: 70px;
		height: 70px;
		line-height: 70px;
		font-size: var(--text-xl);
		margin-bottom: 24px;
	}

	.work-process__item .title {
		font-size: var(--text-lg);
	}

	.work-process__item .text {
		font-size: var(--text-base);
		line-height: 26px;
	}


}

@media (max-width: 375px) {
	.service-details__content h3 {
		font-size: var(--text-xl);
		line-height: 36px;
	}

	.service-details__content p {
		font-size: var(--text-base);
		line-height: 28px;
	}

	.service-details__content ul li {
		font-size: var(--text-base);
		line-height: 26px;
	}

	.work-process__item .number {
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: var(--text-lg);
	}
}

/*================================================================================================
    End Service Details CSS
===================================================================================================*/



section.bx-contact {
	padding: 100px 100px 100px 100px;
}

/* Contact  */
.bx-contact .bx-section-head__text {
	color: var(--bx-paragraph-color);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: 34px;
	letter-spacing: -0.4px;
	margin-top: 24px;
}

.bx-contact__inner {
	display: flex;
	align-items: center;
	gap: 136px;
}

.bx-contact__content {
	max-width: 696px;
}

.bx-contact__main {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding-top: 30px;
	margin-top: 30px;
}

.bx-contact__info {
	margin-bottom: 32px;
}

.bx-contact__info:last-child {
	margin: 0;
}

.bx-contact__info .title {
	font-size: var(--text-2xl);
	font-weight: 400;
	line-height: 120%;
	color: var(--bx-paragraph-color);
	display: block;
	margin-bottom: 22px;
}

.bx-contact__info .info-list li {
	display: inline-block;
	margin-right: 24px;
	padding-right: 24px;
	position: relative;
	color: var(--bx-paragraph-color);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: 30px;
	letter-spacing: -0.36px;
}

.bx-contact__info .info-list li a:hover {
	color: var(--bx-primary-color);
}

.bx-contact__info .info-list li::before {
	position: absolute;
	content: "";
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.21);
	right: 0;
	top: 8px;
}

.bx-contact__info .info-list li:last-child {
	padding: 0;
	margin: 0;
}

.bx-contact__info .info-list li:last-child::before {
	display: none;
}

.bx-contact__widget {
	border-radius: 4px;
	background: #f0f0f0;
	padding: 75px;
	margin-top: 40px;
	max-width: 750px;
	border: 1px solid rgba(34, 48, 53, 0.17);
	box-shadow: 0px 2px 6px rgba(34, 48, 53, 0.17);
}

.bx-contact__widget h3 {
	font-size: var(--text-4xl);
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -0.4px;
	margin: 0;
}

.bx-contact__form {
	/* margin-top: 48px; */
}

.bx-contact__form .form-group {
	margin-bottom: 24px;
}

.bx-contact__form .form-group input,
.bx-contact__form .form-group textarea {
	width: 100%;
	height: 48px;
	border: 1px solid rgba(34, 48, 53, 0.17);
	background-color: transparent;
	color: var(--bx-title-color);
	font-size: var(--text-base);
	font-weight: 400;
	line-height: 28px;
	border-radius: 8px;
}

.bx-contact__form .form-group input:focus,
.bx-contact__form .form-group textarea:focus {
	border: 1px solid var(--bx-primary-color);
}

.bx-contact__form .form-group textarea {
	height: 215px;
}

.bx-contact__form .form-group .nice-select {
	width: 100%;
	height: 48px;
	line-height: 48px;
	background: transparent;
	border: 1px solid rgba(34, 48, 53, 0.17);
	background-color: transparent;
	border-radius: 8px;
	color: #70717e;
	padding-left: 12px;
	font-weight: 400;
}

.bx-contact__form .form-group .nice-select::after {
	border-bottom: 2px solid var(--bx-primary-color);
	border-right: 2px solid var(--bx-primary-color);
}

.bx-contact-map .gmap_canvas,
.bx-contact-map .gmap_canvas iframe {
	width: 100%;
	height: 670px;
}



@media only screen and (min-width: 768px) and (max-width: 1199px) {

	/* Contact  */
	.bx-contact__inner {
		display: block;
	}

	.bx-contact__content {
		max-width: 100%;
	}

	.bx-contact__widget {
		margin-top: 40px;
		padding: 40px;
	}
}

@media (max-width: 1199px) {
	section.bx-contact {
		padding: 100px 0px 100px;
	}

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

		/* Contact  */
		.bx-contact__inner {
			display: block;
		}

		.bx-contact__widget {
			padding: 24px;
			margin-top: 40px;
		}

		.bx-contact__widget h3 {
			font-size: var(--text-xl);
		}

		.bx-contact__form {
			margin-top: 24px;
		}

		.bx-contact__info .title {
			font-size: var(--text-lg);
			margin-bottom: 12px;
		}

		.bx-contact__info {
			margin-bottom: 24px;
		}

		/* Contact  */
		.bx-contact-map .gmap_canvas,
		.bx-contact-map .gmap_canvas iframe {
			height: 300px;
		}
	}
}

/*================================================================================================
    End Contact CSS
===================================================================================================*/




/* ===== Hero Simulation ===== */
.sim-hero {
	position: relative;
	min-height: 100vh;
	padding-top: 210px;
	padding-bottom: 80px;
	display: flex;
	align-items: center;
}

.sim-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.sim-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.sim-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(0, 17, 17, 0.92) 0%, rgba(0, 40, 40, 0.78) 55%, rgba(0, 17, 17, 0.70) 100%);
	z-index: 1;
}

.sim-hero .container,
.sim-hero [class*="bx-container"] {
	position: relative;
	z-index: 2;
}

/* Hero left content */
.sim-hero__content {
	color: #fff;
}

.sim-badge {
	display: inline-block;
	padding: 6px 18px;
	border-radius: 50px;
	font-size: var(--text-sm);
	font-weight: 600;
	letter-spacing: 0.4px;
}

.sim-badge--light {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(4px);
}

.sim-hero__title {
	font-size: clamp(32px, 3.5vw, 52px);
	font-weight: 800;
	line-height: 1.08;
	color: #fff;
	margin: 0 0 12px;
	letter-spacing: -0.5px;
}

.sim-accent {
	color: var(--bx-primary-color);
}

.sim-hero__desc {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.55;
	max-width: 420px;
	margin-bottom: 18px;
}

.sim-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 28px;
}

.sim-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 1);
	font-size: var(--text-sm);
	font-weight: 500;
}

.sim-trust-item i {
	color: var(--bx-primary-color);
	font-size: var(--text-lg);
	flex-shrink: 0;
}

/* Simulator Card */
.sim-card {
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
	overflow: visible;
	position: relative;
	z-index: 10;
}

.sim-card__header {
	padding: 22px 28px 18px;
	border-bottom: 1px solid #f0ece8;
	background: linear-gradient(135deg, #faf7f5 0%, #fff 100%);
	border-radius: 14px;
}

.sim-card__body {
	padding: 24px 28px 28px;
	background: linear-gradient(135deg, #faf7f5 0%, #fff 100%);

}

/* Fields */
.sim-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	/* margin-bottom: 20px; */
}

.sim-field__label {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: var(--text-sm);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #111 !important;
	margin-bottom: 2px;
}

.sim-field__label i {
	color: var(--bx-primary-color);
	font-size: var(--text-sm);
}

.sim-field {
	margin-bottom: 20px !important;
}

/* Slider field */
.sim-slider-field {
	margin-bottom: 20px;
}

.sim-slider-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.sim-slider-val {
	font-family: var(--bx-font-1);
	font-size: var(--text-lg);
	font-weight: 800;
	color: var(--bx-primary-color);
	line-height: 1;
}

.sim-range {
	-webkit-appearance: none;
	appearance: none;
	width: calc(100% + 24px);
	margin-left: -12px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(to right, var(--bx-primary-color) var(--pct, 18%), #dde6d8 var(--pct, 18%));
	outline: none;
	cursor: pointer;
	transition: background 0.1s;
}

.sim-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 12px;
	height: 48px;
	border-radius: 3px;
	background: var(--bx-primary-color);
	border: none;
	box-shadow: 0 2px 10px rgba(125, 184, 42, 0.40);
	cursor: ew-resize;
	transition: transform 0.15s, box-shadow 0.15s;
}

.sim-range::-moz-range-thumb {
	width: 12px;
	height: 48px;
	border-radius: 3px;
	background: var(--bx-primary-color);
	border: none;
	box-shadow: 0 2px 10px rgba(125, 184, 42, 0.40);
	cursor: ew-resize;
}

.sim-range:active::-webkit-slider-thumb {
	transform: scaleY(1.15);
	box-shadow: 0 4px 16px rgba(125, 184, 42, 0.50);
}

.sim-range:active::-moz-range-thumb {
	transform: scaleY(1.15);
}

.sim-slider-bounds {
	display: flex;
	justify-content: space-between;
	font-size: var(--text-xs);
	color: var(--bx-muted-color);
	margin-top: 6px;
}

/* Result Box — même aspect qu'un input */
.sim-result-box {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--bx-secondary-color);
	transition: all 0.25s ease;
}

.sim-result-box__sub {
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--bx-primary-color);
}

/* CTA */
.sim-cta {
	justify-content: center;
	margin-bottom: 20px;
	margin-top: 10px;
	background-color: var(--bx-title-color) !important;
	border-color: var(--bx-title-color) !important;
	border-radius: 4px !important;
	padding: 14px 36px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	color: #fff !important;
}

.sim-inline-sep {
	width: 1px;
	background: #e4efe0;
	flex-shrink: 0;
	align-self: stretch;
}

/* Disclaimer */
.sim-disclaimer {
	font-size: var(--text-xs);
	color: #222;
	display: flex;
	gap: 6px;
	justify-content: center;
	line-height: 1.5;
	text-align: center;
}

.sim-disclaimer i {
	flex-shrink: 0;
	margin-top: 1px;
	font-size: var(--text-sm);
}

/* Responsive */
@media (max-width: 991px) {
	.sim-hero {
		padding-top: 130px;
		padding-bottom: 60px;
		min-height: auto;
	}

	.sim-hero__title {
		font-size: var(--text-3xl);
	}

	.sim-hero__desc {
		display: none !;
	}

	.sim-hero__content {
		margin-top: 0px;
	}

	.fs-sim-title {
		font-size: 28px !important;
	}
}

@media (max-width: 767px) {

	.sim-card__header,
	.sim-card__body {
		padding: 18px;
	}

	.sim-inline-value {
		font-size: var(--text-lg);
	}

	.sim-results-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.sim-result-item--accent {
		display: none !important;
	}

	.sim-disclaimer {
		font-size: 13px !important;
	}

	.soustitrr {
		display: none;
	}

	.bx-about__inner {
		margin-top: 40px;
		padding: 0;
	}

	.bx-about__card {
		border-radius: 4px;
	}
}

label {
	color: #003953 !important;
}


.resultats {
	margin-top: 20px !important;
	margin-bottom: 10px !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 12px;
	border-top: 1px solid #e8f0dc;
}

.resultats .sim-field__label {
	font-size: var(--text-xs);
	font-weight: 600;
	color: #aaa;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.resultats .sim-result-box {
	justify-content: center;
	width: auto;
	font-size: var(--text-3xl);
	font-weight: 700;
	color: var(--bx-secondary-color);
	gap: 8px;
}

.resultats .sim-result-box__sub {
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--bx-primary-color);
}

.sim-results-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 20px;
	margin-bottom: 4px;
}

.sim-result-item {
	background: var(--bx-offwhite-color);
	border: 1px solid var(--bx-border-color);
	border-radius: 10px;
	padding: 14px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 2px;
}

.sim-result-item--accent {
	background: rgba(125, 184, 42, 0.07);
	border-color: rgba(125, 184, 42, 0.3);
}

.sim-result-item__label {
	font-size: var(--text-xs);
	font-weight: 600;
	color: var(--bx-muted-color);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.sim-result-item__value {
	font-family: var(--bx-font-1);
	font-size: var(--text-xl);
	font-weight: 800;
	color: var(--bx-secondary-color);
	line-height: 1.1;
	transition: color 0.2s;
}

.sim-result-item--accent .sim-result-item__value {
	color: var(--bx-primary-color);
}

.sim-result-item__sub {
	font-size: var(--text-xs);
	color: var(--bx-muted-color);
	line-height: 1.3;
}

/* Animation flash sur changement */
@keyframes simPop {
	0% {
		opacity: 0.3;
		transform: scale(0.95);
	}

	60% {
		opacity: 1;
		transform: scale(1.04);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.sim-val-animate {
	animation: simPop 0.28s ease;
}

.sim-cta-wrap {
	display: flex;
	justify-content: center;
	margin-top: 16px;
}

/* Slogans */
.sim-slogans {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid #f0f0f0;
}

.sim-slogan-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	flex: 1;
	text-align: center;
	font-size: var(--text-xs);
	font-weight: 600;
	color: #888;
	line-height: 1.3;
}

.sim-slogan-item i {
	font-size: var(--text-base);
	color: var(--bx-primary-color);
}

/* About card list */
.bx-about__card-list {
	list-style: none;
	padding: 0;
	margin: 10px 0 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.bx-about__card-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: var(--text-sm);
	color: #555;
}

.bx-about__card-list li i {
	color: var(--bx-primary-color);
	font-size: var(--text-sm);
	flex-shrink: 0;
}

/* Autres offres */
.bx-about-offers {
	margin-top: 48px;
	padding-top: 36px;
	border-top: 1px solid #f0f0f0;
}

.bx-about-offers__title {
	font-size: var(--text-base);
	font-weight: 700;
	color: var(--bx-secondary-color);
	margin-bottom: 24px;
}

.bx-about-offers__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.bx-about-offer-item {
	background: var(--bx-offwhite-color);
	border: 1px solid #e8f0dc;
	border-radius: 10px;
	padding: 20px;
}

.bx-about-offer-item i {
	font-size: var(--text-xl);
	color: var(--bx-primary-color);
	margin-bottom: 10px;
	display: block;
}

.bx-about-offer-item h6 {
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--bx-secondary-color);
	margin-bottom: 8px;
}

.bx-about-offer-item p {
	font-size: var(--text-sm);
	color: #777;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 767px) {
	.bx-about-offers__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.bx-about-offers__grid {
		grid-template-columns: 1fr;
	}
}

.soustitrr {
	background-color: rgba(225, 225, 225, .2);
	padding: 12px 16px;
	border-radius: 4px;
	font-size: var(--text-xs);
	line-height: 1.8;
	font-weight: 300;
	color: var(--bx-white-color);
}

.fs10 {
	font-size: 10px !important;
}

.fs11 {
	font-size: 11px !important;
}

.fs12 {
	font-size: 12px !important;
}

.fs13 {
	font-size: 13px !important;
}

.fs14 {
	font-size: 14px !important;
}

.fs15 {
	font-size: 15px !important;
}

.fs16 {
	font-size: 16px !important;
}

.fs17 {
	font-size: 17px !important;
}

.fs18 {
	font-size: 18px !important;
}

.fs19 {
	font-size: 19px !important;
}

.fs20 {
	font-size: 20px !important;
}

.fs21 {
	font-size: 21px !important;
}

.fs22 {
	font-size: 22px !important;
}

.fs23 {
	font-size: 23px !important;
}

.fs24 {
	font-size: 24px !important;
}

.fs25 {
	font-size: 25px !important;
}

.fs26 {
	font-size: 26px !important;
}

.fs27 {
	font-size: 27px !important;
}

.fs28 {
	font-size: 28px !important;
}

.fs29 {
	font-size: 29px !important;
}

.fs30 {
	font-size: 30px !important;
}

.fs31 {
	font-size: 31px !important;
}

.fs32 {
	font-size: 32px !important;
}

.fs33 {
	font-size: 33px !important;
}

.fs34 {
	font-size: 34px !important;
}

.fs35 {
	font-size: 35px !important;
}

.fs36 {
	font-size: 36px !important;
}

.fs37 {
	font-size: 37px !important;
}

.fs38 {
	font-size: 38px !important;
}

.fs39 {
	font-size: 39px !important;
}

.fs40 {
	font-size: 40px !important;
}


/* ── MODAL DEMANDE ─────────────────────────── */
.modal-demande .modal-content {
	border-radius: 16px;
	border: none;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .15);
}

.modal-demande .modal-header {
	background: linear-gradient(135deg, #f0fdf4, #dcfce7);
	border: none;
	padding: 48px 32px 20px;
	align-items: flex-start;
}

.modal-demande .modal-body {
	padding: 24px 32px 8px;
}

.modal-demande .modal-footer {
	border: none;
	padding: 8px 32px 24px;
	gap: 10px;
}

.step-progress {
	display: flex;
	gap: 6px;
	margin-bottom: 10px;
}

.step-bar {
	height: 3px;
	flex: 1;
	background: #d1d5db;
	border-radius: 2px;
	transition: background .3s;
}

.step-bar.active {
	background: #059669;
}

.step-label {
	font-size: 18px;
	font-weight: 700;
	color: #1a2e05;
	line-height: 1.2;
}

.step-sub {
	font-size: 12px;
	color: #9ca3af;
	margin-top: 2px;
}

.modal-step {
	display: none;
}

.modal-step.active {
	display: block;
}

.modal-demande .form-group {
	margin-bottom: 14px;
}

.modal-demande .form-group label {
	font-size: 13px;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	color: #374151;
	margin-bottom: 5px;
	display: block;
}

.modal-demande .form-group input,
.modal-demande .form-group select,
.modal-demande .form-group textarea {
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	height: 44px;
	padding: 0 14px;
	font-size: 14px;
	color: #111827;
	background: #fafafa;
	transition: border-color .2s, box-shadow .2s;
	outline: none;
	width: 100%;
}

/* Input avec suffixe € */
.input-addon {
	position: relative;
}

.input-addon input {
	padding-right: 52px !important;
}

.input-addon .addon {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	font-weight: 700;
	color: #9ca3af;
	pointer-events: none;
}

/* Select wrapper */
.select-wrap {
	position: relative;
}

.select-wrap::after {
	content: '';
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 6px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
	pointer-events: none;
}

.modal-demande .form-group select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-right: 38px;
	cursor: pointer;
	background-color: #fafafa;
	background-image: none;
}

.modal-demande .form-group select option:first-child {
	color: #9ca3af;
}

.modal-demande .form-group textarea {
	height: auto;
	padding: 10px 14px;
	resize: vertical;
}

.modal-demande .form-group input:focus,
.modal-demande .form-group select:focus,
.modal-demande .form-group textarea:focus {
	border-color: #059669;
	background-color: #fff;
	box-shadow: 0 0 0 3px rgba(5, 150, 105, .1);
}

.modal-demande .form-check-label {
	font-size: 11.5px;
	color: #6b7280;
	line-height: 1.5;
}

.modal-demande .form-check-input:checked {
	background-color: #059669;
	border-color: #059669;
}

.modal-demande .form-check-input:focus {
	box-shadow: 0 0 0 3px rgba(5, 150, 105, .15);
	border-color: #059669;
}

.modal-demande .form-group input[readonly] {
	background: #f3f4f6;
	color: #9ca3af;
	cursor: not-allowed;
}

.btn-modal-next {
	background: #059669;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 11px 28px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: all .2s;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.btn-modal-next:hover {
	background: #047857;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(5, 150, 105, .3);
}

.btn-modal-back {
	background: transparent;
	color: #6b7280;
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	padding: 11px 22px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all .2s;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.btn-modal-back:hover {
	border-color: #9ca3af;
	color: #374151;
}

.modal-demande .alert {
	border-radius: 10px;
	font-size: 13px;
	border: none;
	margin-top: 6px;
}

@media (max-width: 576px) {

	.modal-demande .modal-header,
	.modal-demande .modal-body,
	.modal-demande .modal-footer {
		padding-left: 18px;
		padding-right: 18px;
	}
}

/* ── APP PAGE ─────────────────────────────── */
section.bx-contact {
	background: linear-gradient(160deg, #f5f9f0 0%, #edf4e3 100%);
	min-height: 100vh;
	padding: 60px 0 80px;
}

/* Trust header */
.app-trust-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	background: #fff;
	border: 1px solid rgba(125, 184, 42, .18);
	border-radius: 16px;
	padding: 18px 32px;
	margin-bottom: 24px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.app-trust-header .vr {
	height: auto;
	align-self: stretch;
	opacity: .15;
}

.app-trust-header .trust-title {
	font-size: 14px;
	font-weight: 700;
	color: #1a2e05;
	margin-bottom: 6px;
}

.app-trust-header .trust-item {
	font-size: 12.5px;
	font-weight: 500;
	color: #5a9020;
	display: flex;
	align-items: center;
	gap: 5px;
	line-height: 1.9;
}

/* Form card */
.bx-contact__inner {
	display: block !important;
}

.bx-contact__widget {
	width: 100% !important;
	background: #fff !important;
	border-radius: 20px !important;
	box-shadow: 0 12px 48px rgba(0, 0, 0, .09) !important;
	border: none !important;
	padding: 44px 48px !important;
}

/* Section dividers */
.form-section-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 24px 0 20px;
}

.form-section-divider::before,
.form-section-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e5e7eb;
}

.form-section-divider span {
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #adb5bd;
	white-space: nowrap;
}

/* Inputs */
.bx-contact__form .form-group {
	margin-bottom: 18px;
}

.bx-contact__form .form-group label {
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .6px;
	color: #6b7280;
	margin-bottom: 6px;
	display: block;
}

.bx-contact__form .form-group textarea {
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 14px;
	color: #111827;
	background: #fafafa;
	transition: border-color .2s, box-shadow .2s;
	outline: none;
	width: 100%;
	resize: vertical;
}

.bx-contact__form .form-group textarea:focus {
	border-color: #059669;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(125, 184, 42, .13);
}

.bx-contact__form .form-group input {
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	height: 46px;
	padding: 0 14px;
	font-size: 14px;
	color: #111827;
	background: #fafafa;
	transition: border-color .2s, box-shadow .2s, background .2s;
	outline: none;
	width: 100%;
}

.bx-contact__form .form-group input:focus {
	border-color: #059669;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(125, 184, 42, .13);
}

.bx-contact__form .form-group input[readonly] {
	background: #f3f4f6;
	color: #9ca3af;
	cursor: not-allowed;
}

/* Submit button */
.bx-contact__form-btn .bx-btn {
	width: 100%;
	padding: 14px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .3px;
	border: none;
	cursor: pointer;
	transition: all .2s ease;
}

.bx-contact__form-btn .bx-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(125, 184, 42, .35);
}

@media (max-width: 768px) {
	.app-trust-header {
		flex-direction: column;
		text-align: center;
		gap: 14px;
		padding: 18px 20px;
	}

	.app-trust-header .vr {
		display: none;
	}

	.bx-contact__widget {
		padding: 28px 20px !important;
	}
	.app-wrapper{
		padding-top: 24px	!important;
		padding-bottom: 50px	!important;
	}
	.app-wrapper .step-circle{
		width: 36px !important;
		height: 36px !important;
		font-size: 13.5px !important;
	}
.app-wrapper .step-circle.active{
	box-shadow: 0 0 0 8px rgba(5, 150, 105, .12) !important;
	}
	.app-wrapper .step-subtitle{
	font-size: 13px !important;
	color: rgb(71 85 105 / 53%);
	line-height: 1.3rem;
	}
}


.applogo	{
	width: auto;
	height: 50px;
}/* APP PAGE CUSTOM STYLES */
:root {
--primary: #059669;
--primary-light: #d1fae5;
--primary-dark: #047857;
--secondary: #0f766e;
--surface: rgba(255,255,255,.96);
--surface-alt: #f8fbf9;
--border-soft: rgba(15,23,42,.08);
}

.app-wrapper {
padding: 90px 0 110px;
background: radial-gradient(circle at top left, rgba(5,150,105,.16) 0%, transparent 24%),
            radial-gradient(circle at bottom right, rgba(56,189,248,.12) 0%, transparent 24%),
            linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
min-height: 100vh;
}

.app-wrapper .app-trust-header {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 32px;
padding: 20px 26px;
background: rgba(255,255,255,.98);
backdrop-filter: blur(12px);
border-radius: 24px;
border: 1px solid rgba(15,23,42,.08);
box-shadow: 0 28px 70px rgba(15,23,42,.08);
flex-wrap: wrap;
}

.app-wrapper .applogo {
height: 30px;
width: auto;
}

.app-wrapper .trust-badges {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.app-wrapper .trust-badge {
font-size: 11.5px;
color: #1e293b;
display: flex;
align-items: center;
gap: 5px;
background: #f0fdf4;
padding: 5px 12px;
border-radius: 20px;
font-weight: 600;
border: 1px solid #bbf7d0;
}

.app-wrapper .trust-badge i {
color: var(--primary);
}

.app-wrapper .social-proof {
display: flex;
align-items: center;
gap: 8px;
font-size: 12px;
color: #6b7280;
margin-bottom: 18px;
}

.app-wrapper .social-proof .pulse {
width: 8px;
height: 8px;
border-radius: 50%;
background: #22c55e;
flex-shrink: 0;
animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
0%,
100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: .5;
transform: scale(.85);
}
}

.app-wrapper .form-steps {
display: flex;
align-items: flex-start;
justify-content: center;
margin-bottom: 28px;
}

.app-wrapper .step-item {
display: flex;
flex-direction: column;
align-items: center;
}

.app-wrapper .step-circle {
width: 42px;
height: 42px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 14px;
border: 2px solid #d1d5db;
background: #fff;
color: #94a3b8;
transition: all .3s;
}

.app-wrapper .step-circle.active {
border-color: var(--primary);
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
color: #fff;
box-shadow: 0 0 0 8px rgba(5,150,105,.12);
}

.app-wrapper .step-circle.done {
border-color: #22c55e;
background: #22c55e;
color: #fff;
}

.app-wrapper .step-label {
font-size: 12px;
color: #475569;
margin-top: 8px;
font-weight: 600;
}

.app-wrapper .step-item.active .step-label,
.app-wrapper .step-item.done .step-label {
color: #134e4a;
}

.app-wrapper .step-connector {
width: 80px;
height: 2px;
background: rgba(15,23,42,.12);
margin: 19px 8px 0;
transition: background .3s;
flex-shrink: 0;
}

.app-wrapper .step-connector.done {
background: var(--primary);
}

.app-wrapper .form-card {
background: rgba(255,255,255,.96);
border-radius: 28px;
border: 1px solid rgba(15,23,42,.08);
padding: 42px 44px;
box-shadow: 0 32px 90px rgba(15,23,42,.12);
position: relative;
overflow: hidden;
}

.app-wrapper .form-step {
display: none;
}

.app-wrapper .form-step.active {
display: block;
animation: fadeUp .3s ease;
}

@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.app-wrapper .step-title {
font-size: 20px;
font-weight: 800;
color: #0f172a;
margin-bottom: 4px;
letter-spacing: -.3px;
}

.app-wrapper .step-subtitle {
font-size: 13.5px;
color: #475569;
margin-bottom: 24px;
}

.app-wrapper .projet-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
margin-bottom: 22px;
}

.app-wrapper .projet-card {
border: 2px solid #e5e7eb;
border-radius: 10px;
padding: 14px 8px 10px;
text-align: center;
cursor: pointer;
transition: all .2s;
background: white;
}

.app-wrapper .projet-card:hover {
border-color: var(--primary);
background: #f0fdf4;
}

.app-wrapper .projet-card.selected {
border-color: var(--primary);
background: #f0fdf4;
box-shadow: 0 0 0 3px rgba(5, 150, 105, .1);
}

.app-wrapper .projet-card i {
font-size: 22px;
color: #9ca3af;
margin-bottom: 6px;
display: block;
transition: color .2s;
}

.app-wrapper .projet-card.selected i {
color: var(--primary);
}

.app-wrapper .projet-card span {
font-size: 11.5px;
font-weight: 600;
color: #374151;
line-height: 1.3;
display: block;
}

.app-wrapper select.native-select {
	width: 100%;
	padding: 11px 36px 11px 14px;
	border: 1.5px solid #cbd5e1;
	border-radius: 10px;
	font-size: 14px;
	color: #0f172a;
	background-color: #f8fafc;
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	cursor: pointer;
	transition: border-color .2s, box-shadow .2s, background .2s;
	font-weight: 500;
}

.app-wrapper select.native-select:focus {
	outline: none;
	border-color: var(--primary);
	background-color: #fff;
	box-shadow: 0 0 0 4px rgba(5, 150, 105, .1);
}

/* ── Résultat calculé ───────────────────────── */
.app-wrapper .calc-result {
display: none;
margin-top: 24px;
background: rgba(245,255,247,.95);
border: 1px solid rgba(34,197,94,.16);
border-radius: 20px;
padding: 22px 24px;
box-shadow: inset 0 0 0 1px rgba(255,255,255,.75);
}

.app-wrapper .calc-result.visible {
display: block;
}

.app-wrapper .calc-result .form-section-label {
margin-top: 0;
}

.app-wrapper .result-input {
width: 100%;
padding: 14px 16px;
border: 1px solid #6ee7b7;
border-radius: 14px;
font-size: 15px;
font-weight: 700;
color: #047857;
background: #f0fdf4;
cursor: default;
outline: none;
}

.app-wrapper .result-input:disabled {
opacity: 1;
}

.app-wrapper .calc-warning {
font-size: 12px;
color: #dc2626;
font-weight: 500;
margin-top: 8px;
min-height: 0;
}

.app-wrapper .mensualite-box {
background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
border: 1.5px solid #6ee7b7;
border-radius: 14px;
padding: 18px 24px;
margin-top: 20px;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 16px;
}

.app-wrapper .mensualite-box::before {
content: '\ecb7';
font-family: 'boxicons';
font-size: 28px;
color: var(--primary);
flex-shrink: 0;
}

.app-wrapper .mensualite-box .mlabel {
font-size: 11.5px;
color: #065f46;
font-weight: 600;
margin-bottom: 2px;
text-transform: uppercase;
letter-spacing: .5px;
}

.app-wrapper .mensualite-box .mamount {
font-size: 28px;
font-weight: 800;
color: #047857;
line-height: 1.1;
}

.app-wrapper .mensualite-box .minfo {
font-size: 11.5px;
color: #059669;
margin-top: 2px;
font-weight: 500;
}

.app-wrapper .step-summary {
background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
border: 1px solid #a7f3d0;
border-radius: 10px;
padding: 12px 16px;
font-size: 12.5px;
color: #065f46;
margin-bottom: 22px;
display: flex;
gap: 18px;
flex-wrap: wrap;
}

.app-wrapper .step-summary strong {
color: #047857;
font-weight: 700;
}

.app-wrapper .profession-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
margin-bottom: 20px;
}

.app-wrapper .profession-btn {
border: 2px solid #e5e7eb;
border-radius: 8px;
padding: 11px;
text-align: center;
cursor: pointer;
font-size: 13px;
font-weight: 600;
color: #374151;
transition: all .2s;
background: white;
user-select: none;
}

.app-wrapper .profession-btn:hover {
border-color: var(--primary);
color: var(--primary);
}

.app-wrapper .profession-btn.selected {
border-color: var(--primary);
background: #f0fdf4;
color: var(--primary);
}

.app-wrapper .form-group label {
font-size: 12.5px;
color: #475569;
font-weight: 700;
margin-bottom: 8px;
display: block;
letter-spacing: .06em;
text-transform: uppercase;
}

.app-wrapper .form-group input,
.app-wrapper .form-group select,
.app-wrapper .form-group textarea {
border: 1px solid rgba(15,23,42,.12);
border-radius: 18px;
padding: 16px 18px;
font-size: 15px;
width: 100%;
transition: border .25s, box-shadow .25s, background .25s;
outline: none;
background: #f8fbff;
color: #0f172a;
font-weight: 500;
box-shadow: inset 0 4px 12px rgba(15,23,42,.04);
}

.app-wrapper .form-group input:focus,
.app-wrapper .form-group select:focus,
.app-wrapper .form-group textarea:focus {
border-color: var(--primary);
background: #fff;
box-shadow: 0 0 0 0.18rem rgba(5,150,105,.18);
}

.app-wrapper .form-check-label {
font-size: 11.5px;
color: #6b7280;
line-height: 1.5;
}

.app-wrapper .form-check-label a {
color: var(--primary);
}

.app-wrapper .btn-next {
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
color: white;
border: none;
border-radius: 999px;
padding: 16px 30px;
font-weight: 800;
width: 100%;
cursor: pointer;
font-size: 15px;
transition: transform .25s, box-shadow .25s, background .25s;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
box-shadow: 0 20px 42px rgba(5,150,105,.22);
}

.app-wrapper .btn-next:hover {
background: linear-gradient(135deg, #059669 0%, #0f766e 100%);
transform: translateY(-2px);
box-shadow: 0 28px 56px rgba(5, 150, 105, .24);
}

.app-wrapper .btn-prev {
background: rgba(239,246,255,.95);
color: #475569;
border: 1px solid rgba(15,23,42,.12);
border-radius: 999px;
padding: 12px 26px;
font-weight: 700;
cursor: pointer;
font-size: 13px;
transition: all .25s;
text-decoration: none;
}

.app-wrapper .btn-prev:hover {
background: #eff6ff;
color: #0f172a;
box-shadow: 0 10px 26px rgba(15,23,42,.08);
}


.app-wrapper .whatsapp-alt {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
color: #15803d;
font-size: 13px;
font-weight: 700;
text-decoration: none;
margin-top: 18px;
padding: 14px 18px;
border: 1px solid rgba(22,163,74,.25);
border-radius: 16px;
transition: all .25s;
background: rgba(236,253,245,.95);
}

.app-wrapper .whatsapp-alt:hover {
background: rgba(220,252,231,.95);
color: #0f5132;
transform: translateY(-1px);
}

.app-wrapper .whatsapp-alt i {
font-size: 16px;
}

/* ── Success modal ──────────────────────────── */
.success-modal-backdrop {
display: none;
position: fixed;
inset: 0;
background: rgba(15,23,42,.55);
backdrop-filter: blur(4px);
z-index: 9999;
align-items: center;
justify-content: center;
padding: 20px;
}

.success-modal {
background: #fff;
border-radius: 20px;
padding: 40px 32px 32px;
max-width: 420px;
width: 100%;
text-align: center;
box-shadow: 0 24px 64px rgba(15,23,42,.18);
animation: modalIn .3s cubic-bezier(.34,1.56,.64,1);
}

@keyframes modalIn {
from { opacity: 0; transform: scale(.88) translateY(20px); }
to   { opacity: 1; transform: scale(1) translateY(0); }
}

.success-modal__icon {
width: 64px;
height: 64px;
border-radius: 50%;
background: linear-gradient(135deg, #dcfce7, #bbf7d0);
border: 3px solid #6ee7b7;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.success-modal__icon i {
font-size: 28px;
color: #059669;
}

.success-modal__title {
font-size: 22px;
font-weight: 800;
color: #0f172a;
margin-bottom: 10px;
letter-spacing: -.3px;
}

.success-modal__msg {
font-size: 14px;
color: #475569;
line-height: 1.6;
margin-bottom: 24px;
}

.success-modal__whatsapp {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
background: #25d366;
color: #fff;
font-weight: 700;
font-size: 14px;
padding: 13px 20px;
border-radius: 12px;
text-decoration: none;
margin-bottom: 12px;
transition: background .2s, transform .2s;
}

.success-modal__whatsapp:hover {
background: #1ebe5d;
transform: translateY(-1px);
color: #fff;
}

.success-modal__whatsapp i {
font-size: 18px;
}

.success-modal__close {
background: none;
border: none;
color: #94a3b8;
font-size: 13px;
font-weight: 500;
cursor: pointer;
padding: 6px 12px;
text-decoration: underline;
text-underline-offset: 3px;
transition: color .2s;
}

.success-modal__close:hover {
color: #475569;
}

.success-modal__wa-hint {
font-size: 11.5px;
color: #94a3b8;
margin: -4px 0 10px;
}

.app-wrapper .app-success-banner {
display: flex;
align-items: center;
gap: 12px;
background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
border: 1.5px solid #fb923c;
border-left: 5px solid #f97316;
border-radius: 12px;
padding: 16px 20px;
margin-bottom: 20px;
font-size: 14px;
font-weight: 600;
color: #9a3412;
}

.app-wrapper .app-success-banner i {
font-size: 22px;
color: #f97316;
flex-shrink: 0;
}

.app-wrapper .step-alert {
background: #fef2f2;
border: 1px solid #fca5a5;
color: #dc2626;
border-radius: 10px;
padding: 11px 16px;
font-size: 13px;
font-weight: 500;
margin-bottom: 16px;
display: none;
}

.app-wrapper .form-section-label {
font-size: 10.5px;
font-weight: 700;
color: var(--secondary);
text-transform: uppercase;
letter-spacing: 1px;
margin: 35px 0 14px;
display: flex;
align-items: center;
gap: 10px;
}



.app-wrapper .form-section-label::after {
content: '';
flex: 1;
height: 1px;
background: rgba(15,23,42,.12);
}

.app-wrapper .row .form-group {
margin-bottom: 0;
}

.app-wrapper .step-cta {
display: flex;
align-items: center;
gap: 12px;
margin-top: 45px;
}

.app-wrapper .step-cta .btn-next {
flex: 1;
}

@media (max-width: 576px) {
.app-wrapper .projet-grid {
grid-template-columns: repeat(2, 1fr);
}

.app-wrapper .step-connector {
width: 40px;
}

.app-wrapper .form-card {
padding: 24px 18px;
}

.app-wrapper .app-trust-header {
flex-direction: column;
align-items: center;
gap: 8px;
padding: 14px 16px;
text-align: center;
}

.app-wrapper .app-trust-header .vr {
display: none;
}

.app-wrapper .mensualite-box {
flex-direction: column;
text-align: center;
gap: 8px;
padding: 16px;
}

.app-wrapper .btn-next {
font-size: 14px;
padding: 14px 18px;
}
}
.modern-business-home .bx-about__grid-child {
	gap: 26px;
	margin-top: 26px;
	margin-bottom: 50px;
}

.modern-business-home .bx-about__grid-img img {
	max-width: 415px;
	border-radius: 6px;
	object-fit: cover;
}

@media only screen and (max-width: 767px) {
	.modern-business-home .bx-about__inner {
		margin-top: 5px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.modern-business-home .bx-about__inner {
		margin-top: 10px;
	}
}

.legal-section-title {
	margin-top: 25px;
}

.legal-note {
	margin-top: 30px;
	color: #666;
	font-size: 12px;
}