@charset "UTF-8";
/** Variables **/
/** Extensible Classes **/
.flot {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  width: 160px;
  height: 40px;
  border-radius: 30px 30px 30px 30px;
  border: solid #6ebd15;
}
.flot a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Century Gothic;
  font-weight: bold;
  font-size: 120%;
  color: #6ebd15;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: inherit;
}

/** General Rules **/
* {
  box-sizing: border-box;
}

/****** SMARTPHONE STYLES START HERE  ******/
/****** SMARTPHONE STYLES START HERE  ******/
body {
  display: grid;
  grid-template-rows: 40px 80px auto auto;
  margin: 0px;
}

/**** 	TOP CONTACT RIBBON 	****/
.phonMail {
  display: flex;
  font-family: Century Gothic;
  font-weight: bold;
  background-color: #6ebd15;
  color: rgb(0, 0, 0);
  justify-content: space-evenly;
  align-items: center;
}
.phonMail p {
  display: flex;
  font-size: 70%;
  font-weight: lighter;
  justify-content: center;
  align-items: center;
}
.phonMail p img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.phonMail p:nth-of-type(1) {
  margin-right: 2%;
}
.phonMail p:nth-of-type(2) {
  margin-left: 2%;
}

/**** 	THE LOGO AND NAVIGATIN TAB 	****/
header {
  display: flex;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  box-shadow: 4px 4px 3px #6ebd15;
  flex-direction: row;
  background-color: white;
}

/**	The Logo  **/
.logo {
  display: flex;
  width: 75%;
  justify-content: center;
}
.logo img {
  margin-top: 1%;
  max-width: 95%;
  min-width: 80%;
  max-height: 90%;
  min-height: 95%;
}
.logo p {
  display: none;
  width: 0%;
}

/**	The Navigation Bar 	**/
nav {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 25%;
  background-image: linear-gradient(to right, white, rgb(0, 0, 0) 40%);
}
nav .nav-bars { /***	Mark Up For The Sandwitch Menu Bars (Mobile)  ***/
  display: inline-block;
  cursor: pointer;
  width: 100%;
  margin: auto 10% auto 30%;
}
nav .nav-bars div { /* Each div is a bar */
  width: 29px;
  height: 4px;
  background-color: #6ebd15;
  margin: 4px auto;
  transition: 0.8s;
  border-radius: 10%;
}
nav .nav-bars .change .bar1 { /* Rotates first bar diagonally to bottom left */
  transform: translate(0, 8px) rotate(-45deg);
}
nav .nav-bars .change .bar2 { /* Fades out the second bar */
  opacity: 0;
}
nav .nav-bars .change .bar3 { /* Rotates last bar diagonally to top left */
  transform: translate(0, -8px) rotate(45deg);
}
nav .noshow { /***  The noshow Class Hides The Sandwitch Menu On Click  ***/
  display: none;
}
nav .showing { /***  This Is The Class To Which Sandwitch Menu Toggles On Click  ***/
  display: all;
  position: absolute;
  top: 80px;
  background-color: #0e0d0d;
  border-bottom: solid #6ebd15;
  list-style-type: none;
  padding: 0px 0px 0px 4px;
  width: 180px;
  z-index: 1;
  margin: 4px 5px 0px -100px;
  overflow: hidden;
}
nav ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 70%;
  text-align: center;
  height: 100%;
  padding-left: 8px;
  border-bottom: 1px solid #6ebd15;
}
nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-family: Corbel Light;
  font-size: 120%;
  width: 100%;
  height: 100%;
}
nav ul li a :hover {
  text-decoration: underline;
  color: #6ebd15;
  background-color: white;
}
nav #quote {
  border: none;
  height: 60%;
}

/****		MAIN CONTENT (Mid Section) OF WEBSITE 	****/
.mid {
  display: grid;
  grid-template-rows: auto;
}

/** Introductory Section Immediately Below Navigation Menu **/
.hero {
  display: flex;
  justify-content: center;
  background-image: url(images/solar.jpg);
  background-position: center;
  background-size: cover;
  height: 300px;
  max-width: 100%;
  margin-top: 0px;
  padding: 0px;
}
.hero .txt {
  width: 90%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8) 5%, rgba(0, 0, 0, 0.8) 95%, rgba(0, 0, 0, 0));
  font-family: Century Gothic;
  margin: auto 2% auto 2%;
  height: 90%;
  padding-left: 1%;
  padding-right: 1%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .txt h3 {
  color: white;
  text-align: center;
  font-weight: lighter;
  font-size: 140%;
  margin: 4% auto 2% auto;
}
.hero .txt h1 {
  color: #6ebd15;
  text-align: center;
  font-size: 300%;
  margin: 2% auto 2% auto;
}
.hero .txt p {
  color: white;
  text-align: center;
  font-size: 100%;
  margin-right: auto;
  margin-left: auto;
  width: 80%;
  font-family: Century Gothic;
  margin: 2% auto 1% auto;
  text-align: justify;
}
.hero .txt .flotcontainer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  margin: 5px auto 10px auto;
  width: 90%;
  align-self: center;
}
.hero .txt .flotcontainer .flot {
  background-color: #6ebd15;
  width: 120px;
  height: 35px;
}
.hero .txt .flotcontainer .flot a {
  font-size: 110%;
  font-weight: lighter;
  color: white;
  /** hero Section Mark Up Ends Here **/
}

