/* 
** The Header Media Queries **
** Tweak as per your needs **
*/
.brand {
  font-weight: bold;
  font-size: xx-large;
}

.site-header {
  position: relative;
  background-color: #fcb87c;
}

.site-header__wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 600px) {
  .site-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 600px) {
  .nav__wrapper {
    display: flex;
  }
}
@media (max-width: 600px) {
  .nav__wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: -1;
    background-color: #fcb87c;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  .nav__wrapper.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

.nav__item a {
  display: block;
  padding: 1.5rem 1rem;
}

.nav__toggle {
  display: none;
}
@media (max-width: 600px) {
  .nav__toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }
}

.guide_point {
  text-decoration: none;
  font-size: xx-small;
  color: #696b7a;
  margin-right: 5px;
}

a:focus {
  opacity: 0.8;
  background-color: #ef6351;
  color: black;
}

.title {
  color: #333;
  padding-top: 0.5rem;
  font-weight: 500;
}

a {
  text-decoration: none;
  font-size: large;
  font-weight: 500;
  color: #2F4F4F;
}

.container {
  padding: 2px 16px;
}

.item {
  flex: 1 1 150px;
  margin: 5px;
}

.parent {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 560px;
}

.parent:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.child {
  display: inline-block;
}

ul, li {
  list-style: none;
  display: inline;
}

footer {
  background-color: #fff1df;
  padding-left: 5rem;
  min-height: 5rem;
  color: #696969;
}

.button {
  background-color: #d9ebd6; /* Green */
  border: none;
  color: #244521;
  width: 100%;
  height: 40px;
  margin-bottom: 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: large;
  cursor: pointer;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: auto;
  text-align: center;
  font-family: arial;
  font-size: large;
  color: #666;
  max-height: 10rem;
  flex: 0 1 520px;
  margin: 10px;
  padding-top: 1%;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}