@layer reset, base, page, custom;
:root {
  --l-H-hero: 680px;
  --l-header: 80px;
  --l-header-: -80px;
  --l-header--mobile: 56px;
  --l-header--mobile-: -56px;
  --l-services-logo: 44px;
  --l-btnH: 36px;
  --l-h-sec-footer: 150px;
  --c-text: #3F3F3F;
  --c-heading: #1e1e1e;
  --c-nav: #494949;
  --c-brand-text: #848492;
  --c-primary: #2D925B;
  --c-secondary: #1e3659;
  --c-hightlight: #ec4e00;
  --c-primary-start: #f0da98;
  --c-primary-stop: #cfab3b;
  --c-secondary-start: #ffdc23;
  --c-secondary-stop: #ffe972;
  --f-services-title: 18px;
  --f-services-title-lh: 20px;
  --f-services-title--ch: 13px;
  --f-services-title--ch-lh: 16px;
  --z-nav: 10;
  --z-hero: 8;
  --z-main: 9;
  --c-sdg1: #c74140;
  --c-sdg2: #cfa94d;
  --c-sdg3: #6b9e47;
  --c-sdg4: #aa3433;
  --c-sdg5: #df5330;
  --c-sdg6: #71b8e0;
  --c-sdg7: #edc843;
  --c-sdg8: #8d2c44;
  --c-sdg9: #df7538;
  --c-sdg10: #bf3767;
  --c-sdg11: #e6a441;
  --c-sdg12: #b28f40;
  --c-sdg13: #567c4b;
  --c-sdg14: #5794d5;
  --c-sdg15: #7fbc45;
  --c-sdg16: #3d669a;
  --c-sdg17: #2f4768;
  --c-zdg1: #a47903;
  --c-zdg2: #be9115;
  --c-zdg3: #d7aa2d;
}

:root {
  --l-inner: 1024px;
}

