@charset "UTF-8";
body {
    border: none;
    margin: 0px;
    padding: 0px;
}

#header {
    width: 100%;
    height: 60px;
    position: fixed;
    transition: all 500ms ease-in-out;
    background-color: transparent;
    z-index: 9999;
}

#header.active {
    background-color: rgba(255,255,255,0.95);
}

#header.active #header_logo {
    background-position: center left;
}

#header_logo {
    display: none;
    width: 35px;
    height: 90%;
    position: relative;
    top: 3px;
    margin-left: 15px;
    background-image: url("images/GESG_tree.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9999;
}

#header_logo.active {
    display: block;
}

#header_logo a {
  width: 100%;
  height: 100%;
  display: block;
}
#menu_icon {
    width: 45px;
    height: 45px;
    background-image: url("images/menu_icon.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px 30px;
    overflow: hidden;
    cursor: pointer;
}

#menu_icon.white {
  background-image: url('images/menu_icon_white.png');
}

#menu_container.white {
  border: 3px solid white;
}

#menu_container {
    border: 3px solid #000;
    width: 45px;
    height: 45px;
    float: right;
    margin-right: 25px;
    position: relative;
    top: 25px;
}

#menu_container.active {
    top: 16px;
    border: none;
    width: 30px;
    height: 30px;
}

#nav {
    width: 250px;
    height: auto;
    color: #fff;
    display: none;
    position: relative;
    top: 5px;
    font-family: "Oswald", sans-serif;
    font-size: 1.5em;
    text-align: center;
    font-weight: 400;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.75);
    float: right;
    border: 1px solid black;
    padding-top: 5px;
}

#nav.active {
    color: #000;
    top: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid white;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.25);
}

#nav a {
    width: 100%;
    display: block;
    float: left;
    /* margin-right: 15px; */
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 5px 0px;
}

#nav.active a {
    color: #000;
}

#nav a:hover {
    color: rgb(56, 104, 166);
    text-decoration: none;
}

#menu_icon.active {
    width: 30px;
    height: 30px;
    background-image: url("images/menu_icon.png");
}

#header a {
    text-decoration: none;
    color: inherit;
}

#header a:hover {
    text-decoration: none;
    color: rgb(26, 207, 96);
}

#header a:visited {
    text-decoration: none;
    color: inherit;
}

.header_text {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1em;
    font-weight: 300;
    color: #fff;
    margin-right: 35px;
    float: left;
}

/*#hills {
    width: 100%;
    height: 627px;
    background-image: url('images/hills.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: fill;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 9998;
}*/

#main {
  width: 100%;
  height: 100vh;
  background-image: url('images/showcase_background.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /*background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 25%, rgb(198, 236, 243) 100%);*/
  z-index: 0;
}

#main p {
  width: 740px;
  margin: 0px auto;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5em;
  font-weight: 200;
  text-align: justify;
  text-align-last: left;
}
#showcaseLogo {
  width: 70%;
  height: 25vh;
  background: url('images/GESG_logo.svg') no-repeat center bottom;
  background-size: contain;
  position: relative;
  top: 10vh;
  margin: 0px auto;
}

#showcaseIntroText {
  width: 100%;
  height: auto;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.5em;
  font-weight: 100;
  padding-top: 12vh;
  z-index: 9999;
}
#showcase_buttons {
  width: 1100px;
  height: 50px;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 100px;
  margin: 50px auto 0px auto;
  
}
#pf_button {
  width: 300px;
  height: 50px;
  background-color: rgb(86,153,175);
  border: 2px solid #fff;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.15em;
  color: #fff;
  transition: background-color 500ms ease-in-out;  
}

#powerlink_button {
  width: 300px;
  height: 50px;
  background-color: rgb(70,151,83);
  border: 2px solid #fff;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.15em;
  color: #fff;
  transition: background-color 500ms ease-in-out;
}

#flexbox_button {
  width: 300px;
  height: 50px;
  background-color: rgb(219, 77, 77);
  border: 2px solid #fff;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.15em;
  color: #fff;
  transition: background-color 500ms ease-in-out;
}

#pf_button:hover {
  background-color: rgba(86,153,175,0.8);
  cursor: pointer;
}

#powerlink_button:hover {
  background-color: rgba(70,151,83,0.8);
  cursor: pointer;
}

#flexbox_button:hover {
  background-color: rgba(219,77,77,0.8);
  cursor: pointer;
}

#scroll {
  z-index: 9998;
}



.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
}
.icon-scroll {
  width: 40px;
  height: 70px;
  margin-left: -20px;
  top: 94%;
  margin-top: 35px;
  box-shadow: inset 0 0 0 3px rgb(92,119,130);
  border-radius: 25px;
  z-index: 9998;
}
.icon-scroll:before {
  content: "";
  width: 8px;
  height: 8px;
  background: rgb(92,119,130);
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
    transform: translateY(46px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
    transform: translateY(46px);
  }
}



#intro_background {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(132,164,176,1) 1%, rgb(92,119,130) 95%);
}

#cc_background {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,1) 1%, rgb(180,221,227) 95%);
}

#intro_background_image {
  width: 100%;
  height: 100%;
  background-image: url('images/PowerLink_background.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#cc_background_image {
  width: 100%;
  height: 100%;
  background-image: url('images/PowerLink_background_light.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#intro {
  width: 90%;
  min-height: 700px;
  padding-top: 75px;
  padding-bottom: 75px;
  margin: 0px auto;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 35px;
  font-family: "Roboto Condensed", sans-serif;
  text-align: justify;
  text-align-last: left;
  font-size: 1.25em;
}

.intro_box {
  background-color: rgba(255,255,255,1);
/*  border: 1px solid #999;*/
  box-shadow: 3px 3px 5px #333;
}

#intro h1 {
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  text-align: center;
  text-indent: 10px;
}

