/* ==========================================================================
   FONTS
   ========================================================================== */

@font-face {
	font-family: 'Isocteur';
	font-style: normal;
	font-weight: normal;
	src: local('Isocteur'), url('/fonts/Isocteur.woff') format('woff');
}

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: normal;
	src: local('Roboto-Regular'), url('/fonts/Roboto-Regular.woff') format('woff');
}


/* ==========================================================================
   BASE
   ========================================================================== */

body {
	font-family: "Roboto", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
}

h1 { font-size: 2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 2rem; }

a {
	color: #406E8E;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

.grid-centered {
	justify-items: center;
	align-items: center;
}


/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* --- Buttons --- */

a.button {
	display: inline-block;
	vertical-align: middle;
	border: 2px #e5e5e5 solid;
	padding: 15px;
}

a.button:hover {
	background-color: #1B5B67;
	border-color: #161925;
	color: white;
	transition: all 400ms ease-in-out;
}

/* --- Text List --- */

.text_list li {
	padding: 15px;
	line-height: 1.5;
}

/* --- Outlined Card --- */

.outlined {
	border: 1px solid #1B5B67;
	padding: 20px;
	border-radius: 5px;
	min-height: 200px;
	position: relative;
	line-height: 1.5;
	box-shadow: 0px 0px 5px #1B5B67;
}

.outlined:hover {
	box-shadow: 0px 0px 25px #1B5B67;
	transition: box-shadow 400ms ease-in-out;
}

.tick {
	max-width: 35px;
	max-height: 35px;
	position: absolute;
	right: 5px;
	bottom: 5px;
}

/* --- Overlays --- */

.overlay {
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
}

.overlay-lighter {
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
}

/* --- Sections --- */

.section {
	min-height: 400px;
	padding: 0;
	font-size: 110%;
	line-height: 2;
}

.section h2 {
	font-size: 2.4rem;
	/* margin-bottom: 25px; removed 07-05-2026 */
}

.section .section_padding {
	padding: 40px 0 70px 0;
}

/* --- Logos / Slick Slider --- */

.logos img {
	width: 200px;
	height: 100px;
}

.logos .slick-slide {
	padding: 0 50px;
	position: relative;
}

.logos:not(.slick-slider) li:not(:last-child)::after,
.logos .slick-slide:not(:last-child)::after {
	content: '';
	display: block;
	position: absolute;
	top: 20%;
	right: 0;
	width: 2px;
	height: 60%;
	background-color: #1B5B67;
}

/* --- Social Icons --- */

.social_icon {
	max-width: 20px;
	position: relative;
	top: 5px;
	margin-left: 3px;
}

/* --- BMEEA Logo --- */

#bmeea_logo {
	max-width: 200px;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

header {
	background: #161925;
	border-bottom: 1px solid #999;
	padding: 25px 0 20px;
	text-align: center;
}

header .w1110 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* --- Logo --- */

header #company_logo {
	width: 160px;
	height: auto;
	display: block;
}


/* ==========================================================================
   NAVIGATION
   ========================================================================== */

header nav ul {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 25px;
}

header nav ul li a {
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	transition: color 300ms ease-in-out;
}

header nav ul li a:hover {
	color: #406E8E;
}

header nav .pipe {
	color: white;
	border-left: 1px solid white;
}


/* ==========================================================================
   BURGER MENU
   ========================================================================== */

.burger_btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	flex-direction: column;
	gap: 5px;
	align-items: flex-end;
}

.burger_btn span {
	display: block;
	height: 2px;
	background: white;
	border-radius: 2px;
	transition: all 300ms ease;
}

.burger_btn span:nth-child(1) { width: 24px; }
.burger_btn span:nth-child(2) { width: 18px; }
.burger_btn span:nth-child(3) { width: 24px; }

.burger_btn.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
	width: 24px;
}

.burger_btn.open span:nth-child(2) {
	opacity: 0;
	width: 0;
}

.burger_btn.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
	width: 24px;
}


/* ==========================================================================
   HERO
   ========================================================================== */

#hero_unit {
	background-image: url('/img/bg/bg1.jpg');
	background-size: cover;
	background-attachment: fixed;
	color: white;
	padding: 160px 0;
	border-bottom: 1px solid #333;
	position: relative;
	overflow: hidden;
}

#hero_unit video {
	position: absolute;
	top: -150px;
	left: 0;
	min-width: 100vw;
	opacity: 0.35;
}

#hero_unit #hero_text {
	text-align: center;
}

#hero_unit #hero_text h1 {
	font-size: 100px;
	line-height: 1;
	font-family: 'Isocteur', Arial, sans-serif;
	text-transform: uppercase;
}

#hero_unit #hero_text p {
	font-size: 24px;
	line-height: 2;
	margin: 50px 0;
}


/* ==========================================================================
   PAGE SECTIONS
   ========================================================================== */

/* --- Why Choose Us --- */

#why_choose_us {
	background-image: url('/img/bg/bg2.jpg');
	background-attachment: fixed;
	background-position: 0px 0px;
	background-size: cover;
}

/* --- Our Mission --- */

#our_mission {
	background-image: url('/img/bg/wharf.png');
	background-attachment: fixed;
	background-position: 0 25px;
}

/* --- Our Process --- */

#our_process {
	background-image: url('/img/bg/bg2.jpg');
	background-attachment: fixed;
	background-position: 0px 0px;
	background-size: cover;
}

/* --- About Us --- */

#about_us .section_padding {
	padding: 35px 10px;
}

