.banner-btn {
	position: relative;
	max-width: max-content;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
	background: transparent;
	border-radius: 5px;
	border: solid 2px #fff;
	z-index: 1;
	overflow: hidden;
	transition: 0.3s;
	transition-delay: 0.1s;
	padding: 14px 28px;
}

.banner-btn:hover {
	color: #fff;
	border-color: #0D2149;
}

.banner-btn::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #0D2149;
	transform: translateY(110%);
	transition: 0.3s;
	transition-delay: 0.1s;
	z-index: -1;
}

.banner-btn:hover::before {
	transform: translateY(0);
}

.banner-btn::after {
	content: '\ea65';
	font-family: 'rt-icons';
}

.object-fit-cover,
.object-fit-cover img {
	object-fit: cover;
}

.custom-box-shadow {
	box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 30px 0px;
}

.expertise-card ul {
	padding-left: 20px;
	list-style: disc;
}

.values-card p {
	margin-bottom: 0;
}

.project-type-ctn {
	display: none;
}

.invert-img {
	filter: brightness(0) invert(1);
}

.invert-img-dark,
.invert-img-dark img {
	filter: brightness(0);
}

/* contact form styling */
.form-ctn .title-section h4 {
	font-size: 30px;
	border-bottom: solid 1px #000;
}

.form-ctn label {
	display: block;
	margin-bottom: 5px;
	padding: 0 5px;
}

.form-ctn .form-control {
	width: 100%;
	max-width: 100%;
	height: auto;
	font-size: 16px;
	background-color: #F6F6F6;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: #EDECEC00;
	border-radius: 5px;
	padding: 15px;
	margin-bottom: 15px;
}

.form-ctn span.wpcf7-list-item-label {
    font-weight: 400;
    font-size: 16px;
}

.form-ctn textarea.form-control {
	height: 125px;
}

.form-ctn button {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4em;
	color: #ffffff;
	background-color: var(--e-global-color-primary);
	border-style: none;
	border-radius: 5px 5px 5px 5px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
	padding: 15px 20px 15px 20px;
}