#intro p {
  padding-left: 10px;
  padding-right: 10px;
}

#company_image, #quality_image, #vision_image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#company_image {
  background-image: url('images/company_image.jpg');
}
#quality_image {
  background-image: url('images/quality_image.jpg');
}
#vision_image {
  background-image: url('images/vision_image.jpg');
}

#patent_info {
  width: 100%;
  height: 600px;
  padding: 25 0;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: ". .";
}

#patent_text {
  display: none;
}

#patent_pic {
  width: 90%;
  height: 100%;
  background-size:contain;
}

#products {
  width: 100%;
  height: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: rgb(235, 238, 235);
}

#products h1, #carbon_credits_home h1 {
  color: #000;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  margin: 0px auto 20px auto;
  width: 90%;
}
#products h2 {
  color: #000;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.75em;
  font-weight: 300;
  margin: 20px auto;
  width: 92%;
}
#products p {
  color: #000;
  text-align: justify;
  text-align-last: left;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  margin: 20px auto;
  width: 92%;
}
#products h3 {
  color: #000;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.25em;
  font-weight: 700;
  margin: 10px auto;
  width: 92%;
}
#product_content {
  width: 85%;
  height: auto;
  background-color: rgba(255, 255, 255, 0);
  position: relative;
  top: 10vh;
  margin: 0px auto 150px auto;
}
#product_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1px 1px;
  grid-template-areas: "savings_topLeft savings_topLeft savings_topLeft savings_commercial" "savings_educational savings_medical savings_government savings_industrial";
}

.savings_topLeft {
  grid-area: savings_topLeft;
}

.savings_commercial {
  grid-area: savings_commercial;
}

.savings_industrial {
  grid-area: savings_industrial;
}

.savings_government {
  grid-area: savings_government;
}

.savings_medical {
  grid-area: savings_medical;
}

.savings_educational {
  grid-area: savings_educational;
}

.product_bottom {
  width: 100%;
  height: auto;
  margin: 15px auto;
}
#home_commercial,
#home_industrial,
#home_government,
#home_medical,
#home_educational {
  width: 100%;
  height: 250px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
#home_commercial {
  background-image: url("images/commercial.jpg");
}
#home_industrial {
  background-image: url("images/industrial.jpg");
}
#home_government {
  background-image: url("images/government.jpg");
}
#home_educational {
  background-image: url("images/school_building.jpg");
}
#home_medical {
  background-image: url("images/medical_background.jpg");
}

#products a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: transparent;
}

#pl_logo {
    width: 80%;
    height: 100px;
    background: url('images/PL_logo.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    margin: 0px auto;
}

#footer {
  width: 100%;
  height: 175px;
  background-color: rgb(255,255,255);
  position: relative;
  bottom: 0;
  padding-top: 20px;
  box-shadow: 0px -3px 5px rgba(0,0,0,0.2);
}

#footer.active {
  position: absolute;
  bottom: 0;
}
#footer_wrap {
  width: 90%;
  height: auto;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  grid-template-rows: 1fr;
  grid-template-areas: ". .";
}

/*#footer_wrap div, #footer_left * {
  border: 1px solid red;
}*/

#footer p {
  width: auto;
  height: 15px;
  text-align: right;
  font-family: "Roboto Condensed", sans-serif;
  color: rgb(0, 0, 0);
  font-size: 0.7em;
  clear: both;
  position: relative;
  top: 15px;
}
#footer_left ul {
  float: left;
  margin-top: 25px;
}
#footer_left ul li {
  list-style: none;
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.95em;
  font-weight: 300;
  text-align: left;
  margin-left: -30px;
  margin-bottom: 10px;
}
#footer_right ul {
  float: right;
}
#footer_right ul li {
  float: left;
  list-style: none;
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.9em;
  font-weight: 300;
  text-align: right;
  margin-left: 20px;
}

#footer_left ul li a {
  text-decoration: none;
  color: rgb(0,0,0);
}
#footer_right ul li a {
  text-decoration: none;
  display: block;
  color: rgb(0, 0, 0);
}
#footer_right ul li a:hover, #footer_left ul li a:hover {
  text-decoration: none;
  color: rgb(25, 204, 94);
}
#footer_right ul li a:visited, #footer_left ul li a:visited {
  text-decoration: none;
  color: rgb(0, 0, 0);
}
#footer_logo {
  width: 100px;
  height: 150px;
  margin: 5px 0px 10px 0px;
  background-image: url("images/GESG_logo.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  float: left;
}

#footer_logo a {
  width: 100%;
  height: 100%;
  display: block;
}

#pl_logo_footer {
  width: 275px;
  height: 85px;
  background: url('images/PL_logo.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  float: right;
  clear: right;
}

#top_button {
  width: 75px;
  height: 50px;
  bottom: 0px;
  right: 25px;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9999;
  text-align: center;
  line-height: 350%;
  font-family: "Oswald", sans-serif;
  color: white;
}
#top_button.active {
  display: block;
}
#top_button a {
  display: block;
  text-decoration: none;
  color: inherit;
}

