/* ==================== [ Root CSS Start ] ==================== */
:root {
	/* Project Core */
	--white: #ffffff;
	--black: #000000;
	--transparent: #0000;

	/* Project Root */
	--primary: #BBA165;
	--primary-50: rgba(187, 161, 101, 0.5);
	--success: #003F24;
	--body: #FCF7EE;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	color: var(--black);
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 22px;
	background: var(--body);
	overflow-x: hidden;
}

/* ==================== [ Root CSS End ] ==================== */

/* ==================== [ Typography Start ] ==================== */
figure {
	margin: 0;
}

strong,
b {
	font-weight: 700 !important;
}

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	color: var(--primary);
	word-break: break-word;
	transition: all 0.3s ease-in-out;
}

a:hover,
a:active,
a:focus,
a:focus-visible,
a:focus-within,
a:visited {
	color: var(--success);
}

ol,
ul {
	margin-bottom: 20px;
	padding-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul {
	margin-top: 10px;
	margin-bottom: 10px;
}

ol li,
ul li {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

ol li::marker,
ul li::marker {
	color: var(--primary);
}

ul li:has(> ul),
ul li:has(> ol) {
	list-style-type: none;
}

blockquote {
	padding: 16px 16px 16px 24px;
	border-left: 5px solid var(--primary);
	margin-bottom: 20px;
	background-color: var(--white);
	font-size: 18px;
	line-height: 133%;
	color: var(--primary);
}

pre {
	background-color: var(--white);
	padding: 16px;
	overflow: auto;
	font-family: inherit;
	border-radius: 12px;
	position: relative;
	color: var(--primary);
}

pre code {
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	line-height: inherit;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
	font-size: inherit;
}

th,
td {
	border: 1px solid rgba(0, 0, 0, 0.2);
	padding: 8px 12px;
	text-align: left;
}

th {
	background-color: rgba(0, 0, 0, 0.05);
	font-weight: 600;
	font-size: inherit;
	color: var(--primary);
}

td {
	background-color: var(--white);
	font-weight: 400;
	font-size: inherit;
	color: var(--primary);
}

h1 {
	color: var(--white);
	font-size: 60px;
	font-style: normal;
	font-weight: 700;
	line-height: 70px;
	text-transform: capitalize;
	margin-bottom: 24px;
}

h2 {
	color: var(--primary);
	font-size: 34px;
	font-style: normal;
	font-weight: 400;
	line-height: 48px;
	letter-spacing: -0.34px;
	margin-bottom: 18px;
}

h3 {
	color: var(--primary);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
	letter-spacing: 0.44px;
	text-transform: uppercase;
}

h4 {
	color: var(--primary);
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 0.44px;
}

h5 {
	color: var(--primary);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 22px;
	letter-spacing: 0.44px;
}

h6 {
	color: var(--primary);
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 0.44px;
}

hr {
	margin-block: 20px;
}

/* ==================== [ Typography End ] ==================== */

/* ==================== [ Common Start ] ==================== */
.row {
	margin-inline: -12px;
	row-gap: 24px;
}

.row>* {
	padding-inline: 12px;
}

.img-cover * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ==================== [ Common End ] ==================== */

/* ==================== [ Common Heading Start ] ==================== */
.heading .title>* {
	color: var(--black);
	font-size: 36px;
	font-weight: 700;
	line-height: 52px;
	text-transform: capitalize;
	position: relative;
	margin-bottom: 30px;
}

.heading .title>*::after {
	position: absolute;
	content: "";
	bottom: -8px;
	left: 0;
	height: 4px;
	width: 80px;
	background-color: var(--primary);
	border-radius: 10px;
}

.heading .title a {
	color: var(--primary);
}

.heading .title a:hover {
	color: var(--success);
}

.heading .disc * {
	color: var(--black);
	text-align: justify;
	font-size: 18px;
	font-weight: 300;
	line-height: 24px;
	margin-bottom: 16px;
}

.heading .disc *:last-child {
	margin-bottom: 0;
}

.heading .subtitle * {
	color: var(--primary);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: 1.12px;
	text-transform: uppercase;
}

/* ==================== [ Common Heading End ] ==================== */

/* ==================== [ Button Start ] ==================== */
.btn {
	width: fit-content;
	padding: 14px 30px;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	border-radius: 8px;
	border: 1px solid;
	text-decoration: none;
}

.btn-primary {
	color: var(--black);
	background: var(--primary);
	border-color: var(--primary);
}

.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-within,
.btn-primary:focus-visible {
	color: var(--primary) !important;
	background-color: var(--black) !important;
	border-color: var(--black) !important;
	box-shadow: none !important;
}

.btn-white {
	color: var(--black);
	background: var(--white);
	border-color: var(--white);
}

.btn-white:focus,
.btn-white:hover,
.btn-white:active,
.btn-white:focus-within,
.btn-white:focus-visible {
	color: var(--white) !important;
	background-color: var(--black) !important;
	border-color: var(--black) !important;
	box-shadow: none !important;
}

/* ==================== [ Button End ] ==================== */

/* ==================== [ Error 404 Start ] ==================== */
.error-404 {
	margin-top: 154px;
	padding: 80px 0;
}

.error-404 .heading {
	text-align: center;
	width: fit-content;
	margin: 0 auto;
}

.error-404 .heading .title {
	width: fit-content;
	margin: 0 auto 30px;
}

.error-404 .heading .disc {
	margin-bottom: 48px;
}

.error-404 .action * {
	width: fit-content;
	margin: 0 auto;
}

/* ==================== [ Error 404 End ] ==================== */

/* ==================== [ Extra Common Start ] ==================== */
.body-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

.card {
	border-radius: 20px;
	border: 1px solid var(--primary-50);
	background: rgba(255, 255, 255, 0.50);
	backdrop-filter: blur(7px);
	padding: 24px;
	filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.12));
	-webkit-filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.12));
}

