/* 400 Regular */
@font-face {
  font-family: Google Sans;
  src: url(../fonts/GoogleSans-Regular.woff2) format("woff2"), url(../fonts/GoogleSans-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
/* 400 Regular Italic */
@font-face {
  font-family: Google Sans;
  src: url(../fonts/GoogleSans-Italic.woff2) format("woff2"), url(../fonts/GoogleSans-Italic.woff) format("woff");
  font-weight: normal;
  font-style: italic;
}
/* 500 Medium */
@font-face {
  font-family: Google Sans;
  src: url(../fonts/GoogleSans-Medium.woff2) format("woff2"), url(../fonts/GoogleSans-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}
/* 500 Medium Italics */
@font-face {
  font-family: Google Sans;
  src: url(../fonts/GoogleSans-MediumItalic.woff2) format("woff2"), url(../fonts/GoogleSans-MediumItalic.woff) format("woff");
  font-weight: 500;
  font-style: italic;
}
/* 700 Bold */
@font-face {
  font-family: Google Sans;
  src: url(../fonts/GoogleSans-Bold.woff2) format("woff2"), url(../fonts/GoogleSans-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
/* 700 Bold Italics */
@font-face {
  font-family: Google Sans;
  src: url(../fonts/GoogleSans-BoldItalic.woff2) format("woff2"), url(../fonts/GoogleSans-BoldItalic.woff) format("woff");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: SF Compact Text;
  src: url(../fonts/SFCompactText-Regular.woff2) format("woff2"), url(../fonts/SFCompactText-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: SF Compact Text;
  src: url(../fonts/SFCompactText-LightItalic.woff2) format("woff2"), url(../fonts/SFCompactText-LightItalic.woff) format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: SF Compact Text;
  src: url(../fonts/SFCompactText-Semibold.woff2) format("woff2"), url(../fonts/SFCompactText-Semibold.woff) format("woff");
  font-weight: bold;
  font-style: normal;
}

* {
  font-family: "Google Sans", serif;
  margin: 0px;
  padding: 0px;
}
a {
  text-decoration: none;
}

#pageName,
#parentPage {
  display: none;
}

/*  */
/*  */
/* Navigation Top */
/*  */
/*  */

#homeTopBarParent {
  width: 100%;
  height: 50px;
  background-color: #1a191d;
  color: #bbbbbb;
  display: block;
}
#homeTopBarChild {
  width: 98%;
  height: 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#homeTopBarLeft {
  font-family: "SF Compact Text", sans-serif;
  font-size: 15px;
  /* color: #bbbbbb; */
  float: left;
}
#homeTopBarLeft p::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #cd0001;
  margin-right: 5px;
  vertical-align: middle;
}
#homeTopBarRight {
  float: right;
  display: flex;
  flex-flow: row nowrap;
}
#tb-phone,
#tb-email {
  border-right: 1px solid rgba(222, 222, 222, 0.2);
  margin-right: 18px;
  padding-right: 18px;
}
#homeTopBarRight i {
  color: rgb(255, 255, 255);
  font-size: 16px;
}
#homeTopBarRight a {
  color: inherit;
  padding-left: 5px;
  font-family: "SF Compact Text", sans-serif;
  font-size: 15px;
}

/*  */
/*  */
/* Navigation Bar */
/*  */
/*  */

.navContainer {
  display: flex;
  flex-flow: row nowrap;
  background-color: rgb(255, 255, 255);
  font-size: 18px;
  color: rgb(0, 0, 0);
  width: 100%;
  height: 80px;
  position: absolute;
  z-index: 6;
  margin: 0;
  padding: 0;
  top: 50;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}

.navContainer2 {
  display: flex;
  flex-flow: row nowrap;

  background-color: rgb(0, 0, 0, 0.6);
  font-size: 17px;
  color: rgb(255, 255, 255);
  width: 100%;
  height: 80px;
  position: absolute;
  z-index: 6;
  margin: 0;
  padding: 0;
  top: 50;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
  float: left;
}
#navCompanyLogo img {
  height: 80px;
  width: auto;
}