#pf_showcase {
  width: 100%;
  height: auto;
  background-image: url("images/pf_background.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  grid-template-rows: 1fr;
  grid-template-areas: ". .";
  padding-bottom: 50px;
  padding-top: 100px;
}
#pf_intro_img {
  width: 90%;
  height: 100%;
  float: right;
  background-image: url("images/pf_intro.png");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}
#pf_intro {
  width: 100%;
  height: 100%;
}
#pf_intro_info {
  width: 80%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 3px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1.6fr 0.2fr 1.6fr;
  grid-template-rows: 1fr;
  grid-template-areas: ". . .";
  padding: 0px;
  border: 0px;
}
.vert_line {
  width: 2px;
  height: 70%;
  margin: 0px auto;
  position: relative;
  top: 15%;
  background-color: black;
}
#pf_intro p,
#pf_info_cont p,
#pfc_timeline p {
  width: 90%;
  margin: 0px auto;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.15em;
  font-weight: 400;
  text-align: justify;
  text-align-last: left;
}
#pf_intro h3,
#pf_info_3_left h3,
#pf_info_2 h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25em;
  font-weight: bold;
  text-align: justify;
  text-align-last: left;
  color: seagreen;
  margin-left: 15px;
  margin-right: 15px;
}
#pf_intro h4,
#pf_info_cont h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.16em;
  font-weight: bold;
  text-align: center;
  color: black;
}
#pf_intro ul li {
  font-family: "Roboto", sans-serif;
  font-size: 1.16em;
  font-weight: bold;
  text-align: left;
  color: black;
}
#pf_intro_right {
  width: 100%;
  height: 100%;
  background-image: url("images/pf_intro_meter.png");
  background-size: 50%;
  background-position: bottom right;
  background-repeat: no-repeat;
}
#pf_info_cont {
  width: 100%;
  height: auto;
}
#pf_info_cont h1 {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 4em;
  font-weight: bolder;
  color: darkgreen;
  font-family: "Oswald", sans-serif;
}
#pf_info_2 {
  width: 70%;
  height: auto;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  grid-template-rows: 1fr;
  grid-template-areas: ". .";
}
#pf_infographic {
  width: 100%;
  height: 100%;
  min-height: 400px;
  margin: 0px auto;
  background-image: url("images/motor_example.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
#pf_info_3 {
  width: 70%;
  height: auto;
  margin: 65px auto;
  display: grid;
  grid-template-columns: 1.6fr 0.2fr 1.6fr;
  grid-template-rows: 1fr;
  grid-template-areas: ". . .";
}
.pf_info_3_list_cont {
  width: 100%;
  height: 150px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr;
  grid-template-areas: ". .";
}
#pf_info_3_right h2 {
  width: 100%;
  height: auto;
  margin: 6vh auto 0px auto;
  text-align: center;
  font-size: 1.2em;
  font-weight: bolder;
  color: seagreen;
  font-family: "Roboto Condensed", sans-serif;
}
#pf_info_3_right h3 {
  width: 100%;
  height: auto;
  margin: 0px auto;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
  color: black;
  font-family: "Roboto Condensed", sans-serif;
}
#sawmills {
  width: 100%;
  height: 100%;
  background-image: url("images/sawmills.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}
#extruders {
  width: 100%;
  height: 100%;
  background-image: url("images/extruders.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}
#stamping {
  width: 100%;
  height: 100%;
  background-image: url("images/stamping.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}
#brewery {
  width: 100%;
  height: 100%;
  background-image: url("images/brewery.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}
#hospital {
  width: 100%;
  height: 100%;
  background-image: url("images/hospital.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}
#pfc_banner {
  width: 100%;
  height: auto;
  padding: 25px 0px 100px 0px;
}
#pfc_banner h1,
#pfc_timeline h1 {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 2.5em;
  font-weight: bolder;
  color: seagreen;
  font-family: "Oswald", sans-serif;
}
#pfc_banner h2 {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1.75em;
  font-weight: bolder;
  color: black;
  font-family: "Roboto Condensed", sans-serif;
}
#pfc_banner a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}
#pfc_banner_button {
  width: 250px;
  height: 50px;
  background-color: rgba(55,135,50,1);
  font-size: 1.5em;
  font-weight: bold;
  color: white;
  font-family: "Roboto Condensed", sans-serif;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 500ms ease-in-out;
}
#pfc_banner_button:hover {
  background-color: rgba(55,135,50,0.8);
}
#pfc_timeline {
  width: 100%;
  height: auto;
  min-height: 500px;
  background-color: #efefef;
  padding: 50px 0px;
}
#pfc_timeline_cont {
  width: 75%;
  height: auto;
  margin: 0px auto;
}
#timeline_cards {
  width: 100%;
  height: auto;
  margin: 0px auto;
}
#pfc_timeline h2 {
  text-align: left;
  font-size: 2em;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: rgb(0, 0, 0);
  margin: 7px 10px;
}
#pfc_timeline * {
  box-sizing: border-box;
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #2e8b57;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timeline to the left */
  .timeline::after {
    left: 31px;
  }

  /* Full-width containers */
  .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after,
  .right::after {
    left: 15px;
  }

  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}

.divider_long {
  width: 90%;
  height: 2px;
  background-color: #333;
  margin: 10px auto;
}
#powerlink_showcase {
  width: 100%;
  height: auto;
  background-image: url("images/world_light_grey.jpg");
  background-size: contain;
  background-position: center center;
  background-attachment: fixed;
  padding-top: 100px;
}
/* #powerlink_showcase * {
  border: 1px solid red; 
} */
#powerlink_showcase sup {
  width: 100%;
  font-size: 0.7em;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 200;
  font-style: italic;
  text-align: left;
  margin: 0px auto;
  clear: both;
  position: relative;
  top: 7px;
}
#powerlink_showcase_grid {
  width: 65%;
  height: auto;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: ".";
}

