:root{
	--secondary-color: #f2c308;
	--primary-color: #000000;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Manrope', sans-serif;
	background: #000;
	color: #fff;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Be Vietnam Pro';
}


/* NAVBAR */
.navbar-custom {
	padding: 5px 0px;
/* 	background: rgb(252 252 252 / 95%); */
	z-index: 1000;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	margin: 10px 0;
/* 	border-radius: 60px; */
}

.navbar-custom.scrolled {
	padding: 15px 60px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.logo img {
	height: 70px;
	transition: 0.3s;
}

.hamburger {
    font-size: 22px;
    cursor: pointer;
    color: #ffffff;
    transition: 0.3s;
    border: 1px solid #fff;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.hamburger:hover {
	color: #ddd;
}

/* SIDE MENU */
.side-menu {
	position: fixed;
	top: 0;
	right: -400px;
	width: 0;
	height: 100%;
	background: #fff;
	transition: 0.4s ease;
	z-index: 2000;
	padding: 80px 40px;
	box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
	display: flex;
}

.side-menu.active {
	right: 0;
	width: 100%;
}

.close-btn {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 40px;
	cursor: pointer;
	transition: 0.3s;
	height: 45px;
	width: 45px;
	background: #000;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
}

.close-btn:hover {
	transform: rotate(90deg);
}
.side-menu ul{
	padding: 0;
	list-style: none;
	margin: auto;
	width: 300px
}
.side-menu ul li a {
	display: block;
	color: #000;
	text-decoration: none;
	padding: 5px 0;
	font-size: 32px;
	transition: 0.3s;
	max-width: 300px;
	margin: auto;
	text-align: center;
	font-weight: 600;
}
.side-menu ul li ul.sub-menu li a {
    font-size: 27px;
}
.side-menu a:hover {
	padding-left: 15px;
	color: var(--secondary-color);
/* 	border-bottom: 1px solid; */
}

/* main banner */
.serviceBox:before {
	content: "";
	background: #00000063;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
}
.serviceBox .serviceContent {
	z-index: 1;
	padding: 30px;
	background: #00000080;
	position: absolute;
	bottom: 0;
	height: 190px;
	transition: .4s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;

}
.serviceBox:hover .serviceContent {
	height: 100%;
}
.serviceBox .serviceContent a span {
	transition: .3s ease;
}
.serviceBox .serviceContent a:hover span {
	padding-left: 10px;
}
.serviceBox {
	/* padding: 0 30px; */
	min-height: 550px;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	/* z-index: 11; */
}
.serviceBox .serviceContent .banner-btn {
	color: #fff;
	text-decoration: none;
	display: inline-block;
}
/* ABOUT SECTION */
.about-main-title {
	color: #ffffff38;
	-webkit-text-fill-color: #ffffff38;
	-webkit-text-stroke: 1px #ffffff;
	font-size: 85px;
	font-family: "Be Vietnam Pro", sans-serif;
}
.stat-box {
	position: relative;
}

.stat-number {
	font-weight: 800;
	line-height: 1;
	margin-bottom: 10px;
	color: transparent;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px #ffffff;
	font-size: 60px;
	font-weight: bold;
	font-family: "Be Vietnam Pro", sans-serif;
}
.stat-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 10px;
}

.stat-label::after {
	content: '→';
	font-size: 18px;
	color: var(--secondary-color);
}

@media (max-width: 1200px) {
	.stats-container {
		grid-template-columns: 1fr;
	}
}

.about-section {
	padding: 50px 0px;
	background: #0a0a0a;
	/*      background-image: url(/wp-content/uploads/2025/12/about-bg.png); */
	position: relative;
	/* 	 background-attachment: fixed;
	background-size: cover; */
}
.about-section * {
	z-index: 1;
	position: relative;
}
.about-section:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: #0000006b;
	z-index: 0;
}

.section-title {
	font-size: 48px;
	text-align: center;
	margin-bottom: 20px;
}

.section-subtitle {
	text-align: center;
	color: #999;
	font-size: 18px;
	margin-bottom: 60px;
}

.about-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 60px;
}

.about-card {
	background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
	padding: 50px 40px;
	border-radius: 20px;
	transition: all 0.4s ease;
	border: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	overflow: hidden;
}
.about-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #f39c12, #e67e22);
	transform: scaleX(0);
	transition: 0.4s ease;
}

.about-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(243, 156, 18, 0.2);
}

.about-card:hover::before {
	transform: scaleX(1);
}

.about-card-icon {
	font-size: 48px;
	color: #f39c12;
	margin-bottom: 20px;
}

.about-card-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.about-card-text {
	color: #aaa;
	line-height: 1.8;
	font-size: 15px;
}
.whoweareBlock .whoweareText p {
	font-size: 22px;
}