/**  Welcoming Remarks  **/
.welcome {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.06) 5%, rgba(0, 0, 0, 0.06) 95%, rgba(0, 0, 0, 0));
  padding-bottom: 15%;
  padding-top: 5%;
  margin-bottom: 5px;
}
.welcome .txt {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding-left: 2%;
}
.welcome .txt h1 {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.welcome .txt h1 span {
  font-family: Century Gothic;
}
.welcome .txt h1 span:first-child {
  font-weight: lighter;
  align-self: center;
  font-size: 120%;
}
.welcome .txt h1 span:last-child {
  font-size: 140%;
  font-weight: bolder;
}
.welcome .txt p {
  font-family: arial;
  text-align: justify;
}
.welcome .txt .flot {
  width: 200px;
}
.welcome .pic, .welcome .abtpic {
  width: 90%;
  height: 250px;
  margin-top: 4%;
  margin-bottom: 1%;
  background-image: url(images/cooperation.jpg);
  background-position: center;
  background-size: cover;
}
.welcome .abtpic {
  background-image: url(images/twilight.jpg);
}

/**  Gallery Of Projects  **/
.projects {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(12, 12, 12);
  padding-top: 3%;
  padding-bottom: 30px;
  margin-top: 4%;
}
.projects h1 {
  width: 90%;
  text-align: center;
  font-size: 200%;
  color: #6ebd15;
  font-family: Century Gothic;
  text-decoration: underline;
}
.projects .container {
  overflow: hidden;
  max-width: 80%;
  display: flex;
  flex-direction: column;
}
.projects .container div {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.projects .container div img {
  width: 100%;
  height: 200px;
}
.projects .container div h2 {
  font-family: Century Gothic;
  font-weight: lighter;
  text-align: center;
}
.projects .container div p {
  font-family: arial;
  text-align: center;
  font-weight: lighter;
}
.projects .flot {
  background-color: inherit;
  width: 200px;
  margin-top: 20px;
}

/**  Gallery Of Suppliers  **/
.suppliers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.suppliers h1 {
  width: 80%;
  text-align: center;
  font-size: 240%;
  align-self: center;
  font-family: arial Narrow;
  text-decoration: underline;
}
.suppliers .supplier-container {
  display: flex;
  justify-content: center;
  height: 150px;
  width: 100%;
}
.suppliers .supplier-container .mySlides {
  width: 20%;
  margin: 1%;
  height: auto;
  max-height: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: 4px 4px 3px #dde2db;
}
.suppliers .supplier-container .mySlides :nth-of-type(1) {
  background-image: url(images/twilight.jpg);
}
.suppliers .supplier-container .mySlides :nth-of-type(2) {
  background-image: url(images/power-trust.png);
  display: none;
}
.suppliers .supplier-container .mySlides :nth-of-type(3) {
  background-image: url(images/Shakti.png);
}
.suppliers .supplier-container .mySlides :nth-of-type(4) {
  background-image: url(images/SMA.png);
}
.suppliers .supplier-container .mySlides :nth-of-type(5) {
  background-image: url(images/ifrisol.jpg);
}
.suppliers .flot {
  margin: 10px auto 20px auto;
  display: none;
}

/****** STYLES FOR MID SECTIONS OF NON-INDEX PAGES (Smart Phone) ******/
/****** STYLES FOR MID SECTIONS OF NON-INDEX PAGES (Smart Phone) ******/
.about {
  display: flex;
  flex-direction: column;
  font-family: Century Gothic;
  background-color: #0e0d0d;
  color: #dde2db;
  justify-content: center;
  align-items: center;
}
.about div {
  width: 90%;
  list-style: circle;
}
.about div h1 {
  color: #6ebd15;
  text-decoration: underline;
  text-align: center;
}
.about div p {
  text-align: justify;
  font-family: Century Gothic;
  font-size: 110%;
}
.about div ul {
  list-style: none;
  font-size: 120%;
}
.about div ul li::before {
  content: "•";
  color: #4AF408;
  font-weight: bold;
  display: inline-block;
  width: 2em;
  margin-left: -1em;
}

.products > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products > div h1 {
  font-family: Century Gothic;
  width: 95%;
}
.products > div > div { /* Container Of Items. Is Divided Into Columns */
  -moz-column-width: 300px;
  column-width: 300px;
  -moz-column-count: 5;
  column-count: 5;
  width: 95%;
}
.products > div > div > div { /* Contains Individual Item (Name, Image, Description */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  min-height: 350px;
}
.products > div > div > div h4 {
  font-family: Century Gothic;
}
.products > div > div > div img {
  border: 1px solid #6ebd15;
  max-width: 90%;
  min-width: 90%;
  max-height: 200px;
  min-height: 150px;
}
.products > div > div > div p {
  font-family: Arial, Helvetica, sans-serif;
}
.products > div > div > div:not(:last-of-type) {
  margin-bottom: 5px;
}
.products > div hr {
  width: 95%;
}

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.06) 5%, rgba(0, 0, 0, 0.06) 95%, rgba(0, 0, 0, 0));
  padding-bottom: 10px;
}
.services h1 {
  font-family: Century Gothic;
  text-align: center;
}
.services .left {
  display: none;
  border: solid rgb(4, 0, 255);
  width: 90%;
}
.services .right {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.services .right .hed {
  background-color: rgba(0, 0, 0, 0.5);
  color: #6ebd15;
  cursor: pointer;
  width: 50%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  align-self: center;
  height: 40px;
}
.services .right .hed:after {
  content: "Expand";
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-size: 80%;
}
.services .right .active, .services .right .hed:hover {
  background-color: rgb(0, 0, 0);
}
.services .right .active:after {
  content: "Shrink";
}
.services .right .service {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.9s ease-out;
  background-color: #f1f1f1;
}
.services .right .service img {
  min-width: 80%;
  min-height: 200px;
  max-width: 90%;
  max-height: 250px;
}
.services .right .service p {
  font-family: Arial, Helvetica, sans-serif;
  text-align: justify;
}
.services .right .service hr {
  border: solid #6ebd15;
  width: 100%;
}
.services .right .service:not(:last-of-type) {
  margin-bottom: 10px;
}

.projectss {
  display: flex;
  flex-direction: column;
}
.projectss > div { /* Container Of Items. Is Divided Into Columns */
  -moz-column-width: 300px;
  column-width: 300px;
  -moz-column-count: 5;
  column-count: 5;
  width: 95%;
  align-self: center;
  padding-top: 10px;
}
.projectss > div > div { /* Contains Individual Item (Name, Image, Description */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  min-height: 350px;
}
.projectss > div > div h4 {
  font-family: Century Gothic;
}
.projectss > div > div img {
  border: 1px solid #6ebd15;
  max-width: 90%;
  min-width: 90%;
  max-height: 200px;
  min-height: 150px;
}
.projectss > div > div p {
  font-family: Arial, Helvetica, sans-serif;
}
.projectss > div > div:not(:last-of-type) {
  margin-bottom: 5px;
}
.projectss hr {
  width: 95%;
}

/****		BOTTOM SECTION	(Smart Phone)	****/
.footer {
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.footer .quickInfo { /** Quick Contact Information**/
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-top: 4%;
  padding-bottom: 2%;
  align-items: center;
}
.footer .quickInfo > div {
  border-width: 1px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.footer .quickInfo > div h3 {
  text-align: left;
  color: white;
  font-family: calibri light;
  font-size: 150%;
  text-decoration: underline;
  width: 60%;
  margin-left: 8%;
}

.footer .contact {
  display: flex;
  flex-direction: column;
  width: 90%;
}
.footer .contact .phone {
  width: 90%;
  align-self: center;
  display: flex;
  justify-content: flex-end;
}
.footer .contact .phone .calpic {
  background-image: url(images/viber.png);
  width: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.footer .contact .phone #email {
  background-image: url(images/emailg.png);
}
.footer .contact .phone #location {
  background-image: url(images/location.png);
}
.footer .contact .phone .nums {
  font-family: arial Narrow;
  color: white;
  margin-left: 2%;
  padding-right: 4%;
  padding-left: 4%;
  width: 80%;
  align-self: flex-end;
}
.footer .contact .phone .nums p {
  margin-top: 2%;
  margin-bottom: 4%;
}
.footer .contact > div:nth-of-type(2) {
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer .offices {
  width: 90%;
}
.footer .offices p {
  color: white;
  margin-left: 8%;
  font-family: arial Narrow;
}
.footer .offices .map {
  height: 385px;
  border: 1px solid #6ebd15;
  display: flex;
  align-items: center;
}
.footer .offices .map p {
  border: solid #6ebd15;
}

.footer .qot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 90%;
}
.footer .qot h3 {
  text-align: left;
}

.footer form {
  display: flex;
  justify-content: flex-start;
}

.footer fieldset {
  display: flex;
  flex-direction: column;
  width: 300px;
  border: solid #6ebd15;
  justify-content: center;
  border-width: 1px;
}
.footer fieldset legend {
  color: #6ebd15;
}
.footer fieldset select {
  text-align: center;
  height: 40px;
}
.footer fieldset input {
  height: 40px;
  width: 120px;
  text-align: center;
}
.footer fieldset p {
  color: white;
  font-family: Century Gothic;
}
.footer fieldset .flot {
  align-self: center;
  margin-top: 8px;
}

.footer .author { /**	Name Of Dude Who Built This Sh*t  **/
  text-align: center;
  width: 100%;
  align-self: center;
  color: white;
  font-family: Century Gothic;
  font-size: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer .author a {
  color: #4AF408;
}

/****** SLIGHTLY LARGE SMARTPHONE STYLES START HERE  ******/
/****** SLIGHTLY LARGE SMARTPHONE STYLES START HERE  ******/
@media (min-width: 400px) and (max-width: 519px) {
  .phonMail p {
    font-size: 100%;
    justify-content: space-around;
    flex-shrink: 1;
  }
  .phonMail p:nth-of-type(1) {
    margin-left: 4px;
  }
  .phonMail p:nth-of-type(2) {
    margin-right: 6px;
  }
}
/****** TABLET-DEVICE STYLES START HERE  ******/
/****** TABLET-DEVICE STYLES START HERE  ******/
@media (min-width: 520px) and (max-width: 700px) {
  body {
    grid-template-rows: 40px auto auto auto;
  }
  .phonMail p {
    font-size: 100%;
    justify-content: space-around;
  }
  .phonMail p:nth-of-type(1) {
    margin-right: 20px;
  }
  .phonMail p:nth-of-type(2) {
    margin-left: 5px;
    margin-right: 2PX;
  }
  /****** 	THE LOGO AND NAVIGATIN TAB 	******/
  header {
    flex-direction: column;
    box-shadow: 0px 1px 3px #6ebd15;
  }
  .logo { /****	The Logo	****/
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    flex-shrink: 1;
    height: 80px;
  }
  .logo img {
    max-width: 40%;
    min-width: 40%;
    max-height: 95%;
    min-height: 90%;
  }
  .logo p {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: Century Gothic;
    font-size: 80%;
    border: none;
    text-align: center;
    width: 250px;
  }
  .logo p img {
    border: none;
    margin-top: auto;
    max-width: 25px;
    min-width: 25px;
    max-height: 25px;
    min-height: 25px;
  }
  /****	The Navigation Bar 	****/
  nav {
    position: static;
    display: all;
    justify-content: center;
    width: 100%;
    height: 40px;
    background-image: none;
    flex-shrink: 1;
  }
  nav .nav-bars {
    display: none;
  }
  nav .noshow {
    display: block;
  }
  nav .showing {
    display: flex;
    position: static;
    justify-content: space-around;
    align-items: center;
    border-bottom: none;
    padding: 0px;
    width: 100%;
    height: 100%;
    z-index: auto;
    margin: 0;
  }
  nav ul li {
    justify-content: center;
    width: 15%;
    padding-left: auto;
    border-bottom: none;
  }
  nav ul li a {
    font-size: 90%;
    height: 90%;
    border-bottom: 2px solid white;
  }
  nav ul li a:hover {
    background-color: inherit;
  }
  nav ul #quote { /**	The Button That Creates A Quotation **/
    border-radius: 40px 0px 0px 40px;
    border-left: solid white;
    height: 100%;
    background-color: #6ebd15;
  }
  nav ul #quote a {
    border-bottom: none;
  }
  nav nav .active { /***  The Active Class Displays The Currently Active Link  ***/
    text-decoration: underline;
    color: white;
    background-color: #4AF408;
  }
  /** Introductory Section Immediately Below Navigation Menu **/
  .hero .txt {
    width: 60%;
  }
  .hero .txt h3 {
    color: white;
    text-align: center;
  }
  .hero .txt p {
    color: white;
    text-align: center;
    text-align: justify;
  }
  .hero .txt .flotcontainer {
    height: 80px;
  }
  .hero .txt .flotcontainer .flot {
    width: 130px;
    height: 40px;
  }
  /**  Welcoming Remarks  **/
  .welcome {
    padding-bottom: 10px;
    padding-top: 10px;
    margin-bottom: 0px;
  }
  .welcome .pic, .welcome .abtpic {
    width: 400px;
  }
  /**  Gallery Of Projects  **/
  .projects {
    background-color: rgb(12, 12, 12);
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 0px;
  }
  .projects .container {
    overflow: hidden;
    max-width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }
  .projects .container div {
    max-width: 45%;
  }
  .projects .container div img {
    height: 180px;
  }
  .projects .container div:nth-of-type(3) {
    display: none;
  }
  /**  Gallery Of Suppliers  **/
  .suppliers h1 {
    font-size: 300%;
    font-family: Century Gothic;
  }
  .footer .quickInfo {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
/****** SMALL PC STYLES START HERE  ******/
/****** SMALL PC STYLES START HERE  ******/
@media (min-width: 701px) and (max-width: 1100px) {
  body {
    grid-template-rows: 40px auto auto auto;
  }
  .phonMail p {
    font-size: 100%;
    justify-content: space-around;
  }
  .phonMail p:nth-of-type(1) {
    margin-right: 20px;
  }
  .phonMail p:nth-of-type(2) {
    margin-left: 5px;
    margin-right: 2PX;
  }
  /**** THE LOGO AND NAVIGATIN TAB ****/
  header {
    flex-direction: column;
    box-shadow: 0px 1px 3px #6ebd15;
  }
  .logo { /**	The Logo	**/
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    flex-shrink: 1;
    height: 80px;
  }
  .logo img {
    max-width: 40%;
    min-width: 40%;
    max-height: 95%;
    min-height: 90%;
  }
  .logo p {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: Century Gothic;
    font-size: 80%;
    border: none;
    text-align: center;
    width: 250px;
  }
  .logo p img {
    border: none;
    margin-top: auto;
    max-width: 25px;
    min-width: 25px;
    max-height: 25px;
    min-height: 25px;
  }
  /**	The Navigation Bar  **/
  nav {
    position: static;
    display: all;
    justify-content: center;
    width: 100%;
    height: 40px;
    background-image: none;
    flex-shrink: 1;
  }
  nav .nav-bars {
    display: none;
  }
  nav .noshow {
    display: block;
  }
  nav .showing {
    display: flex;
    position: static;
    justify-content: space-around;
    align-items: center;
    border-bottom: none;
    padding: 0px;
    width: 100%;
    height: 100%;
    z-index: auto;
    margin: 0;
  }
  nav ul {
    /**	The Button That Creates A Quotation **/
  }
  nav ul li {
    justify-content: center;
    width: 15%;
    padding-left: auto;
    border-bottom: none;
  }
  nav ul li a {
    font-size: 120%;
    height: 90%;
    border-bottom: 2px solid white;
  }
  nav ul li a:hover {
    background-color: inherit;
  }
  nav ul #quote {
    border-radius: 40px 0px 0px 40px;
    border-left: solid white;
    height: 100%;
    background-color: #6ebd15;
  }
  nav ul #quote a {
    border-bottom: none;
  }
  nav .active {
    /* The Active Class Indicates The Currently Active Link */
    text-decoration: underline;
    color: white;
    background-color: #4AF408;
  }
  /** Introductory Section Immediately Below Navigation Menu **/
  .hero .txt {
    width: 50%;
  }
  .hero .txt h3 {
    color: white;
    text-align: center;
  }
  .hero .txt p {
    color: white;
    text-align: center;
    text-align: justify;
  }
  .hero .txt .flotcontainer {
    height: 80px;
  }
  .hero .txt .flotcontainer .flot {
    width: 130px;
    height: 40px;
  }
  /**  Welcoming Remarks  **/
  .welcome {
    padding-bottom: 10px;
    padding-top: 10px;
    margin-bottom: 0px;
    flex-direction: row;
    justify-content: space-around;
  }
  .welcome .txt {
    width: 50%;
  }
  .welcome .pic, .welcome .abtpic {
    border: solid #6ebd15;
    width: 40%;
  }
  /**  Gallery Of Projects  **/
  .projects {
    background-color: rgb(12, 12, 12);
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 0px;
  }
  .projects .container {
    max-width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }
  .projects .container div {
    max-width: 30%;
  }
  .projects .container div img {
    height: 250px;
  }
  /**  Gallery Of Suppliers  **/
  .suppliers h1 {
    font-size: 300%;
    font-family: Century Gothic;
  }
  /****	BOTTOM SECTION (Small PC) ****/
  .footer {
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .footer .quickInfo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 4%;
    padding-bottom: 2%;
    align-items: flex-start;
  }
  .footer .quickInfo > div {
    width: 30%;
    border-width: 1px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .footer .quickInfo > div h3 {
    text-align: center;
    color: white;
    font-family: calibri light;
    font-size: 150%;
    text-decoration: underline;
    width: 60%;
    margin-left: 8%;
  }
  .footer .contact {
    display: flex;
    flex-direction: column;
  }
  .footer .contact .phone {
    width: 90%;
    align-self: center;
    display: flex;
    justify-content: flex-end;
  }
  .footer .contact .phone .calpic {
    /*background-image: url(images/mail.png);*/
    width: 40px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .footer .contact .phone #email {
    /*background-image: url(images/mail.png);*/
  }
  .footer .contact .phone #location {
    /*background-image: url(images/location.png);*/
  }
  .footer .contact .phone .nums {
    font-family: arial Narrow;
    color: white;
    margin-left: 4%;
    padding-right: 4%;
    padding-left: 4%;
    width: 80%;
    align-self: flex-end;
  }
  .footer .contact .phone .nums p {
    margin-top: 2%;
    margin-bottom: 4%;
  }
  .footer .contact > div:nth-of-type(2) {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .footer .offices p {
    color: white;
    margin-left: 4%;
    font-family: arial Narrow;
  }
  .footer .offices .map {
    height: 393px;
    border: solid #6ebd15;
    display: flex;
    align-items: center;
  }
  .footer .offices .map p {
    border: solid #4AF408;
  }
  .footer .get-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .get-quote h3 {
    text-align: left;
  }
  .footer .get-quote form {
    display: flex;
    justify-content: center;
  }
  .footer .get-quote form fieldset {
    display: flex;
    flex-direction: column;
    width: 80%;
    justify-content: center;
    border-width: 1px;
  }
  .footer .get-quote form fieldset legend {
    color: #4AF408;
  }
  .footer .get-quote form fieldset select {
    text-align: center;
    height: 40px;
  }
  .footer .get-quote form fieldset input {
    height: 40px;
    width: 60px;
    text-align: center;
  }
  .footer .get-quote form fieldset p {
    color: white;
  }
  .footer .get-quote form fieldset .flot {
    width: 140px;
    height: 40px;
    background-color: white;
    align-self: center;
    border: solid #4AF408;
    color: #4AF408;
    margin-top: 8px;
  }
  .footer .get-quote form fieldset .flot a {
    color: #4AF408;
    font-weight: bolder;
    font-size: 20px;
  }
  .footer .author { /*		Name Of Dude Who Built This Sh*t 	*/
    /*border: solid green;*/
    text-align: center;
    width: 100%;
    align-self: center;
    color: white;
    font-family: forte;
    font-size: 120%;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 5px;
    padding-bottom: 5px;
  }
  /******	STYLES FOR NON-INDEX PAGES (Small PC)	******/
  /******	STYLES FOR NON-INDEX PAGES (Small PC)	******/
  .about {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    padding: 40px 0px 40px 0px;
  }
  .about .about div {
    width: 30%;
  }
  .products > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .products > div h1 {
    font-family: Century Gothic;
    width: 95%;
  }
  .products > div > div { /* Container Of Items. Is Divided Into Columns */
    -moz-column-width: 300px;
    column-width: 300px;
    -moz-column-count: 5;
    column-count: 5;
    width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .products > div > div > div { /* Contains Individual Item (Name, Image, Description */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    -moz-column-break-inside: avoid;
    break-inside: avoid-column;
    min-height: 350px;
  }
  .products > div > div > div h4 {
    font-family: Century Gothic;
  }
  .products > div > div > div img {
    border: 1px solid #6ebd15;
    max-width: 90%;
    min-width: 90%;
    max-height: 200px;
    min-height: 150px;
  }
  .products > div > div > div p {
    font-family: Arial, Helvetica, sans-serif;
  }
  .products > div > div > div:not(:last-of-type) {
    margin-bottom: 5px;
  }
  .products > div hr {
    width: 95%;
  }
  .services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.06) 5%, rgba(0, 0, 0, 0.06) 95%, rgba(0, 0, 0, 0));
    padding-bottom: 10px;
  }
  .services h1 {
    font-family: Century Gothic;
    text-align: center;
  }
  .services .left {
    display: none;
    border: solid #6ebd15;
    width: 90%;
  }
  .services .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
  .services .right .hed {
    background-color: rgba(0, 0, 0, 0.5);
    color: #6ebd15;
    cursor: pointer;
    width: 200px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    align-self: center;
    height: 40px;
  }
  .services .right .hed:after {
    content: "Expand";
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 80%;
  }
  .services .right .active, .services .right .hed:hover {
    background-color: rgb(0, 0, 0);
  }
  .services .right .active:after {
    content: "Shrink";
  }
  .services .right .service {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 60%;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.9s ease-out;
    background-color: #f1f1f1;
  }
  .services .right .service img {
    min-width: 30%;
    min-height: 300px;
    max-width: 300px;
    max-height: 300px;
    margin-right: 20px;
  }
  .services .right .service p {
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
    width: 60%;
  }
  .services .right .service hr {
    border: solid #6ebd15;
    width: 100%;
    display: none;
  }
  .services .right .service:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .projectss {
    display: flex;
    flex-direction: column;
  }
  .projectss > div {
    /* Container Of Items. Is Divided Into Columns */
    -moz-column-width: 300px;
    column-width: 300px;
    -moz-column-count: 5;
    column-count: 5;
    width: 95%;
    align-self: center;
    padding-top: 10px;
  }
  .projectss > div > div {
    /* Contains Individual Item (Name, Image, Description */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    -moz-column-break-inside: avoid;
    break-inside: avoid-column;
    min-height: 350px;
  }
  .projectss > div > div h4 {
    font-family: Century Gothic;
  }
  .projectss > div > div img {
    border: 1px solid #6ebd15;
    max-width: 90%;
    min-width: 90%;
    max-height: 200px;
    min-height: 150px;
  }
  .projectss > div > div p {
    font-family: Arial, Helvetica, sans-serif;
  }
  .projectss > div > div:not(:last-of-type) {
    margin-bottom: 5px;
  }
  .projectss hr {
    width: 95%;
  }
}
/****** DESKTOP STYLES START HERE ******/
/****** DESKTOP STYLES START HERE ******/
@media (min-width: 1101px) {
  body {
    grid-template-rows: 40px auto auto auto;
  }
  .phonMail p {
    font-size: 100%;
    justify-content: space-around;
  }
  .phonMail p:nth-of-type(1) {
    margin-right: 20px;
  }
  .phonMail p:nth-of-type(2) {
    margin-left: 5px;
    margin-right: 2PX;
  }
  /**** THE LOGO AND NAVIGATIN TAB ****/
  header {
    flex-direction: column;
    box-shadow: 0px 1px 3px #6ebd15;
  }
  /**	The Logo **/
  .logo {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    flex-shrink: 1;
    height: 80px;
  }
  .logo img {
    margin-top: 1px;
    max-width: 30%;
    min-width: 30%;
    max-height: 90%;
    min-height: 85%;
  }
  .logo p {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: Century Gothic;
    font-size: 80%;
    border: none;
    text-align: center;
    width: 250px;
  }
  .logo p img {
    border: none;
    margin-top: auto;
    max-width: 25px;
    min-width: 25px;
    max-height: 25px;
    min-height: 25px;
  }
  /**	The Navigation Bar **/
  nav {
    position: static;
    display: all;
    justify-content: center;
    width: 100%;
    height: 40px;
    background-image: none;
    flex-shrink: 1;
  }
  nav .nav-bars {
    display: none;
  }
  nav .noshow {
    display: block;
  }
  nav .showing {
    display: flex;
    position: static;
    justify-content: space-around;
    align-items: center;
    border-bottom: none;
    padding: 0px;
    width: 100%;
    height: 100%;
    z-index: auto;
    margin: 0;
  }
  nav ul li {
    justify-content: center;
    width: 15%;
    padding-left: auto;
    border-bottom: none;
  }
  nav ul li a {
    font-size: 120%;
    height: 90%;
    border-bottom: none;
  }
  nav ul li a:hover {
    width: 60%;
    background-color: inherit;
    border-bottom: 2px solid #6ebd15;
  }
  nav ul #quote {
    border-radius: 40px 0px 0px 40px;
    border-left: solid white;
    height: 100%;
    background-color: #6ebd15;
  }
  nav ul #quote a {
    border-bottom: none;
  }
  nav ul #quote a:hover {
    width: 60%;
    background-color: inherit;
    border-bottom: 2px solid #6ebd15;
  }
  nav .active {
    /* The Active Class Displays The Currently Active Link */
    text-decoration: underline;
    color: white;
    background-color: #4AF408;
  }
  /** Introductory Section Immediately Below Navigation Menu **/
  .hero .txt {
    width: 30%;
  }
  .hero .txt h3 {
    color: white;
    text-align: center;
  }
  .hero .txt p {
    color: white;
    text-align: center;
    text-align: justify;
  }
  .hero .txt .flotcontainer {
    height: 80px;
  }
  .hero .txt .flotcontainer .flot {
    width: 130px;
    height: 40px;
  }
  /**  Welcoming Remarks  **/
  .welcome {
    padding-bottom: 10px;
    padding-top: 10px;
    margin-bottom: 0px;
    flex-direction: row;
    justify-content: space-around;
  }
  .welcome .txt {
    width: 50%;
  }
  .welcome .pic, .welcome .abtpic {
    border: solid #6ebd15;
    width: 40%;
  }
  /**  Gallery Of Projects  **/
  .projects {
    background-color: rgb(12, 12, 12);
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 0px;
  }
  .projects .container {
    max-width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }
  .projects .container div {
    max-width: 30%;
  }
  .projects .container div img {
    height: 250px;
  }
  /**  Gallery Of Suppliers  **/
  .suppliers h1 {
    font-size: 300%;
    font-family: Century Gothic;
  }
  /****	BOTTOM SECTION (Desktop) ****/
  .footer {
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .footer .quickInfo {
    display: flex;
    flex-direction: row;
    /*border: solid red;*/
    justify-content: center;
    padding-top: 4%;
    padding-bottom: 2%;
    align-items: flex-start;
  }
  .footer .quickInfo > div {
    width: 30%;
    /*border: solid #4AF408;*/
    border-width: 1px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .footer .quickInfo > div h3 {
    text-align: center;
    color: white;
    font-family: calibri light;
    font-size: 150%;
    text-decoration: underline;
    /*border: solid yellow;*/
    width: 60%;
    margin-left: 8%;
  }
  .footer .contact {
    display: flex;
    flex-direction: column;
  }
  .footer .contact .phone {
    width: 90%;
    align-self: center;
    /*border: solid green;*/
    display: flex;
    justify-content: flex-end;
  }
  .footer .contact .phone .calpic {
    /*background-image: url(images/mail.png);*/
    width: 40px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    /*border: solid yellow;*/
  }
  .footer .contact .phone #email {
    /*background-image: url(images/email.png);*/
  }
  .footer .contact .phone #location {
    /*background-image: url(images/location.png);*/
  }
  .footer .contact .phone .nums {
    /*border: solid red;*/
    font-family: arial Narrow;
    color: white;
    margin-left: 4%;
    padding-right: 4%;
    padding-left: 4%;
    width: 80%;
    align-self: flex-end;
  }
  .footer .contact .phone .nums p {
    margin-top: 2%;
    margin-bottom: 4%;
  }
  .footer .contact > div:nth-of-type(2) {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .footer .offices {
    /*border: solid red;*/
  }
  .footer .offices p {
    color: white;
    /*border: solid yellow;*/
    margin-left: 4%;
    font-family: arial Narrow;
  }
  .footer .offices .map {
    height: 393px;
    border: solid green;
    display: flex;
    align-items: center;
  }
  .footer .offices .map p {
    border: solid #4AF408;
  }
  .footer .get-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .get-quote h3 {
    text-align: left;
    border: solid red;
  }
  .footer .get-quote form {
    display: flex;
    justify-content: center;
    border: solid yellow;
  }
  .footer .get-quote form fieldset {
    display: flex;
    flex-direction: column;
    width: 80%;
    border: solid #4AF408;
    justify-content: center;
    border-width: 1px;
  }
  .footer .get-quote form fieldset legend {
    color: #4AF408;
  }
  .footer .get-quote form fieldset select {
    text-align: center;
    height: 40px;
  }
  .footer .get-quote form fieldset input {
    height: 40px;
    width: 60px;
    text-align: center;
  }
  .footer .get-quote form fieldset p {
    color: white;
  }
  .footer .get-quote form fieldset .flot {
    width: 140px;
    height: 40px;
    background-color: white;
    align-self: center;
    border: solid #4AF408;
    color: #4AF408;
    margin-top: 8px;
  }
  .footer .get-quote form fieldset .flot a {
    color: #4AF408;
    font-weight: bolder;
    font-size: 20px;
  }
  .footer .author { /*	Name Of Dude Who Built This Sh*t */
    /*border: solid green;*/
    text-align: center;
    width: 100%;
    align-self: center;
    color: white;
    font-family: forte;
    font-size: 120%;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 5px;
    padding-bottom: 5px;
  }
  /******	STYLES FOR NON-INDEX PAGES (Desktop) ******/
  /******	STYLES FOR NON-INDEX PAGES (Desktop) ******/
  .about {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    padding: 40px 0px 40px 0px;
  }
  .about div {
    width: 30%;
  }
  .products > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .products > div h1 {
    font-family: Century Gothic;
    width: 95%;
  }
  .products > div > div { /* Container Of Items. Is Divided Into Columns */
    -moz-column-width: 300px;
    column-width: 300px;
    -moz-column-count: 5;
    column-count: 5;
    width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .products > div > div > div { /* Contains Individual Item (Name, Image, Description */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    -moz-column-break-inside: avoid;
    break-inside: avoid-column;
    min-height: 350px;
  }
  .products > div > div > div h4 {
    font-family: Century Gothic;
  }
  .products > div > div > div img {
    border: 1px solid #6ebd15;
    max-width: 90%;
    min-width: 90%;
    max-height: 200px;
    min-height: 150px;
  }
  .products > div > div > div p {
    font-family: Arial, Helvetica, sans-serif;
  }
  .products > div > div > div:not(:last-of-type) {
    margin-bottom: 5px;
  }
  .products > div hr {
    width: 95%;
  }
  .services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.06) 5%, rgba(0, 0, 0, 0.06) 95%, rgba(0, 0, 0, 0));
    padding-bottom: 10px;
  }
  .services h1 {
    font-family: Century Gothic;
    text-align: center;
  }
  .services .left {
    display: none;
    border: solid green;
    width: 90%;
  }
  .services .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
  .services .right .hed {
    background-color: rgba(0, 0, 0, 0.5);
    color: #6ebd15;
    cursor: pointer;
    width: 200px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    align-self: center;
    height: 40px;
  }
  .services .right .hed:after {
    content: "Expand";
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 80%;
  }
  .services .right .active, .services .right .hed:hover {
    background-color: rgb(0, 0, 0);
  }
  .services .right .active:after {
    content: "Shrink";
  }
  .services .right .service {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 60%;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.9s ease-out;
    background-color: #f1f1f1;
  }
  .services .right .service img {
    min-width: 30%;
    min-height: 300px;
    max-width: 300px;
    max-height: 300px;
    margin-right: 20px;
  }
  .services .right .service p {
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
    width: 60%;
  }
  .services .right .service hr {
    border: solid #6ebd15;
    width: 100%;
    display: none;
  }
  .services .right .service:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .projectss {
    display: flex;
    flex-direction: column;
  }
  .projectss > div { /* Container Of Items. Is Divided Into Columns */
    -moz-column-width: 300px;
    column-width: 300px;
    -moz-column-count: 5;
    column-count: 5;
    width: 95%;
    align-self: center;
    padding-top: 10px;
  }
  .projectss > div > div { /* Contains Individual Item (Name, Image, Description */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    -moz-column-break-inside: avoid;
    break-inside: avoid-column;
    min-height: 350px;
  }
  .projectss > div > div h4 {
    font-family: Century Gothic;
  }
  .projectss > div > div img {
    border: 1px solid #6ebd15;
    max-width: 90%;
    min-width: 90%;
    max-height: 200px;
    min-height: 150px;
  }
  .projectss > div > div p {
    font-family: Arial, Helvetica, sans-serif;
  }
  .projectss > div > div:not(:last-of-type) {
    margin-bottom: 5px;
  }
  .projectss hr {
    width: 95%;
  }
} /*# sourceMappingURL=index_final.css.map */