.links > ul > li {
  display: inline-block;
  margin: 0px 15px;
  vertical-align: middle;
  position: relative;
  list-style: none;
}
.links > ul > li:first-child {
  margin-left: 30px;
}
.links > ul > li > a {
  line-height: 80px;
  padding: 29px 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
}
.navContainer .links > ul > li > a::before {
  background-color: #cd0001;
}
.navContainer2 .links > ul > li > a::before {
  background-color: rgb(255, 255, 255);
}
.links > ul > li > a::before {
  content: "";
  position: absolute;

  height: 3px;
  width: 0;
  left: 0;
  top: 0;
  transition: 0.5s;
}
.links > ul > li:hover a::before {
  width: 100%;
}
.links > ul > li > a:active::before {
  width: 100%;
}
.navActive a::before {
  width: 100% !important;
}
.arrowDown::after {
  position: relative;
  bottom: 2px;
  font-family: "Font Awesome 5 Pro";
  content: "\f078";
  font-size: 11px;
  font-weight: 600;
  padding-left: 5px;
  line-height: 1;
}
.links ul li ul {
  position: absolute;
  background-color: #fff;
  border-bottom: 3px solid #cd0001;
  top: 100%;
  min-width: 230px;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transition: all 200ms linear 0ms;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  list-style: none;
  margin: 0;
}
.links ul li:hover ul {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
.links ul li ul li {
  position: relative;
  list-style: none;
  color: #666666;
  border-bottom: 1px solid white;
}
.links ul li ul li:last-of-type {
  border-bottom: none;
}
.links ul li:hover ul {
  display: block;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}
.links ul li ul li a {
  display: block;
  padding: 1px 30px 0;
  /* border-bottom: 1px solid #f4f4f4; */
  position: relative;
  font-size: 15px;
  line-height: 43px;
  font-weight: normal;
  transition: all 300ms linear 0ms !important;
  color: inherit;
  outline: none;
  text-decoration: none;
}
.links ul li ul li:hover {
  background-color: #cd0001;
  color: rgb(255, 255, 255);
}
.subNavActive {
  background-color: #cd0001 !important;
  color: white !important;
}
/* Mobile Nav */
.mobileNav {
  width: auto;
  height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  /* justify-content: center; */
  background-color: #1a191d;
  font-size: 15px;
  color: rgb(255, 255, 255);
  position: fixed;
  z-index: 5;
  margin: 0;
  padding-top: 50px;
  top: 80px;
  right: -200px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
  transition: transform 0.75s;
}
.mobileNav a {
  float: left;
  display: block;
  color: inherit;
  text-align: center;
  padding: 20px 16px;
  text-decoration: none;
  font-size: inherit;
}

.dropdown {
  float: left;
  overflow: hidden;
}
.dropdown .dropbtn {
  font-size: inherit;
  border: none;
  outline: none;
  color: inherit;
  padding: 20px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  width: 100%;
  transition: all 250ms linear 0s;
}
.dropdown-content {
  display: none;
  /* height: 0; */
  position: relative;
  /* background-color: #c9c9c9; */
  min-width: 160px;
  z-index: 5;
  transition: all 1s linear 0s;
}
.dropdown-content a {
  float: none;
  background-color: rgb(255, 255, 255);
  color: black;
  padding: 20px 16px;
  text-decoration: none;
  display: block;
  transition: all 250ms linear 0s;
}
.mobileNav a:hover,
.dropdown:hover .dropbtn {
  background-color: #cd0001;
  color: white;
}
.dropdown-content a:hover {
  background-color: #cd0001;
  color: rgb(255, 255, 255);
}
.displayBlock {
  display: block;
}
.openMobileNav {
  transform: translateX(-200px);
}

/* Hamburger Button */

.hamburger {
  height: 100%;
  display: none;
  padding: 0 10px;
  margin-right: 0px;
  cursor: pointer;
}
.hamburger .bar {
  background-color: rgb(255, 255, 255);
  height: 4px;
  width: 36px;
  margin: 3px;
  border-radius: 10px;
}
.animateBar1 {
  animation: flipBar1 1s;
  animation-fill-mode: forwards;
}
.animateBar2 {
  animation: fadeBar2 1s;
  animation-fill-mode: forwards;
}
.animateBar3 {
  animation: flipBar3 1s;
  animation-fill-mode: forwards;
}
@keyframes flipBar1 {
  form {
    transform: rotate(0);
  }
  to {
    transform: rotate(45deg) translate(4px, 10px);
  }
}
@keyframes fadeBar2 {
  form {
    transform: scaleX(1);
    opacity: 1;
  }
  to {
    transform: scaleX(0);
    opacity: 0;
  }
}
@keyframes flipBar3 {
  form {
    transform: rotate(0);
  }
  to {
    transform: rotate(-45deg) translate(4px, -10px);
  }
}

/*  */
/*  */
/* Homepage */
/*  */
/*  */
#sliderSection {
  text-align: center;
}
#sliderSection h1 {
  margin-top: 25px;
  font-size: 60px;
  color: rgb(255, 255, 255);
  animation: overlayText1 2.5s linear 0s;
}

#sliderSection h4 {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  line-height: 1.6em;
  animation: overlayText2 2.5s linear 0s;
  margin-bottom: 50px;
}

.btn {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  line-height: 50px;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 15px 31px;
  transform-origin: 50% 50%;
  vertical-align: middle;
}
.red-btn {
  background: rgb(205, 0, 1);
  color: white;
  line-height: 46px;
  margin-right: 12px;
  /* animation: overlayButton1 2.5s linear 0s; */
  background: linear-gradient(to left, rgb(205, 0, 1) 50%, rgb(255, 255, 255) 50%) right;
  background-size: 210%;
  transition: 0.5s ease-in;
}
.red-btn:hover {
  color: black;
  background-position: left;
}
.white-btn {
  color: black;
  background: linear-gradient(to left, rgb(255, 255, 255) 50%, rgb(205, 0, 1) 50%) right;
  background-size: 210%;
  transition: 0.5s ease-in;

  margin-left: 12px;
}
.white-btn:hover {
  color: white;
  background-position: left;
}
#mySlider {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 110vh;
}
.singleSlide {
  background-size: cover;
  background-position: center;
  height: 110vh;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  top: 0px;
  animation: slideShow 10s linear infinite 0s;
}
.sliderOverlayColor {
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  padding-top: 20%;
  box-sizing: border-box;
}
.slideOverlay {
  position: relative;
  width: 60%;
  margin: auto;
  padding-top: 10%;
  height: 100%;
  box-sizing: border-box;
}
#sliderNav {
  position: relative;
  top: -60vh;
  z-index: 3;
  font-size: 42px;
}
#sliderNav:hover {
  cursor: pointer;
}
#sliderPrev {
  float: left;
  left: 5%;
}
.sliderArrows {
  position: relative;
  width: 50px;
  height: 50px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.2);
}
.sliderArrows:hover {
  background: rgb(205, 0, 1);
}
#sliderPrev::before {
  /* position: absolute; */
  font-family: "revicons";
  content: "\e817";
  font-size: 20px;
  color: #ffffff;
  display: block;
  line-height: 50px;
  text-align: center;
}
#sliderNext {
  float: right;
  right: 5%;
}
#sliderNext::before {
  /* position: absolute; */
  font-family: "revicons";
  content: "\e818";
  font-size: 20px;
  color: #ffffff;
  display: block;
  line-height: 50px;
  text-align: center;
}
@keyframes slideShow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes overlayText1 {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  60% {
    transform: scale(0.9);
    opacity: 0;
  }
  80% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes overlayText2 {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  80% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes overlayButton1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(500px);
  }
}
/* Middle Welcome */
#middleContainerTop {
  position: relative;

  width: 80%;
  margin: auto;
  top: -50px;
  display: flex;
  flex-flow: row wrap;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}
