/* -------------BODY CONTENT------------- */

/* #region   */
html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}
/* #endregion */

/* #region -------------NAVBAR CONTENT------------- */

#nav-bar {
  width: auto;
  min-height: 70px;
  max-height: 100px;
  max-width: 1980px;
  background-image: url("headerBar.png");
  background-repeat: no-repeat;
  background-position: center;
  margin: 0px;
  padding: 0px;
  position: relative;
}

#navMenuID {
  margin: 0 60px 0 0;
  padding-right: 40px;
}

#navMenuIDLast {
  margin: 0 60px 0 0;
  padding-right: 100px;
}

#navMenuID::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #0f3325;
  transition: width 0.3s;
}

#navMenuID:hover::after {
  width: 100%;
  transition: width 0.3s;
}

#navMenuIDLast::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #0f3325;
  transition: width 0.3s;
}

#navMenuIDLast:hover::after {
  width: 100%;
  transition: width 0.3s;
}

li a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-size: 20px;
  padding: 0 20px;
}

#navbarBrand {
  width: 12%;
  height: auto;
  padding-bottom: 5px;
  margin: 0.5vw 0 0.5vw 1vw;
}

#navbarBrandLogo {
  width: 15%;
  max-width: 96px;
  height: auto;
  margin: 0.5vw 0 0.5vw 8.5vw;
}

#jumboTitle {
  font-size: clamp(16px, 4vw, 26px);
  margin-left: 20px;
}

.navText {
  font-size: clamp(14px, 3vw, 24px);
  text-align: center;
}

.dropdown-menu {
  background-image: url("newSDDWM.png");
  background-repeat: no-repeat;
  background-position: center;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}

.dropdown-item:hover {
  background-image: url("41newEgESDDCurr.png");
  background-repeat: no-repeat;
  background-position: center;
}

.dropdown-divider {
  margin: 0px;
  padding: 0px;
}

#navbarToggleBtn {
  border: none;
  padding-right: 10px;
  padding-left: 8px;
}

@media screen and (max-width: 1366px) {
  #nav-bar {
    width: auto;
    min-height: 70px;
    max-height: 90px;
    max-width: 1366px;
    background-image: url("headerBar.png");
    background-repeat: no-repeat;
    background-position: center;
    margin: 0px;
    padding: 0px;
    position: relative;
  }

  #navMenuID {
    margin: 0 60px 0 0;
    padding-right: 0px !important;
  }

  #navMenuIDLast {
    margin: 0 60px 0 0;
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 1600px){

  #navMenuIDLast {
    margin: 0 60px 0 0;
    padding-right: 10px !important;
  }
}

/* #endregion */

/* #region ------------CONTACT FORMS------------  */

#formOverlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

#contactFormID {
  margin: 0px;
}

#formNameContainer {
  position: relative;
  display: block;
  margin-top: 150px;
  height: auto;
  width: 30%;
  clear: both;
  float: left;
}

#formMessageContainer {
  margin: 0px;
  float: right;
  position: relative;
  margin-top: 180px;
  margin-right: 180px;
}

#formSubmitBtnID {
  margin-top: 50px;
  left: 160px;
  font-weight: 600;
  border: solid 2px black;
  outline: 0;
  padding: 0.5rem 2rem;
  font-size: 1.5rem;
  letter-spacing: 0.08rem;
  background-color: white;
  border-radius: 0.35rem;
  position: relative;
  cursor: pointer;
}

#formSubmitBtnID:hover {
  box-shadow: 3px 5px #0f3325;
  background-color: #58932a;
  color: #fff;
}

#formNameContainer label {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
}

input,
label {
  margin-left: 120px;
}

input {
  margin-bottom: 40px;
  border: 2px solid #0f3325;
  box-shadow: -2px 5px #555;
}

input:focus {
  border: none;
  box-shadow: -2px 5px #58932a;
}

input:focus::placeholder {
  color: transparent;
}

textarea {
  border: 2px solid #0f3325;
  box-shadow: -2px 5px #555;
}

textarea:focus::placeholder {
  color: transparent;
}

.formCenter {
  position: relative;
  margin: 0px;
  margin-top: 150px;
  margin-right: 20%;
  margin-left: 23%;
  clear: both;
  display: none;
  height: 768px;
  width: auto;
  background-position: center;
  background-repeat: no-repeat;
  background: url("newEgEContactForm.png") no-repeat 0 0;
}

.contactForm {
  margin: 0px;
}

.close-icon {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  border-width: 3px;
  border-style: solid;
  border-color: red;
  border-radius: 15%;
  background: -webkit-linear-gradient(
      -45deg,
      transparent 0%,
      transparent 46%,
      white 46%,
      white 56%,
      transparent 56%,
      transparent 100%
    ),
    -webkit-linear-gradient(45deg, transparent 0%, transparent 46%, white 46%, white
          56%, transparent 56%, transparent 100%);
  background-color: red;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  float: right;
  right: 90px;
  top: 28px;
}

