@font-face {
	font-family: 'Metropolis-Medium';
	src: url('../assets/fonts/Metropolis-Medium.eot');
	src: url('../assets/fonts/Metropolis-Medium.eot?#iefix') format('embedded-opentype'),
		url('../assets/fonts/Metropolis-Medium.woff2') format('woff2'),
		url('../assets/fonts/Metropolis-Medium.woff') format('woff'),
		url('../assets/fonts/Metropolis-Medium.ttf') format('truetype'),
		url('../assets/fonts/Metropolis-Medium.svg#Metropolis-Medium') format('svg');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Metropolis-Bold';
	src: url('../assets/fonts/Metropolis-Bold.eot');
	src: url('../assets/fonts/Metropolis-Bold.eot?#iefix') format('embedded-opentype'),
		url('../assets/fonts/Metropolis-Bold.woff2') format('woff2'),
		url('../assets/fonts/Metropolis-Bold.woff') format('woff'),
		url('../assets/fonts/Metropolis-Bold.ttf') format('truetype'),
		url('../assets/fonts/Metropolis-Bold.svg#Metropolis-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

/* Main stylesheet */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

a {
	text-decoration: none;
}
.light-white{
	background-color: #F5F5F5;
}
.brown{
	background-color: #9E5140;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	height: 135px;
	border-bottom: 1px solid #fff;
	padding: 15px 0;
}

@media (max-width: 575px) {
	.header {
		height: 70px;
	}
}

.header.sticked {
	border-color: #fff;
	border-color: #eee;
}

.header .logo img {
	max-width: 200px;
	margin-right: 6px;
}

.header .logo h1 {
	font-size: 28px;
	font-weight: 700;
	color: #000;
	margin: 0;
	font-family: var(--font-secondary);
}

.header .logo h1 span {
	color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
	font-size: 14px;
	color: #fff;
	background: var(--color-primary);
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 50px;
	transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
	color: #fff;
	background: rgba(206, 18, 18, 0.8);
}

.navbar li {
	text-decoration: none;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
	.navbar {
		padding: 0;
	}

	.navbar ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navbar li {
		position: relative;
	}

	.navbar>ul>li {
		white-space: nowrap;
		padding: 10px 0 10px 28px;
	}

	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 3px;
		font-family: var(--font-secondary);
		font-size: 16px;
		font-weight: 600;
		color: #000000;
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
		text-decoration: none;
	}

	.navbar a i,
	.navbar a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
	}

	.navbar>ul>li>a:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 2px;
		bottom: -6px;
		left: 0;
		background-color: var(--color-primary);
		visibility: hidden;
		width: 0px;
		transition: all 0.3s ease-in-out 0s;
	}

	.navbar a:hover:before,
	.navbar li:hover>a:before,
	.navbar .active:before {
		visibility: visible;
		width: 100%;
	}

	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover>a {
		color: #000;
	}

	.navbar .dropdown ul {
		display: block;
		position: absolute;
		left: 28px;
		top: calc(100% + 30px);
		margin: 0;
		padding: 10px 0;
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		background: #fff;
		box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
		transition: 0.3s;
		border-radius: 4px;
	}

	.navbar .dropdown ul li {
		min-width: 200px;
	}

	.navbar .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		font-weight: 600;
	}

	.navbar .dropdown ul a i {
		font-size: 12px;
	}

	.navbar .dropdown ul a:hover,
	.navbar .dropdown ul .active:hover,
	.navbar .dropdown ul li:hover>a {
		color: var(--color-primary);
	}

	.navbar .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navbar .dropdown .dropdown ul {
		top: 0;
		left: calc(100% - 30px);
		visibility: hidden;
	}

	.navbar .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: 100%;
		visibility: visible;
	}
}