@keyframes slide-f-right {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-left {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-top {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes reveal-up-20 {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@scope (.landing-page) {
  :scope {
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - var(--l-header));
    background: url(../images/content-bg.avif) no-repeat center/cover;
  }
  .container {
    padding: 0;
    display: grid;
    grid-template-columns: 220px 1fr;
    z-index: var(--z-main);
  }
  @media only screen and (max-width: 860px) {
    .container {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
    }
  }
  .container-left {
    grid-column: 1/span 1;
  }
  @media only screen and (max-width: 860px) {
    .container-left {
      grid-column: 1/span 1;
    }
  }
  .container-right {
    grid-column: 2/span 1;
    margin: 20px 10px 0 50px;
  }
  @media only screen and (max-width: 860px) {
    .container-right {
      grid-column: 1/span 1;
      margin: 10px;
    }
  }
  .header {
    position: relative;
    margin-top: calc(44px + var(--l-header) - var(--l-H-hero));
    z-index: var(--z-main);
    pointer-events: none;
  }
  @media only screen and (max-width: 860px) {
    .header {
      margin-top: 0;
    }
  }
  .header .container-right {
    background: #fff;
    pointer-events: auto;
  }
  @media only screen and (max-width: 860px) {
    .header .container-right {
      margin-bottom: 0;
    }
  }
  .header:has(.image-block) + .content .content-aside {
    padding-top: 20px;
  }
  .content {
    flex: 1 0 auto;
    position: relative;
    height: 100%;
  }
  @media only screen and (max-width: 860px) {
    .content .container {
      grid-template-columns: 1fr;
      grid-template-rows: 1fr auto;
    }
    .content .container-right {
      grid-row: 1/span 1;
    }
    .content .container-left {
      grid-row: 2/span 1;
    }
    .content .container-left .title,
    .content .container-left .menu {
      display: none;
    }
  }
  .content .content-aside {
    padding-top: calc(var(--l-H-hero) - var(--l-header) - 200px + 120px);
    position: relative;
    z-index: 99;
    height: 100%;
  }
  @media only screen and (max-width: 860px) {
    .content .content-aside {
      padding-top: 30px;
    }
  }
  @supports (animation-timeline: view(block)) {
    .content .content-aside {
      opacity: 0;
      animation: slide-f-top ease forwards;
      animation-timeline: view(block);
      animation-range: exit 19% contain 60%;
    }
  }
  .content .content-aside_inner {
    pointer-events: auto;
    position: sticky;
    padding: 0 0 0 10px;
    top: calc(var(--l-header) + 20px);
  }
  .content .content-aside_inner:before {
    content: "";
    position: absolute;
    inset: -30px 0 10px -40px;
    background: rgba(255, 255, 255, 0.8);
    filter: blur(40px);
    transform: scale(1.2);
    z-index: 1;
    pointer-events: none;
  }
  .content .content-aside .title {
    z-index: 3;
    position: relative;
  }
  .content .content-aside .nav {
    margin-block-start: 20px;
    padding-left: 0px;
    list-style: none;
    position: relative;
    z-index: 3;
  }
  .content .content-aside .nav-item.current a {
    padding-inline-start: 5px;
  }
  .content .content-aside .nav-item.current a:before {
    content: "";
    position: absolute;
    inset: 8px auto 8px 0;
    width: 2px;
    background: #2D925B;
  }
  .content .content-aside .nav-item.current a:hover:after {
    display: none;
  }
  .content .content-aside .nav-item__url {
    display: inline-block;
    padding: 8px 0;
    color: #1e3659;
    transition: 0.3s;
    border-radius: 3px;
    position: relative;
  }
  .content .content-aside .nav-item__url:after {
    content: "";
    position: absolute;
    inset: auto 100% 2px 0;
    height: 2px;
    background: #1e3659;
    opacity: 0;
    transition: 0.3s;
  }
  .content .content-aside .nav-item__url:hover:after {
    inset: auto 0 2px 0;
    opacity: 1;
  }
  .content:before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 300px;
    background: url(../images/page-bg-r.webp) repeat-y center/100% auto;
    mask: linear-gradient(to bottom, black 0, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
  }
  .content-body {
    padding: 20px;
    height: 100%;
  }
}
.aside-hot {
  position: relative;
  z-index: 3;
  counter-reset: hot;
}
.aside-hot .heading-left {
  color: #2D925B;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}
.aside-hot .heading-left:after {
  content: "";
  width: 60px;
  height: 1px;
  background: #2D925B;
  margin-inline-start: 6px;
}
.aside-hot .item {
  counter-increment: hot;
  padding-block: 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}
@media only screen and (max-width: 860px) {
  .aside-hot .item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
  }
}
.aside-hot .item:before {
  content: counter(hot);
  color: #2D925B;
  font-size: 2.5rem;
  display: block;
  font-weight: 100;
}
@media only screen and (max-width: 860px) {
  .aside-hot .item:before {
    grid-column: 1/span 1;
    grid-row: 1/span 2;
    padding: 0 20px;
  }
}
.aside-hot .item .url {
  display: block;
  color: #1e3659;
  font-size: 1rem;
  line-height: 180%;
}
@media only screen and (max-width: 860px) {
  .aside-hot .item .url {
    grid-column: 2/span 1;
    grid-row: 1/span 1;
  }
}
.aside-hot .item .url:hover {
  color: #333;
}
.aside-hot .item .date {
  font-size: 0.875rem;
  color: #1e3659;
  margin-block-end: 6px;
  opacity: 0.6;
}
@media only screen and (max-width: 860px) {
  .aside-hot .item .date {
    grid-column: 2/span 1;
    grid-row: 2/span 1;
  }
}

.landing-page {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--l-header));
  background: url(../images/content-bg.avif) no-repeat center/cover;
}
.landing-page .container {
  padding: 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  z-index: var(--z-main);
}
@media only screen and (max-width: 860px) {
  .landing-page .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
.landing-page .container-left {
  grid-column: 1/span 1;
}
.landing-page .container-right {
  grid-column: 2/span 1;
  margin: 20px 10px 0 50px;
}
@media only screen and (max-width: 860px) {
  .landing-page .container-right {
    grid-column: 1/span 1;
    margin: 10px;
  }
}
.landing-page .header {
  position: relative;
  margin-top: calc(44px + var(--l-header) - var(--l-H-hero));
  z-index: var(--z-main);
  pointer-events: none;
}
@media only screen and (max-width: 860px) {
  .landing-page .header {
    margin-top: 0;
  }
}
.landing-page .header .container-right {
  background: #fff;
  pointer-events: auto;
}
@media only screen and (max-width: 860px) {
  .landing-page .header .container-right {
    margin-bottom: 0;
  }
}
.landing-page .header:has(.image-block) + .content .content-aside {
  padding-top: 20px;
}
.landing-page .content {
  flex: 1 0 auto;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 860px) {
  .landing-page .content .container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }
  .landing-page .content .container-right {
    grid-row: 1/span 1;
  }
  .landing-page .content .container-left {
    grid-row: 2/span 1;
  }
  .landing-page .content .container-left .title,
  .landing-page .content .container-left .menu {
    display: none;
  }
}
.landing-page .content .content-aside {
  padding-top: calc(var(--l-H-hero) - var(--l-header) - 200px + 120px);
  position: relative;
  z-index: 99;
  height: 100%;
}
@media only screen and (max-width: 860px) {
  .landing-page .content .content-aside {
    padding-top: 30px;
  }
}
@supports (animation-timeline: view(block)) {
  .landing-page .content .content-aside {
    opacity: 0;
    animation: slide-f-top ease forwards;
    animation-timeline: view(block);
    animation-range: exit 19% contain 60%;
  }
}
.landing-page .content .content-aside_inner {
  pointer-events: auto;
  position: sticky;
  padding: 0 0 0 10px;
  top: calc(var(--l-header) + 20px);
}
.landing-page .content .content-aside_inner:before {
  content: "";
  position: absolute;
  inset: -30px 0 10px -40px;
  background: rgba(255, 255, 255, 0.8);
  filter: blur(40px);
  transform: scale(1.2);
  z-index: 1;
  pointer-events: none;
}
.landing-page .content .content-aside .title {
  z-index: 3;
  position: relative;
}
.landing-page .content .content-aside .nav {
  margin-block-start: 20px;
  padding-left: 0;
  list-style: none;
  position: relative;
  z-index: 3;
}
.landing-page .content .content-aside .nav-item.current a {
  padding-inline-start: 5px;
}
.landing-page .content .content-aside .nav-item.current a:before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 0;
  width: 2px;
  background: #2D925B;
}
.landing-page .content .content-aside .nav-item.current a:hover:after {
  display: none;
}
.landing-page .content .content-aside .nav-item__url {
  display: inline-block;
  padding: 8px 0;
  color: #1e3659;
  transition: 0.3s;
  border-radius: 3px;
  position: relative;
}
.landing-page .content .content-aside .nav-item__url:after {
  content: "";
  position: absolute;
  inset: auto 100% 2px 0;
  height: 2px;
  background: #1e3659;
  opacity: 0;
  transition: 0.3s;
}
.landing-page .content .content-aside .nav-item__url:hover:after {
  inset: auto 0 2px 0;
  opacity: 1;
}
.landing-page .content:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 300px;
  background: url(../images/page-bg-r.webp) repeat-y center/100% auto;
  mask: linear-gradient(to bottom, black 0, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.landing-page .content-body {
  padding: 20px;
  height: 100%;
}

.aside-hot {
  position: relative;
  z-index: 3;
  counter-reset: hot;
}
.aside-hot .heading-left {
  color: #2D925B;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}
.aside-hot .heading-left:after {
  content: "";
  width: 60px;
  height: 1px;
  background: #2D925B;
  margin-inline-start: 6px;
}
.aside-hot .item {
  counter-increment: hot;
  padding-block: 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}
@media only screen and (max-width: 860px) {
  .aside-hot .item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
  }
}
.aside-hot .item:before {
  content: counter(hot);
  color: #2D925B;
  font-size: 2.5rem;
  font-weight: 100;
  display: block;
}
@media only screen and (max-width: 860px) {
  .aside-hot .item:before {
    grid-column: 1/span 1;
    grid-row: 1/span 2;
    padding: 0 20px;
  }
}
.aside-hot .item .url {
  display: block;
  color: #1e3659;
  font-size: 1rem;
  line-height: 180%;
}
@media only screen and (max-width: 860px) {
  .aside-hot .item .url {
    grid-column: 2/span 1;
    grid-row: 1/span 1;
  }
}
.aside-hot .item .url:hover {
  color: #333;
}
.aside-hot .item .date {
  font-size: 0.875rem;
  color: #1e3659;
  opacity: 0.6;
  margin-block-end: 6px;
}
@media only screen and (max-width: 860px) {
  .aside-hot .item .date {
    grid-column: 2/span 1;
    grid-row: 2/span 1;
  }
}

@scope (.landing-page .breadcrumbs) {
  :scope {
    padding: 20px 20px 5px;
  }
  @media only screen and (max-width: 678px) {
    :scope {
      display: none;
    }
  }
  .breadcrumb {
    display: flex;
    list-style: none;
  }
  .breadcrumb-item {
    padding-inline-start: 5px;
    font-size: 0.875rem;
    color: rgba(30, 54, 89, 0.7);
  }
  .breadcrumb-item:after {
    content: "/";
    padding-inline-start: 5px;
  }
  .breadcrumb-item .pathway {
    color: #2D925B;
  }
}
.landing-page .breadcrumbs {
  padding: 20px 20px 5px;
}
@media only screen and (max-width: 678px) {
  .landing-page .breadcrumbs {
    display: none;
  }
}
.landing-page .breadcrumbs .breadcrumb {
  display: flex;
  list-style: none;
}
.landing-page .breadcrumbs .breadcrumb-item {
  padding-inline-start: 5px;
  font-size: 0.875rem;
  color: rgba(30, 54, 89, 0.7);
}
.landing-page .breadcrumbs .breadcrumb-item:after {
  content: "/";
  padding-inline-start: 5px;
}
.landing-page .breadcrumbs .breadcrumb-item .pathway {
  color: #2D925B;
}

@scope (.landing-page .hero) {
  :scope {
    background-size: cover;
    z-index: var(--z-hero);
  }
  @media only screen and (max-width: 860px) {
    :scope {
      height: auto;
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      --z-hero: 99;
    }
  }
  :scope:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
  }
  .l-inner {
    position: relative;
    z-index: var(--z-hero);
    height: 100%;
    padding-block: 0;
  }
  .aside {
    grid-column: 1/span 1;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px 30px 60px 20px;
    padding-top: calc(var(--l-header) + 50px);
  }
  @media only screen and (max-width: 860px) {
    .aside {
      display: block;
      padding: 10px 20px;
      padding-top: calc(var(--l-header--mobile) + 5px);
    }
  }
  .aside > * {
    position: relative;
    z-index: 2;
  }
  .aside .title {
    font-size: 2rem;
    color: #fff;
    flex: 0 0 auto;
    letter-spacing: 0.1em;
    position: relative;
    padding: 0 0 20px 20px;
  }
  .aside .title:after {
    content: "";
    position: absolute;
    inset: 100% -30px 0 calc(calc((1024px - 100vw) / 2) - 20px);
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
  }
  .aside .title:before {
    content: "";
    position: absolute;
    inset: 8px auto 24px 0;
    width: 1px;
    background: #fff;
  }
  @media only screen and (max-width: 860px) {
    .aside .title {
      writing-mode: horizontal-tb;
      font-size: 1.25rem;
      margin-block-end: 3px;
      padding: 0;
    }
    .aside .title:before, .aside .title:after {
      display: none;
    }
    @supports (animation-timeline: view(block)) {
      .aside .title {
        animation: titlefontshrink ease forwards;
        animation-timeline: scroll();
        animation-range: entry 0% entry 20%;
      }
    }
  }
  .aside .menu {
    flex: 1 1 auto;
    text-align: right;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 40px;
  }
  .aside .menu:after {
    content: "";
    position: absolute;
    inset: 100% -30px 0 calc(calc((1024px - 100vw) / 2) - 20px);
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
  }
  @media only screen and (max-width: 860px) {
    .aside .menu {
      text-align: left;
    }
  }
  .aside .nav {
    list-style: none;
  }
  @media only screen and (max-width: 860px) {
    .aside .nav {
      display: flex;
      justify-content: flex-start;
      gap: 12px;
    }
  }
  .aside .nav-item {
    font-size: 1.125rem;
  }
  @media only screen and (max-width: 860px) {
    .aside .nav-item {
      font-size: 0.875rem;
    }
  }
  .aside .nav-item.current a {
    color: #AFE731;
  }
  .aside .nav-item__url {
    color: #fff;
    display: inline-block;
    position: relative;
    padding: 9px 0;
  }
  @media only screen and (max-width: 860px) {
    .aside .nav-item__url {
      padding: 3px 0;
    }
  }
  .aside .nav-item__url:after {
    content: "";
    position: absolute;
    inset: auto 0 0 100%;
    height: 2px;
    background: #edd37c;
    transition: inset 0.3s;
  }
  .aside .nav-item:hover a:after {
    inset: auto 0 0 0;
  }
  .aside:before {
    content: "";
    position: absolute;
    inset: 0 0 0 calc((1024px - 100vw) / 2);
    background: rgba(106, 167, 126, 0.98);
  }
  @media only screen and (max-width: 1024px) {
    .aside:before {
      inset: 0;
    }
  }
}
@scope (.landing-page .content-header) {
  .title {
    font-size: 2.5rem;
    text-align: center;
    padding: 5px 10px 16px;
    margin: 10px 60px 25px;
    color: #2D925B;
    border-bottom: 1px solid rgba(45, 146, 91, 0.5);
  }
  .image-block {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    height: var(--l-img-block);
    grid-template-areas: "img img desc";
  }
  @media only screen and (max-width: 678px) {
    .image-block {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      height: auto;
      grid-template-areas: "img" "desc";
    }
  }
}
@scope (.p-intro .content-header) {
  :scope {
    --l-img-block: 400px;
  }
  .image-img {
    grid-area: img;
    position: relative;
  }
  .image-img:before {
    content: "";
    display: block;
    height: 100%;
    padding-top: 50%;
  }
  .image-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 20px 10px 40px rgba(0, 0, 0, 0.2);
  }
  .image-desc {
    grid-area: desc;
    padding: 20px;
    background: rgba(219, 193, 111, 0.5);
  }
}
@scope (.p-founder .content-header) {
  :scope {
    --l-img-block: auto;
  }
  .image-block {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "desc img empty";
  }
  .image-block:after {
    content: "";
    grid-area: empty;
    padding: 20px;
    background: rgba(219, 193, 111, 0.5);
  }
  @media only screen and (max-width: 678px) {
    .image-block {
      grid-template-columns: 1fr;
      grid-template-rows: 1fr auto auto;
      height: auto;
      grid-template-areas: "img" "desc";
    }
    .image-block:after {
      display: none;
    }
  }
  .image-img {
    grid-area: img;
    width: 400px;
    aspect-ratio: 480/556;
    position: relative;
  }
  .image-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @media only screen and (max-width: 678px) {
    .image-img {
      width: 100%;
    }
  }
  .image-desc {
    grid-area: desc;
    padding: 20px;
    background: rgba(219, 193, 111, 0.5);
    display: flex;
    align-items: flex-end;
  }
  .founder-name {
    line-height: 1.2;
  }
  .founder-name .position {
    font-size: 1.125rem;
  }
  .founder-name .name {
    font-size: 3.25rem;
  }
}
@scope (.article-page .content-header) {
  .image-block {
    display: grid;
    grid-template-columns: 360px auto;
    height: var(--l-img-block);
    grid-template-areas: "img desc";
  }
  @media only screen and (max-width: 678px) {
    .image-block {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      height: auto;
      grid-template-areas: "img" "desc";
    }
  }
  .image-img {
    position: relative;
    grid-area: img;
  }
  .image-img:before {
    content: "";
    display: block;
    height: 100%;
    aspect-ratio: 3/4;
  }
  .image-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 20px 10px 40px rgba(0, 0, 0, 0.2);
  }
  .image-desc {
    grid-area: desc;
    padding: 20px;
    background: rgba(219, 193, 111, 0.5);
  }
  .image-desc .series {
    font-size: 1.125rem;
    font-weight: bold;
  }
  .image-desc .intro {
    font-size: 0.8125rem;
    line-height: 1.7;
    margin-block-end: 16px;
    color: #333;
  }
  .image-desc .intro p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-block-end: 12px;
  }
}
@keyframes titlefontshrink {
  from {
    font-size: 1.875rem;
  }
  to {
    font-size: 1.25rem;
  }
}
.landing-page .hero {
  background-size: cover;
  z-index: var(--z-hero);
}
@media only screen and (max-width: 860px) {
  .landing-page .hero {
    height: auto;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    --z-hero: 99;
  }
}
.landing-page .hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
}
.landing-page .hero .l-inner {
  position: relative;
  z-index: var(--z-hero);
  height: 100%;
  padding-block: 0;
}
.landing-page .hero .aside {
  grid-column: 1/span 1;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 30px 60px 20px;
  padding-top: calc(var(--l-header) + 50px);
}
@media only screen and (max-width: 860px) {
  .landing-page .hero .aside {
    display: block;
    padding: 10px 20px;
    padding-top: calc(var(--l-header--mobile) + 5px);
  }
}
.landing-page .hero .aside > * {
  position: relative;
  z-index: 2;
}
.landing-page .hero .aside .title {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 0 0 20px 20px;
  position: relative;
}
.landing-page .hero .aside .title:after {
  content: "";
  position: absolute;
  inset: 100% -30px 0 calc(calc((1024px - 100vw) / 2) - 20px);
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.landing-page .hero .aside .title:before {
  content: "";
  position: absolute;
  inset: 8px auto 24px 0;
  width: 1px;
  background: #fff;
}
@media only screen and (max-width: 860px) {
  .landing-page .hero .aside .title {
    writing-mode: horizontal-tb;
    font-size: 1.25rem;
    margin-block-end: 3px;
    padding: 0;
  }
  .landing-page .hero .aside .title:before, .landing-page .hero .aside .title:after {
    display: none;
  }
  @supports (animation-timeline: view(block)) {
    .landing-page .hero .aside .title {
      animation: titlefontshrink ease forwards;
      animation-timeline: scroll();
      animation-range: entry 0% entry 20%;
    }
  }
}
.landing-page .hero .aside .menu {
  flex: 1 1 auto;
  text-align: right;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 40px;
}
.landing-page .hero .aside .menu:after {
  content: "";
  position: absolute;
  inset: 100% -30px 0 calc(calc((1024px - 100vw) / 2) - 20px);
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 860px) {
  .landing-page .hero .aside .menu {
    text-align: left;
  }
}
.landing-page .hero .aside .nav {
  list-style: none;
}
@media only screen and (max-width: 860px) {
  .landing-page .hero .aside .nav {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
  }
}
.landing-page .hero .aside .nav-item {
  font-size: 1.125rem;
}
@media only screen and (max-width: 860px) {
  .landing-page .hero .aside .nav-item {
    font-size: 0.875rem;
  }
}
.landing-page .hero .aside .nav-item.current a {
  color: #AFE731;
}
.landing-page .hero .aside .nav-item__url {
  color: #fff;
  display: inline-block;
  position: relative;
  padding: 9px 0;
}
@media only screen and (max-width: 860px) {
  .landing-page .hero .aside .nav-item__url {
    padding: 3px 0;
  }
}
.landing-page .hero .aside .nav-item__url:after {
  content: "";
  position: absolute;
  inset: auto 0 0 100%;
  height: 2px;
  background: #edd37c;
  transition: inset 0.3s;
}
.landing-page .hero .aside .nav-item:hover a:after {
  inset: auto 0 0 0;
}
.landing-page .hero .aside:before {
  content: "";
  position: absolute;
  inset: 0 0 0 calc((1024px - 100vw) / 2);
  background: rgba(106, 167, 126, 0.98);
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero .aside:before {
    inset: 0;
  }
}

.landing-page .content-header .title {
  font-size: 2.5rem;
  text-align: center;
  padding: 5px 10px 16px;
  margin: 10px 60px 25px;
  color: #2D925B;
  border-bottom: 1px solid rgba(45, 146, 91, 0.5);
}
.landing-page .content-header .image-block {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  height: var(--l-img-block);
  grid-template-areas: "img img desc";
}
@media only screen and (max-width: 678px) {
  .landing-page .content-header .image-block {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "desc";
    height: auto;
  }
}

.p-intro .content-header {
  --l-img-block: 400px;
}
.p-intro .content-header .image-img {
  grid-area: img;
  position: relative;
}
.p-intro .content-header .image-img:before {
  content: "";
  display: block;
  height: 100%;
  padding-top: 50%;
}
.p-intro .content-header .image-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 20px 10px 40px rgba(0, 0, 0, 0.2);
}
.p-intro .content-header .image-desc {
  grid-area: desc;
  padding: 20px;
  background: rgba(219, 193, 111, 0.5);
}