#about_us .flex_container {
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
	flex-wrap: wrap;
}

#about_us .flex_item {
	align-self: center;
}

#about_us #about_img {
	flex-grow: 3;
	max-height: 200px;
	max-width: 200px;
}

/* --- Leading the Way --- */

#leading_the_way {
	color: #CBF7ED;
	box-shadow: 2px 2px 20px black;
	background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(22,25,37,1) 35%, rgba(57,193,182,1) 100%);
	padding: 40px 0;
	margin: 40px 0;
	justify-content: unset;
}

/* --- Scroller --- */

.scroller {
	padding-top: 40px;
}

/* --- Our Expertise --- */

#our_expertise {
	background-image: url('/img/bg/helm-console.jpg');
	background-attachment: fixed;
	background-position: center;
}


/* ==========================================================================
   WIRING HARNESS
   ========================================================================== */

.inline-img {
	width: 100%;
	border-radius: 5px;
}

.inline-img,
.blue {
	box-shadow: 0px 0px 5px #1B5B67;
}

.inline-img,
.white {
	box-shadow: 0px 0px 5px white;
}


/* ==========================================================================
   PANEL BUILDING
   ========================================================================== */

#panel_building {
	background-image: url('/img/bg/helm-console.jpg');
	background-attachment: fixed;
}


/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact_buttons {
	margin: 30px auto;
	display: table;
}

#contact_form label,
#contact_form input,
#contact_form textarea {
	display: block;
	width: 100%;
}

#contact_form input,
#contact_form textarea {
	min-height: 60px;
	font-family: "Roboto", Helvetica, sans-serif;
	padding: 10px;
	line-height: 1.875rem;
	font-size: 1.1875rem;
	margin-bottom: 25px;
}

#contact_form textarea {
	min-height: 150px;
}

#contact_response {
	padding: 30px;
	font-size: 16px;
	line-height: 1.5;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
	background: #161925;
	color: gray;
}

footer h4 {
	margin-top: 0;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1480px) {

	#hero_unit video {
		position: absolute;
		top: 0px;
		left: 0px;
		min-width: 100vw;
		min-height: 100%;
	}
}

@media (max-width: 1119px) {

	.burger_btn {
		display: flex;
	}

	header {
		padding: 0;
	}

	header .w1110 {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		padding: 0;
		gap: 0;
	}

	.header_top {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: 14px 15px;
	}

	header #company_logo {
		width: 125px;
		height: 125px;
	}

	header nav {
		display: none;
		width: 100%;
		border-top: 1px solid rgba(255,255,255,0.08);
	}

	header nav.open {
		display: block;
	}

	header nav ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		margin-bottom: 0;
		padding: 0;
		list-style: none;
	}

	header nav ul li {
		width: 100%;
		padding-left: 0 !important;
	}

	header nav ul li a {
		display: block;
		padding: 14px 15px;
		font-size: 15px;
		border-bottom: 1px solid rgba(255,255,255,0.06);
	}

	header nav ul li a:hover {
		background: rgba(64, 110, 142, 0.15);
	}

	header nav .pipe {
		display: none;
	}

	header .flex_container {
		flex-direction: column;
		justify-content: center;
		padding: 1rem 0;
	}
}

@media (max-width: 1100px) {

	.outlined {
		min-height: 265px;
	}
}

@media (max-width: 1040px) {

	#our_mission {
		background-position: -300px -100px;
	}

	#our_expertise {
		background-position: -300px -100px;
	}

	#our_process {
		background-position: 0px 0px;
	}
}

@media (max-width: 979px) {

	.outlined {
		min-height: 300px;
	}

	header nav ul li:not(:first-child) {
		padding-left: 18px;
	}

	#hero_unit {
		padding: 70px 0;
	}

	#hero_unit #hero_text h1 {
		font-size: 70px;
	}

	#hero_unit video {
		position: absolute;
		top: 0px;
		left: 0px;
		min-width: 100vw;
		min-height: 100%;
	}

	#our_mission {
		background-position: -300px -100px;
	}

	#our_expertise {
		background-position: -300px -100px;
	}

	#our_process {
		background-position: -240px 0px;
	}

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

@media (max-width: 769px) {

	#hero_unit {
		padding: 65px 0;
	}

	#hero_unit #hero_text h1 {
		font-size: 60px;
	}

	#hero_unit #hero_text p {
		font-size: 19px;
	}

	#hero_unit video {
		top: 0px;
		left: 0px;
		min-width: 100vw;
	}

	#our_mission {
		background-position: -300px 0px;
	}

	#our_expertise {
		background-position: -300px -100px;
	}

	#our_process {
		background-position: -420px 0px;
	}

    .outlined{
        min-height:200px
    }
}

@media (max-width: 599px) {

	header nav ul {
		font-size: 15px;
	}

	header nav ul li:not(:first-child) {
		padding-left: 15px;
	}

	#hero_unit {
		padding: 60px 0;
	}

	#hero_unit video {
		top: 0px;
		left: -200px;
		min-width: 100vw;
	}

	#hero_unit #hero_text h1 {
		font-size: 50px;
		line-height: 1;
	}

	#hero_unit #hero_text p {
		font-size: 17px;
	}

	#our_mission {
		background-position: -325px 0px;
	}

	#our_expertise {
		background-position: -625px -100px;
	}

	#our_process {
		background-position: -750px 0px;
	}
}

@media (max-width: 480px) {

	header nav ul {
		font-size: 14px;
	}

	header nav ul li:not(:first-child) {
		padding-left: 13px;
	}
}