@charset "utf-8";



/******************************/
/********** Headline **********/
/******************************/

h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
h2 span {
  font-size: 1.4rem;
  width: 100%;
  text-align: right;
  border-top: 1px solid #205EA9;
}
h3 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
h3 span {
  font-size: 1.3rem;
  width: 100%;
  text-align: right;
  border-top: 1px solid #FFFFFF;
}
h3 span:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f00c";
  font-size: 1.1rem;
  font-weight: 800;
  display: inline-block;
  margin: auto 5px;
}



/*******************************/
/********** Inner Nav **********/
/*******************************/

.inner-nav {
  clear: both;
  margin: 20px 0;
  padding: 0;
}
.inner-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4.5px;
  width: 100%;
}
.inner-nav ul li {
  margin: 0!important;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 140%;
  background-color: #C5D2E2;
  color: #205EA9;
  width: 100%;
}
.inner-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 140%;
  width: 100%;
  height: 100%;
  text-decoration: none;
  margin: 0;
  padding: 8px 4px;
  background-color: #C5D2E2;
  color: #205EA9;
}
.inner-nav ul li a:hover {
  text-decoration: none;
  background-color: #205EA9;
  color: #FFFFFF;
}
@media screen and ( max-width: 768px ) {
  .inner-nav ul {
    flex-wrap: wrap;
  }
  .inner-nav ul li {
    width: calc(100% / 3 - 3px);
  }
}