#powerlink_showcase p {
  width: 95%;
  color: #000;
  text-align: justify;
  text-align-last: left;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.15em;
  font-weight: 400;
  margin: 20px auto;
  clear: both;
}
#powerlink_showcase_logo {
  width: 100%;
  height: 125px;
  margin: 0px auto;
  background-image: url("images/PL_logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
#powerlink_showcase h1 {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1.75em;
  font-weight: bolder;
  color: rgb(42, 119, 75);
  font-family: "Oswald", sans-serif;
}
#powerlink_showcase_power_triangle {
  width: 100%;
  height: 300px;
  background-image: url("images/horse_example.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0px auto;
}

#powerlink_commercial_icon,
#powerlink_industrial_icon,
#powerlink_government_icon,
#powerlink_expeditionary_icon,
#powerlink_shipboard_icon,
#powerlink_facilities_icon,
#powerlink_medical_icon {
  width: 80px;
  height: 80px;
  float: left;
  margin: 5px 0px 10px 25px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
#powerlink_commercial_icon {
  background-image: url("images/commercial_icon.png");
}
#powerlink_industrial_icon {
  background-image: url("images/industrial_icon.png");
}
#powerlink_government_icon {
  background-image: url("images/government_icon.png");
}
#powerlink_expeditionary_icon {
  background-image: url("images/powerlink_expeditionary_icon.png");
}
#powerlink_shipboard_icon {
  background-image: url("images/powerlink_shipboard_icon.png");
}
#powerlink_facilities_icon {
  background-image: url("images/powerlink_facilities_icon.png");
}
#powerlink_medical_icon {
  background-image: url("images/powerlink_medical_icon.png");
}
#motor_example {
  width: 100%;
  height: 400px;
  background-image: url("images/motor_example.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0px auto;
}
#ppgdivider {
  width: 100%;
  height: auto;
}
#ppgdivider p {
  width: 60%;
  height: auto;
  color: rgb(37, 90, 0);
  text-align: justify;
  text-align-last: left;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.35em;
  font-weight: bold;
  margin: 10px auto 25px auto;
}

#powerlinkCommercialInfo,
#powerlinkIndustrialInfo,
#powerlinkMedicalInfo,
#powerlinkGovernmentInfo,
#powerlinkEducationInfo {
  width: 100%;
  height: auto;
  margin: 0px auto;
}
#powerlinkGovtWrapper {
  width: 90%;
  height: auto;
  margin: 0px auto;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
}
.powerlinkPageGrid {
  width: 90%;
  height: auto;
  min-height: 700px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: ". .";
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
}
#powerlinkCommercialHeader,
#powerlinkIndustrialHeader,
#powerlinkMedicalHeader,
#powerlinkGovernmentHeader,
#powerlinkEducationHeader {
  width: 100%;
  height: 300px;
  margin: 0px auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
#powerlinkCommercialHeader {
  background-image: url("images/commercial_background.jpg");
}
#powerlinkIndustrialHeader {
  background-image: url("images/industrial_background.jpg");
}
#powerlinkGovernmentHeader {
  background-image: url("images/expeditionary_background.jpg");
}
#powerlinkMedicalHeader {
  background-image: url("images/medical_background.jpg");
}
#powerlinkEducationHeader {
  background-image: url("images/school_building.jpg");
}
.headerOverlay {
  width: 100%;
  height: 300px;
  background-color: rgba(81, 153, 200, 0.7);
}
.headerOverlayWrap {
  width: 100%;
  height: auto;
  margin: 0px auto;
  position: relative;
  top: 110px;
}
.headerOverlay h3 {
  text-align: center;
  font-size: 3.75em;
  font-weight: bolder;
  color: rgb(255, 255, 255);
  font-family: "Oswald", sans-serif;
  text-indent: 10px;
}
#info_tabs_wrap h3 {
  text-align: left;
  font-size: 1.75em;
  font-weight: bolder;
  color: rgb(42, 119, 75);
  font-family: "Oswald", sans-serif;
  text-indent: 10px;
}
#expeditionary_grid,
#shipboard_grid,
#facilities_grid {
  width: 95%;
  height: auto;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: ". .";
  margin: 0px auto;
}

#info_tabs {
  width: 95%;
  height: auto;
  margin: 0px auto;
}
/* #info_tabs * {
  border: 1px solid red;
} */
#info_tabs_wrap {
  width: 95%;
  height: auto;
  margin: 0px auto;
  background-color: rgba(255, 255, 255, 0.5);
}

#info_tabs_wrap p,
#powerlink_showcase ul li {
  width: 100%;
  color: #000;
  text-align: justify;
  text-align-last: left;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.15em;
  font-weight: 400;
}

#powerlink_showcase ul li {
  margin: 0px auto;
  width: 90%;
}

#commercial_example,
#industrial_example,
#expeditionary_example,
#shipboard_example,
#facilities_example,
#medical_example,
#education_example {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
#commercial_example {
  background-image: url("images/commercial_example.png");
}