.middleInnerContainer {
  position: relative;
  width: 24%;
  flex-grow: 1;
  height: 320px;
  background-color: rgb(255, 255, 255);
  border-right: 1px solid rgb(204, 203, 203);
  /* clip-path: inset(10%, 0); */
  transition: all 250ms ease-out 0s;
}
.middleInnerContainer:last-of-type {
  border-right: none;
}
.innerContainerDiv svg {
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  color: #cd0001;
  fill: #cd0001;
  transition: all 0.1s linear 0s;
}
.innerContainerDiv i {
  margin-bottom: 30px;
  font-size: 50px;
  color: #cd0001;
  transition: all 0.1s linear 0s;
}
.middleInnerContainer a {
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.02em;
  font-size: 25px;
  color: black;
  transition: all 0.1s linear 0s;
}
/* .middleInnerContainer:hover{
  background-color: #cd0001;
  color: #fff;
  clip-path:inset(0% 0);
}
.middleInnerContainer:hover a, .middleInnerContainer:hover a svg{
    color: #fff;
    fill: #fff;
} */
.innerContainerDiv {
  position: relative;
  padding: 45px 30px 30px;
  text-align: center;
  z-index: 2;
}
.innerContainerDiv p {
  font-family: "SF Compact Text", sans-serif;
  padding-top: 15px;
}
.innerContainerOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(#cd0001 25%, #810001 100%);
  height: 100%;
  visibility: hidden;
  transition: all 250ms linear 0s;
}
.middleInnerContainer:hover .innerContainerOverlay {
  visibility: visible;
  transform: scaleY(1.1);
}
.middleInnerContainer:hover,
.middleInnerContainer:hover a,
.middleInnerContainer:hover .innerContainerDiv i,
.middleInnerContainer:hover .innerContainerDiv svg {
  color: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
}
.innerContainerButton {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  /* transition: all 250ms linear 0s; */
  bottom: 0;
  display: flex;
  width: 70%;
  text-align: center;
}
.innerContainerButton a {
  font-size: 14px;
  background-color: #000;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 49px;
  width: 100%;
  /* padding: 0 35px; */
  /* position: relative; */
  /* z-index: 1; */
}
/* Bottom Welcome */
#welcomBottomParent {
  width: 100%;
  /* height: 500px; */
  /* background-color: gray; */
  margin: 100px 0px 50px;
}
#welcomeBottomChild {
  width: 80%;
  /* height: 100%; */
  /* background-color: aquamarine; */
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
#welcomeImage {
  width: 47%;
}
#welcomeImage video {
  width: 100%;
}
#welcomeText {
  /* background-color: blanchedalmond; */
  width: 46%;
}
#welcomeText h4 {
  letter-spacing: 0.05em;
  font-size: 20px;
  margin-bottom: 11px;
  text-transform: capitalize;
  font-weight: 500;
  color: #cd0001;
}
#welcomeText h1 {
  font-size: 40px;
  color: #1a191d;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.02em;
}
#welcomeText p {
  font-family: "SF Compact Text", sans-serif;
  font-size: 15px;
  margin: 17px 15px 17px 0px;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0;
  word-wrap: break-word;
  color: #666666;
}
#welcomeText div {
  margin-bottom: 30px;
}
#homepageOwner {
  display: flex;
  flex-flow: row wrap;
  margin-top: 15px;
}
#homepageOwnerPic {
  margin-right: 35px;
}
#homepageOwnerPic img {
  width: 60px;
}
#homepageOwnerSign {
  margin-right: 35px;
}
#homepageOwnerName {
  color: #1a191d;
  letter-spacing: 0.3px;
}
#homepageOwnerName h3 {
  margin-bottom: 3px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 15px;
}
#homepageOwnerName p {
  font-family: "SF Compact Text", sans-serif;
  font-weight: 400;
  margin: 0;
  font-size: 15px;
}

/* Hompage - Projects */
#homepageProjects {
  /* position: relative; */
  width: 100%;
  background-image: url("../images/curve_overlay_big.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  background-color: #1a191d;
}
#projectsTextOuter {
  width: 100%;
  color: white;
  text-align: center;
}
#projectsTextInner {
  width: 62%;
  margin: auto;
}
#projectsTextInner h2 {
  padding-top: 100px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-size: 40px;
}
#projectsTextInner p {
  font-family: "SF Compact Text", sans-serif;
  font-size: 17px;
  margin: 13px 0 10px;
  line-height: 1.52em;
  margin-bottom: 50px;
}
#projectsDataOuter {
  width: 90%;
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.projectsCard {
  width: 23%;
}
.projectsCard div img {
  width: 100%;
  height: auto;
}
#projectsButtonOuter {
  padding: 50px 0 50px;
  width: 100%;
  text-align: center;
}

/* Homepage About Us Section */
#homeAboutUsParent {
  width: 100%;
}
/* #homeAboutUs {
  width: 82%;
  margin: auto;
}
#homeAboutUsContent {
  width: 55%;
  padding: 90px 0;
  text-align: left;
}
#homeAboutUsContent h2 {
  font-size: 40px;
  color: #1a191d;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
#homeAboutUsContent p {
  font-family: "SF Compact Text", sans-serif;
  margin-top: 13px;
  font-size: 17px;
  line-height: 1.52em;
  color: #666;
  letter-spacing: 0;
  word-wrap: break-word;
}
#homeAboutMan {
  width: 100%;
  height: 600px;
  background-image: url(../images/homeAboutMan.jpg);
  background-repeat: no-repeat;
}

#homeAboutTabParent {
  width: 85%;
  height: 500px;
  margin: auto;
}
#homeAboutTab {
  width: 68%;
  height: 540px;
  background-color: #ffffff;
  float: right;
}
#homeAboutTabInner {
  position: relative;
  height: 540px;
  padding: 15px 15px 15px 30px;
}
#homeAboutTabButtons {
  margin-bottom: 10px;
}
.tabButton {
  font-size: 15px;
  color: #1a191d;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 17px 0;
  margin-right: 75px;
  line-height: 1.6;
  text-align: left;
  cursor: pointer;
}
.tabButton:last-of-type {
  margin-right: 0px;
} */
/* .tabButton::before {
  opacity: 1;
  position: absolute;
  content: "";
  top: -1px;
  right: 2px;
  left: 0;
  height: 4px;
  background-color: #cd0001;
} */
/* .tabText {
  padding: 20px 0;
  word-wrap: break-word;
  font-family: "SF Compact Text", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  color: #666666;
} */

/* #homeAboutFooterParent {
  width: 100%;
  height: 240px;
  background-image: linear-gradient(130deg, #1a191d 85%, #232226 0%);
  position: relative;
}
#homeAboutFooterChild {
  width: 87%;
  height: 140px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.homeAboutFooter {
  padding: 21px 15px 24px;
  text-align: center;
  width: 20.5%;
  background-color: #39383b;
  color: white;
  position: relative;
}
.homeAboutFooter::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 3px solid #cd0001;
  border-left: 3px solid #cd0001;
  box-sizing: border-box;
}
.homeAboutFooter::after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background-color: transparent;
  position: absolute;
  bottom: 0;
  right: 0;
  border-right: 3px solid #cd0001;
  border-bottom: 3px solid #cd0001;
  box-sizing: border-box;
}
.homeAboutFooter h3 {
  font-size: 50px;
}
.homeAboutFooter h4 {
  text-transform: uppercase;
  font-family: "SF Compact Text", sans-serif;
  font-weight: 500;
  margin-top: 12px;
  font-size: 17px;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.02em;
} */