.formCALL {
  position: fixed;
  margin: 0px;
  top: 245px;
  left: 38%;
  color: red;
  text-align: center;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: bold;
}

#formCALLBOTTOM {
  top: 725px;
}

@media screen and (max-width: 1366px) {
  .formCenter {
    position: relative;
    margin: 0px;
    margin-top: 150px;
    margin-right: 10%;
    margin-left: 13%;
    clear: both;
    display: none;
    height: 768px;
    width: auto;
    background-position: center;
    background-repeat: no-repeat;
    background: url("newEgEContactForm.png") no-repeat 0 0;
  }
}

@media screen and (max-width: 1600px){
  .formCenter {
    position: relative;
    margin: 0px;
    margin-top: 150px;
    margin-right: 16%;
    margin-left: 18%;
    clear: both;
    display: none;
    height: 768px;
    width: auto;
    background-position: center;
    background-repeat: no-repeat;
    background: url("newEgEContactForm.png") no-repeat 0 0;
  }
}

/* #endregion */

/* #region -------------MAIN JUMBO BODY------------- */

#jumbotron {
  background-color: #e9ecef; /* f5f6f7 */
  text-align: center;
  position: relative;
  font-size: 16px;
  margin: 0px;
  overflow: hidden;
  display: block;
  height: 880px;
}

#mainContainer {
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: 100%;
}

#mainBrandContainer {
  display: flex;
  width: 100%;
  height: 450px;
  margin: 0px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  justify-content: center;
}

#brand {
  width: 25%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  clear: both;
}

#mainJumboPBot {
  margin-bottom: 10px;
}

.mainJumboP {
  font-size: clamp(16px, 3vw, 20px);
  display: inline-block;
  margin: 20px 15% 0px 15%;
}

.emailJumbo {
  visibility: hidden;
}


@media screen and (max-width: 1366px) {
  #brand {
    width: 35% !important;
  }
}

@media screen and (max-width: 1600px){
  #brand {
    width: 30%;
  }
}


/* #endregion */

/* #region-------------ABOUT US CONTAINER------------- */

#aboutUsJumbo {
  margin: 0px auto;
  clear: both;
}

img {
  margin: 0px auto;
  transition: 1 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  width: 20%;
  float: left;
}

.imageColumns {
  margin: 0px auto;
  height: 100%;
  width: 100%;
}

.fade-in-image {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-duration: 2s;
  animation-direction: alternate;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* #endregion */

/* #region ------------INITIATIVES------------ */

#jumbotronInitiative {
  background-color: #fff; /* f5f6f7 */
  text-align: left;
  position: relative;
  font-size: 16px;
  margin: 0px;
  overflow: hidden;
  height: 600px;
}

#companyInitiativeTitle {
  text-decoration: underline 2px solid;
  text-align: center;
}

#companyInitiativeDescription {
  font-size: clamp(14px, 3vw, 18px);
  margin-top: 20px;
  margin-right: 20px;
  text-align: center;
}

#companyInitiativeDescriptionEnd {
  font-size: clamp(18px, 3vw, 20px);
  margin-top: 20px;
  margin-right: 20px;
  text-align: center;
}

.CompanyInitiative {
  width: 40%;
  height: 100%;
  clear: both;
  position: absolute;
  margin: 40px 0px 0px 80px;
}

.CompanyInitiativeIcons {
  margin: 0px;
  margin-top: 80px;
  margin-right: 60px;
  clear: both;
  float: right;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
}

.initiativeIcons {
  border: 2px solid #555;
  width: 10%;
  margin: 30px 30px;
  padding: 10px 10px;
}

@media screen and (max-width: 1366px) {
  .CompanyInitiative {
    width: 40%;
    height: 100%;
    clear: both;
    position: absolute;
    margin: 30px 0px 0px 80px;
  }

  .CompanyInitiativeIcons {
    margin: 60px 20px 0px 40px;
    clear: both;
    float: right;
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;

  }

  .initiativeIcons {
    border: 2px solid #555;
    width: 15%;
    margin: 25px 25px;
    padding: 10px 10px;

  }
}

@media screen and (max-width: 1600px){
  .CompanyInitiative {
    width: 40%;
    height: 100%;
    clear: both;
    position: absolute;
    margin: 30px 0px 0px 80px;
  }

  .CompanyInitiativeIcons {
    margin: 20px 20px 0px 40px;
    clear: both;
    float: right;
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;

  }

  .initiativeIcons {
    border: 2px solid #555;
    width: 14%;
    margin: 25px 25px;
    padding: 10px 10px;

  }
}

/* #endregion */

/* #region ------------SERVICES------------ */

#servicesRight {
  bottom: 0;
  right: 0;
}

#servicesLeft {
  top: 0;
  left: 0;
}

#serviceResidential {
  display: block;
}

#serviceResidentialInner {
  display: block;
}

#serviceCommercial {
  display: none;
}

#serviceCommercialInner {
  display: none;
}

#serviceIndustrial {
  display: none;
}