#industrial_example {
  background-image: url("images/industrial_examples.png");
}
#expeditionary_example {
  background-image: url("images/expeditionary_examples.png");
}
#shipboard_example {
  background-image: url("images/shipboard_examples.png");
}
#facilities_example {
  background-image: url("images/facilities_examples.png");
}
#medical_example {
  background-image: url("images/medical_examples.png");
}
#education_example {
  background-image: url("images/educational_examples.png");
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.tabcontent {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#powerlink_units {
  width: 80%;
  height: 200px;
  background-image: url("images/units.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 50px auto;
}

#PLPFC_logo {
  width: 370px;
  height: 120px;
  background: url('images/PL_logo_with_PFC.svg') no-repeat center center;
  background-size: contain;
  margin: 0px auto;
}

/* Contact Page */

#contactUs {
  width: 100%;
  height: auto;
  min-height: 85vh;
  margin: 0px auto;
}

#contactUsTop {
  width: 100%;
  height: 300px;
  background-image: url("images/contact_background.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: 50px;
}
#contactUsTopOverlay {
  width: 100%;
  height: 300px;
  background-color: rgba(81, 153, 200, 0.7);
}

/* #contactUs * {
  border: 1px solid red;
} */
#contactUsGrid {
  width: auto;
  height: auto;
  max-width: 800px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr;
  grid-template-areas: ". .";
}

#contactUsGrid h1 {
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 1.75em;
  font-weight: bolder;
  color: rgb(0, 0, 0);
  font-family: "Oswald", sans-serif;
  margin: 0px;
}

#contactUsGrid input, #dealer_form input {
  width: 100%;
  height: 25px;
  margin: 5px 0px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  text-indent: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.05em;
  font-weight: 400;
}
#contactUsGrid textarea, #dealer_form textarea {
  width: 99.5%;
  height: 75px;
  margin: 5px 0px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  text-indent: 8px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.05em;
  font-weight: 400;
}
#contactUsGrid table {
  width: 98%;
  height: auto;
  margin: 0px auto;
}

#contactUsTop h1 {
  width: 100%;
  height: auto;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 3em;
  font-weight: 500;
  margin: 0px 0px 10px 0px;
  padding-top: 80px;
  color: #fff;
}
#contactUsTop h2 {
  width: 100%;
  height: auto;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.75em;
  font-weight: 300;
  margin: 10px auto;
  color: #fff;
}

#contactUsGrid p {
  width: auto;
  color: #000;
  text-align: justify;
  text-align-last: left;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.15em;
  font-weight: 400;
  margin: 10px auto;
}
.grid_space {
  padding: 25px;
}
#contactInfo {
  color: #000;
  text-align: left;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.05em;
  font-weight: 400;
}

.left_align {
  text-align: left;
}
.right_align {
  text-align: right;
}

#contact_btn, #dealer_contact_btn {
  width: 100%;
  height: 50px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.05em;
  float: right;
}

#dealer_showcase {
  width: 100%;
  height: 500px;
  background: url('images/dealer_showcase_background.jpg') no-repeat center center;
  background-size: cover;
}

#dealer_showcase_info {
  width: 400px;
  height: 400px;
/*  -webkit-clip-path: polygon(0 0, 600px 0, 400px 100%, 0% 100%);
  clip-path: polygon(0 0, 600px 0, 400px 100%, 0% 100%);
*/  background-color: rgba(0,0,0,0.5);
  padding-top: 100px;
  float:left;
}

#dealer_showcase_info h1 {
  font-size: 4em;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-align: left;
  margin: 15px auto;
  padding-left: 5%;
  font-weight: bolder;
/*  shape-outside: content-box polygon(0 0, 100% 0, 45% 100%, 0% 100%);*/
}

/*#dealer_showcase_info h1::before {
  content: "";
  width: 50%;
  height: auto;

  float:left;
}*/

#dealer_showcase_info p {
  font-size: 1.5em;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-align: left;
  width: 90%;
  margin: 15px auto;
}

/*#dealer_showcase_info p::before {
  content: ""
  width: 90%;
  height: auto;
  shape-inside: content-box polygon(0 0, 100% 0, 45% 100%, 0% 100%);
  float:left;
}*/

#dealer_info {
  width: 100%;
  height: auto;
  background-color: #fff;
  clear: both;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.2em;
}

#dealer_info_grid p {
  width: 100%;
  margin: 10px auto;
  text-align: justify;
  text-align-last: left;
}

#dealer_info_grid h1 {
  margin: 10px 0px;
}

.divider_short {
  width: 90%;
  height: 5px;
  background-color: green;
  margin: 10px auto;
}

.divider_full {
  width: 100%;
  height: 5px;
  background-color: green;
  margin: 10px 0px;
}

#dealer_info_grid {
  width: 80%;
  max-width: 1000px;
  margin: 20px auto 0px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 10px 60px;
  grid-template-areas: "Info Levels" "Benefits Levels";
}

#Levels {grid-area: Levels;}
#Info {grid-area: Info;}
#Benefits {grid-area: Benefits}

.dealer_level {
  width: 100%;
  max-width: 600px;
  height: auto;
  background-color: black;
  margin: 25px 0px;
}
.level_box {
  display: flex;
  align-items: center;
  width: 150px;
  height: auto;
  min-height: 175px;
  background-color: green;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1.85em;
  text-align: center;
  font-weight: bolder;
}

.info_box {
  width: 55%;
  float: right;
  margin-right: 40px;
}

.info_box ul {
  list-style-type: none;
  color: #fff;
  margin: 38px 0px 0px 0px;
}

.info_box ul li {
  text-indent: 0px;
  margin-left: -20px;
  margin-bottom: 3px;
}

.level_box h2 {
  width: 100%;
  margin: 0px;
}