/* homeSteeleBridge */
#homeSteeleBridge {
  background-image: url(../images/transmission13.jpg);
  background-repeat: none;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 60vh;
}

/*  */
/*  */
/* About Us */
/*  */
/*  */

#aboutHeaderParent {
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(26, 25, 29, 1) 100%);
  /* background-image: url(../images/aboutHeader.jpg);
  background-size: cover;
  background-repeat: no-repeat; */
  width: 100%;
  height: 70vh;
}
#aboutHeaderOverlay {
  width: 100%;
  height: 70vh;
  background-color: rgb(0, 0, 0, 0.5);
}
#aboutHeaderChild {
  margin: auto;
  width: 60%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
}

#aboutHeaderChild h1 {
  font-size: 60px;
  letter-spacing: 1.8px;
  line-height: 1.2;
  /* margin-top: 50px; */
}

#aboutHeaderChild p {
  font-family: "SF Compact Text";
  font-size: 17px;
  line-height: 28px;
}

/* About Page Welcome Section */

#aboutWelcomeParent {
  width: 100%;
  /* height: 500px; */
  /* background-color: gray; */
}
#aboutWelcomeChild {
  width: 80%;
  /* height: 100%; */
  /* background-color: aquamarine; */
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 100px 0px 50px;
}

#aboutWelcomeText {
  /* background-color: blanchedalmond; */
  width: 100%;
}
#aboutWelcomeText h4 {
  letter-spacing: 0.05em;
  font-size: 20px;
  margin-bottom: 11px;
  text-transform: capitalize;
  font-weight: 500;
  color: #cd0001;
}
#aboutWelcomeText h1 {
  font-size: 40px;
  color: #1a191d;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.02em;
}
#aboutWelcomeText p {
  font-family: "SF Compact Text", sans-serif;
  font-size: 18px;
  margin: 17px 0px;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0;
  word-wrap: break-word;
  color: #666666;
}
#aboutWelcomeText ol li {
  font-family: "SF Compact Text", sans-serif;
  font-size: 18px;
  font-weight: bold;
}
#aboutWelcomeText div {
  margin-bottom: 30px;
}
#aboutWelcomeOwner {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-top: 15px;
}
#aboutWelcomeOwnerPic {
  margin-right: 35px;
  display: flex;
  justify-content: center;
}
#aboutWelcomeOwnerPic img {
  width: 100px;
}
#aboutWelcomeOwnerSign {
  margin-right: 35px;
}
#aboutWelcomeOwnerName {
  color: #1a191d;
  letter-spacing: 0.3px;
}
#aboutWelcomeOwnerName h3 {
  margin-bottom: 3px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 15px;
}
#aboutWelcomeOwnerName p {
  font-family: "SF Compact Text", sans-serif;
  font-weight: 400;
  margin: 0;
  font-size: 15px;
}

/* About Page Why Section */

/* #aboutWhyParent {
  background-color: #1a191d;
  background-image: url(../images/about_why_overlay.png);
  width: 100%;
  height: 500px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#aboutWhyChild {
  width: 86%;
  height: 300px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
}
#aboutWhyText {
  width: 86%;
}
#aboutWhyText h4 {
  font-size: 20px;
  margin-bottom: 11px;
}
#aboutWhyText h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
#aboutWhyBottom {
  width: 100%;
  height: 300px;
  position: relative;
}
#aboutWhyBottomChild {
  width: 87%;
  position: relative;
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.aboutWhyCards {
  width: 22.5%;
  margin-top: -170px;
  align-content: center;
  position: relative;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}
.aboutWhyCardsContent {
  padding: 50px 40px 43px;
  text-align: center;
}
.aboutWhyCardsContent i {
  font-size: 76px;
  fill: #cd0001;
  color: #cd0001;
}
.aboutWhyCardsContent h3 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #1a191d;
  line-height: 1.2;
  margin: 26px 0 19px;
}
.aboutWhyCardsContent p {
  font-family: "SF Compact Text";
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
} */

/*  */
/*  */
/* Founder's Message Page */
/*  */
/*  */

/* Founder Header Section */
#founderHeaderParent {
  width: 100%;
  height: 60vh;
  /* background-image: url(../images/founderHeader.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; */
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(26, 25, 29, 1) 100%);
}
#founderHeaderOverlay {
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.5);
}
#founderHeaderText {
  width: 85%;
  height: 100%;
  margin: auto;
  line-height: 1.2;
  padding: 100px;
  /* margin-top: 50px; */
}
#founderHeaderText h3 {
  color: #ededed;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.75px;
  margin-bottom: 20px;
}
#founderHeaderText h1 {
  color: #ffffff;
  font-size: 60px;
  letter-spacing: 1.8px;
}

/* Founder Main Section */
#founderMainParent {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
#founderMainChild {
  width: 82%;
  background-color: rgb(255, 255, 255);
  margin-top: -50px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}
#founderMain {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}
#founderIntroDiv {
  width: 30%;
  /* border: 1px solid #dedede; */
}
#founderDetailDiv {
  width: 62%;
  padding-bottom: 30px;
}
#founderIntroImg {
  width: 100%;
  height: auto;
  margin: 30px 0 20px;
}
#founderIntroImg img {
  width: 100%;
  height: auto;
}
/* .founderIntroText {
  margin: 0 20px;
  padding: 10px 0;
  border-bottom: 1px solid #dedede;
}
#founderIntroSocial {
  margin: 0 20px;
  padding: 10px 0 30px;
  display: flex;
  flex-flow: row nowrap;
}
#founderIntroIconsDiv {
  margin-left: 10px;
}
.founderIntroIcons {
  padding: 10px;
}
#founderIntroSocial div span i {
  color: #1c1c23;
} */
.founderDetails {
  border-bottom: 1px solid #dedede;
}
.founderDetails:last-of-type {
  border-bottom: none;
}
.founderDetails h3 {
  font-size: 30px;
  margin: 30px 0 15px;
  color: #1a191d;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.founderDetails p {
  margin-bottom: 17px;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  color: #666666;
}
.founderDetails p:last-of-type {
  margin-bottom: 30px;
}

/* Dummy Section to avoid footer getting upwards */