#serviceIndustrialInner {
  display: none;
}

#servicesResidentialIcons {
  display: block;
}

#servicesCommercialIcons {
  display: none;
}

#servicesIndustrialIcons {
  display: none;
}

#jumbotronServices {
  background-color: #e9ecef; /* f5f6f7 */
  text-align: center;
  position: relative;
  font-size: 16px;
  margin: 0px;
  overflow: hidden;
  display: block;
  height: 880px;
}

.servicePara {
  font-size: clamp(16px, 3vw, 18px);
  text-align: center;
  margin: 40px 450px;
  margin-top: 40px;
}

.servicesImages {
  clear: both;
  margin: 0px;
  position: absolute;
}

.servicesTable {
  margin: 30px 80px;
  position: relative;
  clear: both;
  width: 88%;
  height: 20px;
}

.serviceBtn {
  border: none;
  text-align: center;
  display: inline-block;
  font-size: clamp(20px, 3vw, 22px);
  border-left: 4px solid #0f3325;
}

.serviceBtn::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #0f3325;
  transition: width 0.3s;
}

.serviceBtn:hover::after {
  width: 100%;
  transition: width 0.3s;
}

.servicesIcons {
  border: 2px solid #555;
  width: 8%;
  margin: 30px 180px;
  padding: 10px 10px;
}

.servicesIconsDiv {
  margin: 60px 0px 0px 200px;
  clear: both;
  height: 64px;
  width: 80%;
}

th {
  font-size: clamp(18px, 3vw, 20px);
}

@media screen and (max-width: 1366px){
  .servicePara {
    font-size: clamp(16px, 3vw, 18px);
    text-align: center;
    margin: 40px 20%;
    margin-top: 40px;
  }

  .servicesIconsDiv {
    margin: 60px 0px 0px 120px;
    clear: both;
    height: 64px;
    width: 80%;
  }

  .servicesIcons {
    border: 2px solid #555;
    width: 12%;
    margin: 30px 10%;
    padding: 10px 10px;
  }
}

@media screen and (max-width: 1600px){
  .servicePara {
    font-size: clamp(16px, 3vw, 18px);
    text-align: center;
    margin: 40px 15%;
    margin-top: 40px;
  }

  .servicesIconsDiv {
    margin: 60px 0px 0px 120px;
    clear: both;
    height: 64px;
    width: 90%;
  }

  .servicesIcons {
    border: 2px solid #555;
    width: 10%;
    margin: 30px 10%;
    padding: 10px 10px;
  }
}

/* #endregion */

/* #region -------------FOOTER------------- */

#footer {
  background-image: url("Images/brand/newFooterBG.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 160px;
  width: auto;
  margin: 0px;
  padding: 0px;
  position: relative;
}

#footerRow {
  padding-top: 20px;
}

#footerRow button {
  color: #fff;
  text-align: center;
}

#footerBrand {
  margin: 0px;
  width: 33%;
  height: auto;
  margin-left: 120px;
}

#footerFollower {
  text-align: center;
}

#footerInfo {
  color: #fff;
  text-decoration: underline 2px;
  height: 20px;
}

#footerLinks {
  width: auto;
  height: auto;
}

table {
  margin: 0px;
  margin-top: 20px;
  margin-left: 50px;
  width: auto;
  height: 100%;
}

td {
  width: 100px;
  height: 30px;
  color: #e9ecef;
  text-align: center;
}

.footerTable {
  margin-left: 200px;
}

.footerTableFollow {
  color: #fff;
  margin-right: 200px;
  text-decoration: underline 2px;
}

.footerTitle {
  font-size: clamp(14px, 3vw, 22px);
  text-align: center;
  position: relative;
}

.footerBrandImage {
  margin: 0px;
  position: relative;
  clear: both;
}

.footerText {
  font-size: clamp(14px, 3vw, 20px);
}

.footerCC {
  margin-left: 15px;
  position: relative;
  top: 125px;
  left: -130px;
  clear: both;
}

.footerBtn {
  border: none;
  text-align: center;
  display: inline-block;
  background: none;
  margin: 0px;
  padding: 0px;
}

/* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Twitter */
.fa-twitter {
  background: #55acee;
  color: white;
}

@media screen and (max-width: 1366px){

  #footerBrand {
    margin: 0px;
    width: 33%;
    height: auto;
    margin-left: 20px;
  }

  .footerTable {
    margin-left: 20px;
  }
  
}

/* #endregion */

/* #region -------------TO TOP BTN------------- */

#toTopBtn {
  display: none;
  position: fixed;
  bottom: 22px;
  right: 34px;
  z-index: 99;
  padding: 6px;
  border: none;
  outline: none;
  background-color: #597b94;
  color: #393e44;
  cursor: pointer;
  border-radius: 12px;
  font-weight: bolder;
  width: 38px;
  height: auto;
}

#toTopBtnImg {
  width: 100%;
  height: auto;
}

/* #endregion */

/* -------------MISC------------- */

body {
  position: relative;
}