#save_bar {
  width: 100%;
  height: auto;
  background-color: #000;
}
#save_bar p {
  width: 80%;
  margin: 0px auto;
  background-color: #000;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  text-align: center;
  padding: 25px;
  
}

#dealer_form {
  width: 80%;
  max-width: 500px;
  height: auto;
  margin: 0px auto;
  background-color: rgba(255,255,255,0.9);
  padding: 25px 50px;
}

#dealer_form p {
  font-family: "Roboto Condensed", sans-serif;
  text-align: justify;
  text-align-last: left;
  font-size: 1.2em;
  font-weight: 400;
  color: #000;
}
#dealer_form_background {
  width: 100%;
  height: auto;
  background: url('images/contact_form_bk.jpg') no-repeat center center;
  background-size: cover;
}

#carbon_credits_home {
  width: 100%;
  height: auto;
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: rgb(255,255,255);
}

#carbon_credits_container {
  width: 90%;
  height: auto;
  margin: 0px auto;
  padding: 40px 0px;
}

#cc_showcase {
  width: 100%;
  height: auto;
  padding-top: 50px;
  font-family: "Roboto Condensed", sans-serif;
}

#cc_grid {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  width: 90%;
  margin: 0px auto;
}

#cc_grid p {
  width: 90%;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.15em;
  text-align: justify;
  text-align-last: left;
}

#cc_grid h2, #cc_grid ul li, #cc_page_grid h2, #cc_page_grid ul li {
  font-size: 1.25em;
  font-family: "Roboto Condensed", sans-serif;
}

#cc_showcase h1 {
  font-size: 2em;
  padding-top: 15px;
}

#cc_showcase p {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25em;
  text-align: justify;
  text-align-last: left;
}

#cc_button {
  display: block;
  width: 150px;
  height: 50px;
  background-color: rgb(86,153,175);
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.15em;
  color: #fff;
  transition: background-color 500ms ease-in-out;
  margin: 25px 0px;
}

#cc_button:hover {
  background-color: rgba(86,153,175,0.8);
  cursor: pointer;
}

#pollution {
  width: 100%;
  height: 100%;
  background: url('images/pollution.jpg') no-repeat center center;
  background-size: cover;
}

#cc_page_grid {
  width: 80%;
  height: auto;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0.05fr 1fr 0.5fr;
  grid-template-areas:
  "cc_title cc_title"
  "cc_left cc_right"
  "cc_images cc_images";
  grid-gap: 0px 50px;
}

.cc_title {
  grid-area: cc_title;
}
.cc_left {
  grid-area: cc_left;
}

.cc_right {
  grid-area: cc_right;
}

.cc_images {
  grid-area: cc_images;
}

#industry_sectors {
  width: 100%;
  height: 500px;
  background: url('images/industry_sectors.png') no-repeat center center;
  background-size: contain;
  margin: 0px auto;
}
#industry_pics {
  width: 95%;
  height: 100%;
  background: url('images/industry_pics.png') no-repeat center center;
  background-size: contain;
  margin: 0px auto;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  
#showcaseLogo {
  width: 98%;
  height: 25vh;
  top: 2vh;
}

#showcaseIntroText {
  width: 95%;
  font-size: 2em;
  padding-top: 2vh;
  margin: 20px auto 20px auto;
}
#showcase_buttons {
  width: 302px;
  height: 50px;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr;
  grid-gap: 25px;
  margin: 30px auto 0px auto;
  
}
#pf_button {
  width: 300px;
  height: 50px;
  background-color: rgb(86,153,175);
  border: 2px solid #fff;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.15em;
  color: #fff;
}

#powerlink_button {
  width: 300px;
  height: 50px;
  background-color: rgb(70,151,83);
  border: 2px solid #fff;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.15em;
  color: #fff;
}

#intro {
  width: 90%;
  min-height: 700px;
  padding-top: 75px;
  padding-bottom: 75px;
  margin: 0px auto;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr;
  grid-gap: 35px;
  font-family: "Roboto Condensed", sans-serif;
  text-align: justify;
  text-align-last: left;
  font-size: 1.25em;
}

.intro_box {
  background-color: rgba(255,255,255,1);
/*  border: 1px solid #999;*/
  box-shadow: 3px 3px 5px #333;
}

#intro h1 {
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  text-align: center;
}

#intro p {
  padding-left: 10px;
  padding-right: 10px;
}

#company_image, #quality_image, #vision_image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#company_image {
  background-image: url('images/company_image.jpg');
}
#quality_image {
  background-image: url('images/quality_image.jpg');
}
#vision_image {
  background-image: url('images/vision_image.jpg');
}

#products {
  width: 100%;
  height: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: rgb(235, 238, 235);
}

#products h1 {
  color: #000;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  margin: 0px auto 20px auto;
  width: 90%;
}
#products h2 {
  color: #000;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.75em;
  font-weight: 300;
  margin: 20px auto;
  width: 92%;
}
#products p {
  color: #000;
  text-align: justify;
  text-align-last: left;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  margin: 20px auto;
  width: 92%;
}
#products h3 {
  color: #000;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.25em;
  font-weight: 700;
  margin: 10px auto;
  width: 92%;
}
#product_content {
  width: 85%;
  height: auto;
  background-color: rgba(255, 255, 255, 0);
  position: relative;
  top: 10vh;
  margin: 0px auto 150px auto;
}

#pl_logo {
    width: 300px;
    height: 100px;
    background: url('images/PL_logo.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    margin: 0px auto;
}