#founderFooterParent {
  width: 100%;
  height: 100px;
}

/*  */
/*  */
/* Contact Us Page */
/*  */
/*  */

#contactHeaderParent {
  background-image: url(../images/contactHeader-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 70vh;
}
#contactHeaderOverlay {
  width: 100%;
  height: 70vh;
  background-color: rgb(0, 0, 0, 0.5);
}
#contactHeaderContent {
  margin: auto;
  width: 60%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
}

#contactHeaderContent h1 {
  font-size: 60px;
  letter-spacing: 1.8px;
  line-height: 1.2;
  margin-bottom: 10px;
}
#contactHeaderContent p {
  font-family: "SF Compact Text";
  font-size: 17px;
  line-height: 28px;
}

#contactMessageParent {
  width: 100%;
  /* height: 700px; */
  display: flex;
  flex-flow: row wrap;
}
.contactMessageChild {
  width: 50%;
  /* height: 700px; */
}
#contactMessage {
  background-image: url(../images/contactFormOverlay.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  opacity: 1;
}
#contactMessageText {
  width: 70%;
  margin: auto;
  padding-top: 100px;
}
#contactMessageText h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
#contactMessageText p {
  font-family: "SF Compact Text", sans-serif;
  font-size: 17px;
  margin: 13px 0 50px;
  line-height: 1.52em;
  color: #666;
  letter-spacing: normal;
}
#contactMessageForm {
  margin: 22px 0 90px;
  width: 70%;
  margin: auto;
}
.contactForm input {
  background-color: #fff;
  border: 1px solid #dedede;
  font-family: "SF Compact Text", sans-serif;
  color: #666;
  padding: 13px 20px !important;
  height: 20px;
  border-radius: 0;
  /* line-height: 47px; */
  font-size: 13px !important;
  width: 90%;
  margin-bottom: 20px;
}
.contactForm textarea {
  line-height: normal;
  background-color: #fff;
  border: 1px solid #dedede;
  font-family: "SF Compact Text", sans-serif;
  color: #666;
  padding: 13px 20px !important;
  border-radius: 0;
  font-size: 13px !important;
  margin-bottom: 20px;
  width: 90%;
}
.contactForm button {
  margin: 7px 0 50px;
  background-color: #cd0001;
  font-family: "Google Sans", serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 0 35px;
  line-height: 49px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

#contactDetails {
  background-color: #1a191d;
  width: 100%;
  height: 100%;
}
#contactDetailsInner {
  width: 60%;
  margin: auto;
  padding-top: 100px;
  color: white;
}
#contactDetailsText h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
#contactDetailsText p {
  font-family: "SF Compact Text";
  font-size: 17px;
  font-weight: 400;
  color: #f9f9f9;
  line-height: 1.52em;
  margin: 13px 0 10px;
}
#contactDetailsAddress {
  margin-top: 50px;
}
.contactDetailsAddressInner {
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 35px;
}
.contactIcon a {
  color: #ededed;
  border-color: #ededed;
}
.contactIcon a svg {
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
  fill: #ededed;
  color: #ededed;
  font-size: 44px;
  cursor: pointer;
  margin-right: 20px;
}
.contactIconDetails h3 {
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
  color: #ffffff;
  line-height: 1.2;
  text-align: left;
}
.contactIconDetails a {
  color: inherit;
}
.contactIconDetails p {
  color: #ededed;
  font-family: "SF Compact Text", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
#contactMap {
  width: 100%;
  height: 500px;
}
#contactMap iframe {
  width: 100%;
  height: 500px;
}
.invalidFeedback {
  color: red;
  margin: 0 0 20px;
  padding-left: 20px;
}
input.is-invalid,
textarea.is-invalid {
  border-color: red;
}
.alert {
  display: block;
  /* width: 100%; */
  padding: 10px;
}
.alert-success {
  background-color: #d1ecf1;
  color: #155759;
  border: 1px solid #155759;
}
.alert-danger {
  background-color: #f8d7da;
  color: #b75a24;
  border: 1px solid #b75a24;
}

/*  */
/*  */
/* BOD Page */
/*  */
/*  */

/* BOD - Header Section */
#BODHeaderParent {
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(26, 25, 29, 1) 100%);
  /* background: linear-gradient(90deg, rgba(70,10,11,1) 0%, rgba(0,0,0,1) 100%); */
  /* background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgb(125, 9, 10) 100%); */
  /* background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(70,10,11,1) 100%); */
  width: 100%;
  height: 80vh;
}
#BODHeaderOverlay {
  width: 100%;
  height: inherit;
}
#BODHeaderContent {
  margin: auto;
  width: 60%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
}
#BODHeaderContent h1 {
  font-size: 60px;
  letter-spacing: 1.8px;
  line-height: 1.2;
  margin-bottom: 20px;
}
#BODHeaderContent p {
  font-family: "SF Compact Text";
  font-size: 17px;
  line-height: 28px;
}
/* BOD Main Section */
#BODParent {
  width: 100%;
}
#BODChild {
  width: 82%;
  margin: auto;
  padding-top: 100px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.BODMemberCard {
  width: 45%;
  margin-bottom: 50px;
  position: relative;
  transition: all 200ms linear 0s;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}