.visionMissionBox:hover {
	transform: translateY(-10px);
}
.visionMissionBox {
	background: #0000008c;
	padding: 50px 30px;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
	transition: .3s ease;
	margin: 10px 0;
	border: 1px solid var(--secondary-color);
}
.visionMissionBox .icon {
	background: #fff;
	height: 40px;
	width: 40px;
	color: var(--secondary-color);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	margin-bottom: 20px;
}
.visionMissionBox .title h4 {
	font-size: 25px;
}
.visionMissionBox .description p {
	font-size: 14px;
}
/* LEADERSHIP SECTION */
.leadership-section {
	padding: 70px 0;
	background: #000;
}

.team-grid {
	margin-top: 60px;
}

.team-card {
	background: #1a1a1a;
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.4s ease;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.team-image {
	width: 100%;
	height: 350px;
	object-fit: cover;
	object-position: top;
	transition: 0.4s ease;
}

.team-card:hover .team-image {
	transform: scale(1.1);
}

.team-info {
	padding: 20px;
	text-align: center;
}
.team-card .img-team{
    position: relative;
}
.team-name {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
	    margin-top: 5px;
}
.team-card .team-social {
    position: absolute;
    background: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 40px;
    top: 15px;
	right: 20px;
    line-height: 30px;
    border: solid 1px #0a66c2;
}
.team-position {
    color: #f39c12;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-left: 5px solid;
    text-align: left;
    padding-left: 9px;
    margin: auto;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    background: #000;
}

.team-social {
	display: flex;
	gap: 15px;
	justify-content: center;
}

.team-social a {
    color: #0a66c2;
    font-size: 14px;
    transition: 0.3s;
}

.team-social a:hover {
	color: #f39c12;
}

/* FOOTER */
.footer {
	background: #0a0a0a;
	/* padding: 60px 60px 30px; */
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
	padding-bottom:7px;
	position:relative;
}
.footer-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    background: var(--secondary-color);
    width: 70px;
    height: 2px;
}
.footer-links ul li a {
	color: #fff;
	text-decoration: none;
	margin-bottom: 5px;
	display: block;
	position: relative;
}
.footer-links ul li a:before {
	content: "";
	transition: .5s ease;
}
.footer-links ul li a:hover:before {
	content: "-";
	padding-right: 10px;
	transition: .3s ease;
	color: var(--secondary-color);
}
.footer-links ul li a:hover{
	color: var(--secondary-color);
}
.footer-links ul {
	list-style: none;
	padding: 0;
}
/* .footer-links ul#menu-services {
    columns: 2;
	gap: 30px;
} */
.footer-links ul li ul.sub-menu {
    padding-left: 15px;
}
.foot-social-links ul.foot-contactLinks li {
    display: flex;
	margin-bottom:10px;
}
.foot-social-links ul.foot-contactLinks {
    padding: 0;
    list-style: none;
}
.foot-social-links ul.foot-contactLinks li .icon {
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    border-radius: 50px;
    color: #ffffff;
    margin-right: 10px;
    border: 1px solid #ffffff;
    font-size: 14px;
}
.foot-social-links ul.foot-contactLinks li a {
    width: calc(100% - 45px);
    color: #fff;
}
.foot-social-links ul.social-links {
	display: flex;
	list-style: none;
	gap: 10px;
	padding: 0;
}
.foot-social-links ul.social-links li a {
	height: 40px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 50px;
	font-size: 20px;
	text-decoration: none;
	color: #000;
	transition: .3s ease;
}
ul.social-links li a i {
	transition: .3s ease;
}

ul.social-links li a:hover i{
	transform: scale(1.3);
}
.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #666;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #fff;
	box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
	z-index: 999;
	cursor: pointer;
	transition: all 0.3s ease;
	animation: pulse 2s infinite;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {

	0%,
	100% {
		box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
	}

	50% {
		box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
	}
}

/* RESPONSIVE */
@media (max-width: 1200px) {
	.hero-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.navbar-custom {
		padding: 15px 20px;
	}

	.hero-section {
		padding: 10px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		height: auto;
	}

	.hero-item {
		height: 400px;
	}

	.about-section,
	.leadership-section,
	.footer {
		padding: 60px 0px;
	}

	.section-title {
		font-size: 32px;
	}

	.about-cards {
		grid-template-columns: 1fr;
	}

	.team-grid {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}

	.side-menu {
		width: 100%;
		right: -100%;
	}
}
@media (max-width: 500px) {
	.about-main-title{
		font-size: 55px;
	}         
}

/* Blogs page */
.latestBlogs .blogBox {
	margin: 10px 0;
	overflow: hidden;
}
.latestBlogs .blogBox img {
	height: 250px;
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
	margin-bottom: 10px;
	transition: .3s ease;
}
.latestBlogs .blogBox img:hover {
	transform: scale(1.1);
}
.latestBlogs .blogBox .blogContent .blog-meta a, .latestBlogs .blogBox .blogContent .blog-meta span {
	text-decoration: none;
	font-size: 10px;
	color: #fff;
}