@media (min-width: 1280px) and (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

@media (min-width: 1280px) {

	.mobile-nav-show,
	.mobile-nav-hide {
		display: none;
	}
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
	.navbar {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		max-width: 400px;
		border-left: 1px solid #666;
		bottom: 0;
		transition: 0.3s;
		z-index: 9997;
		background: #fff
	}

	.navbar ul {
		position: absolute;
		inset: 0;
		padding: 50px 0 10px 0;
		margin: 0;
		background: rgba(255, 255, 255, 0.9);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}

	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 20px;
		font-family: var(--font-secondary);
		border-bottom: 2px solid rgba(255, 255, 255, 0.8);
		font-size: 16px;
		font-weight: 600;
		color: #7f7f90;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navbar a i,
	.navbar a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
	}

	.navbar a:hover,
	.navbar li:hover>a {
		color: #000;
	}

	.navbar .active,
	.navbar .active:focus {
		color: #000;
		border-color: var(--color-primary);
	}

	.navbar .dropdown ul,
	.navbar .dropdown .dropdown ul {
		position: static;
		display: none;
		padding: 10px 0;
		margin: 10px 20px;
		transition: all 0.5s ease-in-out;
		border: 1px solid #eee;
	}

	.navbar .dropdown>.dropdown-active,
	.navbar .dropdown .dropdown>.dropdown-active {
		display: block;
	}

	.mobile-nav-show {
		color: var(--color-secondary);
		font-size: 28px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		z-index: 9999;
		margin: 0 10px 0 20px;
	}

	.mobile-nav-hide {
		color: var(--color-secondary);
		font-size: 32px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		position: fixed;
		right: 20px;
		top: 20px;
		z-index: 9999;
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active.navbar {
		right: 0;
	}

	.hamburger {
		position: relative;
		z-index: 9999;
	}

	.mobile-nav-active .navbar:before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(255, 255, 255, 0.8);
		z-index: 9996;
	}
}

.btn-call-back {
	background: #F26E38 0% 0% no-repeat padding-box;
	border-radius: 28px;
	color: #fff;
	text-decoration: none;
	padding: 5px 20px;
	font-weight: 600;
}

footer {
	background-color: #F5F5F5;
	color: #fff;
	padding: 1rem 0 0;
	bottom: 0;
	width: 100%;
}

.footer-social ul li {
	background: #000000 0% 0% no-repeat padding-box;
	width: 35px;
	height: 35px;
	padding: 5px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.footer-social ul {
	display: flex;
	gap: 10px;
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
}

.footer-social ul li svg {
	fill: #fff;
}

.footer-social .quick-links ul li {
	width: 50%;
	float: left;
}

.footer-newsletter h4 {
	font: normal normal 500 25px/35px Metropolis-Medium;
	letter-spacing: 0px;
	color: #000000;
}

.footer-newsletter form {
	width: 80%;
	border-bottom: 1px solid #000;
}

.footer-newsletter form input,
.footer-newsletter form input::placeholder {
	font: normal normal 500 12px/50px Poppins;
	letter-spacing: 2.6px;
	color: #000000;
	text-transform: uppercase;
	width: 85%;
	border: 0;
	background: transparent;
}

.footer-newsletter .submit-btn {
	width: 15%;
	height: 50px;
	border: 0;
	background: transparent;
}

.quick-links h4 {
	font: normal normal bold 30px / 40px Metropolis-Bold;
	letter-spacing: 0px;
	color: #000000;
	text-transform: capitalize;
}
.footer-social h3 {
    text-align: left;
    font: 500 14px/50px Poppins;
    letter-spacing: 3.2px;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 0;
}
.footer-contact h4 {
	font: normal normal bold 30px / 40px Metropolis-Bold;
	letter-spacing: 0px;
	color: #000000;
	text-transform: capitalize;
}

.footer-contact p {
	font: normal normal 500 15px / 25px Poppins;
	letter-spacing: 0px;
	color: #000000;
}

.footer-contact a {
	font: normal normal 500 14px / 30px Poppins;
	/* letter-spacing: 2.6px; */
	color: #000000;
	display: flex;
}

.footer-contact a span {
	font: normal normal 500 14px / 30px Poppins;
	letter-spacing: 2.6px;
	color: #000000;
	text-transform: uppercase;
}

.footer-top {
	padding-top: 60px;
	padding-bottom: 60px;
}

.footer-bottom {
	border-top: 1px solid #000;
	padding: 10px 0;
}

.footer-bottom p {
	font: normal normal 300 12px/24px Poppins;
	letter-spacing: 2.6px;
	color: #000000;
	text-transform: uppercase;
	margin-bottom: 0;
}

.footer-bottom p a {
	color: #000;
}

.quick-links ul li a {
	font: normal normal 500 12px/26px Poppins;
	letter-spacing: 2.2px;
	color: #000000;
	text-transform: uppercase;
}

.quick-links ul li {
	width: 50%;
	float: left;
	list-style-type: none;
}

.quick-links ul {
	padding-left: 0;
}

/* COMMON PAGE CSS */
.section-padding {
	padding-top: 100px;
	padding-bottom: 100px;
}

.section-title span {
	font: normal normal normal 22px/33px Poppins;
	letter-spacing: 6.6px;
	color: #000000;
	text-transform: uppercase;
}

.section-title p {
	font: normal normal normal 20px / 32px Poppins;
	letter-spacing: 3.6px;
	color: #000000;
	text-transform: uppercase;
	margin-bottom: 0;
}

.section-title h2 {
	font: normal normal bold 55px/65px Metropolis-Bold;
	letter-spacing: 0px;
	text-transform: capitalize;
	color: #000000;
}

.section-title h2 span {
	font: normal normal bold 55px / 65px Metropolis-Bold;
	letter-spacing: 0px;
	text-transform: capitalize;
	color: #9E5140;
}

.inner-banner {
	margin-top: 135px;
	position: relative;
}

.inner-banner .banner-img img {
	width: 100%;
}

.inner-banner .banner-content {
	position: absolute;
	top: auto;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}

.banner-content h1 {
	font: normal normal bold 100px/121px Metropolis-Bold;
	letter-spacing: 0px;
	color: #FFFFFF;
	text-transform: capitalize;
}

.section-txt p {
	font: normal normal 300 16px / 26px Poppins;
	letter-spacing: 0px;
	color: #000000;
	margin-bottom: 0;
}

/* COMMON PAGE CSS */

.section-txt {
	padding-left: 35%;
	margin-top: -50px;
}

.address-wrapper {
	background: #9E5140 0% 0% no-repeat padding-box;
	padding: 30px;
}

.address-box h3 {
	font: normal normal bold 20px/30px Poppins;
	letter-spacing: 3.6px;
	color: #FFFFFF;
	text-transform: uppercase;
}

.address-box p {
	font: normal normal 300 16px/26px Poppins;
	letter-spacing: 0px;
	color: #FFFFFF;
}

.address-link a {
	font: normal normal normal 14px / 24px Poppins;
	letter-spacing: 3.8px;
	color: #FFFFFF;
	text-transform: uppercase;
}

.contact-form {
  padding: 0 50px;
}

form .form-control, input[type="file"] {
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    font: normal normal 500 12px / 16px Poppins;
    letter-spacing: 2.6px;
    color: #000000;
    text-transform: uppercase;
    height: 50px;
    background: transparent;
    overflow: hidden;
	width: 100%;
}

form .form-control::placeholder, form .form-control::placeholder {
	font: normal normal 500 12px / 50px Poppins;
    letter-spacing: 2.6px;
    color: #000000;
    text-transform: uppercase;
}
.btn-submit{
  background: #F26E38 0% 0% no-repeat padding-box;
  border-radius: 29px;
  padding: 10px 20px;
  font: normal normal 500 14px / 24px Poppins;
  letter-spacing: 1.8px;
  color: #FFFFFF;
  text-transform: uppercase;
  border: 0;
  margin-top: 20px;
}
button.close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
}
.modal-title{
	padding: 0;
	text-align: center;
    font: 600 22px/22px Poppins;
    letter-spacing: 0px;
    color: #01112B;
    text-transform: uppercase;
}
/* NEWS PAGE */

