html, body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 300;
  line-height: 1.5;
  min-width:1024px;        
  width: auto !important;
  width: 1024px;
      -webkit-font-smoothing: antialiased;
}

.navbar {
  overflow: hidden;
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  list-style: none;
  text-align: center;
  z-index:2;
}

@media only screen and (max-width: 1024px) {
.navbar {
  overflow: hidden;
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  list-style: none;
  text-align: center;
  z-index:0;
}
    
}

.navbar.scrolled {
  opacity: 1;
  background: linear-gradient(to right, rgb(247, 106, 106) ,rgb(247, 166, 106), rgb(219, 30, 30));
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.navbar li {
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  display: inline-flex;
  border-style: solid;
  border-color: transparent;
  padding-top: 20px;
  padding-left: 60px;
  padding-right: 60px;
}

@media only screen and (max-width: 1024px) {
    .navbar li {
      font-family: Futura, "Trebuchet MS", Arial, sans-serif;
      display: inline-flex;
      border-style: solid;
      border-color: transparent;
      padding-top: 20px;
      padding-left: 30px;
      padding-right: 30px;
    }
}

.navbar ul {
  display: inline;
}

.navbar a {
  height: 75px;
  line-height: 75px;
  font-size: 22px;
  color: #ffffff;
  text-decoration: none;
}

@media only screen and (max-width: 1024px) {
    .navbar a {
      height: 75px;
      line-height: 75px;
      font-size: 20px;
      color: #ffffff;
      text-decoration: none;
    }
}

.navbar li:hover  a{
  border-bottom-color: #ffffff;
  color: #c6c2c2;
}

.navbar li:hover {
   border-bottom-color: #e24822;
}

a.anchor {
    position: absolute;
    top: 1px;
    visibility: hidden;
}

*{
 margin: 0;
 padding: 0;
}

.hidden {
   display: none;
}

.home {
  position: relative;
  width: 100%;
  height: 1000px;
  background-image: url("pictures/front.svg");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  z-index = 2;
  /*box-shadow: inset 0 0 0 1000px rgba(0,0,0,.3);*/
}

@media only screen and (max-width: 1024px) {
  .home {
    position: relative;  
    min-height: 48%;
    min-width: 100%;
    background-image: url("pictures/front.svg");
    background-size: cover;
    margin-bottom: -150px;
  }
}

.home h1 {
  font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  color: white;
  font-size: 70px;
  position: absolute;
  top: 40%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1024px) {
  .home h1 {
      font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
      font-style: normal;
      font-variant: normal;
      font-weight: 700;
      color: white;
      font-size: 45px;
      position: absolute;
      top: 30%;
      left: 50%;
      margin-right: -50%;
      transform: translate(-50%, -50%);
    }
}

.home p {
  font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  color: white;
  font-size: 30px;
  position: absolute;
  margin-top: 100px;
  top: 40%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
/*  animation-name: fadeIn;
  animation-duration: 6s; */
}

@media only screen and (max-width: 1024px) {
  .home p {
      font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
      font-style: normal;
      font-variant: normal;
      font-weight: 700;
      color: white;
      font-size: 25px;
      position: absolute;
      margin-top: 40px;
      top: 31%;
      left: 50%;
      margin-right: -50%;
      transform: translate(-50%, -50%);
    }
}

.about {
  display:inline-flex;
  height:500px;
  position: relative;
}

@media only screen and (max-width: 1024px) {
    .about {
      margin-top: -10px;
      display:inline-flex;
      height:600px;
      position: relative;
    }
    
}

.about h2 {
  font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  font-style: normal;
	font-variant: normal;
  position: absolute;
  color: #ff6756;
  font-size: 50px;
  line-height: 30px;
  top: 25%;
  left: 48%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1024px) {
    .about h2 {
      font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
      font-style: normal;
    	font-variant: normal;
      position: absolute;
      color: #ff6756;
      font-size: 35px;
      line-height: 30px;
      top: 0%;
      left: 48%;
      margin-right: -50%;
      transform: translate(-50%, -50%);
    }
}



.about p {
  font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  max-width: 900px;
  font-size: 20px;
  color: #484848;
  position: absolute;
  top: 70%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
      -webkit-font-smoothing: antialiased;
  
}

@media only screen and (max-width: 1024px) {
    .about p {
      font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
      max-width: 680px;
      font-size: 17px;
      color: #484848;
      position: absolute;
      top: 32%;
      left: 50%;
      margin-right: -50%;
      transform: translate(-50%, -50%);
          -webkit-font-smoothing: antialiased;
    }
}

.aboutImg {
  position: absolute;
  width: 200px;
  height: auto;
  margin-left: 225px;
  top: 26%;
  left: 48%;
  margin-right: -50%;
  transform: translate(-50%, -50%);

}

@media only screen and (max-width: 1024px) {
    .aboutImg {
      position: absolute;
      width: 150px;
      height: auto;
      margin-left: 225px;
      top: 1%;
      left: 42%;
      margin-right: -50%;
      transform: translate(-50%, -50%);
    }
}

.quality {
  display:inline-flex;
  height:550px;
  position: relative;
}

@media only screen and (max-width: 1024px) {
    .quality {
      display:inline-flex;
      margin-top: -140px;
      height:480px;
      position: relative;
    }
}

.quality h3 {
  font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  font-style: normal;
  font-variant: normal;
  position: absolute;
  color: #ff6756;
  font-size: 50px;
  line-height: 30px;
  top: 20%;
  left: 47%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1024px) {
    .quality h3 {
      font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
      font-style: normal;
    	font-variant: normal;
      position: absolute;
      color: #ff6756;
      font-size: 35px;
      line-height: 30px;
      top: 0%;
      left: 47%;
      margin-right: -50%;
      transform: translate(-50%, -50%);
    }
    
}

.quality p {
  font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  max-width: 900px;
  font-size: 20px;
  font-weight: normal;
  color: #484848;
  position: absolute;
  margin-top: 80px;
  top: 40%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
      -webkit-font-smoothing: antialiased;
}

@media only screen and (max-width: 1024px) {
    .quality p {
      font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
      max-width: 680px;
      font-size: 17px;
      font-weight: normal;
      color: #484848;
      position: absolute;
      top: 15%;
      left: 50%;
      margin-right: -50%;
      transform: translate(-50%, -50%);
          -webkit-font-smoothing: antialiased;
    }
}

.qualityImg {
  margin-left: 415px;
  width: 200px;
  height: auto;
  position: absolute;
  top: 20%;
  left: 47%;
  margin-right: -50%;
  transform: translate(-50%, -50%);

}

@media only screen and (max-width: 1024px) {
     .qualityImg {
      margin-left: 415px;
      width: 150px;
      height: auto;
      position: absolute;
      top: 0%;
      left: 35%;
      margin-right: -50%;
      transform: translate(-50%, -50%);
    }   
}

.quality button {
  color: white;
  font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  background-color: #478bf7 !important;
  display:inline-block !important;
  white-space: nowrap !important;
  border: none;
  font-weight: 550;
  border-radius: 20px;
  padding: 13px 23px;
  position: absolute;
  top: 85%!important;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (max-width: 1024px) {
    .quality button {
      color: white;
      font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
      background-color: #478bf7 !important;
      display:inline-block !important;
      white-space: nowrap !important;
      border: none;
      font-weight: 550;
      border-radius: 20px;
      padding: 13px 23px;
      position: absolute;
      top: 75%!important;
      left: 50%;
      margin-right: -50%;
      transform: translate(-50%, -50%);
      font-size: 15px;
      -webkit-font-smoothing: antialiased;
    }
}

.quality button:hover {
  /*transform: translate(-50%, -55%);*/
  background-color: #679ff7 !important;
}

.quality button:active {
  transform: translate(-50%, -50%);
  background-color: #679ff7 !important;
}

.quality button:focus {
  outline: none;
}

.equipment {
  position: relative;
  height: 600px;
  min-width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("pictures/building-min.JPG");
  background-attachment: fixed;
  background-size: cover;
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,.4);
}

@media only screen and (max-width: 1024px) {
    .equipment {
      position: relative;
      max-height: 550px;
      height: 70%;
      background-image: url("pictures/building-min.JPG");
      background-position: center;
      background-attachment: scroll;
      box-shadow: inset 0 0 0 1000px rgba(0,0,0,.4);
      background-size: 100%;
      min-width:100%;
    }
}

.equipment h4{
  position: absolute;
  display:inline-flex;
  font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  font-style: normal;
  font-size: 45px;
  line-height: 30px;
  font-variant: normal;
  color: white;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1024px) {
    .equipment h4{
      position: absolute;
      display:inline-flex;
      font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
      font-style: normal;
      font-size: 35px;
      line-height: 30px;
      font-variant: normal;
      color: white;
      top: 50%;
      left: 50%;
      margin-right: -50%;
      transform: translate(-50%, -50%);
    }
}

.equipment button {
  color: white;
  font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  background-color: #478bf7;
  display:inline-block !important;
  white-space: nowrap !important;
  border: none;
  font-weight: 550;
  border-radius: 20px;
  padding: 13px 23px;
  position: absolute;
  top: 10rem !important;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (max-width: 1024px) {
    .equipment button {
      display: inline-block !important;
      white-space: nowrap !important;
      color: white;
      font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
      background-color: #478bf7;
      border: none;
      font-weight: 550;
      border-radius: 20px;
      padding: 13px 23px;
      font-size: 15px;
      top: 50%;
      left: 50%;
      margin-right: -50%;
      transform: translate(-50%, -50%);
      -webkit-font-smoothing: antialiased;
    }
}

.equipment button:hover {
  /*transform: translate(-50%, -55%);*/
  background-color: #679ff7;
}

.equipment button:active {
  transform: translate(-50%, -50%);
  background-color: #679ff7;
}

.equipment button:focus {
  outline: none;
}

#map {
  height: 600px;
  width: 100%;
 }

.contact {
  display:flex;
  align-items: center;
  position: relative;
  justify-content: space-evenly;
  height: 300px;
}


.phone {
  display:inline-block;
  text-align: center;
  position: relative;
}

@media only screen and (max-width: 1024px) {
    .phone {
      display:inline-block;
      position: relative;
      text-align: center;
    }
}
    

.phonePicture {
  margin-bottom: 30px;
}

.phone p {
  display: block;
  text-align: center;
  font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
}

.phone h5 {
  display: block;
  text-align: center;
  color: #ff6756;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
}

.email {
  display:inline-block;
  text-align: center;
  position: relative;
}

@media only screen and (max-width: 1024px) {
    .email {
      display:inline-block;
      text-align: center;
    }
}
    

.emailPicture {
  margin-bottom: 30px;
}

.email h6 {
  display: block;
  text-align: center;
  color: #ff6756;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-size: 20px;
  font-weight: normal;
}

.email p {
  display: block;
  text-align: center;
  font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
}

.address {
  display:inline-block;
  text-align: center;
  position: relative;
}

@media only screen and (max-width: 1024px) {
    .address {
      display:inline-block;
      text-align: center;
    }
}

.addressPicture {
  margin-bottom: 30px;
}

.address h7 {
  display: block;
  text-align: center;
  font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  font-style: normal;
  line-height: 20px;
  font-size: 20px;
}

.address h8 {
  display: block;
  text-align: center;
  color: #ff6756;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-style: normal;
  font-size: 20px;
}

.address p {
  display: block;
  text-align: center;
  font-family: Gotham SSm A,Gotham SSm B,HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  font-style: normal;
  font-size: 20px;
  margin-top: -10px;
  line-height: 30px;
}

@keyframes fadeInOut {
  0% {
    position:absolute;
    left: 5rem;
    opacity: 0;
  }

  100% {
    opacity: 0%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  85% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}