/*Page Layout CSS*/
html,
body {
    margin:0;
    padding:0;
    height:100%;
    font-family: "Open Sans", sans-serif;
}
.wrapper {
    min-height:100%;
    position:relative;
}

.header {
    padding:10px;
    height:75px;
}

@media all and (min-width : 768px) {
  .header {
    height:125px;
  }
}

.nav {
  /*background-color:#F9C114;*/
    height:60px;
  
    background-image: -moz-linear-gradient(top, #d48b0e, #FACD10);
    background-image: -ms-linear-gradient(top, #d48b0e, #FACD10);
    background-image: -webkit-linear-gradient(top, #d48b0e, #FACD10);
    background-image: linear-gradient(top, #d48b0e, #FACD10);
}

.content {
    padding-bottom:90px; /* Height of the footer element */
}

.footer {
  /*background:#01B2E4;*/
    width:100%;
    height:90px;
    position:absolute;
    bottom:0;
    left:0;
  
    background-image: -moz-linear-gradient(top, #7FD3F7, #018FBF);
    background-image: -ms-linear-gradient(top, #7FD3F7, #018FBF);
    background-image: -webkit-linear-gradient(top, #7FD3F7, #018FBF);
    background-image: linear-gradient(top, #7FD3F7, #018FBF);
}

/*Navigation CSS*/

nav {
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
}

nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style: none;
    position: relative;
}


nav a {
    display: block;
  /*padding: 0 20px;*/
    color: #ffffff;
    font-size: 20px;
    line-height: 60px;
    text-decoration: none;
    font-weight: bold;
  /* text-shadow: -1px 0 #505050, 0 1px #505050, 1px 0 #505050, 0 -1px #505050; */
}

nav ul li {
    display: block;
    width: 100%;
    background-color: #F9C114; /*Button backgrounds*/
}

nav a:hover {
  /*background-color: #F8B318;*/
  
    background-image: -moz-linear-gradient(top, #ce8a14, #F9C114);
    background-image: -ms-linear-gradient(top, #ce8a14, #F9C114);
    background-image: -webkit-linear-gradient(top, #ce8a14, #F9C114);
    background-image: linear-gradient(top, #ce8a14, #F9C114);
}

nav a:active {
    background: #F8A517;
}

.current {
    background-image: -moz-linear-gradient(top, #c68305, #F8A517);
    background-image: -ms-linear-gradient(top, #c68305, #F8A517);
    background-image: -webkit-linear-gradient(top, #c68305, #F8A517);
    background-image: linear-gradient(top, #9c68305, #F8A517);
}

.toggle + a, .menu {
    display: none;
}

.toggle {
    display: block;
  /*background-color: #F9C114;*/
  
    background-image: -moz-linear-gradient(top, #d48b0e, #FACD10);
    background-image: -ms-linear-gradient(top, #d48b0e, #FACD10);
    background-image: -webkit-linear-gradient(top, #d48b0e, #FACD10);
    background-image: linear-gradient(top, #d48b0e, #FACD10);

    padding: 0 20px;
    color: #ffffff;
    font-size: 20px;
    line-height: 60px;
    text-decoration: none;
    border: none;
}

[id^=drop]:checked + ul { display: block; }

#drop {
    display: none;
}

.menularge {
    display: none;
}

@media all and (min-width : 768px) {

  nav a {
    border-right: 1px solid #000000;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    
    background-image: -moz-linear-gradient(top, #d48b0e, #FACD10);
    background-image: -ms-linear-gradient(top, #d48b0e, #FACD10);
    background-image: -webkit-linear-gradient(top, #d48b0e, #FACD10);
    background-image: linear-gradient(top, #d48b0e, #FACD10);
  }
  
  #navafirst {
    border-left: 1px solid #000000;
  }

  nav a:hover {
    /*background-color: #F8B318;*/
    
    background-image: -moz-linear-gradient(top, #FACD10, #F8A517);
    background-image: -ms-linear-gradient(top, #FACD10, #F8A517);
    background-image: -webkit-linear-gradient(top, #FACD10, #F8A517);
    background-image: linear-gradient(top, #FACD10, #F8A517);
  }
  
  nav a:active {
    background: #F8A517;
  }

  nav ul li {
    width: 100px;
    display: inline-block;
  }
  
  .menu {
    display: inline-block;
  }
  
  .toggle {
    display: none;
  }
}

@media all and (min-width : 1270px) {
  .menu {
    display: none;
  }

  .menularge {
    display: inline-block;
  }
  
  nav ul li {
    width: 250px;
  }
}
/*Form CSS*/

form {
    width: 75%;
    margin: auto;
    margin-top: 5%;
    margin-bottom: 1%;
    display: block;
    text-align: center;
    color: #000000;

/*   background-image: -moz-linear-gradient(top, #7FD3F7, #018FBF);
  background-image: -ms-linear-gradient(top, #7FD3F7, #018FBF);
  background-image: -webkit-linear-gradient(top, #7FD3F7, #ffffff);
  background-image: linear-gradient(top, #7FD3F7, #018FBF); */

    padding: 5px 5px 5px 5px; /*Top, Right, Bottom, Left*/
  /* border: 1px solid #999; */
    border: inset 1px solid #333;
    border-radius: 10px;
}

@media all and (max-width : 355px) {
  form {
        width: 85%;
  }
}

label {
    display: block;
    padding: 5px;
    font-weight: bold;
}

input {
    width: 97%;
}

textarea {
    width: 97%;
}

textarea:focus, input:focus {
    border: 1.5px solid #FCF5BE;
}

#submit {
    font-weight: bold;
    width: 50%;
    height: 35px;
    padding: 0;
    border: 0;
    color: #ffffff;
    background-image: -moz-linear-gradient(top, #FACD10, #F8A517);
    background-image: -ms-linear-gradient(top, #FACD10, #F8A517);
    background-image: -webkit-linear-gradient(top, #FACD10, #F8A517);
    background-image: linear-gradient(top, #FACD10, #F8A517);
}

#submit:hover {
    background: #F8A517;
}

@media all and (min-width : 768px) {
    form {
      position: relative;
      left: -40px;
      width: 500px;
      margin-top: 5%;
      margin: initial;
    }

    label {
      display: inline-block;
      width: 90px;
      text-align: left;
    }
    
    input, textarea {
      /* To give the same size to all text field */
      width: 300px;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
    }
    
    textarea {
      /* To properly align multiline text fields with their labels*/
      vertical-align: top;
    }
    
    #submit {
      width: 35%;
      height: 35px;
      margin-top: 15px;
      position: relative;
      left: 45px;
    }
}

@media only screen  and (min-width : 1224px) {
     form {
        margin-bottom: 0;
    }
}

/*Page Elements CSS*/

.smallheaderimg {
    position: relative;
    top: -15px;
    display: block;
    width: 105px;
    height: 105px;
    margin-left: auto;
    margin-right: auto;
}

.largeheaderimg {
    display: none;
}

.imagediv {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: -1;
  /*background-color: red;*/
    padding-top: 2.5px;
}

.pageimage {
    width: 100%;
    height: 200px;
}

.imagetext {
    width: 320px;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    color: #ffffff;
    font-size: 40px;
}

#solarimgtxt {
    width: 280px;  
}

#inspectimgtxt {
    width: 380px;  
}

.center {
    width: 95%;
    padding: 15px 0px 15px 0px;
    margin: auto;
}

.center2 {
    width: 90%;
    padding: 15px 0px 15px 0px;
    margin: auto;
}

.footertext {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    line-height: 60px;
    margin-top: -1px;
    font-weight: bold;
}

.footersocial {
    text-align: center;
    position: absolute;
    top: 30px;
    left: 37.5%;
    /*right: 60%;*/
    margin-left: auto;
    margin-right: auto;
}

.CTA {
    display: block;
  /*padding: 0 20px;*/
    width: 350px;
    margin: auto;
    text-align: center;
    color: #ffffff;
    background-image: -moz-linear-gradient(top, #F8A517, #FACD10);
    background-image: -ms-linear-gradient(top, #F8A517, #FACD10);
    background-image: -webkit-linear-gradient(top, #F8A517, #FACD10);
    background-image: linear-gradient(top, #F8A517, #FACD10); 
    font-size: 20px;
    line-height: 50px;
    text-decoration: none;
    font-weight: bold;
}

.CTA:hover {
    background-image: -moz-linear-gradient(top, #FACD10, #F8A517);
    background-image: -ms-linear-gradient(top, #FACD10, #F8A517);
    background-image: -webkit-linear-gradient(top, #FACD10, #F8A517);
    background-image: linear-gradient(top, #FACD10, #F8A517);
}

input[type=checkbox] {
    opacity: 0;
}

/* Toggled State */
input[type=checkbox]:checked ~ #hidden {
   display: block;
}

#hidden {
    display: none;
}

#lists {
    position: relative;
    left: 20px;
}

.partners {
    height: 85px;
    width: 160px;
    padding: 7.5px;
    margin: auto;
}

#partscontainer {
    width: 350px;
}

#homecolumns {
    width: 300px;
    text-align: center;
}

#homecolumn1 {
    position: relative;
    height: 30%;
    width: 95%;
    border-radius: 30px;
    margin: 2.5px;
    display: inline-block;
    font-weight: bold;
    overflow: hidden;
}
    
#homecolumn2 {
    position: relative;    
    height: 30%;
    width: 95%;
    border-radius: 30px;
    margin: 2.5px;    
    display: inline-block;
    font-weight: bold;
    overflow: hidden;
} 
    
#homecolumn3 {
    position: relative;    
    height: 30%;
    width: 95%;
    border-radius: 30px;
    margin: 2.5px;    
    display: inline-block;
    font-weight: bold;
    overflow: hidden;
}


.comlumnimg {
    width: 125%;
    height: 100%;
    position: relative;
    left: -10%;
}

.columnstext {
    position: absolute;                                 
    bottom: 0;                                          
    height: 20%;                                        
    width: 100%;                                        
    background-image: -moz-linear-gradient(top, #7FD3F7, #018FBF);
    background-image: -ms-linear-gradient(top, #7FD3F7, #018FBF);
    background-image: -webkit-linear-gradient(top, #7FD3F7, #018FBF);
    background-image: linear-gradient(top, #7FD3F7, #018FBF);                                
    line-height: 25%;
    font-size: 20;
    text-decoration: none;                              
    color: #ffffff;                                     
    border-radius: 0px 0px 30px 30px;     
}

#columnstextalt {
    background-image: -moz-linear-gradient(top, #d48b0e, #FACD10);
    background-image: -ms-linear-gradient(top, #d48b0e, #FACD10);
    background-image: -webkit-linear-gradient(top, #d48b0e, #FACD10);
    background-image: linear-gradient(top, #d48b0e, #FACD10);  
}

#mapsmall {
    display: block;
  }

#maplarge {
    display: none;
  }

#txtalgncntr {
    text-align: center;
}

#ESNZ {
  width: 100%;  
}

/* #Insp {
  width: 45%;
} */

@media all and (min-width : 768px) {
   .smallheaderimg {
     display: none;
   }

   .largeheaderimg {
     position: relative;
     top: -20px;
     display: block;
     width: 525px;
     height: 150px;
     margin-left: auto;
     margin-right: auto;
   }
   
   .pageimage {
     height: 250px;
   }

   .imagetext {
     width: 400px;
     top: 90px;
     font-size: 50px;
   }

    #solarimgtxt {
      width: 360px;  
    }
    
    #inspectimgtxt {
      width: 470px;  
    }
   
   .center {
    width: 70%;
   }
    
   .center2 {
      width: 480px;
      padding: 15px 0px 15px 0px;
      margin: auto;
    }
    
   #partscontainer {
    width: 530px;
   }
    
   #homecolumns {
    width: 650px;
    }

    #homecolumn1 {
    height: 30%;
    width: 205px;
   }

    #homecolumn2 {
    height: 30%;
    width: 205px;
   } 

    #homecolumn3 {
    height: 30%;
    width: 205px;
   }
    
   #mapsmall {
    display: none;
   }

    #maplarge {
     display: block;
   }
}

@media only screen  and (min-width : 1224px) {
  .pageimage {
    height: 300px;
  }
  
  .imagetext {
     width: 470px;
     top: 110px;
     font-size: 60px;
   }
    
   #solarimgtxt {
     width: 430px;  
   }
    
   #inspectimgtxt {
     width: 570px;  
   }
   
   .center {
    width: 50%;
   }
    
   #partscontainer {
    width: 710px;
   }
    
   #homecolumns {
    width: 850px;
   }

   #homecolumn1 {
    height: 30%;
    width: 270px;
   }

   #homecolumn2 {
    height: 30%;
    width: 270px;
   } 

   #homecolumn3 {
    height: 30%;
    width: 270px;
   }
}

@media screen and ( max-height: 700px ){
   .columnstext {
      position: absolute;                                 
      bottom: 0;                                          
      height: 20%;                                        
      width: 100%;                                        
      background-image: -moz-linear-gradient(top, #7FD3F7, #018FBF);
      background-image: -ms-linear-gradient(top, #7FD3F7, #018FBF);
      background-image: -webkit-linear-gradient(top, #7FD3F7, #018FBF);                               
      line-height: 20%;                                  
      text-decoration: none;                              
      color: #ffffff;                                     
      border-radius: 0px 0px 30px 30px;     
    } 
}

.fb-like {
    text-align: center;
    position: absolute;
    top: -30px;
    left: 45%;
    right: 45%;
    margin-left: auto;
    margin-right: auto;
}

.buttoncenter {
    text-align: center;
}

.reviewcenter {
    padding: 0px;
}

.primary {
      background-image: -moz-linear-gradient(top, #7FD3F7, #018FBF);
      background-image: -ms-linear-gradient(top, #7FD3F7, #018FBF);
      background-image: -webkit-linear-gradient(top, #7FD3F7, #018FBF);
    color: #fff;
        font-weight: bold;
}

.secondary {
        background-image: -moz-linear-gradient(top, #d48b0e, #FACD10);
    background-image: -ms-linear-gradient(top, #d48b0e, #FACD10);
    background-image: -webkit-linear-gradient(top, #d48b0e, #FACD10);
    background-image: linear-gradient(top, #d48b0e, #FACD10);
        color: #fff;
        font-weight: bold;
}

.button {
    font-family: inherit;
    font-size: 100%;
    padding: 0.5em 1em;
    margin-left: 2.5px;
    margin-right: 2.5px;
    margin-bottom: 2.5px;
    border: 1px solid #999;
    border: none rgba(0, 0, 0, 0);
    text-decoration: none;
    border-radius: 2px;
    display: inline-block;
    zoom: 1;
    line-height: normal;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-sizing: border-box;
    -webkit-appearance: button;
    cursor: pointer;
    text-transform: none;
    overflow: visible;
}