.card-body h3 {
    font: normal normal 500 22px/25px Metropolis-Medium;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: capitalize;
}

.card-body p {
    font: normal normal 300 16px/26px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.card-body a {
    font: normal normal normal 16px/25px Poppins;
    letter-spacing: 4.8px;
    color: #ffffff50;
    text-transform: uppercase;
}

.news-box-wrapper {
	background: #9E5140 0% 0% no-repeat padding-box;
    padding: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(430px, 1fr));
    grid-gap: 20px;
}

.news-box-wrapper .card {
    background: transparent;
}

.view-detail-btn {
	color: #ffffff;
	transition: color 0.2s ease;
}

.view-detail-btn:hover {
	color: #000000;
}
.join-team-txt p {
    font: 300 18px/28px Poppins;
    letter-spacing: 0;
    color: #000;
}

/*  -------------------------------- */
/* Set the initial opacity of the .card-img-overlay element to 0 */
.project-list-card .card-img-overlay {
    opacity: 0;
    transition: opacity 0.3s ease-out; /* Add a smooth transition effect for the opacity property */
	height: 120px;
    bottom: 0;
    top: auto;
}

/* Change the opacity of the .card-img-overlay element to 1 when the .project-list-card element is hovered over */
.project-list-card:hover .card-img-overlay {
    opacity: 1;
    height: 120px;
    bottom: 0;
    top: auto;
    text-align: center;
    background: #9E5140 0% 0% no-repeat padding-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-in; /* Add a smooth transition effect for the opacity property */
}

/* Style the .card-title element within the .card-img-overlay element */
.project-list-card .card-img-overlay .card-title {
    color: #fff;
    font: 24px / 36px Metropolis-Medium;
    letter-spacing: 0px;
}