.p-founder .content-header {
  --l-img-block: auto;
}
.p-founder .content-header .image-block {
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "desc img empty";
}
.p-founder .content-header .image-block:after {
  content: "";
  grid-area: empty;
  padding: 20px;
  background: rgba(219, 193, 111, 0.5);
}
@media only screen and (max-width: 678px) {
  .p-founder .content-header .image-block {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
    grid-template-areas: "img" "desc";
  }
  .p-founder .content-header .image-block:after {
    display: none;
  }
}
.p-founder .content-header .image-img {
  grid-area: img;
  width: 400px;
  aspect-ratio: 480/556;
  position: relative;
}
.p-founder .content-header .image-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 678px) {
  .p-founder .content-header .image-img {
    width: 100%;
  }
}
.p-founder .content-header .image-desc {
  grid-area: desc;
  padding: 20px;
  background: rgba(219, 193, 111, 0.5);
  display: flex;
  align-items: flex-end;
}
.p-founder .content-header .founder-name {
  line-height: 1.2;
}
.p-founder .content-header .founder-name .position {
  font-size: 1.125rem;
}
.p-founder .content-header .founder-name .name {
  font-size: 3.25rem;
}

.article-page .content-header .image-block {
  display: grid;
  grid-template-columns: 360px auto;
  height: var(--l-img-block);
  grid-template-areas: "img desc";
}
@media only screen and (max-width: 678px) {
  .article-page .content-header .image-block {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    grid-template-areas: "img" "desc";
  }
}
.article-page .content-header .image-img {
  position: relative;
  grid-area: img;
}
.article-page .content-header .image-img:before {
  content: "";
  display: block;
  height: 100%;
  aspect-ratio: 3/4;
}
.article-page .content-header .image-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 20px 10px 40px rgba(0, 0, 0, 0.2);
}
.article-page .content-header .image-desc {
  grid-area: desc;
  padding: 20px;
  background: rgba(219, 193, 111, 0.5);
}
.article-page .content-header .image-desc .series {
  font-size: 1.125rem;
  font-weight: bold;
}
.article-page .content-header .image-desc .intro {
  font-size: 0.8125rem;
  line-height: 1.7;
  margin-block-end: 16px;
  color: #333;
}
.article-page .content-header .image-desc .intro p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-block-end: 12px;
}

