
.intro {
  padding: 20px;
  font-size: 18px;

}
.intro h2{
  text-decoration: underline solid var(--yellow) 3rem;
  text-underline-offset:-2rem;
  display: inline-block;
  width: 100%;
}
.ranger-section {
  max-width: 1200px;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  align-items:stretch;
}
.ranger-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 320px;
  text-align: center;
  border:1rem var(--lightgray) solid;
}
.ranger-card img {
  width: 160px;
  height: 200px;
}
.ranger-card h3 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--darkBlue);
  margin: 10px 0;
}
.ranger-card h3 span {
  font-size: 1.6rem;
  display: block;
  font-weight: 900;
  color: var(--metroGreen);
}
.ranger-card p {
  font-size: 16px;
}
.game-section {
  padding: 20px;
  margin-top: 20px;
  background-color: #e0f7fa;
}
.game-section img.full{
  text-align: center;
  margin: 2rem auto;
}
.game-section a {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: var(--miBlue);
  background-color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  position: relative;
  border:2px solid var(--miBlue);
  background-color: #fff;

}
.game-section a:hover {
  background-color: var(--yellow);
}
.game-section a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: var(--miBlue) transparent transparent;
  translate: -50% 100%;
}
.game-section a::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15.5px 7.8px 0 7.8px;
  border-color: #fff transparent transparent;
  translate: -50% 100%;
}
.game-section a::after:hover{
  border-color: var(--yellow) transparent transparent;
}

.game-section p strong{
  font-size: 3rem;
  color: var(--miBlue);
}

.kids_page_wrap{
  background-color:rgba(149,202,234,0.6);/* var(--lightblue) */;
  background-image: url("../img/bg_kids_main.png");
  background-size:50% auto;
  background-repeat: repeat-x;
}

.kids_page{
  width: 100%;
  background-image: url("../img/bg_kids.png");
  background-size: 100% auto;
  background-repeat: repeat-x;
  background-position:bottom;
  margin-bottom: -6rem;
  padding-bottom: 8rem;
}

.speechBubble {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  padding: 1.4rem;
  border: 2px solid var(--miBlue);
  border-radius: 10px;
  background-color: var(--lightgray);
  text-align: left;
  line-height: 1.5;
  color: var(--miBlue);
  font-size: 2.4rem;
  font-weight: bold;
}

.speechBubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: var(--miBlue) transparent transparent;
  translate: -50% 100%;
}

.speechBubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15.5px 7.8px 0 7.8px;
  border-color: var(--lightgray) transparent transparent;
  translate: -50% 100%;
}
.mb0pb0{
  margin-bottom: 0!important;
  padding-bottom: 0!important;
}

@media (max-width: 768px) {
  .kids_page{
  background-size: 500% auto;
  padding-bottom: 0;
}

}

