@font-face {
  font-family: Cubano;
  src: url('../fonts/Cubano.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rubik;
  src: url('../fonts/Rubik-ExtraBold.ttf') format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rubik;
  src: url('../fonts/Rubik-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rubik;
  src: url('../fonts/Rubik-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rubik;
  src: url('../fonts/Rubik-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rubik;
  src: url('../fonts/Rubik-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rubik;
  src: url('../fonts/Rubik-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rubik;
  src: url('../fonts/Rubik-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #26bde2;
  --green: #56c02b;
  --white: #fff;
  --yellow: #fcc30b;
  --black: #595959;
  --blue-2: #0a97d9;
  --red: #ff3a21;
  --grey: #adadad;
  --sdgs-1: #e5243b;
  --sdgs-2: #dda83a;
  --sdgs-3: #4c9f38;
  --sdgs-4: #c5192d;
  --sdgs-5: #ff3a21;
  --sdgs-6: #26bde2;
  --sdgs-7: #fcc30b;
  --sdgs-8: #a21942;
  --sdgs-9: #fd6925;
  --sdgs-10: #dd1367;
  --sdgs-11: #fd9d24;
  --sdgs-12: #bf8b2e;
  --sdgs-13: #3f7e44;
  --sdgs-14: #0a97d9;
  --sdgs-15: #56c02b;
  --sdgs-16: #00689d;
  --sdgs-17: #19486a;
  --grey-2: #e4e4e4;
  --grey-3: #f5f4f1;
  --dark-blue: #365d77;
  --purple-1: #7d0f79;
  --orange-2: #fd6925;
  --blue-3: #b2e6ff;
  --pruple-2: #a1339d;
  --orange: #fd9d24;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.body.box-bg {
  background-image: url('../images/box-bg-20.png');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.overflow-x {
  padding-top: 120px;
}

.overflow-x.index {
  padding-top: 0;
}

.header-nav {
  z-index: 99;
  background-color: #ddd0;
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  inset: 0% 0% auto;
}

.header-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.head-logo {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  order: -9999;
  display: flex;
}

.head-logo-img {
  height: 80px;
}

.head-right-btn-list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  order: 9999;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.menu-btn {
  background-color: var(--blue);
  background-image: url('../images/menu-icon-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 24px;
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  min-width: 70px;
  height: 70px;
  padding: 0;
  display: flex;
}

.menu-btn.w--open {
  z-index: 2;
}

.menu-icon {
  background-image: url('../images/menu-icon-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.menu-drop-btn {
  z-index: 2;
  background-color: var(--green);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 70px;
  min-width: 70px;
  height: 70px;
  padding: 0;
  font-family: Noto Sans SC, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.menu-drop-btn.yellow {
  background-color: var(--yellow);
}

.menu-drop-list.w--open {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #ddd0;
  flex-flow: column;
  padding-top: 15px;
  display: flex;
}

.menu-drop-list-item {
  background-color: var(--black);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 70px;
  min-width: 70px;
  height: 70px;
  padding: 0;
  font-family: Noto Sans SC, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  display: flex;
}

.menu-drop-list-item.aaa-big {
  font-size: 24px;
}

.aaa-tx {
  font-size: 18px;
}

.aaa-big {
  font-size: 24px;
  line-height: 30px;
}

.aaa-s {
  font-size: 12px;
}

.part-sec {
  background-image: url('../images/box-bg-20.png');
  background-position: 0 0;
  background-size: auto;
  overflow: hidden;
}

.hero-sec {
  background-image: linear-gradient(180deg, var(--white), #f4f9fd);
  justify-content: flex-end;
  width: 100%;
  height: 100vh;
  display: flex;
}

.hero-slider {
  border-bottom-left-radius: 540px;
  width: 60%;
  height: 100%;
  overflow: hidden;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
}

.hero-slide-bg.hero-1 {
  background-image: url('../images/hero-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide-bg.hero-2 {
  background-image: url('../images/banner-about.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide-bg.hero-3 {
  background-image: url('../images/stories-8.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide-bg.hero-4 {
  background-image: url('../images/sdgs-1_img2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide-bg.hero-5 {
  background-image: url('../images/PHOTO-2024-10-04-21-47-29.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-title {
  color: var(--yellow);
  font-family: Cubano, Arial, sans-serif;
  font-size: 110px;
  line-height: 110px;
}

.hero-contents {
  z-index: 1;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  align-items: flex-start;
  width: 55%;
  display: flex;
  position: absolute;
  inset: 20% auto 0% 5%;
}

.link-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: var(--blue);
  justify-content: center;
  align-items: center;
  font-family: Noto Sans TC;
  font-size: 28px;
  line-height: 30px;
  text-decoration: none;
  display: flex;
}

.scroll-arrow {
  height: 70px;
}

.hero-about-sec {
  background-image: url('../images/hero-about-bg.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.container {
  width: 100%;
  max-width: 1680px;
  padding-left: 5%;
  padding-right: 5%;
}

.container.pt-100 {
  padding-top: 100px;
}

.container.pt-100.pb-100 {
  padding-bottom: 100px;
}

.container.pt-100.pb-150 {
  padding-bottom: 150px;
}

.container.pt-50 {
  padding-top: 50px;
}

.container.pt-50.pb-50 {
  padding-bottom: 50px;
}

.container.pt-50.pb-100 {
  padding-bottom: 100px;
}

.container.pt-50.pb-200 {
  padding-bottom: 200px;
}

.container.pb-100 {
  padding-bottom: 100px;
}

.container.pt-150 {
  padding-top: 150px;
}

.container.pt-150.pb-150 {
  padding-bottom: 150px;
}

.container.banner-details {
  padding-top: 100px;
}

.container.details-info-first {
  padding-top: 0;
  padding-bottom: 100px;
}

.hero-about-content {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.infin-pic {
  width: 285px;
}

.div-block {
  background-color: var(--white);
  width: 2px;
  height: 85px;
}

.title-1 {
  color: var(--blue-2);
  font-family: Noto Sans SC, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
}

.title-1.tx-red {
  color: var(--red);
}

.content-tx-blod {
  color: var(--black);
  text-align: center;
  margin-bottom: 0;
  font-family: Noto Sans SC, sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 36px;
}

.content-tx {
  color: var(--black);
  text-align: left;
  margin-bottom: 0;
  font-family: Noto Sans SC, sans-serif;
  font-size: 20px;
  line-height: 36px;
}

.content-tx.tx-center {
  text-align: center;
}

.hero-about-icons {
  position: absolute;
}

.hero-about-icon-1 {
  width: 312px;
  position: absolute;
  inset: 200px auto auto -300px;
}

.hero-about-icon-2 {
  width: 312px;
  position: absolute;
  inset: 200px -370px auto auto;
}

.hero-about-icon-3 {
  width: 390px;
  position: absolute;
  inset: 470px auto auto -390px;
}

.hero-about-icon-4 {
  width: 390px;
  position: absolute;
  inset: 430px -400px auto auto;
}

.hero-highlights-content {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.title-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  display: flex;
}

.sub-title-1 {
  text-align: center;
  margin-bottom: 0;
  font-family: Noto Sans SC, sans-serif;
  font-size: 23px;
  font-weight: 300;
  line-height: 30px;
}

.highlights-list {
  flex-flow: wrap;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.highlights-item {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  align-items: center;
  width: 33.3%;
  padding: 30px 2%;
  text-decoration: none;
  display: flex;
}

.highlights-item.center-item {
  border-right: 1px solid var(--grey);
  border-left: 1px solid var(--grey);
}

.highlights-cover-block {
  border-radius: 50%;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.highlights-cover {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  position: absolute;
}

.highlights-cover.high-1 {
  background-image: url('../images/PHOTO-2024-10-04-21-47-29.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.highlights-cover.high-2 {
  background-image: url('../images/2019.05-Greenhouse-experiment-with-rosewoods.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.highlights-cover.high-3 {
  background-image: url('../images/Prof.-Ng.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.highlights-title {
  color: var(--red);
  text-align: center;
  font-family: Noto Sans SC, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.highlights-info {
  color: var(--black);
  text-align: center;
  font-family: Noto Sans SC, sans-serif;
  font-size: 18px;
  line-height: 22px;
}

.efforts-sec {
  overflow: hidden;
}

.efforts-sec.pt-100 {
  padding-top: 100px;
}

.efforts-top-block {
  background-color: var(--blue-2);
  background-image: url('../images/box-bg.png');
  background-position: 50% 0;
  background-repeat: repeat;
  background-size: auto;
  width: 100%;
}

.efforts-top-content {
  flex-flow: wrap;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.efforts-title-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.efforts-title {
  color: var(--white);
  font-family: Noto Sans SC, sans-serif;
  font-size: 90px;
  font-weight: 700;
  line-height: 90px;
}

.tx-yellow {
  color: var(--yellow);
}

.efforts-sub-title {
  color: var(--white);
  font-family: Noto Sans SC, sans-serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 70px;
}

.efforts-left {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  align-items: flex-start;
  width: 65%;
  display: flex;
}

.efforts-des {
  color: var(--white);
  margin-bottom: 0;
  font-family: Noto Sans SC, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 30px;
}

.efforts-right {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  align-items: center;
  width: 30%;
  display: flex;
}

.efforts-slider {
  background-color: #ddd0;
  width: 100%;
  height: auto;
  margin-top: -150px;
  margin-left: auto;
  margin-right: auto;
}

.efforts-slide-item {
  width: 100%;
}

.efforts-list {
  grid-column-gap: 5%;
  grid-row-gap: 50px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  display: flex;
  position: relative;
}

.efforts-list.mt-m150 {
  margin-top: -150px;
  padding-bottom: 100px;
}

.efforts-list.mt-m150.m {
  display: none;
}

.efforts-item {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: var(--white);
  color: var(--white);
  border-radius: 55px;
  flex-flow: column;
  width: 30%;
  max-width: 400px;
  padding: 30px 4%;
  text-decoration: none;
  display: flex;
  position: relative;
  box-shadow: 0 0 10px 2px #00000080;
}

.efforts-item.sdgs-1 {
  background-color: var(--sdgs-1);
}

.efforts-item.sdgs-2 {
  background-color: var(--sdgs-2);
}

.efforts-item.sdgs-3 {
  background-color: var(--sdgs-3);
}

.efforts-item.sdgs-4 {
  background-color: var(--sdgs-4);
}

.efforts-item.sdgs-5 {
  background-color: var(--sdgs-5);
}

.efforts-item.sdgs-6 {
  background-color: var(--sdgs-6);
}

.efforts-item.sdgs-7 {
  background-color: var(--sdgs-7);
}

.efforts-item.sdgs-8 {
  background-color: var(--sdgs-8);
}

.efforts-item.sdgs-9 {
  background-color: var(--sdgs-9);
}

.efforts-item.sdgs-10 {
  background-color: var(--sdgs-10);
}

.efforts-item.sdgs-11 {
  background-color: var(--sdgs-11);
}

.efforts-item.sdgs-12 {
  background-color: var(--sdgs-12);
}

.efforts-item.sdgs-13 {
  background-color: var(--sdgs-13);
}

.efforts-item.sdgs-14 {
  background-color: var(--sdgs-14);
}

.efforts-item.sdgs-15 {
  background-color: var(--sdgs-15);
}

.efforts-item.sdgs-16 {
  background-color: var(--sdgs-16);
}

.efforts-item.sdgs-17 {
  background-color: var(--sdgs-17);
}

.efforts-item-top {
  display: flex;
}

.efforts-num-icon {
  width: 215px;
  height: 215px;
  display: flex;
}

.efforts-num-icon.efforts-1 {
  background-image: url('../images/E-WEB-Goal-01.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-2 {
  background-image: url('../images/E-WEB-Goal-02.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-3 {
  background-image: url('../images/E-WEB-Goal-03.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-4 {
  background-image: url('../images/E-WEB-Goal-04.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-5 {
  background-image: url('../images/E-WEB-Goal-05.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-6 {
  background-image: url('../images/E-WEB-Goal-06.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-7 {
  background-image: url('../images/E-WEB-Goal-07.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-8 {
  background-image: url('../images/E-WEB-Goal-08.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-9 {
  background-image: url('../images/E-WEB-Goal-09.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-10 {
  background-image: url('../images/E-WEB-Goal-10.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-11 {
  background-image: url('../images/E-WEB-Goal-11.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-12 {
  background-image: url('../images/E-WEB-Goal-12.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-13 {
  background-image: url('../images/E-WEB-Goal-13.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-14 {
  background-image: url('../images/E-WEB-Goal-14.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-15 {
  background-image: url('../images/E-WEB-Goal-15.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-16 {
  background-image: url('../images/E-WEB-Goal-16.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-num-icon.efforts-17 {
  background-image: url('../images/E-WEB-Goal-17.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.efforts-block {
  background-color: var(--white);
  background-image: url('../images/box-bg.png');
  background-position: 50% 0;
  background-repeat: repeat;
  background-size: auto;
  width: 100%;
}

.efforts-block.gen-white-blue {
  background-image: url('../images/box-bg.png'), linear-gradient(#fff 30%, #ebf3f6);
  background-position: 50% 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
}

.efforts-item-title {
  font-family: Noto Sans SC, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.efforts-item-title.tx-black {
  color: var(--black);
}

.paragraph {
  font-family: Noto Sans SC, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
}

.paragraph.tx-black {
  color: var(--black);
}

.efforts-item-arrow {
  background-color: var(--white);
  background-image: url('../images/SDGS-item-arrow-black.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 50%;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  position: absolute;
  inset: 35px 5% auto auto;
}

.mask {
  padding-top: 15px;
  padding-left: 5px;
  padding-right: 5px;
  overflow: visible;
}

.efforts-num-block {
  z-index: 99;
  background-image: url('../images/efforts-graphic-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 370px;
  height: 435px;
  padding-top: 50px;
  display: flex;
  position: absolute;
  inset: -550px 0% auto auto;
}

.efforts-num-title-tx {
  color: var(--yellow);
  font-family: Noto Sans SC, sans-serif;
  font-size: 90px;
  font-weight: 700;
  line-height: 100px;
}

.efforts-num-title {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.efforts-num {
  color: var(--white);
  font-family: Cubano, Arial, sans-serif;
  font-size: 90px;
  line-height: 100px;
}

.efforts-arrow {
  background-image: url('../images/efforts-slide-arrow-left_1efforts-slide-arrow-left.png'), url('../images/efforts-graphic-slider-arrow-bg-left.svg');
  background-position: 50% 45%, 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: 62px, auto;
  width: 156px;
  height: 161px;
  inset: -200px 250px auto auto;
}

.efforts-arrow.right {
  background-image: url('../images/efforts-slide-arrow-right_1efforts-slide-arrow-right.png'), url('../images/efforts-graphic-slider-arrow-bg-right.svg');
  background-size: 62px, auto;
  right: 0;
}

.efforts-arrow.right:hover {
  background-image: url('../images/efforts-slide-arrow-right_1efforts-slide-arrow-right.png'), url('../images/efforts-graphic-slider-arrow-bg-right-white.svg');
}

.efforts-item-last-p {
  color: var(--black);
  margin-top: 10px;
  font-family: Noto Sans SC, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
}

.efforts-item-last-p.tx-black {
  color: var(--black);
}

.sdgs-color-8 {
  color: var(--sdgs-8);
}

.sdgs-color-12 {
  color: var(--sdgs-12);
}

.sdgs-color-13 {
  color: var(--sdgs-13);
}

.footer-sec {
  z-index: 1;
  border-top: 1px solid var(--grey-2);
  background-color: var(--white);
  position: relative;
}

.footer-container {
  width: 100%;
  max-width: 1680px;
  padding: 50px 5%;
}

.footer-container.pt-100 {
  padding-top: 100px;
}

.footer-container.pt-100.pb-100 {
  padding-bottom: 100px;
}

.footer-container.pt-100.pb-150 {
  padding-bottom: 150px;
}

.footer-container.pt-50 {
  padding-top: 50px;
}

.footer-container.pt-50.pb-50 {
  padding-bottom: 50px;
}

.footer-container.pt-50.pb-100 {
  padding-bottom: 100px;
}

.footer-container.pt-50.pb-200 {
  padding-bottom: 200px;
}

.footer-container.pb-100 {
  padding-bottom: 100px;
}

.footer-head {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-menu-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-menu-link {
  color: var(--black);
  font-family: Noto Sans SC, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

.footer-menu-drop-tri {
  padding: 0;
}

.footer-menu-drop {
  margin-left: 0;
  margin-right: 0;
}

.footer-menu-drop-list.w--open {
  background-color: var(--yellow);
  border-radius: 15px;
  flex-flow: column;
  align-items: flex-start;
  max-width: 300px;
  margin-top: 5px;
  display: flex;
}

.footer-menu-drop-list.mini-w.w--open {
  min-width: 300px;
}

.footer-menu-drop-link {
  border-top: 1px dashed var(--white);
  color: var(--white);
  white-space: normal;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 7px 15px;
  font-family: Rubik, Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  text-decoration: none;
  display: flex;
}

.footer-menu-drop-link.w--current {
  color: var(--red);
}

.footer-content-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  display: flex;
}

.footer-bot {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-sponser-list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-sponser-logo {
  height: 70px;
}

.footer-copy-tx {
  color: var(--black);
  font-family: Noto Sans SC, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.nav-menu {
  z-index: 1;
  background-color: var(--grey-3);
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  flex-flow: column;
  align-items: flex-start;
  width: 40%;
  height: 100vh;
  max-height: 1000px;
  padding-top: 30px;
  padding-right: 5%;
  display: flex;
  position: fixed;
  inset: 0% auto auto 0%;
  box-shadow: 0 2px 5px #0003;
}

.nav-link {
  border-top: 1px solid var(--black);
  color: var(--black);
  background-image: url('../images/menu-arrow-black_1menu-arrow-black.png');
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 40px;
  width: 100%;
  padding: 20px 80px 20px 10%;
  font-family: Noto Sans SC, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--green);
}

.nav-link.w--current {
  color: var(--yellow);
}

.head-white-bg {
  z-index: -1;
  background-color: var(--white);
  background-image: none;
  position: absolute;
  inset: 0%;
  box-shadow: 0 0 5px #0003;
}

.page-banner-sec {
  position: relative;
  overflow: hidden;
}

.page-banner-sec.overflow-show {
  overflow: visible;
}

.page-banner-bg {
  position: absolute;
  inset: 0%;
}

.page-banner-bg.about {
  background-image: url('../images/banner-about.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-banner-bg.past {
  background-image: url('../images/banner-past-issues.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-banner-bg.goals {
  background-image: url('../images/4DN.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-banner-contents {
  z-index: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.page-banner-circle-block {
  justify-content: center;
  align-items: center;
  width: 30%;
  display: flex;
  position: relative;
}

.page-banner-circle-bg {
  background-color: #fcc30bd9;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 100%;
  display: flex;
  position: relative;
}

.text-block {
  position: absolute;
}

.page-banner-title {
  z-index: 2;
  color: var(--white);
  text-align: left;
  font-family: Noto Sans SC, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
  position: absolute;
}

.page-banner-title.tx-red {
  color: var(--red);
}

.page-banner-graphic {
  z-index: 1;
  width: 100%;
  max-width: 200px;
  position: absolute;
  inset: 5% auto auto -10%;
}

.page-info-content-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-2 {
  width: 90vw;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.timeline_quote {
  color: #fff;
  margin-bottom: 16px;
  font-size: 14px;
}

.timeline_centre {
  justify-content: center;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.inline-block {
  display: inline-block;
}

.timeline_date-text {
  color: var(--green);
  letter-spacing: -.03em;
  font-family: Noto Sans SC, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  position: sticky;
  top: 50vh;
}

.overlay-fade-bottom {
  background-image: linear-gradient(0deg, var(--white), #0a0a0a00);
  width: 4px;
  height: 80px;
  position: absolute;
  inset: auto auto 0% 256px;
}

.text-colour-lightgrey {
  color: #ffffffa6;
}

.timeline_quote-text-wrapper {
  flex: 1;
}

.timeline_link {
  opacity: .6;
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  border-radius: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: opacity .3s;
  display: flex;
}

.timeline_link:hover {
  opacity: 1;
}

.margin-bottom-medium {
  margin-bottom: 32px;
}

.timeline_quote-wrapper {
  border: 2px solid #fff;
  border-radius: 16px;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.overlay-fade-top {
  background-image: linear-gradient(180deg, var(--white), #0a0a0a00);
  width: 4px;
  height: 80px;
  position: absolute;
  inset: 0% auto auto 256px;
}

.timeline_text {
  color: var(--black);
  font-family: Noto Sans SC, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
}

.link-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.timeline_progress-bar {
  z-index: -1;
  background-color: #fff;
  background-image: linear-gradient(180deg, var(--white), var(--green) 0%, var(--blue));
  width: 3px;
  height: 50vh;
  position: fixed;
  inset: 0 auto 50vh;
}

.text-colour-white {
  color: #fff;
}

.timeline_component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.timeline_badge {
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  background-color: #ffffff26;
  border-radius: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  display: inline-block;
}

.timeline_quote-image {
  border-radius: 8px;
  width: 48px;
  height: 48px;
  margin-right: 24px;
}

.timeline_right {
  width: 100%;
}

.timeline_quote-title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.timeline_circle {
  background-color: var(--blue);
  box-shadow: 0 0 0 8px var(--white);
  border-radius: 100%;
  width: 15px;
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  min-height: 15px;
  max-height: 15px;
  position: sticky;
  top: 50vh;
}

.timeline_left {
  text-align: right;
  justify-content: flex-end;
  align-items: stretch;
  min-width: 200px;
}

.margin-bottom-xlarge {
  margin-bottom: 30px;
}

.timeline_definition-wrapper {
  background-color: #ffffff0d;
  border-radius: 16px;
  padding: 16px;
}

.timeline_image-wrapper {
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  display: flex;
  position: relative;
}

.timeline_item {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 180px 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.timeline_progress {
  z-index: -2;
  background-color: #414141;
  width: 3px;
  height: 100%;
  position: absolute;
  left: 256px;
}

.section-timeline {
  z-index: -3;
  background-color: var(--white);
  background-image: url('../images/box-bg.png');
  background-position: 0 0;
  background-size: auto;
  position: relative;
}

.timeline_milestone-badge {
  color: #161616;
  letter-spacing: .05em;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 12px;
  display: inline-block;
}

.page-wrapper {
  z-index: 0;
  position: relative;
}

.timeline_pic {
  border-radius: 30px;
  box-shadow: 0 0 10px 5px #0003;
}

.timeline_pic.full-w {
  width: 100%;
}

.timeline-sdgs-list {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: -50px;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.timeline-sdgs-item {
  width: 100px;
  height: 100px;
}

.timeline-sdgs-item.s4 {
  background-image: url('../images/E-WEB-Goal-04.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s13 {
  background-image: url('../images/E-WEB-Goal-13.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s14 {
  background-image: url('../images/E-WEB-Goal-14.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s15 {
  background-image: url('../images/E-WEB-Goal-15.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s17 {
  background-image: url('../images/E-WEB-Goal-17.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s3 {
  background-image: url('../images/E-WEB-Goal-03.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s10 {
  background-image: url('../images/E-WEB-Goal-10.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s11 {
  background-image: url('../images/E-WEB-Goal-11.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s1 {
  background-image: url('../images/E-WEB-Goal-01.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s2 {
  background-image: url('../images/E-WEB-Goal-02.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s5 {
  background-image: url('../images/E-WEB-Goal-05.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s6 {
  background-image: url('../images/E-WEB-Goal-06.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s7 {
  background-image: url('../images/E-WEB-Goal-07.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s8 {
  background-image: url('../images/E-WEB-Goal-08.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s9 {
  background-image: url('../images/E-WEB-Goal-09.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s12 {
  background-image: url('../images/E-WEB-Goal-12.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-sdgs-item.s16 {
  background-image: url('../images/E-WEB-Goal-16.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-block-2 {
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
}

.head-white-bg-2 {
  z-index: -1;
  background-color: var(--white);
  position: absolute;
  inset: 0%;
}

.tx-dark-blue {
  color: var(--dark-blue);
}

.tx-blue {
  color: var(--blue);
}

.tx-green {
  color: var(--green);
}

.sdgs-banner-sec {
  z-index: 1;
  height: 560px;
  position: relative;
  overflow: hidden;
}

.sdgs-banner-content-sec {
  position: relative;
}

.sdgs-banner-content-sec.s1 {
  background-color: var(--sdgs-1);
}

.sdgs-banner-bg {
  position: absolute;
  inset: 0%;
}

.sdgs-banner-bg.about {
  background-image: url('../images/banner-about.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.sdgs-banner-bg.s1 {
  background-image: url('../images/sdgs-banner-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.sdgs-banner-content-block {
  z-index: 2;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.sdgs-banner-num-block {
  background-color: var(--white);
  border-radius: 55px;
  flex-flow: column;
  width: 100%;
  min-width: 400px;
  margin-top: -200px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px 10px #0003;
}

.sdgs-banner-num-top {
  padding: 15px 5%;
}

.sdgs-banner-num-top.s1 {
  background-color: var(--sdgs-1);
}

.sdgs-banner-num-content {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  align-items: flex-start;
  padding: 30px 5%;
  display: flex;
}

.sdgs-banner-num-title {
  font-family: Noto Sans SC, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.sdgs-banner-num-title.tx-black {
  color: var(--black);
}

.sdgs-banner-num-title.s1 {
  color: var(--sdgs-1);
}

.sdgs-banner-num-title-tx {
  min-height: 50px;
  font-family: Noto Sans SC, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.sdgs-banner-num-title-tx.tx-black {
  color: var(--black);
}

.sdgs-banner-content-info-tx {
  color: var(--white);
  text-align: left;
  margin-bottom: 0;
  font-family: Noto Sans SC, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 36px;
}

.sdgs-banner-content-info-tx.tx-center {
  text-align: center;
}

.sdgs-info-sec {
  background-image: url('../images/box-bg-20.png');
  background-position: 0 0;
  background-size: auto;
}

.sdgs-info-content {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.sdgs-info-content.s1 {
  color: var(--sdgs-1);
}

.sdgs-info-content.s2 {
  color: var(--sdgs-2);
}

.sdgs-info-p {
  color: var(--black);
  text-align: left;
  margin-bottom: 0;
  font-family: Noto Sans SC, sans-serif;
  font-size: 20px;
  line-height: 36px;
}

.sdgs-info-p.tx-center {
  text-align: center;
}

.sdgs-info-title {
  font-family: Noto Sans SC, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
}

.sdgs-info-title.tx-red {
  color: var(--red);
}

.tx-sdgs-color {
  border-bottom: 2px solid var(--sdgs-1);
  color: var(--black);
  text-decoration: none;
}

.sdgs-info-row-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.sdgs-content-css {
  width: 0;
  height: 0;
  position: absolute;
}

.sdgs-info-img {
  border-style: solid;
  border-width: 5px;
  border-radius: 55px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.info-half-row {
  grid-column-gap: 4%;
  grid-row-gap: 4%;
  flex-flow: wrap;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.info-half-row.v-center {
  align-items: center;
}

.info-half-block {
  width: 48%;
  position: relative;
}

.stories-head-sec {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.stories-head-sec.stories-1 {
  background-color: var(--blue);
}

.stories-head-banner {
  z-index: 1;
  background-color: var(--white);
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.stories-head-banner-bg {
  position: absolute;
  inset: 0%;
}

.stories-head-banner-bg.stories-1 {
  background-image: url('../images/PHOTO-2024-10-04-21-47-29.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.stories-head-banner-bg.past-1 {
  background-image: url('../images/past-cover-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.stories-head-bg-color {
  width: 100%;
  height: 550px;
  position: absolute;
  inset: 0% 0% auto;
}

.stories-head-bg-color.stories-1 {
  background-color: var(--blue);
}

.stories-head-bg-color.past-1 {
  background-color: var(--purple-1);
}

.stories-head-banner-icon-block {
  z-index: 2;
  background-color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 170px;
  min-width: 170px;
  height: 170px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
  box-shadow: 0 0 10px 5px #0000001a;
}

.stories-head-banner-icon-block.stories-1 {
  background-image: url('../images/stories-icon-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 60%;
}

.stories-head-banner-block {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 55%;
  display: flex;
  position: relative;
}

.stories-head-content-block {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0% 0% auto;
}

.stories-head-content-right {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  align-items: flex-start;
  width: 40%;
  display: flex;
  position: relative;
}

.stories-head-content-info {
  justify-content: flex-end;
  display: flex;
}

.stories-head-title {
  z-index: 2;
  color: var(--white);
  text-align: left;
  font-family: Noto Sans SC, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
}

.stories-head-title.tx-red {
  color: var(--red);
}

.stories-head-des {
  color: var(--white);
  text-align: left;
  margin-bottom: 0;
  font-family: Noto Sans SC, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 36px;
}

.stories-head-des.tx-center {
  text-align: center;
}

.stories-head-tags {
  color: var(--white);
  text-align: left;
  margin-bottom: 0;
  font-family: Noto Sans SC, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}

.stories-head-tags.tx-center {
  text-align: center;
}

.arh-block {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.arh-name-block {
  z-index: 1;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #c2f0ff;
  border-radius: 50px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 30px 10px 15px;
  display: flex;
  position: relative;
  box-shadow: 0 0 5px #0003;
}

.arh-name-block.past-1 {
  background-color: #eacae9;
}

.arh-icon {
  background-color: #0ba5e6;
  background-image: url('../images/arh-icon-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 50%;
  border-radius: 50%;
  width: 56px;
  min-width: 56px;
  height: 56px;
}

.arh-icon.past-1 {
  background-color: var(--purple-1);
}

.arh-name-tx {
  font-family: Noto Sans SC, sans-serif;
  font-size: 22px;
  line-height: 24px;
}

.arh-sdgs-list {
  background-color: var(--white);
  border: 5px solid #2acded;
  border-radius: 55px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 300px;
  margin-top: -40px;
  padding: 60px 50px 30px;
  display: flex;
  position: relative;
}

.arh-sdgs-list.past-1 {
  border-color: #a434a1;
}

.stories-info-content {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.stories-info-content.s1 {
  color: var(--sdgs-1);
}

.stories-info-content.s2 {
  color: var(--sdgs-2);
}

.stories-info-title {
  color: var(--orange-2);
  font-family: Noto Sans SC, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
}

.stories-info-title.tx-red {
  color: var(--red);
}

.stories-info-p {
  color: var(--black);
  text-align: left;
  margin-bottom: 0;
  font-family: Noto Sans SC, sans-serif;
  font-size: 20px;
  line-height: 36px;
}

.stories-info-p.tx-center {
  text-align: center;
  align-self: center;
}

.stories-info-p.tx-white {
  color: var(--white);
}

.stories-info-img {
  border: 5px solid var(--blue);
  border-radius: 55px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stories-info-pic-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.stories-info-pic-cap-block {
  z-index: 1;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--blue-3);
  border-radius: 20px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -30px;
  margin-left: 5%;
  margin-right: 5%;
  padding: 10px 30px 10px 15px;
  display: flex;
  position: relative;
}

.stories-info-pic-cap-block.past-1 {
  background-color: #eacae9;
}

.stories-info-pic-cap-icon {
  border: 10px solid var(--blue-2);
  border-radius: 50%;
  width: 30px;
  min-width: 30px;
  height: 30px;
}

.stories-info-pic-cap-icon.past-1 {
  border-color: var(--purple-1);
}

.stories-info-pic-cap-des {
  margin-bottom: 0;
  padding-top: 2px;
  font-family: Noto Sans SC, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.stories-info-color-row-sec {
  position: relative;
}

.sdgs-icon-1 {
  width: 390px;
  position: absolute;
  inset: -200px auto auto 0%;
}

.stories-info-color-row-pic-block {
  width: 90%;
}

.stories-info-color-row-pic-circle {
  border-radius: 15px;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}

.stories-info-color-row-pic-circle.pic-1-4 {
  background-image: url('../images/stories-3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.sdgs-icon-2 {
  width: 390px;
  position: absolute;
  inset: auto -100px -200px auto;
}

.stories-info-color-row-info-content {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.stories-info-color-row-info-content.s1 {
  color: var(--sdgs-1);
}

.stories-info-color-row-info-content.s2 {
  color: var(--sdgs-2);
}

.div-block-3 {
  z-index: -1;
  background-color: var(--blue);
  width: 100%;
  height: 80%;
  position: absolute;
  inset: 0% 0% auto;
}

.page-banner-title-2 {
  z-index: 2;
  color: var(--white);
  text-align: left;
  font-family: Noto Sans SC, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
}

.page-banner-title-2.tx-red {
  color: var(--red);
}

.past-yr-block {
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  display: flex;
  position: absolute;
  inset: 0% 5% auto auto;
}

.past-yr-block-bg-img {
  width: 100%;
  max-width: 300px;
}

.past-yr-block-tx {
  color: var(--white);
  text-align: left;
  padding-top: 50px;
  font-family: Cubano, Arial, sans-serif;
  font-size: 48px;
  line-height: 50px;
  position: absolute;
}

.past-yr-block-tx.tx-red {
  color: var(--red);
}

.past-list {
  grid-column-gap: 3%;
  grid-row-gap: 50px;
  flex-flow: wrap;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.past-item {
  color: var(--black);
  border-radius: 30px;
  flex-flow: column;
  width: 31%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 5px #0003;
}

.past-item-cover {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.past-title-content {
  background-color: var(--white);
  padding: 30px 5%;
  position: relative;
}

.past-cate {
  font-family: Noto Sans SC, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 31px;
}

.past-item-title {
  text-transform: uppercase;
  min-height: 90px;
  font-family: Noto Sans SC, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.past-item-cover-bg {
  position: absolute;
  inset: 0%;
}

.past-item-cover-bg.past-1 {
  background-image: url('../images/past-cover-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.past-item-cover-bg.past-2 {
  background-image: url('../images/past-cover-2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.past-item-cover-bg.past-3 {
  background-image: url('../images/past-cover-3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.past-item-cover-bg.past-4 {
  background-image: url('../images/past-cover-4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.past-item-btn {
  background-color: var(--white);
  background-image: url('../images/SDGS-item-arrow-black.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 50%;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  position: absolute;
  inset: -30px 5% auto auto;
  box-shadow: 0 0 5px #0003;
}

.past-info-title {
  color: var(--yellow);
  font-family: Noto Sans SC, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
}

.past-info-title.tx-red {
  color: var(--red);
}

.past-info-img {
  border: 5px solid var(--purple-1);
  border-radius: 55px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pass-info-color-row-sec {
  background-color: var(--pruple-2);
  position: relative;
}

.pass-info-color-row-info-content {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.pass-info-color-row-info-content.s1 {
  color: var(--sdgs-1);
}

.pass-info-color-row-info-content.s2 {
  color: var(--sdgs-2);
}

.pass-info-row-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.pass-info-color-row-mark {
  background-image: url('../images/info-row-mark-open.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  min-width: 50px;
  height: 50px;
}

.pass-info-color-row-mark.close {
  background-image: url('../images/info-row-mark-close.svg');
  align-self: flex-end;
}

.footer-logo-img {
  height: 80px;
}

.about-title {
  color: var(--white);
  font-family: Noto Sans SC, sans-serif;
  font-size: 90px;
  font-weight: 700;
  line-height: 90px;
}

.head-menu-dropdown {
  width: 100%;
}

.head-menu-drop-list {
  position: relative;
}

.head-menu-drop-list.w--open {
  background-color: #ddd0;
  flex-flow: column;
  align-items: flex-start;
  padding-bottom: 15px;
  padding-left: 10%;
  display: flex;
}

.head-menu-drop-item {
  border-top: 1px dashed var(--grey);
  white-space: pre-wrap;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 5px 0;
  font-family: Noto Sans SC, sans-serif;
  font-weight: 400;
  text-decoration: none;
}

.head-menu-drop-item.w--current {
  color: var(--green);
}

.menu-logo {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.menu-logo-link {
  margin-bottom: 30px;
  margin-left: 10%;
  display: flex;
}

.menu-logo-img {
  height: 100px;
}

.accessibility-tools-list {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: var(--white);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  flex-flow: column;
  align-items: flex-start;
  width: auto;
  max-width: 200px;
  padding: 20px 30px 20px 15px;
  display: none;
  position: fixed;
  inset: 150px 0% auto auto;
  box-shadow: 0 0 5px #0003;
}

.accessibility-tools-list.show {
  display: flex;
}

.at-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--black);
  justify-content: flex-start;
  align-items: center;
  font-family: Rubik, Arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
  display: flex;
}

.at-item-icon {
  width: 25px;
  height: 25px;
}

.at-item-icon.grayscale {
  background-image: url('../images/icon-grayscale.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.at-item-icon.reset {
  background-image: url('../images/icon-reset.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.at-item-icon.link-underline {
  background-image: url('../images/icon-link.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.at-item-icon.high-con {
  background-image: url('../images/icon-high-contrast.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.menu-drop-list-item-copy {
  background-color: var(--black);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 70px;
  min-width: 70px;
  height: 70px;
  padding: 0;
  font-family: Rubik, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  display: flex;
}

.menu-drop-list-item-copy.aaa-big {
  font-size: 24px;
}

.at-text {
  justify-content: center;
  align-items: center;
  padding: 0;
  font-family: Rubik, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  display: flex;
}

.at-text.aaa-big {
  font-size: 24px;
}

.first-content-tx {
  font-size: 30px;
}

.usr-tx {
  font-family: Rubik, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
}

.usr-tx.tx-black {
  color: var(--black);
}

.color-sdgs-1 {
  color: var(--sdgs-1);
  text-decoration: none;
}

.menu-scroll-box {
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  height: 80%;
  display: flex;
}

.sdgs-llist-title {
  color: var(--white);
  font-family: Noto Sans SC, sans-serif;
  font-size: 90px;
  font-weight: 700;
  line-height: 90px;
}

.sdgs-sub-title {
  color: var(--white);
  font-family: Noto Sans SC, sans-serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 70px;
}

.sdgs-title-des {
  color: var(--white);
  margin-bottom: 0;
  font-family: Noto Sans SC, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 30px;
}

.image {
  width: 100%;
  max-width: 60%;
}

.link-tx {
  border-bottom: 2px solid var(--yellow);
  color: var(--black);
  text-decoration: none;
}

.content-pic {
  width: 100%;
}

.goal-list {
  grid-column-gap: 3%;
  grid-row-gap: 30px;
  flex-flow: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.goal-item {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--blue-2);
  color: var(--white);
  border-radius: 30px;
  flex-flow: column;
  width: 31%;
  min-height: 250px;
  padding: 70px 30px 50px;
  text-decoration: none;
  display: flex;
  position: relative;
  box-shadow: 0 0 5px #0003;
}

.tx-link {
  border-bottom: 2px solid var(--blue-2);
  color: var(--black);
  text-decoration: none;
}

.sdgs-video-block {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.video-pop-block {
  width: 100%;
  max-width: 1200px;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
}

.video-pop-content {
  border: 3px solid #ed1746;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 1920px) {
  .header-container {
    max-width: 1920px;
  }

  .hero-slider {
    border-bottom-left-radius: 540px;
    width: 70%;
  }

  .hero-contents {
    width: 38%;
    top: 30%;
  }

  .container {
    max-width: 1920px;
  }

  .efforts-list {
    padding-top: 30px;
  }

  .efforts-item {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .efforts-item-title {
    font-size: 38px;
  }

  .paragraph {
    font-size: 24px;
    line-height: 30px;
  }

  .efforts-num-block {
    top: -500px;
  }

  .efforts-arrow {
    top: -150px;
  }

  .efforts-arrow.right {
    top: -150px;
    right: 10%;
  }

  .efforts-item-last-p {
    font-size: 24px;
    line-height: 30px;
  }

  .footer-container {
    max-width: 1920px;
  }

  .nav-link {
    background-size: 50px;
    padding-right: 100px;
    font-size: 40px;
    line-height: 40px;
  }

  .page-banner-title {
    font-size: 54px;
    line-height: 60px;
  }

  .page-banner-graphic {
    left: -5%;
  }

  .timeline_centre {
    padding-left: 100px;
    padding-right: 100px;
  }

  .overlay-fade-bottom, .overlay-fade-top {
    left: 505px;
  }

  .timeline_left {
    min-width: 400px;
  }

  .timeline_progress {
    left: 505px;
  }

  .sdgs-banner-content-block {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .sdgs-banner-num-block {
    min-width: 480px;
  }

  .sdgs-banner-num-title {
    font-size: 38px;
  }

  .sdgs-banner-num-title-tx {
    font-size: 24px;
    line-height: 30px;
  }

  .sdgs-banner-content-info-tx {
    font-size: 30px;
    line-height: 50px;
  }

  .stories-head-banner {
    border-top-right-radius: 700px;
    border-bottom-right-radius: 700px;
    height: 700px;
  }

  .stories-head-bg-color {
    height: 700px;
  }

  .stories-head-banner-icon-block {
    width: 220px;
    min-width: 220px;
    height: 220px;
  }

  .stories-head-banner-icon-block.stories-1 {
    background-size: 125px;
  }

  .stories-head-title {
    font-size: 60px;
    line-height: 70px;
  }

  .stories-head-des, .stories-head-tags {
    font-size: 30px;
    line-height: 50px;
  }

  .stories-info-content {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .stories-info-color-row-pic-block {
    width: 100%;
  }

  .page-banner-title-2, .past-yr-block-tx {
    font-size: 60px;
    line-height: 70px;
  }
}

@media screen and (max-width: 991px) {
  .overflow-x, .overflow-x.index {
    padding-top: 120px;
  }

  .menu-btn, .menu-drop-btn {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }

  .menu-drop-list.w--open {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-top: 10px;
  }

  .menu-drop-list-item {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }

  .hero-sec {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
  }

  .hero-slider {
    width: 95%;
    height: 80vh;
    margin-left: auto;
  }

  .hero-title {
    text-align: center;
    font-size: 64px;
    line-height: 70px;
  }

  .hero-contents {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    width: 100%;
    padding-top: 15px;
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
  }

  .link-block {
    margin-left: auto;
    margin-right: auto;
  }

  .container.pt-100 {
    padding-top: 70px;
  }

  .container.pt-100.pb-100, .container.pt-50.pb-100, .container.pb-100 {
    padding-bottom: 70px;
  }

  .container.pt-150.pb-150 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .container.banner-details {
    padding-top: 50px;
  }

  .container.details-info-first {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-about-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .infin-pic {
    width: 200px;
  }

  .title-1 {
    font-size: 42px;
  }

  .content-tx-blod {
    font-size: 20px;
    line-height: 30px;
  }

  .content-tx {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-about-icon-1 {
    width: 280px;
    inset: 10% auto auto -15%;
  }

  .hero-about-icon-2 {
    width: 280px;
    inset: 10% -15% auto auto;
  }

  .hero-about-icon-3 {
    width: 280px;
    top: 500px;
    left: -15%;
  }

  .hero-about-icon-4 {
    width: 280px;
    inset: 500px -15% -50% auto;
  }

  .hero-highlights-content {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .sub-title-1 {
    font-size: 20px;
  }

  .highlights-list {
    flex-flow: column;
  }

  .highlights-item {
    width: 100%;
  }

  .highlights-item.center-item {
    border-width: 1px 0;
    border-top-style: solid;
    border-top-color: var(--grey);
    border-bottom-style: solid;
    border-bottom-color: var(--grey);
  }

  .highlights-title {
    font-size: 18px;
  }

  .highlights-info {
    font-size: 16px;
  }

  .efforts-sec.pt-100 {
    padding-top: 0;
  }

  .efforts-title {
    font-size: 54px;
    line-height: 60px;
  }

  .efforts-left {
    width: 100%;
  }

  .efforts-des {
    font-size: 20px;
  }

  .efforts-right {
    width: 0%;
  }

  .efforts-slider {
    display: none;
  }

  .efforts-list {
    grid-row-gap: 30px;
    display: flex;
  }

  .efforts-list.mt-m150.m {
    display: flex;
  }

  .efforts-item {
    width: 47%;
  }

  .efforts-num-icon {
    width: 150px;
    height: 150px;
  }

  .paragraph {
    font-size: 16px;
  }

  .efforts-item-arrow {
    width: 55px;
    height: 55px;
  }

  .efforts-item-last-p {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-head {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .footer-menu-list {
    grid-row-gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-sponser-logo {
    height: 40px;
  }

  .nav-menu {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    width: 60%;
  }

  .nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 70px;
    font-size: 24px;
  }

  .page-banner-title {
    font-size: 36px;
    line-height: 40px;
  }

  .page-banner-graphic {
    max-width: 150px;
  }

  .overlay-fade-bottom, .overlay-fade-top {
    left: 205px;
  }

  .timeline_text {
    font-size: 18px;
  }

  .timeline_left {
    min-width: 150px;
  }

  .timeline_progress {
    left: 205px;
  }

  .sdgs-banner-sec {
    height: 400px;
  }

  .sdgs-banner-content-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .sdgs-banner-num-block {
    min-width: auto;
    max-width: 60%;
  }

  .sdgs-banner-num-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sdgs-banner-content-info-tx {
    font-size: 18px;
    line-height: 30px;
  }

  .sdgs-info-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .sdgs-info-p {
    font-size: 16px;
    line-height: 30px;
  }

  .sdgs-info-title {
    font-size: 36px;
    line-height: 40px;
  }

  .sdgs-info-row-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .info-half-row {
    grid-row-gap: 30px;
  }

  .info-half-block {
    width: 100%;
  }

  .info-half-block.left {
    order: 9999;
  }

  .info-half-block.right {
    order: -9999;
  }

  .info-half-block.color-row {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .stories-head-sec {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .stories-head-banner {
    height: 450px;
  }

  .stories-head-bg-color {
    height: 100%;
  }

  .stories-head-banner-icon-block {
    width: 140px;
    min-width: 140px;
    height: 140px;
  }

  .stories-head-banner-block {
    width: 90%;
  }

  .stories-head-content-block {
    position: relative;
  }

  .stories-head-content-right {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-items: stretch;
    width: 100%;
  }

  .stories-head-content-info {
    flex-flow: column;
  }

  .stories-head-title {
    font-size: 36px;
    line-height: 40px;
  }

  .stories-head-des {
    font-size: 18px;
    line-height: 30px;
  }

  .stories-head-tags {
    font-size: 18px;
  }

  .arh-icon {
    width: 45px;
    min-width: 45px;
    height: 45px;
  }

  .arh-name-tx {
    font-size: 18px;
  }

  .stories-info-content {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .stories-info-title {
    font-size: 36px;
    line-height: 40px;
  }

  .stories-info-p {
    font-size: 18px;
    line-height: 30px;
  }

  .stories-info-pic-cap-des {
    font-size: 16px;
  }

  .sdgs-icon-1 {
    width: 200px;
    top: -190px;
    left: -5%;
  }

  .sdgs-icon-2 {
    width: 200px;
    bottom: -50px;
    right: -50px;
  }

  .stories-info-color-row-info-content {
    margin-top: 150px;
  }

  .page-banner-title-2 {
    font-size: 36px;
    line-height: 40px;
  }

  .past-yr-block {
    margin-top: 20px;
  }

  .past-yr-block-bg-img {
    max-width: 200px;
  }

  .past-yr-block-tx {
    padding-top: 40px;
    font-size: 36px;
    line-height: 40px;
  }

  .past-list {
    grid-column-gap: 4%;
    grid-row-gap: 30px;
  }

  .past-item {
    width: 48%;
  }

  .past-item-cover {
    height: 250px;
  }

  .past-title-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .past-cate {
    font-size: 16px;
    line-height: 24px;
  }

  .past-item-title {
    font-size: 18px;
  }

  .past-item-btn {
    width: 55px;
    height: 55px;
  }

  .past-info-title {
    font-size: 36px;
    line-height: 40px;
  }

  .footer-logo-img {
    height: 60px;
  }

  .about-title {
    font-size: 54px;
    line-height: 60px;
  }

  .menu-logo-img {
    height: 80px;
  }

  .menu-drop-list-item-copy, .at-text {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }

  .sdgs-llist-title {
    font-size: 54px;
    line-height: 60px;
  }

  .sdgs-title-des {
    font-size: 20px;
  }

  .goal-item {
    width: 48%;
  }
}

@media screen and (max-width: 767px) {
  .overflow-x, .overflow-x.index {
    padding-top: 90px;
  }

  .head-logo-img {
    height: 50px;
  }

  .menu-btn {
    background-size: auto 18px;
    width: 50px;
    min-width: 50px;
    height: 50px;
  }

  .menu-drop-btn {
    width: 50px;
    min-width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .menu-drop-list.w--open {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    padding-top: 5px;
  }

  .menu-drop-list-item {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }

  .aaa-big {
    line-height: 24px;
  }

  .hero-slider {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 100%;
    height: 50vh;
  }

  .hero-title {
    font-size: 48px;
    line-height: 54px;
  }

  .link-block {
    font-size: 20px;
  }

  .scroll-arrow {
    height: 50px;
  }

  .container.pt-100 {
    padding-top: 50px;
  }

  .container.pt-100.pb-100 {
    padding-bottom: 50px;
  }

  .container.pt-150.pb-150 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .container.banner-details {
    padding-top: 30px;
  }

  .infin-pic {
    width: 150px;
  }

  .title-1 {
    font-size: 36px;
    line-height: 40px;
  }

  .content-tx-blod {
    font-size: 18px;
    line-height: 24px;
  }

  .content-tx {
    font-size: 14px;
    line-height: 24px;
  }

  .hero-about-icon-1 {
    width: 170px;
    top: 20%;
    left: 0%;
  }

  .hero-about-icon-2 {
    width: 170px;
    top: 20%;
    right: 0%;
  }

  .hero-about-icon-3 {
    width: 170px;
    top: 500px;
    left: 0%;
  }

  .hero-about-icon-4 {
    width: 170px;
    top: 500px;
    right: 0%;
  }

  .sub-title-1 {
    font-size: 18px;
  }

  .efforts-title {
    font-size: 48px;
    line-height: 50px;
  }

  .efforts-des {
    font-size: 18px;
  }

  .efforts-list {
    justify-content: center;
  }

  .efforts-list.mt-m150 {
    padding-bottom: 70px;
  }

  .efforts-item {
    width: 47%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .efforts-num-icon {
    width: 130px;
    height: 130px;
  }

  .efforts-item-last-p {
    font-size: 18px;
  }

  .footer-head {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .footer-menu-list {
    flex-flow: column;
    width: 100%;
  }

  .footer-menu-link {
    font-size: 16px;
  }

  .footer-menu-drop-list {
    position: relative;
  }

  .footer-content-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .nav-menu {
    width: 70%;
    padding-top: 20px;
  }

  .nav-link {
    background-size: 35px;
    font-size: 24px;
    line-height: 30px;
  }

  .page-banner-circle-block {
    width: 60%;
  }

  .timeline_centre {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .timeline_date-text {
    margin-bottom: 15px;
    font-size: 36px;
  }

  .timeline_quote-wrapper {
    flex-direction: column-reverse;
  }

  .timeline_text {
    font-size: 16px;
    line-height: 20px;
  }

  .timeline_component {
    margin-top: 30px;
  }

  .timeline_quote-image {
    margin-top: 24px;
    margin-right: 0;
  }

  .timeline_left {
    text-align: left;
  }

  .margin-bottom-xlarge {
    margin-bottom: 30px;
  }

  .timeline_item {
    z-index: 2;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 64px 1fr;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    display: grid;
    position: relative;
  }

  .timeline_progress {
    left: 6px;
  }

  .timeline-sdgs-list {
    margin-top: -30px;
  }

  .timeline-sdgs-item {
    width: 70px;
    height: 70px;
  }

  .sdgs-banner-num-block {
    max-width: 80%;
  }

  .sdgs-banner-num-title-tx, .sdgs-banner-content-info-tx {
    font-size: 16px;
  }

  .sdgs-info-title {
    font-size: 28px;
    line-height: 30px;
  }

  .info-half-row {
    grid-row-gap: 15px;
  }

  .stories-head-banner {
    height: 400px;
  }

  .stories-head-banner-icon-block {
    width: 120px;
    min-width: 120px;
    height: 120px;
  }

  .stories-head-title {
    font-size: 28px;
    line-height: 30px;
  }

  .stories-head-des, .stories-head-tags {
    font-size: 16px;
  }

  .arh-icon {
    width: 35px;
    min-width: 35px;
    height: 35px;
  }

  .arh-sdgs-list {
    padding-left: 50px;
  }

  .stories-info-title {
    font-size: 28px;
    line-height: 30px;
  }

  .stories-info-p {
    font-size: 16px;
  }

  .stories-info-pic-cap-icon {
    border-width: 7px;
    width: 25px;
    min-width: 25px;
    height: 25px;
  }

  .stories-info-pic-cap-des {
    font-size: 14px;
    line-height: 22px;
  }

  .page-banner-title-2 {
    font-size: 30px;
  }

  .past-yr-block {
    margin-top: 10px;
  }

  .past-yr-block-bg-img {
    max-width: 150px;
  }

  .past-yr-block-tx {
    padding-top: 20px;
    font-size: 30px;
  }

  .past-item-cover {
    height: 200px;
  }

  .past-title-content {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .past-item-title {
    font-size: 16px;
    line-height: 24px;
  }

  .past-item-btn {
    width: 45px;
    height: 45px;
  }

  .past-info-title {
    font-size: 28px;
    line-height: 30px;
  }

  .pass-info-row-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .pass-info-color-row-mark {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .footer-logo-img {
    height: 50px;
  }

  .about-title {
    padding-left: 10%;
    font-size: 48px;
    line-height: 50px;
  }

  .menu-logo-link {
    margin-bottom: 20px;
  }

  .menu-logo-img {
    height: 50px;
  }

  .accessibility-tools-list {
    top: 100px;
  }

  .menu-drop-list-item-copy, .at-text {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }

  .menu-scroll-box {
    height: 90%;
  }

  .sdgs-llist-title {
    font-size: 48px;
    line-height: 50px;
  }

  .sdgs-title-des {
    font-size: 18px;
  }

  .goal-item {
    width: 100%;
    min-height: 250px;
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 479px) {
  .overflow-x, .overflow-x.index {
    padding-top: 70px;
  }

  .header-nav {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .head-logo {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .head-logo-img {
    height: 30px;
  }

  .head-right-btn-list {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .menu-btn {
    background-size: auto 14px;
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .menu-drop-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 22px;
  }

  .menu-drop-list-item {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .aaa-tx {
    font-size: 16px;
  }

  .aaa-big {
    font-size: 22px;
  }

  .aaa-s {
    font-size: 10px;
  }

  .hero-slider {
    height: 30vh;
  }

  .hero-title {
    font-size: 30px;
    line-height: 40px;
  }

  .container.pt-100 {
    padding-top: 30px;
  }

  .container.pt-100.pb-100 {
    padding-bottom: 30px;
  }

  .container.pt-50 {
    padding-top: 30px;
  }

  .container.pt-50.pb-50 {
    padding-bottom: 30px;
  }

  .container.pt-50.pb-200 {
    padding-bottom: 170px;
  }

  .container.pt-150.pb-150 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .container.banner-details {
    padding-top: 15px;
  }

  .container.details-info-first {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-about-content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .title-1 {
    font-size: 24px;
    line-height: 30px;
  }

  .content-tx-blod {
    font-size: 16px;
    line-height: 22px;
  }

  .content-tx {
    font-size: 14px;
    line-height: 20px;
  }

  .hero-about-icon-1 {
    width: 150px;
    left: -10%;
  }

  .hero-about-icon-2 {
    width: 150px;
    right: -15%;
  }

  .hero-about-icon-3, .hero-about-icon-4 {
    width: 150px;
    top: 470px;
  }

  .highlights-item {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .highlights-title {
    font-size: 16px;
    line-height: 22px;
  }

  .highlights-info {
    font-size: 14px;
  }

  .efforts-title {
    font-size: 30px;
    line-height: 36px;
  }

  .efforts-sub-title {
    font-size: 42px;
    line-height: 50px;
  }

  .efforts-left {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .efforts-des {
    font-size: 14px;
    line-height: 22px;
  }

  .efforts-list.mt-m150 {
    padding-bottom: 50px;
  }

  .efforts-item {
    width: 100%;
  }

  .efforts-item-title {
    font-size: 20px;
    line-height: 30px;
  }

  .paragraph {
    font-size: 14px;
    line-height: 22px;
  }

  .efforts-item-arrow {
    width: 40px;
    height: 40px;
  }

  .efforts-item-last-p {
    font-size: 16px;
    line-height: 24px;
  }

  .nav-menu {
    width: 95%;
    padding-top: 20px;
  }

  .nav-link {
    background-size: 30px;
    padding-right: 50px;
    font-size: 20px;
    line-height: 28px;
  }

  .page-banner-circle-block {
    justify-content: flex-start;
    width: 80%;
  }

  .page-banner-graphic {
    top: 0%;
  }

  .margin-bottom-medium {
    margin-bottom: 24px;
  }

  .timeline_text {
    font-size: 14px;
    line-height: 22px;
  }

  .timeline_component {
    margin-top: 0;
  }

  .timeline_item {
    grid-template-columns: 48px 1fr;
  }

  .sdgs-banner-num-block {
    max-width: 100%;
  }

  .sdgs-banner-num-content {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .sdgs-banner-num-title-tx {
    font-size: 14px;
  }

  .sdgs-banner-content-info-tx {
    font-size: 14px;
    line-height: 24px;
  }

  .sdgs-info-content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .sdgs-info-p {
    font-size: 14px;
    line-height: 22px;
  }

  .sdgs-info-title {
    font-size: 24px;
    line-height: 30px;
  }

  .sdgs-info-row-block {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .sdgs-info-img {
    border-width: 3px;
  }

  .stories-head-sec {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .stories-head-banner {
    height: 320px;
  }

  .stories-head-banner-block {
    width: 95%;
  }

  .stories-head-content-right {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .stories-head-title {
    font-size: 24px;
  }

  .stories-head-des, .stories-head-tags {
    font-size: 14px;
    line-height: 24px;
  }

  .arh-sdgs-list {
    min-width: 150px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .stories-info-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .stories-info-title {
    font-size: 24px;
  }

  .stories-info-p {
    font-size: 14px;
    line-height: 24px;
  }

  .stories-info-pic-cap-block {
    margin-top: -15px;
  }

  .sdgs-icon-1 {
    width: 170px;
    top: -170px;
  }

  .sdgs-icon-2 {
    width: 170px;
    bottom: -70px;
    right: 0;
  }

  .page-banner-title-2 {
    font-size: 24px;
    line-height: 30px;
  }

  .past-yr-block-bg-img {
    max-width: 110px;
  }

  .past-yr-block-tx {
    padding-top: 15px;
    font-size: 24px;
    line-height: 30px;
  }

  .past-item {
    width: 1000%;
  }

  .past-cate {
    font-size: 14px;
    line-height: 22px;
  }

  .past-item-title {
    min-height: 50px;
  }

  .past-info-title {
    font-size: 24px;
  }

  .footer-logo-img {
    height: 30px;
  }

  .about-title {
    font-size: 30px;
    line-height: 36px;
  }

  .menu-logo {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .menu-logo-img {
    height: 35px;
  }

  .accessibility-tools-list {
    top: 80px;
  }

  .menu-drop-list-item-copy, .at-text {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .sdgs-llist-title {
    font-size: 30px;
    line-height: 36px;
  }

  .sdgs-sub-title {
    font-size: 42px;
    line-height: 50px;
  }

  .sdgs-title-des {
    font-size: 14px;
    line-height: 22px;
  }

  .goal-item {
    padding-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  #w-node-d1a02b9d-eafe-5c7f-901d-6fc6caeff424-e5daec46 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-d1a02b9d-eafe-5c7f-901d-6fc6caeff427-e5daec46 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-d1a02b9d-eafe-5c7f-901d-6fc6caeff429-e5daec46 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f81045d3-5e04-8a28-6a6c-b95a7f3bcf72-e5daec46 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-f81045d3-5e04-8a28-6a6c-b95a7f3bcf77-e5daec46 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-f81045d3-5e04-8a28-6a6c-b95a7f3bcf79-e5daec46 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f3c65faf-a3ad-6ca9-97b3-b3d9a1c18473-e5daec46 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-f3c65faf-a3ad-6ca9-97b3-b3d9a1c18478-e5daec46 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-f3c65faf-a3ad-6ca9-97b3-b3d9a1c1847a-e5daec46 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Cubano';
  src: url('../fonts/Cubano.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.efforts-slider{
  height:110%;
}