@keyframes titlefontshrink {
  from {
    font-size: 1.875rem;
  }
  to {
    font-size: 1.25rem;
  }
}
@scope (.landing-page .content) {
  :scope {
    pointer-events: none;
    position: relative;
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
  }
  :scope .container {
    flex: 1 1 100%;
  }
  :scope .container-right {
    background: #fff;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    padding: 40px;
  }
  :scope .content-body {
    margin-top: 0;
    line-height: 1.9;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  }
  :scope .content-list {
    margin-top: 0;
  }
}
@scope (.p-director-and-supervisor .director-n-supervisor) {
  .heading {
    color: #1e3659;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 24px 0 6px;
    margin-bottom: 12px;
  }
  .heading:after {
    content: "";
    position: relative;
    inset: auto;
    flex: 0 0 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.8);
    transform: none;
  }
  .l-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 146px), 1fr));
    margin-bottom: 20px;
    gap: 1.25rem;
  }
  .item {
    line-height: 1.5;
  }
  .name {
    font-weight: bold;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .company {
    font-size: 0.8125rem;
    color: #2D925B;
  }
  .company a {
    color: #2D925B;
  }
  .position {
    font-size: 0.8125rem;
  }
}
@scope (.p-members) {
  :scope {
    --l-inner: 1280px;
  }
  .content-aside_inner {
    display: none;
  }
  @media only screen and (max-width: 551px) {
    .content-header .title {
      display: none;
    }
  }
  .content-body {
    background: #f5f5f5 !important;
    margin-top: -25px !important;
  }
  .s__title {
    color: #fff;
  }
  .s__title:after {
    background: #fff;
  }
  .l-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
    grid-template-rows: auto 130px 1fr auto;
    gap: 16px;
  }
  .item {
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding-inline-start: 8px;
    margin-block-end: 16px;
    display: grid;
    gap: 0;
    grid-template-rows: subgrid;
    grid-row: span 4;
    grid-column: span 1;
  }
  .item-head {
    display: flex;
    grid-template-rows: subgrid;
    grid-row: 1/span 1;
    padding: 16px;
    padding-block-end: 6px;
    padding-inline-end: 12px;
    background: #fff;
    flex-wrap: wrap;
    align-items: flex-end;
    container: itemhead/inline-size;
  }
  .item-head .company,
  .item-head .position {
    font-size: 0.8125rem;
    margin-inline-end: 2px;
    white-space: nowrap;
  }
  .item-head .company > *,
  .item-head .position > * {
    display: inline-block;
    padding-bottom: 2px;
  }
  .item-head .name {
    font-size: 1.5rem;
    margin-inline-start: auto;
    white-space: nowrap;
    text-align: right;
  }
  @container itemhead (max-width: 200px) {
    .item-head .name {
      flex: 0 0 100%;
      margin-inline-start: 0;
      font-size: 1.25rem;
      text-align: left;
    }
  }
  .item-img {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 2/span 1;
    background: #fff;
    position: relative;
  }
  .item-img:after {
    content: "";
    aspect-ratio: 230/127;
    display: block;
    width: 100%;
  }
  .item-img:before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 16px;
    background: #fff;
    z-index: 2;
  }
  .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .item-desc {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 3/span 1;
    padding: 16px;
    background: #fff;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #69768b;
  }
  .item-more {
    display: grid;
    grid-row: 4/span 1;
    background: #fff;
    text-align: center;
    padding: 12px;
    transition: 0.3s;
    color: #0a4194;
    border-top: 1px solid rgba(51, 51, 51, 0.1);
    font-size: 0.875rem;
  }
  .item-more:hover {
    color: #1e3659;
  }
}
.landing-page .content {
  pointer-events: none;
  position: relative;
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}
.landing-page .content .container {
  flex: 1 1 100%;
}
.landing-page .content .container-right {
  background: #fff;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  padding: 40px;
}
.landing-page .content .content-body {
  margin-top: 0;
  line-height: 1.9;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}