#product_grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 0.5fr 0.5fr 0.5fr;
  grid-gap: 1px 1px;
  grid-template-areas: "savings_topLeft savings_topLeft" "savings_commercial savings_industrial" "savings_government savings_medical" "savings_educational .";
}

.savings_topLeft {
  grid-area: savings_topLeft;
}

.savings_commercial {
  grid-area: savings_commercial;
}

.savings_industrial {
  grid-area: savings_industrial;
}

.savings_government {
  grid-area: savings_government;
}

.savings_medical {
  grid-area: savings_medical;
}

.savings_educational {
  grid-area: savings_educational;
}

#testimonials_cont {
  width: 95%;
}

#home_contact_wrap {
  width: 95%;
  grid-template-columns: 1fr;
  grid-template-rows: 0.9fr 1.1fr;
  grid-template-areas: "." ".";
}

#footer {
width: 100%;
height: auto;
}

#footer_wrap {
  width: 90%;
  height: auto;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: ". .";
}
/*#footer_wrap div, #footer_left * {
  border: 1px solid red;
}*/
#footer p {
  width: auto;
  height: 15px;
  text-align: right;
  font-family: "Roboto Condensed", sans-serif;
  color: rgb(0, 0, 0);
  font-size: 0.7em;
  clear: both;
  position: relative;
  top: 15px;
}
#footer_left ul {
  float: left;
  margin-top: 15px;
}
#footer_left ul li {
  list-style: none;
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.8em;
  font-weight: 300;
  text-align: left;
  margin-left: -20px;
  margin-bottom: 10px;
}
#footer_right ul {
  float: right;
}
#footer_right ul li {
  float: right;
  list-style: none;
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.9em;
  font-weight: 300;
  text-align: right;
  margin-left: 20px;
  margin-bottom: 5px;
}

#footer_left ul li a {
  text-decoration: none;
  color: rgb(0,0,0);
}
#footer_right ul li a {
  text-decoration: none;
  display: block;
  color: rgb(0, 0, 0);
}
#footer_right ul li a:hover, #footer_left ul li a:hover {
  text-decoration: none;
  color: rgb(25, 204, 94);
}
#footer_right ul li a:visited, #footer_left ul li a:visited {
  text-decoration: none;
  color: rgb(0, 0, 0);
}
#footer_logo {
  width: 100px;
  height: 150px;
  margin: 5px 0px 10px 0px;
  background-image: url("images/GESG_logo.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  float: left;
}

#pl_logo_footer {
  width: 200px;
  height: 85px;
  background: url('images/PL_logo.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  float: right;
}


  #pf_showcase {
    padding-top: 50px;
    grid-template-rows: 0.5fr 1.5fr;
    grid-template-columns: 1fr;
    grid-template-areas: "." ".";
  }
  #pf_intro_img {
    width: 100%;
    height: 100%;
    background-image: url("images/pf_intro.png");
    background-position: center center;
  }
  #pf_intro {
    width: 100%;
    height: 100%;
  }
  #pf_intro_info {
    width: 95%;
    height: auto;
    grid-template-rows: 1.7fr 0fr 1.7fr;
    grid-template-columns: 1fr;
    grid-template-areas: "." "." ".";
    padding: 0px;
    border: 0px;
  }
  .vert_line {
    display: none;
  }

  #pf_info_cont h1 {
    font-size: 2em;
  }

  #pf_info_2 {
    width: 95%;
    grid-template-rows: 0.7fr 0.7fr;
    grid-template-columns: 1fr;
    grid-template-areas: "." ".";
  }

  #pf_info_3 {
    width: 95%;
    margin: 25px auto;
    display: grid;
    grid-template-rows: 1.6fr 0fr 1.4fr;
    grid-template-columns: 1fr;
    grid-template-areas: "." "." ".";
  }

  #pf_info_3_right h2 {
    font-size: 1em;
  }
  #pf_info_3_right h3 {
    font-size: 0.8em;
  }

  #pfc_timeline_cont {
    width: 95%;
  }

  .content {
    padding: 20px 10px;
  }

  #pfc_banner h1,
  #pfc_timeline h1 {
    font-size: 2em;
  }
  #pfc_banner h2 {
    font-size: 1.25em;
    font-weight: bolder;
  }

  #powerlink_showcase_grid {
    width: 95%;
  }

  #powerlinkCommercialHeader,
  #powerlinkIndustrialHeader,
  #powerlinkMedicalHeader,
  #powerlinkGovernmentHeader,
  #powerlinkEducationHeader {
    height: auto;
    margin: 0px auto;
    background-size: cover;
    background-position: center center;
    background-attachment: initial;
  }

  .headerOverlay {
    height: auto;
  }
  .headerOverlayWrap {
    width: 100%;
    height: auto;
    margin: 0px auto;
    position: relative;
    top: 0px;
    padding: 15px 0px;
  }
  .headerOverlay h3 {
    font-size: 2.5em;
    text-indent: 0px;
  }
  .powerlinkPageGrid {
    width: 95%;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
    grid-template-areas: "." ".";
    padding: 0px;
  }
  #expeditionary_grid,
  #shipboard_grid,
  #facilities_grid {
    width: 100%;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
    grid-template-areas: "." ".";
    margin: 0px auto;
  }
  #powerlinkGovtWrapper {
    width: 100%;
    padding: 0px;
  }
  #ppgdivider p {
    width: 90%;
  }
  #powerlink_units {
    width: 99%;
    height: 150px;
    margin: 40px auto;
  }
  #contactUsGrid {
    grid-template-rows: 1.25fr 0.75fr;
    grid-template-columns: 1fr;
    grid-template-areas: "." ".";
  }
  #dealer_info_grid {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto 0px auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.5fr 0.5fr 1fr;
    grid-gap: 0px;
    grid-template-areas: "Info" "Benefits" "Levels";
  }
  
  #Levels {grid-area: Levels; height: auto;}
  #Info {grid-area: Info; height: auto;}
  #Benefits {grid-area: Benefits; height: auto;}
  .dealer_level {
  width: 100%;
  max-width: 600px;
  height: auto;
  background-color: black;
  margin: 25px 0px;
}
.level_box {
  display: flex;
  align-items: center;
  width: 100px;
  height: auto;
  min-height: 175px;
  background-color: green;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1.5em;
  text-align: center;
  font-weight: bolder;
}

