/* ==========================================================================
   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;
}
/*
.overlay .fluid_container {
  padding: 0;
}
*/
/* --- 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;
}


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

#hero_unit {
  background-image: url('/img/bg/bg1.jpg');
  background-size: 260%;
  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; /* 90px 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;
}

/* ////////// MARINE ELECTRICAL DESIGN //////////// /*

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

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


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

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

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


.inline-img, .white{    
   /* border: 1px solid 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) {

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

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

  header nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 16px;
  }

  header nav .pipe{
    display: none;
  }
}

@media (max-width: 1040px) {

  #about_us #about_text {
    max-width: 100%;
  }

  #about_us img {
    margin: 40px auto;
  }

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

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

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

@media (max-width: 979px) {

  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: 767px) {
    


  #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;
  }
}

@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;
  }
}