.landing-page .content .content-list {
  margin-top: 0;
}

.p-director-and-supervisor .director-n-supervisor .heading {
  color: #1e3659;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 24px 0 6px;
  margin-bottom: 12px;
}
.p-director-and-supervisor .director-n-supervisor .heading:after {
  content: "";
  position: relative;
  flex: 0 0 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.8);
}
.p-director-and-supervisor .director-n-supervisor .l-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 146px), 1fr));
  margin-bottom: 20px;
  gap: 1.25rem;
}
.p-director-and-supervisor .director-n-supervisor .item {
  line-height: 1.5;
}
.p-director-and-supervisor .director-n-supervisor .name {
  font-weight: bold;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.p-director-and-supervisor .director-n-supervisor .company {
  font-size: 0.8125rem;
  color: #2D925B;
}
.p-director-and-supervisor .director-n-supervisor .company a {
  color: #2D925B;
}
.p-director-and-supervisor .director-n-supervisor .position {
  font-size: 0.8125rem;
}

.p-members {
  --l-inner: 1280px;
}
.p-members .content-aside_inner {
  display: none;
}
@media only screen and (max-width: 551px) {
  .p-members .content-header .title {
    display: none;
  }
}
.p-members .content-body {
  background: #f5f5f5 !important;
  margin-top: -25px !important;
}
.p-members .s__title {
  color: #fff;
}
.p-members .s__title:after {
  background: #fff;
}
.p-members .l-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  grid-template-rows: auto 130px 1fr auto;
  gap: 16px;
}
.p-members .item {
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding-inline-start: 8px;
  margin-block-end: 16px;
  display: grid;
  gap: 0;
  grid-template-rows: subgrid;
  grid-row: span 4;
  grid-column: span 1;
}
.p-members .item-head {
  display: flex;
  grid-template-rows: subgrid;
  grid-row: 1/span 1;
  padding: 16px;
  padding-block-end: 6px;
  padding-inline-end: 12px;
  background: #fff;
  flex-wrap: wrap;
  align-items: flex-end;
  container: itemhead/inline-size;
}
.p-members .item-head .company,
.p-members .item-head .position {
  font-size: 0.8125rem;
  margin-inline-end: 2px;
  white-space: nowrap;
}
.p-members .item-head .company > *,
.p-members .item-head .position > * {
  display: inline-block;
  padding-bottom: 2px;
}
.p-members .item-head .name {
  font-size: 1.5rem;
  margin-inline-start: auto;
  white-space: nowrap;
  text-align: right;
}
@container itemhead (max-width: 200px) {
  .p-members .item-head .name {
    flex: 0 0 100%;
    margin-inline-start: 0;
    font-size: 1.25rem;
    text-align: left;
  }
}
.p-members .item-img {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 2/span 1;
  background: #fff;
  position: relative;
}
.p-members .item-img:after {
  content: "";
  aspect-ratio: 230/127;
  display: block;
  width: 100%;
}
.p-members .item-img:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 16px;
  background: #fff;
  z-index: 2;
}
.p-members .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-members .item-desc {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 3/span 1;
  padding: 16px;
  background: #fff;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #69768b;
}
.p-members .item-more {
  display: grid;
  grid-row: 4/span 1;
  background: #fff;
  text-align: center;
  padding: 12px;
  transition: 0.3s;
  color: #0a4194;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  font-size: 0.875rem;
}
.p-members .item-more:hover {
  color: #1e3659;
}

/*# sourceMappingURL=page.css.map */