.info_box {
  width: 70%;
  float: right;
  margin-right: 10px;
}

.info_box ul {
  list-style-type: none;
  color: #fff;
  margin: 20px 0px 0px 0px;
}

.info_box ul li {
  text-indent: 0px;
  margin-left: -20px;
  margin-bottom: 3px;
}

.level_box h2 {
  margin: 0px;
  width: 100%;
}

#save_bar {
  width: 100%;
  height: auto;
  background-color: #000;
}
#save_bar p {
  width: 80%;
  margin: 0px auto;
  background-color: #000;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  text-align: center;
  padding: 25px;
  
}

#dealer_form {
  width: 80%;
  max-width: 500px;
  height: auto;
  margin: 0px auto;
  background-color: rgba(255,255,255,0.9);
  padding: 25px 0px;
}

#dealer_form p {
  font-family: "Roboto Condensed", sans-serif;
  text-align: justify;
  text-align-last: left;
  font-size: 1.2em;
  font-weight: 400;
  color: #000;
}
#dealer_showcase {
  width: 100%;
  height: 500px;
  background: url('images/dealer_showcase_background.jpg') no-repeat center center;
  background-size: cover;
}

#dealer_showcase_info {
  width: 100%;
  height: 400px;
/*  -webkit-clip-path: polygon(0 0, 600px 0, 400px 100%, 0% 100%);
  clip-path: polygon(0 0, 600px 0, 400px 100%, 0% 100%);
*/  background-color: rgba(0,0,0,0.5);
  padding-top: 100px;
  float:left;
}

#dealer_showcase_info h1 {
  font-size: 4em;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-align: left;
  margin: 15px auto;
  padding-left: 5%;
  font-weight: bolder;
/*  shape-outside: content-box polygon(0 0, 100% 0, 45% 100%, 0% 100%);*/
}

/*#dealer_showcase_info h1::before {
  content: "";
  width: 50%;
  height: auto;

  float:left;
}*/

#dealer_showcase_info p {
  font-size: 1.5em;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-align: left;
  width: 90%;
  margin: 15px auto;
}

/*#dealer_showcase_info p::before {
  content: ""
  width: 90%;
  height: auto;
  shape-inside: content-box polygon(0 0, 100% 0, 45% 100%, 0% 100%);
  float:left;
}*/

#dealer_info {
  width: 100%;
  height: auto;
  background-color: #fff;
  clear: both;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.2em;
}

#dealer_info_grid p {
  width: 95%;
  margin: 10px auto;
  text-align: justify;
  text-align-last: left;
}

#dealer_info_grid h1 {
  margin: 10px 0px;
}

#contactUsGrid input, #dealer_form input {
  width: 94%;
  height: 25px;
  margin: 5px 0px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  text-indent: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.05em;
  font-weight: 400;
}
#contactUsGrid textarea, #dealer_form textarea {
  width: 94.5%;
  height: 75px;
  margin: 5px 0px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  text-indent: 8px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.05em;
  font-weight: 400;
}

#cc_grid {
  display: grid;
  grid-template-rows: 1fr 0.5fr;
  grid-template-columns: 1fr;
  width: 90%;
  margin: 0px auto;
}

#cc_page_grid {
  width: 80%;
  height: auto;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0.05fr 0.1fr 0.5fr 0.15fr;
  grid-template-areas:
  "cc_title" 
  "cc_left" "cc_right"
  "cc_images";
  grid-gap: 0px 50px;
}

#industry_pics {
  width: 100%;
}

}
/* Smartphones (landscape) ----------- */
@media only screen and (min-device-width: 321px) {

}
/* Smartphones (portrait) ----------- */
@media only screen and (min--device-width: 320px) {
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #company_info {
    background-attachment: initial;
  }
  #testimonials {
    background-attachment: initial;
  }
  #powerlinkCommercialHeader,
  #powerlinkIndustrialHeader,
  #powerlinkMedicalHeader,
  #powerlinkGovernmentHeader,
  #powerlinkEducationHeader {
    height: auto;
    margin: 0px auto;
    background-size: cover;
    background-position: center center;
    background-attachment: initial;
  }
}

/* Media Queries for Retina Displays */
/* For non-retina based devices that have a smaller screen */
@media only screen and (min-width: 320px) {
}
/* Retina enabled devices with smaller screen */
@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 320px),
  only screen and (-o-min-device-pixel-ratio: 2/1) and (min-width: 320px),
  only screen and (min-device-pixel-ratio: 2) and (min-width: 320px),
  only screen and (min-resolution: 192dpi) and (min-width: 320px),
  only screen and (min-resolution: 2dppx) and (min-width: 320px) {
}
/*Non- retina based devices with medium screen size */
@media only screen and (min-width: 768px) {
}