.BODMemberCard .BODmemberImg {
  height: 400px;
  text-align: center;
}
.BODMemberCard .BODmemberImg img {
  max-width: 100%;
  height: 400px;
}
.BODMemberCard .BODmemberDetails {
  padding: 0 30px 30px;
  text-align: center;
  /* border: 1px solid #dedede; */
  border-top: none;
}
.BODMemberCard .BODmemberName {
  background-color: #cd0001;
  padding: 18px 20px 13px;
  margin-top: -37px;
  margin-bottom: 24px;
  position: relative;
  color: #fff;
}
.BODMemberCard .BODmemberName h3 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
  line-height: 1.2;
}
.BODMemberCard .BODmemberName p {
  font-family: "SF Compact Text", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
}
.BODMemberCard .BODmemberInfo p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  font-weight: normal;
  letter-spacing: 0;
  font-family: "SF Compact Text", sans-serif;
}
.BODMemberCard .BODmemberSocial {
  margin-top: 23px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.BODMemberCard .BODmemberSocial .BODmemberSocialIcons a {
  display: block;
  border: 1px solid #e9e9e9;
  border-right: none;
  width: 52px;
  height: 48px;
  line-height: 48px;
  font-size: 17px;
  color: rgba(26, 25, 29, 0.6);
  cursor: pointer;
  transition: all 200ms linear 0s;
}
.BODMemberCard .BODmemberSocial .BODmemberSocialIcons:last-of-type a {
  border-right: 1px solid #e9e9e9;
}
.BODMemberCard .BODmemberSocial .BODmemberSocialIcons a:hover {
  background-color: #1a191d;
  border-color: #1a191d;
  color: #fff;
}
.BODChild {
  width: 100%;
  /* background: linear-gradient(90deg, rgba(70,10,11,1) 0%, rgba(0,0,0,1) 100%); */
  /* background: linear-gradient(90deg, rgba(125,9,10,1) 0%, rgba(0,0,0,1) 100%); */
  /* background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(0,0,0,1) 100%); */
  /* background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 100%); */
  /* padding-top: 100px; */
}
/* .BODCard {
  width: 82%;
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  padding: 50px 0 0;
}
.BODCard .BODmemberImg {
  width: 50%;
}
.BODCard .BODmemberImg img {
  max-width: 100%;
  display: block;
}
.BODmemberDetails {
  width: 50%;
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.BODmemberText {
  width: 60%;
}
.BODmemberText h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.BODmemberText p {
  font-family: "SF Compact Text";
  font-size: 18px;
  font-weight: 400;
  line-height: 1.52em;
  margin: 13px 0 10px;
} */

/*  */
/*  */
/* Our Team Page */
/*  */
/*  */

/* Our Team - Header Section */
#teamHeaderParent {
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(26, 25, 29, 1) 100%);
  /* background-image: url(../images/ourTeamHeader.jpg);
  background-size: cover;
  background-repeat: no-repeat; */
  width: 100%;
  height: 70vh;
}
#teamHeaderOverlay {
  width: 100%;
  height: 70vh;
  background-color: rgb(0, 0, 0, 0.5);
}
#teamHeaderContent {
  margin: auto;
  width: 60%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
}
#teamHeaderContent h1 {
  font-size: 60px;
  letter-spacing: 1.8px;
  line-height: 1.2;
}
#teamHeaderContent p {
  font-family: "SF Compact Text";
  font-size: 17px;
  line-height: 28px;
}
/* Our Team - Members Section  */
#teamMembersParent {
  width: 100%;
}
#teamMembersChild {
  width: 82%;
  margin: auto;
  padding-top: 100px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.teamMemberCard {
  width: 31%;
  margin-bottom: 50px;
  position: relative;
  transition: all 200ms linear 0s;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}
.teamMemberCard .memberImg {
  height: 275px;
  text-align: center;
}
.teamMemberCard .memberImg img {
  max-width: 100%;
  height: 275px;
}
.teamMemberCard .memberDetails {
  padding: 0 30px 30px;
  text-align: center;
  /* border: 1px solid #dedede; */
  border-top: none;
}
.teamMemberCard .memberName {
  background-color: #cd0001;
  padding: 18px 20px 13px;
  margin-top: -37px;
  margin-bottom: 24px;
  position: relative;
  color: #fff;
}
.teamMemberCard .memberName h3 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
  line-height: 1.2;
}
.teamMemberCard .memberName p {
  font-family: "SF Compact Text", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
}
.teamMemberCard .memberInfo p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  font-weight: normal;
  letter-spacing: 0;
  font-family: "SF Compact Text", sans-serif;
}
.teamMemberCard .memberSocial {
  margin-top: 23px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.teamMemberCard .memberSocial .memberSocialIcons a {
  display: block;
  border: 1px solid #e9e9e9;
  border-right: none;
  width: 52px;
  height: 48px;
  line-height: 48px;
  font-size: 17px;
  color: rgba(26, 25, 29, 0.6);
  cursor: pointer;
  transition: all 200ms linear 0s;
}
.teamMemberCard .memberSocial .memberSocialIcons:last-of-type a {
  border-right: 1px solid #e9e9e9;
}
.teamMemberCard .memberSocial .memberSocialIcons a:hover {
  background-color: #1a191d;
  border-color: #1a191d;
  color: #fff;
}

/*  */
/*  */
/* Transmission Line - Projects */
/*  */
/*  */

/* Transmission Projects - Header Section */
#transProjectsHeaderParent {
  background-image: url(../images/transProjectsHeader.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 70vh;
}
#transProjectsHeaderOverlay {
  width: 100%;
  height: 70vh;
  background-color: rgb(0, 0, 0, 0.5);
}
#transProjectsHeaderContent {
  margin: auto;
  width: 60%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
}
#transProjectsHeaderContent h1 {
  font-size: 60px;
  letter-spacing: 1.8px;
  line-height: 1.2;
  margin-bottom: 20px;
}
#transProjectsHeaderContent p {
  font-family: "SF Compact Text";
  font-size: 17px;
  line-height: 28px;
}

/* Transmission Projects - Main Section */
#transProjectsParent {
  width: 100%;
  margin: 100px 0px 50px;
}
#transProjectsChild {
  width: 80%;
  margin: auto;
}

#transProjectDetails {
  width: 100%;
}
#transProjectDetails h1 {
  font-size: 40px;
  color: #1a191d;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
#transProjectDetails p {
  font-family: "SF Compact Text", sans-serif;
  font-size: 18px;
  margin: 17px 15px 17px 0px;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0;
  word-wrap: break-word;
  color: #666666;
}
.projectsTable {
  padding: 10px 0;
  width: 100%;
  text-align: left;
}
.projectsTable h3 {
  font-size: 20px;
  color: #1a191d;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  margin-left: 23px;
}
.projectsTable h3::before {
  content: "";
  display: inline-block;
  height: 13px;
  width: 13px;
  background-color: #cd0001;
  border-radius: 50%;
  margin-right: 10px;
  margin-left: -23px;
}
.projectsTable tbody tr td:first-of-type {
  width: 25%;
  padding-left: 40px;
}
.projectsTable td {
  font-family: "SF Compact Text", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  word-wrap: break-word;
  color: #666666;
}
#completedProjects hr,
#ongoingProjects hr,
#completedSubProjects hr,
#completedPolesProjects hr,
.modifiedHR {
  border: 0.5px solid #bbbbbb;
  width: 60%;
  margin: 35px auto;
}
#completedProjects,
#ongoingProjects,
#completedSubProjects {
}
#completedProjects hr:last-of-type,
#ongoingProjects hr:last-of-type,
#completedSubProjects hr:last-of-type,
#completedPolesProjects hr:last-of-type {
  display: none;
}
#transProjectDetails > div {
  margin-top: 50px;
  padding: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}