.latestBlogs .blogBox .blogContent .blog-meta {
	display: flex;
	justify-content: flex-start;
	gap: 10px;
	font-size: 10px;
	color: #fff;
	margin-bottom: 10px;
}
.latestBlogs .blogBox .blogContent {
	padding: 20px 10px;
}
.latestBlogs .blogBox .blogContent h2 {
	font-size: 22px;
	line-height: 30px;
	font-weight: 600;
	color: #fff;
}
.latestBlogs .blogBox .blogContent h2 a {
	color: #fff;
	text-decoration: none;
}
/*  Blog Detail*/
.singleBlogsContent h1 {
	font-size: 48px;
	border-bottom: 3px solid #fff;
	padding-bottom: 5px;
}
.singleBlogMeta ul {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
	display: flex;
	gap: 20px;
}
.singleBlogMeta ul li a {
	font-size: 11px;
	color: #fff;
	display: inline-block;
	text-decoration: none;
}
.singleBlogMeta ul li a i {
	font-size: 12px;
	padding-right: 5px;
}
.shareBlogs a {
	height: 40px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	color: #000;
	text-decoration: none;
	border-radius: 50px;
}

.shareBlogs a:hover {
	opacity: 0.8;
}
.shareBlogs {
	border-top: 2px solid #fff;
	padding-top: 20px;
	display: flex;
	gap: 10px;
}

.shareBlogs a#facebookShare {
	background-color: #1877F2;
	color: white;
}

.shareBlogs a#linkedinShare {
	background-color: #0077B5; /* LinkedIn Blue */
	color: white;
}

.shareBlogs a#emailShare {
	background-color: #7f7f7f; /* Gray for Email */
	color: white;
}

.shareBlogs a#whatsappShare {
	background-color: #25D366; /* WhatsApp Green */
	color: white;
}
/* career */
.careerBox {
	background: #0a0a0a;
	padding: 20px;
	border-radius: 5px;
	margin: 10px 0;
}
/* 	.careerBox a {
text-decoration: none;
color: white;
} */
.careerBox .career-label {
	font-size: 14px;
	margin-bottom: 14px;
}
.careerBox h2.career-title {
	font-size: 25px;
	margin-bottom: 20px;
}
.careerBox .job-category-grid .career-sub-category {
	background: #fff;
	color: #000;
	padding: 0 10px;
	border-radius: 5px;
	box-shadow: 0 0 10px 0 rgb(255 255 255 / 50%);
}
.careerBox .job-category-grid {
	display: flex;
	gap: 10px;
	font-size: 13px;
	margin-bottom: 20px;
}
.careerBox .applyCTA a:hover {
	background-color: #fff;
	color: #000;
}

