* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.navigation {
  position: relative;
  background-color: rgb(16, 21, 63);
  height: 15%;
  width: 100%;
  z-index: 5;
}

#logo {
  margin-top: 1em;
  margin-left: 2em;
  width: 20vh;
  height: 10vh;
}

.navLinks {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
  margin-left: 18em;
  margin-top: -1em;
  width: 70vw;
}

/*for hidden Navigation*/
#navcontent {
  display: none;
}
.links {
  color: white;
  text-decoration: none;
  font-size: 20px;
  list-style: none;
  cursor: pointer;
  transition: all 0.5s ease;
}

.links:hover {
  color: gold;
}

.overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.imageContainer {
  position: relative;
  background-image: url(houseimage.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  animation: scale 15s;
}

@keyframes scale {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.heroText {
  display: flex;
  color: white;
  font-size: 30px;
  justify-content: center;
  align-items: left;
  flex-direction: column;
  position: absolute;
  margin-left: 2em;
  margin-top: 10em;
  z-index: 5;
}

.zipCode {
  height: 25px;
  padding: 10px;
}

#button {
  height: 30px;
  width: 60px;
  font-size: 12px;
  background-color: white;
  border-radius: 10px;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

.content2 {
  display: flex;
  position: relative;
  background-color: rgb(9, 10, 24);
  height: 100%;
  width: 100%;
}

#bar {
  display: static;
  position: absolute;
  margin-top: -3.6em;
  height: 10px;
  width: 100%;
  background-color: white;
}

#missionStatement {
  display: flex;
  position: absolute;
  z-index: 5;
  color: gold;
  width: 700px;
  font-size: 50px;
  margin-left: 0em;
  margin-top: -3.5em;
}

.contentText {
  display: flex;
  position: absolute;
  z-index: 5;
  color: gold;
  width: 700px;
  font-size: 30px;
  margin-left: 2em;
  margin-top: 13em;
}

.slide {
  transform: translateX(-200%);
  transition: transform 1s ease;
}

.appear {
  transform: translateX(0%);
}
#contentImage {
  position: relative;
  height: 50%;
  width: 40%;
  margin-top: 13em;
  margin-left: 52em;
  border-radius: 10px;
  z-index: 1;
}

/*BOTTOM FOOTER BLOCKS*/
.footer {
  display: flex;
  position: relative;
  height: 5vh;
  width: 100%;
  overflow: hidden;
}

.footerBlock {
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  height: 100%;
}

#block1 {
  background-color: gold;
}

#block2 {
  background-color: rgb(219, 44, 132);
}

#block3 {
  background-color: rgb(56, 41, 83);
}

#block4 {
  background-color: rgb(86, 143, 140);
}

/*-------------MEDIA QUERIES-------------*/

@media screen and (max-width: 600px) {
  /*---------HIDDEN NAVIGATION----*/

  .hamburger {
    display: flex;
    position: absolute;
    flex-direction: column;
    cursor: pointer;
    width: 50px;
    margin-top: 20px;
    margin-left: 85vw;
    padding-top: 10px;
    z-index: 20;
  }

  .line {
    display: flex;
    width: 35px;
    height: 6px;
    background-color: white;
    margin: 5px;
    border-radius: 10px;
    z-index: 5;
    transition: all 0.5s ease;
  }

  #navBackground {
    position: fixed;
    display: flex;
    align-content: center;
    justify-content: center;
    color: white;
    font-family: sans-serif;
    font-size: 20px;
    background-color: rgb(16, 21, 63);
    width: 600px;
    height: 100%;

    z-index: 10;
    transition: all 1s ease;
  }

  .navClose {
    position: fixed;
    display: flex;
    align-content: center;
    justify-content: center;
    color: white;
    font-family: sans-serif;
    font-size: 20px;
    background-color: rgb(16, 21, 63);
    width: 600px;
    height: 100%;
    margin-left: 50em;
    z-index: 10;
    
  }

  #navcontent {
    display: flex;
    height: 50%;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-top: 10em;
     margin-right: 10em;
    flex-direction: column;
    justify-content: space-between;
    list-style: none;
    cursor: pointer;
  }

  /*---------HIDDEN NAVIGATION END----*/

  .navLinks {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    margin-left: 15em;
    margin-top: -1em;
    width: 70vw;
  }

  .heroText {
    display: flex;
    color: white;
    font-size: 40px;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    position: absolute;
    margin-left: 1em;
    margin-top: 2em;
    z-index: 3;
  }

  .zipCode {
    margin-left: 1em;
    height: 25px;
    padding: 10px;
  }

  #button {
    height: 30px;
    width: 60px;
    font-size: 12px;
    background-color: white;
    border-radius: 10px;
    border: none;
    box-shadow: none;
    cursor: pointer;
  }

  #bar {
    display: static;
    position: absolute;
    margin-top: -3.6em;
    height: 10px;
    width: 80%;
    background-color: white;
  }

  .contentText {
    display: flex;
    position: absolute;
    z-index: 5;
    color: gold;
    width: 300px;
    font-size: 25px;
    margin-left: 2em;
    margin-top: 10em;
  }

  #contentImage {
    display: none;
    position: relative;
    height: 50%;
    width: 40%;
    margin-top: 13em;
    margin-left: 52em;
    border-radius: 10px;
    z-index: 1;
  }
}

/*-------------MEDIA QUERIES END-------------*/