/* ==================== [ Extra Common End ] ==================== */


/* ==================== [ Header Start ] ==================== */
.header {
	position: fixed;
	top: 48px;
	left: 50%;
	transform: translateX(-50%);
	max-width: calc(100vw - 48px - 48px);
	width: 100%;
	background-color: rgb(235, 228, 210, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	border: 1px solid var(--primary-50);
	box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.12);
	padding: 16px 26px;
	z-index: 9;
}

.header .navbar-nav li {
	padding: 0 8px;
}

.header .navbar-nav li a {
	font-size: 18px;
	line-height: normal;
	font-weight: 500;
	color: var(--success);
	opacity: 0.5;
	transition: all 0.3s ease-in-out;
	width: fit-content;
}

.header .navbar-nav li a:hover,
.header .navbar-nav li a:active,
.header .navbar-nav li a:focus,
.header .navbar-nav li a:focus-visible,
.header .navbar-nav li a:focus-within,
.header .navbar-nav li a.active,
.header .navbar-nav li.current-menu-item a {
	color: var(--success) !important;
	opacity: 1;
}

.header .navbar-toggler {
	border: 0;
	box-shadow: none;
	outline: 0;
}

.navbar-toggler {
	width: 30px;
	height: 22px;
	padding: 0;
	box-shadow: none !important;
	border: none;
}

.navbar-toggler .hamburger {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-direction: column;
	justify-content: space-between;
}

