* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 10px;
  font-family: Helvetica, sans-serif;
}

a {
  text-decoration: none;
  color: blue;
}

li {
  font-size: 1.6em;
  list-style-type: decimal;
}

::-webkit-scrollbar {
  background: #444;
  width: 1em;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3em;
}

.nav_btn {
  position: fixed;
  box-shadow: 0 1em 1em rgba(0, 0, 0, 0.5);
  background: #fff;
  width: 4em;
  height: 4em;
  border-radius: 4em;
  color: #000;
  z-index: 1500;
  border: solid 1px #fff;
  cursor: pointer;
  outline: none;
  top: 3em;
  left: 90%;
  transition: 0.4s;
}

.nav_btn:hover {
  top: 3.5em;
  box-shadow: 0 .5em .5em rgba(0, 0, 0, 0.5);
}

.header {
  animation-name: scale_nav;
  animation-duration: .6s;
  animation-timing-function: cubic-bezier(0.1, 0.7, 1.0, 0.1);
  transform: scale(1.1, 1.1);
  position: fixed;
  background: rgba(52, 73, 94, 1);
  padding: 5.5em;
  display: none;
  z-index: 1000;
  height: 100%;
  width: 100%;
}

.logo_title {
  position: relative;
  left: 5em;
  font-size: 2em;
  color: #fff;
  font-style: italic;
}

.header_nav {
  text-align: center;
}

.link {
  margin: 1.9em auto;
  font-size: 1.4em;
  color: #fff;
  padding: 2em 3em;
  border-bottom: solid 1px rgba(230, 126, 34, 1);
  clip-path: polygon(0 0, 0 90%, 100% 100%, 100% 10%);

  transition: .4s;
  display: block;
  width: 20%;
}

.link:hover {
  background: rgba(255, 255, 255, 1);
  color: rgba(230, 126, 34,1.0);
  border-bottom: solid 1px #fff;
}

.locations_header {
  text-align: center;
}

.locations_header h1 {
  font-size: 3em;
  font-style: italic;
  font-weight: lighter;
}

.locations_body_header h2 {
  font-size: 3em;
  width: 30%;
  font-weight: lighter;
  position: relative;
  left: 5em;
}

.states {
  width: 20%;
  display: inline-block;
  border: solid 1px #000;
  padding: 8em;
  list-style-type: armenian;
  margin: auto 6em;
  position: relative;
  top: -8em;
}

.map {
  background: url("assets/map.jpg");
  background-size: cover;
  background-position: center;
  border: solid 1px #000;
  width: 70%;
  height: 70vh;
  display: inline-block;
}

.footer {
  background: #333;
  color: #fff;
  padding: 3em;
  line-height: 2em;
  font-size: 1.4em;
  margin-top: 4em;
}

.footer h2 {
  border-bottom: solid 1px #fff;
  width: 25%;
  font-weight: lighter;
}

@keyframes scale_nav {
  0% {
    width: 0;
    height: 0;
  }

  100% {
    width: 100%;
    height: 100%;
  }
}