/*  */
/*  */
/* Transmission - Clients */
/* Poles - Clients */
/*  */
/*  */

/* Transmission Clients - Header */
#transClientsHeaderParent {
  background-image: url(../images/transClientsHeader.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 70vh;
}
#transClientsHeaderOverlay {
  width: 100%;
  height: 70vh;
  background-color: rgb(0, 0, 0, 0.5);
}
#transClientsHeaderContent {
  margin: auto;
  width: 60%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
}
#transClientsHeaderContent h1 {
  font-size: 60px;
  letter-spacing: 1.8px;
  line-height: 1.2;
  margin-bottom: 20px;
}
#transClientsHeaderContent p {
  font-family: "SF Compact Text";
  font-size: 17px;
  line-height: 28px;
}

/* Poles Clients - Header */
#polesClientsHeaderParent {
  background-image: url(../images/polesClientsHeader.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 70vh;
}
#polesClientsHeaderOverlay {
  width: 100%;
  height: 70vh;
  background-color: rgb(0, 0, 0, 0.5);
}
#polesClientsHeaderContent {
  margin: auto;
  width: 60%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
}
#polesClientsHeaderContent h1 {
  font-size: 60px;
  letter-spacing: 1.8px;
  line-height: 1.2;
  margin-bottom: 20px;
}
#polesClientsHeaderContent p {
  font-family: "SF Compact Text";
  font-size: 17px;
  line-height: 28px;
}

/* Transmission Clients - Main Section*/
/* Poles Clients - Main Section */
#clientsParent {
  width: 100%;
  padding: 100px 0 50px;
}
#clientsPolesParent {
  width: 100%;
  padding: 25px 0 50px;
}
#clientsChild {
  width: 80%;
  margin: auto;
}
#clientsText h1 {
  font-size: 40px;
  color: #1a191d;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.02em;
}
#clientsText p {
  font-family: "SF Compact Text", sans-serif;
  font-size: 18px;
  margin: 17px 0;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0;
  word-wrap: break-word;
  color: #666666;
}
.clientsLogo {
  width: 100%;
  margin-top: 25px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.clientsCards {
  width: 150px;
  height: 150px;
  margin: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clientsCards img {
  max-width: 100%;
}

/*  */
/*  */
/* Poles Products Page */
/*  */
/*  */

#polesProductsHeaderParent {
  background-image: url(../images/PolesComparision01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 80vh;
}
#polesProductsHeaderOverlay {
  width: 100%;
  height: 80vh;
  background-color: rgb(0, 0, 0, 0.5);
}
#polesProductsHeaderContent {
  margin: auto;
  width: 60%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
}
#polesProductsHeaderContent h1 {
  font-size: 60px;
  letter-spacing: 1.8px;
  line-height: 1.2;
  margin-bottom: 20px;
}
#polesProductsHeaderContent p {
  font-family: "SF Compact Text";
  font-size: 17px;
  line-height: 28px;
}
/* Poles Products - Main Section */
.polesProductsParent {
  padding: 100px 0 70px;
  width: 100%;
}
.polesProductsChild {
  width: 80%;
  margin: auto;
}
.polesProductsCard {
  margin: auto;
  margin: 0 25px;
  background-color: lightblue;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}
.polesProductsCard img {
  display: block;
  max-width: 100%;
  cursor: pointer;
  transition: 0.3s;
}
.polesProductsCard img:hover {
  opacity: 0.7;
}
/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 99;
  padding: 50px 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}
.close {
  color: white;
  position: fixed;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
.mySlides {
  display: none;
}
.mySlides img {
  max-width: 100%;
}
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
.next {
  right: -50px;
}
.prev {
  left: -50px;
  border-radius: 3px 0 0 3px;
}
.prev:hover,
.next:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

/*  */
/*  */
/* Footer Section For All Pages */
/*  */
/*  */

#footerContainer {
  width: 100%;
  /* height: 400px; */
  background-color: #1a191d;
  background-image: url(../images/footer_overlay.png);
  background-position: center right;
  background-repeat: no-repeat;
  padding: 55px 0px 40px 0px;
}
#footerParent {
  width: 90%;
  margin: auto;
  /* height: 300px; */
  color: white;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.footerChild {
  width: 24%;
  display: flex;
  justify-content: center;
}
#fChild1 a img {
  display: block;
  cursor: pointer;
  margin-top: 10px;
  height: 75px;
}
#fChild1 p {
  font-size: 15px;
  font-family: "SF Compact Text", sans-serif;
  text-align: left;
  margin-top: 28px;
  line-height: 1.6;
}
#footerIconTray {
  display: flex;
  align-items: center;
  text-align: center;
  display: none;
}
#footerIconTray i {
  color: #767577;
  height: 48px;
  width: 48px;
  background-color: #00000000;
  --icon-padding: 1em;
  border-style: solid;
  border-width: 1px 1px 1px 0px;
  border-color: #605f61;
}
#footerIconTray i:first-of-type {
  border-left: 1px solid #605f61;
}
#fChild2 a,
#fChild3 p,
#fChild4 p {
  font-family: "SF Compact Text", sans-serif;
  color: #ededed;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  line-height: 1.6;
}
#fChild2 h3,
#fChild3 h3,
#fChild4 h3 {
  margin-bottom: 30px;
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
}
#fChild2 i {
  margin-top: 9px;
  color: #767577;
  margin-right: 10px;
}
#fChild3 p {
  border-bottom: 1px solid transparent;
  transition: all 200ms linear 0s;
  box-shadow: none;
  text-decoration: none;
  box-sizing: border-box;
  margin-top: 9px;
}
#fChild3 p::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #cd0001;
  margin-right: 14px;
  vertical-align: middle;
  transition: all 200ms linear 0s;
  box-sizing: border-box;
}
/* #fChild3 p:hover{
  border-bottom: 1px solid white;
} */

