body {
  background-color: white;
  --color-background : white
}
.sub-top-menu-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 780px;
  height: 80px;
  box-shadow: 0 4px 8px #08bfa330;
  margin-top: 140px;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .sub-top-menu-bar {
    margin-top: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 639px) {
  .sub-top-menu-bar {
    margin-top: 0px;
    display: none;
  }
}
.sub-top-menu-bar a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: black;
  background-color: var(--color-background);
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
@media screen and (max-width: 639px) {
  .sub-top-menu-bar a {
    font-size: clamp(0.5rem, 3vw, 20px);
  }
}
.sub-top-menu-bar a:first-of-type {
  border-left: 1px solid #dddddd;
  background-color: var(--color-green);
  color: var(--color-background);
  border-color: var(--color-green);
}
.sub-top-menu-bar a:hover {
  background-color: var(--color-green);
  color: var(--color-background);
  border-color: var(--color-green);
}

.section-wrapper {
  width: 100%;
  padding-block: 140px;
  border-bottom: 20px solid #f8f8f8;
}
@media screen and (max-width: 1023px) {
  .section-wrapper {
    padding-block: 50px;
    padding-inline: 1.5rem;
  }
}
@media screen and (max-width: 639px) {
  .section-wrapper {
    padding-block: 0 50px;
  }
}
.section-wrapper:last-of-type {
  border-bottom: none;
}
.section-body {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 1023px) {
  .section-body {
    flex-direction: column;
  }
}
.section-body .body-left {
  width: 100%;
  max-width: 360px;
}
@media screen and (max-width: 1023px) {
  .section-body .body-left {
    max-width: unset;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.emblem {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1;
  max-height: 260px;
  border: 10px solid #f8f8f8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 16px #08bfa330;
  animation: emblemAnimation 8s linear infinite;
}
@keyframes emblemAnimation {
  0% {
    box-shadow: 0 10px 32px #08bfa350;
  }
  25% {
    box-shadow: -10px 0 32px #08bfa350;
  }
  50% {
    box-shadow: 0 -10px 32px #08bfa350;
  }
  75% {
    box-shadow: 10px 5px 32px #08bfa350;
  }
  100% {
    box-shadow: 0 10px 32px #08bfa350;
  }
}
.emblem img {
  max-width: 100%;
  object-fit: contain;
}

.section-body .body-right {
  flex: 1 1 0;
  font-weight: 400;
}
.section-body .body-right h1 {
  font-size: 48px;
  line-height: 60px;
  color: black;
  margin-bottom: 80px;
  word-break: keep-all;
}
.section-body .body-right h2 {
  font-size: 36px;
  color: black;
  margin-bottom: 16px;
  word-break: keep-all;
}
.section-body .body-right h3 {
  font-size: 24px;
  color: black;
}
.section-body .body-right p {
  font-size: 20px;
  color: #666666;
  margin-bottom: 24px;
  word-break: keep-all;
}
@media screen and (max-width: 639px) {
  .section-body .body-right h1 {
    font-size: clamp(1rem, 7.5vw, 48px);
    line-height: normal;
    margin-bottom: 50px;
  }
  .section-body .body-right h2 {
    font-size: clamp(1rem, 5.6vw, 36px);
  }
  .section-body .body-right h3 {
    font-size: clamp(1rem, 3.75vw, 24px);
  }
  .section-body .body-right p {
    font-size: 1rem;
  }
}
.section-body .body-right b {
  font-weight: 500;
}
.section-body .body-right g {
  color: var(--color-green);
}
.section-body .button-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 639px) {
  .section-body .button-bar {
    flex-direction: column;
  }
  .section-body .button-bar .button {
    width: 100%;
  }
}