
/* --------------------------   box h1   ----------------------------- */

.box-h1 {
  position: relative;
}

.box-h1 .color-h1 {
  color: rgba(0, 0, 0, 0);
  font-size: 1.5rem;
  text-align: center;
  position: relative;
  font-weight: 400;
  padding: 0 20px;
}

.box-h1 h1 > span,
.box-h1 .color-h1 > span {
  display: inline-block;
  height: 5px;
}

.box-h1 .color-h1 > span {
  vertical-align: text-bottom;
}

.box-h1 h1 {
  font-size: 1.5rem;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  font-weight: 400;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .box-h1 .color-h1,
  .box-h1 h1 {
    /* font-size: 1.2rem; */
    font-size: 1.25rem;
  }
}

/* --------------------------   module search   ----------------------------- */

.box-search {
  border: 1px solid #999;
  border-radius: 40px;
  width: 500px;
  max-width: 100%;
  box-shadow: 0 1px 2px 0 rgba(174, 184, 193, 0.67), 0 11px 22px 0 rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  background-color: #fff;
}

/* .box-search > div:not(:last-child) {
  border-left: 1px solid #999;
} */

.box-search input,
.box-search select {
  box-shadow: none !important;
  border: none !important;
}

.box-search ul.quarter-search-results {
  position: absolute;
  width: 75%;
}

.box-search input#search-quarter-input.blinking-background {
  animation-name: blinking-background;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes blinking-background {
  0% {
    background-color: transparent;
  }
  20% {
    background-color: #ffd569;
  }
  40% {
    background-color: transparent;
  }
}

/* --------------------------   module items   ----------------------------- */

.each-item .box-image img {
  transition: 0.3s;
}

.each-item .card:hover .box-image img {
  scale: 1.1;
}

/* --------------------------   module guide   ----------------------------- */

.module-guide {
  background-color: #F7F7F7;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.each-guide .box-image {
  position: relative;
  padding: 3rem;
  background-color: #eee;
  background-color: #fff;
  display: inline-block;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}

.each-guide .box-image img {
  width: 100px;
}

.each-guide .guide-number {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}



/* --------------------------   module goal   ----------------------------- */


