.hero-localguide {
  background-image: url("../img/localguide-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

  position: relative;
  margin-bottom: 0;
  padding: 60px;
  isolation: isolate;
}

.hero-localguide::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #120b32;
  opacity: 0.5;
}

.hero-localguide>h2 {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

@keyframes pushUp {
  from {
    transform: translateY(80px);
    /* Initial position pushed down */
  }

  to {
    transform: translateY(0);
    /* Final position at normal height */
  }
}

.hero-localguide>h1 {
  color: #fff;
  font-family: "KorolevBold", Sans-serif;
  font-size: 55px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.76);
  text-align: center;
  animation: pushUp 1.5s ease-out;
}

.localguide-wrapper {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin-block: 3rem;
}

.localguide-title {
  display: flex;
  flex-direction: column;
  align-items: space-between;
  width: 100%;
  gap: 1rem;
}

.title-top>*:nth-child(1) {
  flex: 1 1 40%;
  min-width: 8ch;
  padding: 5px;
}

.title-top>*:nth-child(2) {
  flex: 1 1 60%;
  line-height: 1.3em;
}

.title-top {
  display: flex;
}

.title-top>h2 {
  color: #1b325f;
  font-family: "KorolevBold", Sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.divider {
  display: flex;
  align-items: center;
  position: relative;
  gap: 1rem;
}

.line {
  width: 100%;
  position: relative;
  margin-right: 5px;
  border-bottom: 1px #1b325f solid;
}

.star {
  width: 1em;
  height: 1em;
  font-weight: 900;
  font-size: 20px;
  text-align: center;
  line-height: 1;
  color: #1b325f;
}

.localguide-text {
  color: #1b325f;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
}

#title-text {
  margin-inline: 0.5rem;
  margin-bottom: 2rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 90%;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.accordion-item {
  border: 1px solid #ddd;
  overflow: hidden;
  margin-block: 0;
}

.accordion-header {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  align-items: center;
  background: rgb(232, 234, 239);
  color: #120b32;
  padding: 10px;
  cursor: pointer;
  border: #120b32 solid 1px;

  font-family: "KorolevBold", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.accordion-header.active {
  color: #7b1222;
}

.accordion-header>i {
  line-height: 1;
  padding-right: 1rem;
}

.accordion-content {
  padding: 10px;
  padding-top: 1rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.accordion-content > img {
  margin-top: 2rem;
}

.accordion-content>p {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #1b325f;
}

.accordion-content>ul {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #1b325f;
  list-style: disc;
  margin: 0 0 1.5em 3em;
}

.accordion-content a {
  color: #b53253;
  box-shadow: none;
  text-decoration: none;
}

.accordion-content a:hover {
  color: #0693e3;
}

.ml1 {
  margin-left: 1em;
}

@media (width <=768px) {
  .title-top {
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .accordion-content {
    padding-left: 3.5rem;
  }
}