.careerBox .applyCTA a {
	display: inline-block;
	padding: 7px 20px;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 10px;
	color: #fff;
	text-decoration: none;
	margin-top: 20px;
	box-shadow: inset 0 0 10px 0 rgb(255 255 255 / 20%);
	transition: .5s ease;
	font-weight: 500;
}
.careerBox .posteddate {
	border-left: 5px solid var(--secondary-color);
	font-size: 12px;
	padding-left: 10px;
	margin-bottom: 14px;
}
/* applynow */
.applyNowForm {
	padding: 20px;
	background: linear-gradient(175deg, #f8e37a, #f67a81);
	position: sticky;
	top: 40px;
	border-radius: 10px;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
}
.applyNowForm h3:before {
	content: "";
	height: 2px;
	width: 80px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #000;
}

.applyNowForm h3 {
	color: #000;
	font-size: 23px;
	padding-bottom: 8px;
	position: relative;
	margin-bottom: 15px;
}
.applyNowForm .form-group label.label {
	font-size: 13px;
	color: #000;
	font-weight: 700;
}
.applyNowForm .form-group {
	margin-bottom: 10px;
}
.applyNowForm .form-group input {
	font-size: 15px;
}
.applyNowForm input.form-btn {
	background: #000000;
	display: inline-block;
	padding: 7px 20px;
	text-align: center;
	border: 2px solid #000000;
	border-radius: 10px;
	color: #ffffff;
	text-decoration: none;
	margin-top: 15px;
	box-shadow: inset 0 0 10px 0 rgb(255 255 255 / 20%);
	transition: .5s ease;
	font-weight: 500;
}
.applyNowForm input.form-btn:hover {
	background-color: #ffffff00;
	color: #000000;
}

/* Contact Uspage */
.contactForm {
	padding: 20px;
/* 	background: linear-gradient(175deg, #f8e37a, #f67a81); */
	position: sticky;
	top: 40px;
	border-radius: 10px;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
	background: #232323;
    border: 2px solid #fff;
	margin-bottom:20px;
	height: calc(100% - 20px);
}
.contactForm h3:before {
	content: "";
	height: 2px;
	width: 80px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #fff;
}

.contactForm h3 {
	color: #ffffff;
	font-size: 23px;
	padding-bottom: 8px;
	position: relative;
	margin-bottom: 15px;
}
.contactForm .form-group label.label {
	font-size: 13px;
	color: #fff;
	font-weight: 700;
}
.contactForm .form-group {
	margin-bottom: 10px;
}
.contactForm .form-group input, .contactForm .form-group textarea {
	font-size: 15px;
    height: 40px;
    border-radius: 0;
    margin-bottom: 20px;
    border: 1px solid #fff;
    background: #000;
    color: #fff;
}
.contactForm .form-group input::placeholder, .contactForm .form-group textarea::placeholder {
    color: #ffffff80;
}
.contactForm .form-group textarea {
    height: 100px;
}
.contactForm input.form-btn {
    background: #ffffff;
    display: inline-block;
    padding: 7px 20px;
    text-align: center;
    border: 2px solid #ffffff;
    border-radius: 10px;
    color: #000000;
    text-decoration: none;
    margin-top: 15px;
    box-shadow: inset 0 0 10px 0 rgb(0 0 0 / 20%);
    transition: .5s ease;
    font-weight: 600;
}
.contactForm input.form-btn:hover {
	background-color: #ffffff00;
	color: #ffffff;
}
.contactAddress {
    align-items: center;
    padding-left: 20px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
    background: #232323;
    border: 2px solid #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
}
.contactAddress h3 {
    color: #ffffff;
    font-size: 23px;
    padding-bottom: 8px;
    position: relative;
    margin-bottom: 15px;
}
.contactAddress h3:before {
    content: "";
    height: 2px;
    width: 80px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
}
.contactAddress ul {
    padding: 0;
    margin: 0;
}
.contactAddress ul li {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    border-left: 2px solid #f0f0f0;
    padding-left: 20px;
}
.contactAddress ul li .icon {
	height: 35px;
	width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    border-radius: 50px;
    color: #ffffff;
    margin-right: 10px;
    border: 1px solid #ffffff;
	font-size:14px;
}
.contactAddress ul li a {
    color: #fff;
    font-size: 15px;
	width: calc(100% - 40px);
}
/* .view_more {
    padding: 5px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    font-size: 13px;
    color: #fff;
    display: inline-block;
} */
.intersted .call-action a {
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 18px;
    margin-bottom: 24px;
    transition: 0.5s all ease;
}

.intersted .call-action a:hover {
    background: #ababab82;
    border-color: #ababab82;
    transition: 0.5s all ease;
}

/* service detail css */
section.service-detail .accordion {
    border: 0;
    --bs-accordion-border-width: 0;
}
section.service-detail .accordion-item {
    background-color: transparent;
    color: #fff;
    border: 0;
/*     border-bottom: 1px solid #fff; */
    border-radius: 5px;
	background: #110f0f;
    padding: 10px;
	margin:10px 0;
}
section.service-detail .accordion-header {
    border-bottom: 1px solid #fff;
}
section.service-detail .accordion-item button.accordion-button {
    background-color: transparent;
    color: #fff;
    border: 0;
    border-radius: 0;
	padding: 15px 0;
}
section.service-detail .accordion-item button.accordion-button:focus {
    box-shadow: none;
}
section.service-detail .accordion-item .accordion-collapse .accordion-body {
    padding: 15px 0px;
}
/* section.service-detail .accordion-item button.accordion-button::after {
    background-image: url(data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>) !important;
} */

section.service-detail .accordion-item button.accordion-button::after  {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}


.about-section .whoweareText ul {
    display: flex;
    gap: 10px;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
	justify-content:center;
}
.about-section .whoweareText ul li {
    padding: 10px 25px;
    background: #110f0f;
    border-radius: 10px;
	transition: .3s ease-in-out;
    cursor: pointer;
}
.about-section .whoweareText ul li:hover {
    background: #fff;
    color: #000;
}

/* menu  */
/* dropdown parent */
.dropdown {
  position: relative;
}

/* arrow button */
.dropdown .dropdown-arrow {
	position: absolute;
	right: 0;
	top: 5px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* FA icon */
.dropdown .dropdown-arrow i {
	font-size: 20px;
	color:#000;
	transition: transform 0.3s ease;
}

/* rotate when open */
.dropdown.open .dropdown-arrow i {
  transform: rotate(180deg);
}

/* submenu hidden */
.dropdown > .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

/* submenu show */
.dropdown.open > .sub-menu {
  max-height: 500px;
}


section.case-study-detail .casestudy-detail img {
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.yellow {
    color: #f2c308;
    padding: 4px;
}