/* Style the <a> element within the .card-img-overlay element */
.project-list-card .card-img-overlay a {
    font: normal normal normal 14px / 24px Poppins;
    letter-spacing: 2.8px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 0.5;
}

/* Set the initial state of the <img> element within the .project-list-card element */
.project-list-card a img {
    transition: transform 0.3s ease-out; /* Add a smooth transition effect for the transform property */
}

/* Change the transform property of the <img> element within the .project-list-card element when the .project-list-card element is hovered over */
.project-list-card:hover a img {
    transform: scale(1.1);
    overflow: hidden;
    transition: transform 0.3s ease-in; /* Add a smooth transition effect for the transform property */
}

.project-list-card .project-list-card {
    overflow: hidden;
}
/* ABOUT PAGE */
/* .welcome-msg .section-title {
    margin-top: -50px;
} */
.welcome-msg .section-txt {
    margin-top: 0;
	padding-left: 0%;
	text-align: center;
}
.welcome-msg .section-title h2 span {
    font: 90px / 90px Metropolis-Bold;
    letter-spacing: 0px;
    color: #9E5140;
}
.our-value .section-txt{
	padding: 0;
	margin: 0;
}
.content h3 {
    font: 600 20px/25px Poppins;
    letter-spacing: 2.4px;
    color: #000000;
    text-transform: uppercase;
}

.content p {
    font: 300 15px/22px Poppins;
    letter-spacing: 0px;
    color: #000000;
	margin-bottom: 0;
}
.value-img {
    width: auto;
    height: 50px;
} 
.value-items {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.value-items .col-md-6 + .col-md-6{
	border-left: 1px solid #000;
}
.value-items .col-md-6 {
    padding: 50px 50px 50px;
}
.current-opening-table tr th {
    font: bold 16px / 26px Poppins;
    letter-spacing: 2.4px;
    color: #9E5140;
    text-transform: uppercase;
	text-align: center;
}
.current-opening-table tbody tr td{
    font: 14px / 24px Poppins;
    letter-spacing: 2.4px;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
}
.footer-logo img {
    width: 350px;
}
.brown .section-title h2, .brown .section-title p{
	color: #fff;
}
.management-txt p {
    text-align: left;
    font: 300 18px / 28px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
}
.direct-apply p{
	font: normal 18px/27px Poppins;
	letter-spacing: 0px;
	text-align: center;
}
.direct-apply p a{
	text-decoration: underline;
	font: normal normal normal 18px/27px Poppins;
	letter-spacing: 0px;
	color: #9E5140;	
}
/* career */

.why-choose-career .section-txt p{
	color: #fff;
}
.why-choose-career .section-txt{
	padding: 0;
	margin: 0 auto;
	width: 60%;
}
.why-choose-career .value-items {
	border-color: #fff;
}
.why-choose-career .content h3, .why-choose-career .content p{
	color: #fff;
}
.why-choose-career .value-items .col-md-6 + .col-md-6{
	border-color: #fff;
}
.line {
    border-bottom: 1px solid #fff;
    width: 100%;
    display: block;
    padding-top: 50px;
    margin-bottom: 50px;
}
.modal-backdrop.show{
	/* opacity: 0.8 !important; */
	background-color: #444444;
}
.apply-now {
    background: #F26E38 0% 0% no-repeat padding-box;
    border-radius: 0;
    padding: 10px 20px;
    font: normal normal 500 14px / 24px Poppins;
    letter-spacing: 1.8px;
    color: #FFFFFF;
    text-transform: uppercase;
    border: 0;
    margin-top: 20px;
    width: max-content;
    margin: 0 auto;
    margin-top: 20px;
}
.excellence .section-txt{
	padding: 0;
	margin: 0;
}
.tabs-container {
	margin-bottom: 30px;
  }
  
  .tabs {
	display: flex;
	justify-content: center;
	position: relative;
	border-bottom: 2px solid #ddd;
  }
  
  .tab-button {
	flex: 1;
	padding: 10px 20px;
	background: none;
	border: none;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: color 0.3s ease;
  }
  
  .tab-button.active {
	color: #9e5140;
  }
  
  .tab-indicator {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 33.33%;
	height: 3px;
	background-color: #9e5140;
	transition: transform 0.3s ease;
  }
  
  .tab-content {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.3s ease;
  }
  
  .tab-content-active {
	opacity: 1;
	transform: translateX(0%);
  }
  
  .projects-container {
	overflow: hidden;
  }
  
  .card {
	transition: transform 0.3s ease;
  }
  
  .card:hover {
	transform: scale(1.05);
  }
  .lg-components{
	display: none;
  }