/* Media Queries */
@media (max-width: 1200px) {
  .navContainer {
    font-size: 17px;
  }
  #middleContainerTop {
    box-shadow: none;
  }
  .middleInnerContainer {
    width: 49%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
  }
  .middleInnerContainer {
    border: none;
  }
  .middleInnerContainer:nth-last-of-type(3),
  .middleInnerContainer:nth-last-of-type(4) {
    margin-bottom: 50px;
  }
  #welcomeText h1 {
    font-size: 30px;
  }
}
@media (min-width: 900px) and (max-width: 1000px) {
  #navCompanyLogo img {
    width: 110px;
  }
  .links > ul > li {
    margin: 0 5px;
  }
  .links > ul > li:first-of-type {
    margin-left: 10px;
  }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  .links > ul > li {
    margin: 0 5px;
  }
  .links > ul > li:first-of-type {
    margin-left: 10px;
  }
}
@media (max-width: 900px) {
  .links {
    display: none;
  }
  #homeTopBarParent {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
  }
  .navContainer,
  .navContainer2 {
    justify-content: space-between;
    top: 0;
    position: fixed;
    background-color: #1a191d;
  }
  .slideOverlay {
    width: 80%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
  }
  #sliderSection h1 {
    font-size: 40px;
  }
  #welcomeBottomChild {
    width: 80%;
  }
  #welcomeImage {
    width: 100%;
  }
  #welcomeText {
    width: 100%;
    padding-top: 50px;
    margin: auto;
  }
  #welcomeText h1 {
    font-size: 30px;
  }
  #projectsTextInner {
    width: 80%;
  }
  #projectsTextInner h2 {
    padding-top: 50px;
    font-size: 30px;
  }
  .projectsCard {
    width: 48%;
  }
  .projectsCard:nth-of-type(1),
  .projectsCard:nth-of-type(2) {
    margin-bottom: 25px;
  }
  #footerContainer {
    padding-top: 30px;
  }
  .footerChild {
    width: 49%;
  }
  .footerChild:nth-of-type(1),
  .footerChild:nth-of-type(2) {
    margin-bottom: 25px;
  }
  #fChild1 {
    width: 70%;
  }
  #aboutHeaderChild,
  #teamHeaderContent,
  #transProjectsHeaderContent,
  #transClientsHeaderContent,
  #BODHeaderContent,
  #contactHeaderContent {
    width: 80%;
  }
  #aboutHeaderChild h1,
  #teamHeaderContent h1,
  #transProjectsHeaderContent h1,
  #transClientsHeaderContent h1,
  #BODHeaderContent h1,
  #contactHeaderContent h1 {
    font-size: 40px;
  }
  #aboutWelcomeChild {
    padding: 60px 0 0;
    width: 85%;
  }
  #aboutWelcomeText h1 {
    font-size: 30px;
  }
  #founderHeaderText {
    padding: 100px 0;
    width: 90%;
  }
  #founderMainChild {
    width: 90%;
  }
  #founderIntroDiv {
    width: 47%;
  }
  #founderDetailDiv {
    width: 47%;
  }
  .founderDetails h3 {
    font-size: 25px;
  }
  .founderDetails p {
    font-size: 15px;
  }
  #transProjectsChild {
    width: 90%;
  }
  #transProjectDetails h1 {
    font-size: 30px;
  }
  .projectsTable h3 {
    font-size: 18px;
  }
  .projectsTable td {
    font-size: 16px;
  }
  #clientsParent {
    padding: 75px 0 25px;
  }
  #clientsText h1 {
    font-size: 30px;
  }
  #clientsText p {
    font-size: 17px;
  }
  #aboutHeaderChild {
    width: 80%;
  }
  #aboutWelcomeText h1 {
    font-size: 25px;
  }
  #aboutWelcomeText p {
    font-size: 17px;
  }
  #polesProductsHeaderContent {
    width: 80%;
  }
  #polesProductsHeaderContent h1 {
    font-size: 40px;
  }
  #polesClientsHeaderContent {
    width: 80%;
  }
  #polesClientsHeaderContent h1 {
    font-size: 40px;
  }
  #BODChild,
  #teamMembersChild {
    width: 95%;
  }
  .BODMemberCard {
    width: 49%;
  }
  .teamMemberCard {
    width: 48%;
  }
  #contactMessageText,
  #contactDetailsInner {
    width: 80%;
    padding-top: 50px;
  }
  #contactMessageText h2,
  #contactDetailsText h2 {
    font-size: 30px;
  }
  #contactMessageText p,
  #contactDetailsText p {
    font-size: 16px;
  }
  #contactMessageForm {
    width: 80%;
  }
}
@media (max-width: 750px) {
  .contactMessageChild {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .middleInnerContainer {
    width: 100%;
    margin-bottom: 50px;
  }
  .middleInnerContainer:last-of-type {
    margin-bottom: 0px;
  }
  #welcomeBottomChild {
    width: 100%;
  }
  #welcomeImage {
    width: 100%;
  }
  #welcomeText {
    width: 90%;
    padding-top: 50px;
    margin: auto;
  }
  #welcomeText h1 {
    font-size: 25px;
  }
  .projectsCard {
    width: 100%;
    margin-bottom: 25px;
  }
  .projectsCard:nth-last-of-type() {
    margin-bottom: 0px;
  }
  #footerContainer {
    padding-top: 50px;
  }
  .footerChild {
    width: 100%;
    margin-bottom: 25px;
  }
  .footerChild:last-of-type() {
    margin-bottom: 0px;
  }
  #fChild1 {
    width: 80%;
  }
  #fChild1 img {
    margin: auto;
  }
  #fChild1 p {
    text-align: center;
  }
  #aboutWelcomeChild {
    width: 90%;
    padding: 35px 0 0;
  }
  #aboutWelcomeText h1 {
    font-size: 25px;
  }
  #founderHeaderText h1 {
    font-size: 40px;
  }
  #founderIntroDiv {
    width: 90%;
  }
  #founderDetailDiv {
    width: 90%;
  }
  .founderDetails h3 {
    font-size: 25px;
  }
  #transProjectDetails h1 {
    font-size: 25px;
  }
  .projectsTable h3 {
    font-size: 17px;
  }
  .projectsTable td {
    font-size: 16px;
  }
  .projectsTable tbody tr td:first-of-type {
    padding-left: 20px;
    width: auto;
  }
  #clientsChild {
    width: 90%;
  }
  .clientsCards {
    margin: 10px;
  }
  .clientsLogo {
    justify-content: space-evenly;
  }
  .polesProductsCard {
    width: 100%;
  }
  #BODChild,
  #teamMembersChild {
    width: 90%;
  }
  .BODMemberCard {
    width: 100%;
  }
  .teamMemberCard {
    width: 100%;
  }
  #aboutWelcomeOwner {
    flex-flow: column;
  }
}