.navbar-toggler .hamburger-toggle {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.navbar-toggler .hamburger span {
	width: 100%;
	height: 2px;
	background-color: var(--success);
	position: relative;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.navbar-toggler .hamburger span:first-child {
	top: 10px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.navbar-toggler .hamburger span:nth-child(2) {
	opacity: 0;
}

.navbar-toggler .hamburger span:last-child {
	margin: 0;
	top: -10px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}

.navbar-toggler.collapsed .hamburger span {
	opacity: 1 !important;
	top: auto !important;
	transform: none !important;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
}

/* ==================== [ Header End ] ==================== */

/* ==================== [ Home Banner Start ] ==================== */
.home-banner {
	padding: 24px;
	min-height: 100dvh;
	width: 100%;
	height: 100%;
	display: flex;
}

.home-banner .homeBannerSwiper {
	height: auto;
	border-radius: 20px;
	display: flex;
	align-items: center;
}

.home-banner .homeBannerSwiper .banner-card {
	width: 100%;
	height: 100%;
	background-color: pink;
	display: flex;
	align-items: center;
	padding: 100px;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.home-banner .homeBannerSwiper .banner-card::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--black);
	opacity: 0.5;
}

.home-banner .homeBannerSwiper .banner-card .content {
	max-width: 700px;
	position: relative;
	z-index: 1;
}

.home-banner .homeBannerSwiper .banner-card .subtitle * {
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}

.home-banner .homeBannerSwiper .banner-card .disc * {
	color: var(--white);
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 48px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: var(--white);
	opacity: 0.4;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
	width: 36px;
	background-color: var(--primary);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 40px;
	left: 100px;
	width: fit-content;
}

/* ==================== [ Home Banner End ] ==================== */

/* ==================== [ Tagline Marquee Start ] ==================== */
.tagline-marquee {
	position: relative;
	pointer-events: none;
	user-select: none;
}

.tagline-marquee .inside-container {
	border-top: 1px solid var(--Warning, #BBA165);
	border-bottom: 1px solid var(--Warning, #BBA165);
	background: rgba(255, 255, 255, 0.40);
	box-shadow: 0 4px 39px 0 rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(17px);
	padding: 16px 0;
}

.tagline-marquee-slider .swiper-wrapper {
	transition-timing-function: linear !important;
	display: flex;
	align-items: center;
}

.tagline-marquee .swiper-slide {
	width: auto;
	font-size: 18px;
	color: var(--black);
	font-size: 22px;
	font-weight: 600;
}

.tagline-marquee-slider .swiper-slide * {
	margin-bottom: 0;
}

/* ==================== [ Tagline Marquee End ] ==================== */

/* ==================== [ The Journey Start ] ==================== */
.the-journey {
	padding: 80px 0;
}

.the-journey .card {
	padding: 24px;
	border-radius: 20px;
	border: 1px solid;
	margin-bottom: 24px;
	height: auto;
	width: 100%;
	overflow: hidden;
}

.the-journey .card.warning {
	border-color: rgba(187, 161, 101, 0.50);
	background: linear-gradient(0deg, rgba(187, 161, 101, 0.20) 0%, rgba(187, 161, 101, 0.20) 100%), rgba(255, 255, 255, 0.50);
}

.the-journey .card.white {
	border-color: rgba(187, 161, 101, 0.50);
	background: rgba(255, 255, 255, 0.20);
}

.the-journey .card .journey-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.the-journey .card .title * {
	margin-bottom: 0;
}

.the-journey .card .image {
	width: calc(100% + 48px);
	height: calc(100% + 48px);
	margin: -24px;
}

.the-journey .card .image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ==================== [ The Journey End ] ==================== */

/* ==================== [ Vision Mission Start ] ==================== */
.vision-mission {
	position: relative;
	padding: 234px 0;
	z-index: 2;
	background-image: url('../images/thumb/vision-mission-bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.vision-mission .card {
	padding: 40px;
	z-index: 1;
}

/* ==================== [ Vision Mission End ] ==================== */

/* ==================== [ From the Visionary Start ] ==================== */
.visionary {
	position: relative;
	padding: 80px 0;
}

.visionary .card {
	padding: 40px;
	position: relative;
}

.visionary .card .quote-image {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: -1;
	user-select: none;
	pointer-events: none;
}

.visionary .card .author {
	margin-top: 48px;
	display: flex;
	align-items: flex-start;
}

.visionary .card .author .image {
	width: 82px;
	height: 82px;
	overflow: hidden;
	flex-shrink: 0;
	margin-right: 20px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.visionary .card .author .image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.visionary .card .author .disc .name * {
	color: var(--primary);
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	margin-bottom: 0;
}

.visionary .card .author .disc .degi * {
	color: var(--black);
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	margin-bottom: 0;
}

.visionary .card .author .disc .slogan * {
	color: var(--black);
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	margin-bottom: 0;
}

/* ==================== [ From the Visionary End ] ==================== */

/* ==================== [ What Makes Us Different? Start ] ==================== */
.makes-different {
	position: relative;
	background-image: url('../images/thumb/makes-different.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: 80px 0;
}

.makes-different ul {
	list-style: none;
	padding: 0;
	padding-top: 10px;
}

.makes-different ul li {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	padding: 4px 0;
}

.makes-different ul li * {
	margin-bottom: 0 !important;
	text-align: left !important;
}

.makes-different ul li p {
	color: var(--black);
	font-size: 18px;
	font-weight: 500 !important;
	line-height: 22px;
	margin-bottom: 0;
}

.makes-different .image {
	width: 100%;
	height: auto;
	border-radius: 20px;
	overflow: hidden;
}

.makes-different .image * {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}

/* ==================== [ What Makes Us Different? End ] ==================== */

/* ==================== [ Portfolios Start ] ==================== */
.portfolios {
	padding: 80px 0;
}

.portfolios .heading .title {
	width: fit-content;
	margin: 0 auto;
}

.portfolios .portfolios-slider {
	position: relative;
	overflow: visible;
	margin-top: 48px;
}

.portfolios .portfolios-slider .swiper-slide {
	width: auto;
}

.portfolios .portfolios-slider .swiper-slide .card-group {
	width: 400px;
	position: relative;
	perspective: 1000px;
}

.portfolios .card-inner {
	width: 100%;
	display: grid;
	grid-template: 1fr / 1fr;
	transform-style: preserve-3d;
	transition: transform 0.5s;
}

.portfolios .card-group:hover .card-inner {
	transform: rotateY(180deg);
}

.portfolios .card-front,
.portfolios .card-back {
	grid-area: 1 / 1;
	width: 100%;
	padding: 24px;
	box-sizing: border-box;
	border-radius: 20px;
	border: 1px solid var(--primary-50);
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(7px);
	backface-visibility: hidden;
	filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.12));
	-webkit-filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.12));
}

.portfolios .card-back {
	transform: rotateY(180deg);
	overflow-y: auto;
	background: rgba(255, 255, 255, 0.5) url("../images/thumb/card-bg.png") no-repeat center;
	background-size: cover;
}

.portfolios .portfolios-slider .swiper-slide .card-group .image {
	width: 100%;
	height: 240px;
	margin-bottom: 16px;
	overflow: hidden;
	border-radius: 10px;
}

.portfolios .portfolios-slider .swiper-slide .card-group .image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.portfolios .portfolios-arrow-group {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 48px;
}

.portfolios .portfolios-arrow {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid var(--primary);
	background: rgba(187, 161, 101, 0.1);
	transition: all 0.3s ease-in-out;
}

.portfolios .portfolios-arrow:hover {
	background: rgba(187, 161, 101, 0.3);
}

.portfolios .portfolios-arrow.swiper-button-disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

/* ==================== [ Portfolios End ] ==================== */

/* ==================== [ Solutions Start ] ==================== */
.solutions {
	position: relative;
	padding: 80px 0;
	z-index: 2;
	background-image: url("../images/thumb/vision-mission-bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.solutions .heading .title {
	width: fit-content;
	margin: 0 auto;
}

/* ==================== [ Solutions End ] ==================== */

/* ==================== [ Private Process End ] ==================== */
.portfolios .private-process-slider {
	position: relative;
	overflow: visible;
	margin-top: 48px;
}

.portfolios .private-process-slider .swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.portfolios .private-process-slider .swiper-wrapper .swiper-slide {
	height: auto;
	width: auto;
}

.portfolios .private-process-slider .swiper-slide .card {
	width: 400px;
	height: 100%;
}

.portfolios .private-process-slider .swiper-slide .card .title * {
	margin-bottom: 16px;
}

.portfolios .private-process-slider .swiper-slide .card .disc * {
	margin-bottom: 10px;
}

.portfolios .private-process-slider .swiper-slide .card .disc *:last-child {
	margin-bottom: 0;
}

/* ==================== [ Private Process Start ] ==================== */

/* ==================== [ Footer Start ] ==================== */
.footer {
	position: relative;
	padding: 80px 0 24px;
	border-top: 1px solid var(--primary);
}

.footer .brand-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 40px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--primary-50);
}

.footer .brand-footer .logo * {
	height: 45px;
}

.footer .brand-footer .social ul {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.footer .brand-footer .social ul a {
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

.footer .brand-footer .social ul a:hover {
	opacity: 0.6;
}

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

.footer .copy * {
	margin-bottom: 0;
}

/* ==================== [ Footer End ] ==================== */

/* ==================== [ Contact Page Start ] ==================== */
.contact-banner {
	position: relative;
	margin-top: 158px;
	padding: 80px 0;
}

.contact-banner .heading.page {
	width: fit-content;
	margin: 0 auto;
}

.contact-banner .map {
	width: 100%;
	height: auto;
	padding: 80px 0;
}

.contact-banner .map * {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.form-label {
	color: var(--black);
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
	opacity: 1;
	display: flex;
	align-items: center;
	gap: 4px;
}

.form-label span {
	color: #B33A3A;
}

.form-control {
	border-radius: 10px;
	border: 1px solid rgba(187, 161, 101, 0.50);
	background: rgba(187, 161, 101, 0.08);
	padding: 14px 18px;
	color: var(--black);
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
}

.form-control:active,
.form-control:hover,
.form-control:focus,
.form-control:focus-visible,
.form-control:focus-within {
	border: 1px solid rgba(187, 161, 101, 0.50) !important;
	background: rgba(187, 161, 101, 0.08) !important;
	box-shadow: none;
	outline: 0;
}

textarea.form-control {
	min-height: 150px;
}

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

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

textarea {
	resize: none;
}

.contact-form-wrapper p {
	margin-bottom: 0;
}

.wpcf7-form.submitting .btn {
	display: none;
}

.wpcf7-form .wpcf7-spinner {
	display: none;
}

.wpcf7-form.submitting .wpcf7-spinner {
	display: block;
}

/* ==================== [ Contact Page End ] ==================== */