@charset "UTF-8";
:root {
  --black: #030105;
  --dark: #222024;
  --grey: #5e5d60;
  --silver: #c3c3c4;
  --lightgrey: #ececec;
  --white: #fdfdfd;
  --brand: #007097;
  --accent: #a9d16f;
  --success: #00ca9a;
  --error: #ff5518;
  --progress: #184fff;
  --warning: #ffc818;
  --sea-green: #1aa8bb;
  --mantis:#8fbc59;
  --yellow: #fcb707;
  --peach: #f39859;
  --froly: #e1696d;
  --purple: #a68fc3;
  --jade: #00ad7c;
  --orange: #ff7e00;
  --blue: #4d86c7;
}

.brand {
  color: var(--brand);
}

.accent {
  color: var(--accent);
}

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

.mantis {
  color: var(--mantis);
}

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

.peach {
  color: var(--peach);
}

.froly {
  color: var(--froly);
}

.purple {
  color: var(--purple);
}

.jade {
  color: var(--jade);
}

.orange {
  color: var(--orange);
}

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

.border-sea-green {
  border-color: var(--sea-green) !important;
}

.border-mantis {
  border-color: var(--mantis) !important;
}

.border-yellow {
  border-color: var(--yellow) !important;
}

.border-peach {
  border-color: var(--peach) !important;
}

.border-froly {
  border-color: var(--froly) !important;
}

.border-purple {
  border-color: var(--purple) !important;
}

.background-sea-green {
  background-color: var(--sea-green);
}

.background-mantis {
  background-color: var(--mantis);
}

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

.background-peach {
  background-color: var(--peach);
}

.background-froly {
  background-color: var(--froly);
}

.background-purple {
  background-color: var(--purple);
}

.bright-text {
  color: var(--white);
}
.bright-text .hero, .bright-text h1, .bright-text h2, .bright-text h3, .bright-text h4, .bright-text h5, .bright-text label {
  color: var(--white);
}

.underlined {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.underlined:after {
  position: absolute;
  bottom: 0;
  height: 4px;
  width: 48px;
  display: block;
  content: "";
  background: var(--accent);
  left: 50%;
  transform: translateX(-50%);
}
@font-face {
  font-family: "Metropolis";
  src: url("./fonts/Metropolis-Regular.woff2?69846822") format("woff2"), url("./fonts/Metropolis-Regular.woff?69846822") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("./fonts/Metropolis-Bold.woff2?69846822") format("woff2"), url("./fonts/Metropolis-Bold.woff?69846822") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "winstron";
  src: url("./fonts/winstron.woff2?10642294") format("woff2"), url("./fonts/winstron.woff?10642294") format("woff");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "winstron";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-add:before {
  content: "";
}

.icon-play:before {
  content: "";
}

/* '' */
.icon-check-1:before {
  content: "";
}

.icon-close:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-lan:before {
  content: "";
}

.icon-mail:before {
  content: "";
}

.icon-menu:before {
  content: "";
}

.icon-pdf:before {
  content: "";
}

.icon-search:before {
  content: "";
}

.icon-share:before {
  content: "";
}

.icon-stop:before {
  content: "";
}

.icon-tel:before {
  content: "";
}

.icon-twitter:before {
  content: "";
}

.icon-angle-left:before {
  content: "";
}

/* '' */
.icon-angle-right:before {
  content: "";
}

/* '' */
.icon-angle-up:before {
  content: "";
}

/* '' */
.icon-angle-down:before {
  content: "";
}

/* '' */
.button {
  border-radius: 8px;
}
.button.primary-button {
  background: var(--accent);
}
.button.elevate-button {
  box-shadow: 0 8px 24px 0 rgba(34, 32, 36, 0.16);
  background-color: var(--white);
}
.button.outline-button {
  border: solid 2px var(--accent);
}

.hero, h1, h2, h3, h4, h5, label {
  font-weight: bold;
  font-family: "Metropolis", sans-serif;
  color: var(--black);
}

.hero {
  font-size: 54px;
}

h1 {
  font-size: 42px;
  margin-bottom: 2.5rem;
}

h2 {
  font-size: 33px;
}

h3 {
  font-size: 25px;
}

h4, p {
  font-size: 19px;
}

h5 {
  font-size: 15px;
}

label {
  font-size: 12px;
}

p {
  color: var(--grey);
}

p.small {
  font-size: 15px;
}

p.smaller {
  font-size: 12px;
}

.tips {
  color: var(--accent);
  font-size: 15px;
}

body {
  background: var(--white);
  font-family: "Metropolis", "Inter", "PingFangTC", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.overflow {
  overflow: hidden;
}
@media (min-width: 992px) {
  body.overflow {
    overflow: auto;
  }
}

.homepage-btn {
  color: var(--accent);
  padding: 0.58rem 2.85rem;
  border-width: 2px;
}
.homepage-btn:hover {
  text-decoration: none;
  color: var(--accent);
}

header {
  z-index: 5;
  top: 0;
}
header .affix-brand {
  display: none;
}
header .normal {
  display: block;
}
header .affixed {
  display: none;
}
header a {
  color: var(--white);
  font-size: 15px;
  transition: all 0.25s ease;
  position: relative;
  font-weight: bold;
  font-family: Metropolis, "PingFangTC", sans-serif;
}
header a:hover {
  color: var(--white);
}
header .icon-search, header .icon-lan {
  font-size: 17px;
}
header .show a.nav-link:after {
  position: absolute;
  content: "";
  top: -20px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 34px);
  background-color: rgba(3, 1, 5, 0.16);
  z-index: -1;
}
header .dropdown-menu {
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
  top: 50px;
  margin: 0;
  box-shadow: 0 8px 24px 0 rgba(0, 112, 151, 0.12);
  border: 0;
}
header .dropdown-menu li:hover:after {
  opacity: 0.12;
  background-color: #c3c3c4;
}
header .dropdown-menu li {
  height: 100%;
}
header .dropdown-menu li:before {
  display: block;
  content: "";
  opacity: 0.48;
  background-color: #c3c3c4;
  width: calc(100% + 30px);
  left: -15px;
  height: 1px;
  position: absolute;
  bottom: 0;
}
header .dropdown-menu li:last-of-type:before {
  display: none;
}
header .dropdown-menu li a:before {
  position: absolute;
  top: 50%;
  transform: translate(-5px, calc(-50% - 12px));
  right: 8px;
  height: 24px;
  width: 24px;
  content: "";
  font-size: 28px;
  font-family: "winstron";
  color: var(--accent);
  pointer-events: none;
  transition: all 0.25s ease-out;
  opacity: 0;
}
header .dropdown-menu li:hover a:before {
  transform: translate(18px, calc(-50% - 12px));
  opacity: 1;
}
header:after {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  opacity: 0.72;
  background-image: linear-gradient(to bottom, #030105 0%, rgba(3, 1, 5, 0) 99%);
  left: 0;
  top: 0;
  z-index: 0;
}
header.affix {
  box-shadow: 0 8px 24px 0 rgba(0, 112, 151, 0.12);
}
header.affix .navbar-brand {
  display: none;
}
header.affix .affix-brand {
  display: block;
}
header.affix .normal {
  display: none;
}
header.affix .affixed {
  display: block;
}
header.affix:after {
  opacity: 1;
  background: #fff;
}
header.affix a {
  color: #222024;
}
header .navbar-nav {
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
header li.dropdown .dropdown-menu a {
  color: var(--black);
  padding: 1rem;
  display: block;
}
header li.dropdown .dropdown-menu a:hover {
  text-decoration: none;
}
header li.dropdown .dropdown-menu li:after {
  height: 100%;
  top: 0;
}

header .container {
  margin: 0 auto;
}

#anchor-outcome {
  margin-bottom: 2.5rem;
}

.expand-content {
  display: none;
  margin-left: 50%;
  bottom: 25px;
  position: absolute;
  z-index: 1;
  color: #222024;
  font-family: "Metropolis";
  font-weight: bold;
  font-size: 15px;
  padding: 0.5rem 1.5rem;
  transition: all 0.25s ease-out;
  transform: translateX(-50%);
  opacity: 0.72;
}
.expand-content:hover {
  outline: none;
  text-decoration: none;
  opacity: 1;
  color: #222024;
}
.expand-content:after {
  content: "";
  display: inline-block;
  font-family: "winstron";
  font-size: 20px;
  position: relative;
  right: -5px;
  top: 2px;
  transform: rotate(90deg);
}

.introduction-row {
  line-height: 1.68;
}
.introduction-row .content-wrapper {
  transition: height 0.5s ease-out;
}
.introduction-row .overlay-gradient {
  position: relative;
}
.introduction-row .overlay-gradient:after {
  position: absolute;
  bottom: 0;
  height: 150px;
  width: 100%;
  content: "";
  background: linear-gradient(0deg, #ececec 35%, rgba(236, 236, 236, 0) 100%);
}
.introduction-row .overlay-gradient .expand-content {
  display: inline-block;
}

section.container, section.container-fluid {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
section.container.short-container, section.container-fluid.short-container {
  padding-top: 2rem;
}
@media (min-width: 1200px) {
  section.container, section.container-fluid {
    padding: 4rem 15px 7rem;
  }
}

.dark-blue-bg {
  background-color: rgba(195, 195, 196, 0.08);
}

.dark-grey-bg {
  background-color: #ececec;
}

@media (min-width: 992px) {
  section.container-fluid {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  section.container-fluid {
    max-width: 1140px;
  }
}

#main {
  flex-grow: 1;
}

.three-row-max {
  display: flex;
  flex-flow: column wrap;
  height: 130px;
  list-style: none;
  padding: 0;
  margin: 0.25rem 0;
  font-size: 12px;
}
.three-row-max li {
  margin: 0.15rem 0;
}
.three-row-max a {
  display: block;
  padding: 0.25rem;
  padding-left: 0;
}

.search header, .search-project header, .news header, .legal-terms header, .privacy-policy header {
  box-shadow: 0 8px 24px 0 rgba(0, 112, 151, 0.12);
  background-color: #fdfdfd;
}
.search header a, .search-project header a, .news header a, .legal-terms header a, .privacy-policy header a {
  color: #222024;
}
.search header .navbar-brand, .search header .normal, .search-project header .navbar-brand, .search-project header .normal, .news header .navbar-brand, .news header .normal, .legal-terms header .navbar-brand, .legal-terms header .normal, .privacy-policy header .navbar-brand, .privacy-policy header .normal {
  display: none;
}
.search header .navbar-brand.affix-brand, .search header .affixed, .search-project header .navbar-brand.affix-brand, .search-project header .affixed, .news header .navbar-brand.affix-brand, .news header .affixed, .legal-terms header .navbar-brand.affix-brand, .legal-terms header .affixed, .privacy-policy header .navbar-brand.affix-brand, .privacy-policy header .affixed {
  display: block;
}
.search header:after, .search-project header:after, .news header:after, .legal-terms header:after, .privacy-policy header:after {
  opacity: 1;
  background: #fff;
}

.desktop-menu {
  height: 72px;
  width: 100%;
  left: 0;
  right: 0;
  position: fixed;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: rgba(3, 1, 5, 0.16);
  z-index: 10;
  padding-bottom: 0;
}
.desktop-menu .dropdown-toggle:after {
  display: none;
}
.desktop-menu:after {
  display: none;
}
.desktop-menu .nav-item:hover .dropdown-menu {
  display: block;
}
.desktop-menu.affix {
  box-shadow: 0 8px 24px 0 rgba(0, 112, 151, 0.12);
  background-color: #fdfdfd;
}
.desktop-menu .container {
  position: relative;
  z-index: 1;
  align-items: flex-start;
  height: 100%;
}
.desktop-menu .navbar-nav-scroll, .desktop-menu .navbar-nav {
  height: 100%;
}
.desktop-menu .active {
  position: relative;
}
.desktop-menu .active:before {
  position: absolute;
  top: -21px;
  left: -15px;
  content: "";
  display: block;
  height: 7px;
  width: calc(100% + 30px);
  background: var(--accent);
}
.desktop-menu .navbar-brand {
  width: 167px;
  height: 48px;
}
.desktop-menu .navbar-brand img {
  width: 100%;
}
.desktop-menu .search {
  display: block;
  width: 36px;
  padding: 5px;
  margin-left: 45px;
  margin-right: 6px;
}
.desktop-menu .search img {
  width: 100%;
}
.desktop-menu .navbar-nav li {
  margin: 0 15px;
  position: relative;
}
.desktop-menu .navbar-nav li:after {
  position: absolute;
  content: "";
  opacity: 0;
  background-color: #030105;
  width: calc(100% + 30px);
  height: 72px;
  top: -21px;
  left: -15px;
  transition: all 0.25s ease-out;
  z-index: -1;
}
.desktop-menu .navbar-nav li:hover:after {
  opacity: 0.16;
}
.desktop-menu .navbar-nav .language-dropdown:after {
  display: none;
}
.desktop-menu .navbar-nav .search-toggle {
  margin-left: 10px;
}
.desktop-menu .navbar-nav .search-toggle:hover {
  color: var(--accent);
}
.desktop-menu .language-switcher {
  display: block;
  width: 30px;
  padding: 25px 5px;
}
.desktop-menu .language-switcher:after {
  display: none;
}
.desktop-menu .language-switcher:hover {
  color: var(--accent);
}
.desktop-menu .language-switcher img {
  width: 100%;
}

.mobile-menu {
  width: 100%;
  left: 0;
  right: 0;
  position: fixed;
  height: 56px;
  padding-top: 8px;
}
.mobile-menu .navbar-brand {
  width: 116px;
}
.mobile-menu .navbar-brand img {
  width: 100%;
}
.mobile-menu .search {
  display: block;
  width: 35px;
  height: 35px;
  padding: 5px;
  margin-left: auto;
  margin-right: 12px;
  font-size: 18px;
}
.mobile-menu .search img {
  width: 100%;
}
.mobile-menu .hamburger {
  margin-right: 0;
  width: 32px;
  height: 32px;
  padding: 5px;
}

.home .our-initiative .tips {
  font-family: Metropolis, "PingFangTC", sans-serif;
}

.search-form {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 5;
  box-shadow: 0 8px 24px 0 rgba(0, 112, 151, 0.12);
  background-color: #fdfdfd;
}
.search-form.show {
  display: block;
}
.search-form button[type=submit] {
  border-radius: 8px;
  box-shadow: 0 8px 24px 0 rgba(34, 32, 36, 0.16);
  background-color: #fdfdfd;
  font-family: Metropolis;
  color: #222024;
  padding: 0.45rem 1rem;
}
.search-form .search-close {
  display: inline-block;
  width: 24px;
  height: 24px;
  padding: 2px;
  cursor: pointer;
  background: url(/assets/images/close-black.svg) top center/cover;
  background-size: 22px;
  position: absolute;
  right: 12px;
  top: 12px;
}
.search-form form {
  margin-top: 3.25rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}
.search-form .form-group {
  flex: 1;
  margin-right: 15px;
  margin-bottom: 0;
}
.search-form .form-group .form-control {
  width: 100%;
  border-radius: 4px;
}
.search-form .form-group .form-control:focus {
  box-shadow: none;
  border: solid 2px #a9d16f;
}
@media (min-width: 992px) {
  .search-form {
    top: 72px;
    z-index: 4;
  }
  .search-form form {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .search-form .search-close {
    display: none;
  }
  .search-form button[type=submit] {
    width: 120px;
  }
}

.about footer, footer {
  margin-top: 3rem;
  color: var(--white);
  border-bottom: 8px solid var(--accent);
}
.about footer [class^=icon-]:before, footer [class^=icon-]:before {
  font-size: 24px;
  margin-left: 0;
  margin-top: 2px;
}
.about footer a, footer a {
  color: var(--white);
  opacity: 0.72;
  transition: opacity 0.25s ease;
}
.about footer a:hover, .about footer a.active, footer a:hover, footer a.active {
  color: var(--white);
  opacity: 1;
  text-decoration: none;
}
.about footer span, footer span {
  display: inline-block;
  vertical-align: middle;
}
.about footer h3, footer h3 {
  margin: 1rem 0 1.5rem;
  padding: 0 0 0.5rem;
  color: var(--lightgrey);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
}
.about footer h3:after, footer h3:after {
  display: block;
  content: "";
  height: 1px;
  width: 100%;
  background-color: rgba(195, 195, 196, 0.48);
  position: absolute;
  bottom: -10px;
  left: 0;
  margin: 0;
}
.about footer h3 a.green-border, footer h3 a.green-border {
  padding: 0px 15px 5px 20px;
  border-radius: 4px;
  border: solid 2px #a9d16f;
  font-family: Metropolis;
  font-size: 12px;
  font-weight: bold;
  color: #a9d16f;
  position: absolute;
  right: 0;
}
.about footer h3 a.green-border:after, footer h3 a.green-border:after {
  content: "";
  display: inline-block;
  font-family: "winstron";
  font-size: 20px;
  position: relative;
  right: -2px;
  top: 2px;
}
.about footer .contact-info li, footer .contact-info li {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about footer .contact-info a, footer .contact-info a {
  font-size: 15px;
  display: flex;
  flex-flow: row nowrap;
}
.about footer .contact-info a span:nth-child(2n), footer .contact-info a span:nth-child(2n) {
  margin-left: 5px;
}
.about footer ul, footer ul {
  padding: 0;
  list-style: none;
}
.about footer .primary-footer, footer .primary-footer {
  padding: 1rem 0;
  background: var(--brand);
}
.about footer .secondary-footer, footer .secondary-footer {
  padding: 1rem 0;
  background: var(--black);
}
@media (min-width: 992px) {
  .about footer .primary-footer, footer .primary-footer {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
.about footer .three-row-max, footer .three-row-max {
  font-family: Metropolis, "PingFangTC", sans-serif;
}
.about footer .t-c, footer .t-c {
  text-align: center;
}
.about footer .row, footer .row {
  margin-bottom: 0;
}
.about footer .legal-terms, footer .legal-terms {
  display: flex;
  justify-content: center;
  margin: 1rem auto 0;
  text-align: center;
  align-items: center;
}
.about footer .legal-terms li, footer .legal-terms li {
  position: relative;
  padding: 0 2rem;
  margin-top: 2px;
}
.about footer .legal-terms li:after, footer .legal-terms li:after {
  position: absolute;
  top: 10%;
  left: 0;
  display: block;
  content: "";
  width: 1px;
  height: 60%;
  background-color: rgba(195, 195, 196, 0.48);
}
.about footer .legal-terms li:last-of-type:after, footer .legal-terms li:last-of-type:after {
  display: none;
}
.about footer .legal-terms a, footer .legal-terms a {
  padding: 0.25rem 1rem;
  font-family: Metropolis;
  font-size: 15px;
  font-weight: bold;
  color: #fdfdfd;
}
.about footer .copyright, footer .copyright {
  font-size: 12px;
  text-align: center;
  color: #cecece;
}
.about footer .logo-wrapper, footer .logo-wrapper {
  padding-bottom: 30%;
  height: 0;
  position: relative;
  margin: 0 auto;
}
.about footer .logo-wrapper img, footer .logo-wrapper img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
}
@media (min-width: 992px) {
  .about footer .secondary-footer, footer .secondary-footer {
    padding: 0;
  }
  .about footer .three-row-max, footer .three-row-max {
    font-size: 15px;
  }
  .about footer .col-lg-3 .three-row-max, footer .col-lg-3 .three-row-max {
    height: auto;
  }
  .about footer .col-lg-6 .three-row-max, footer .col-lg-6 .three-row-max {
    height: 110px;
  }
  .about footer .copyright, footer .copyright {
    text-align: right;
    flex-basis: auto;
  }
  .about footer .logo-wrapper, footer .logo-wrapper {
    width: 160px;
    height: 42px;
    margin: 0;
  }
  .about footer .order-lg-1, footer .order-lg-1 {
    flex: 1;
  }
  .about footer .site-info.no-gutters, footer .site-info.no-gutters {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .about footer .legal-terms, footer .legal-terms {
    justify-content: flex-end;
    margin-right: 0;
    margin-left: 1rem;
    margin-top: 0;
    width: auto;
    max-width: none;
    flex-basis: auto;
  }
  .about footer .legal-terms li, footer .legal-terms li {
    position: relative;
    padding: 0 0.5rem;
  }
}

.overlay-masking {
  top: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 6;
  display: flex;
  overflow: hidden;
  opacity: 0;
  transition: all 0.25s ease-out;
  pointer-events: none;
}
.overlay-masking.active {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 992px) {
  .overlay-masking {
    pointer-events: none;
    display: none !important;
  }
}

.side-menu {
  width: 100vw;
  top: 0;
  bottom: 0;
  right: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  background: #fff;
  z-index: 7;
  padding: 0;
  transform: translateX(100%);
  transition: all 0.15s ease;
}
.side-menu ul {
  list-style: none;
  padding-left: 0;
}
.side-menu a {
  color: #222024;
  margin: 1.5rem 0;
  display: block;
}
.side-menu .nav-item {
  border-bottom: 1px solid rgba(195, 195, 196, 0.48);
}
.side-menu .nav-link {
  margin: 0.5rem 0;
  padding: 0.65rem 1.5rem;
  font-family: Metropolis;
  font-size: 19px;
  font-weight: bold;
  color: #222024;
  background: url(/assets/images/arrow-b-right.svg) 96% center no-repeat;
}
.side-menu.active {
  transform: translateX(0);
}
.side-menu .sidebar-header {
  padding: 0.5rem 0.85rem;
  position: relative;
  height: 50px;
  border-bottom: 1px solid rgba(195, 195, 196, 0.48);
}
.side-menu .close {
  position: absolute;
  right: 12px;
  top: 12px;
  margin: 0;
  width: 24px;
  height: 24px;
  padding: 2px;
  cursor: pointer;
  background: url("/assets/images/close-black.svg") top center/cover;
  background-size: 22px;
}
.side-menu .language-toggle {
  margin: 0;
  display: flex;
  width: 40%;
  align-items: center;
  padding: 0.25rem 1rem 0.25rem 0.5rem;
  font-family: Metropolis;
  font-size: 15px;
  font-weight: bold;
  color: #222024;
  line-height: 15px;
}
.side-menu .language-toggle img {
  margin-right: 0.75rem;
}
.side-menu .second-level {
  background-color: #007097;
}
.side-menu .second-level a {
  margin: 0;
  font-family: Metropolis;
  font-size: 15px;
  font-weight: bold;
  color: #fdfdfd;
  padding: 0.8rem 3rem;
}
.side-menu .second-level li {
  position: relative;
}
.side-menu .second-level li:before {
  position: absolute;
  content: "";
  width: 10px;
  background: var(--accent);
  height: 2px;
  top: 22px;
  left: 25px;
}
@media (min-width: 992px) {
  .side-menu {
    display: none !important;
  }
}

.masthead-slider .container {
  margin-top: 0;
  margin-bottom: 0;
}
.masthead-slider .img-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 130%;
}
.masthead-slider .img-wrapper:before {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  height: 70%;
  width: 100%;
  opacity: 0.60;
  background-image: linear-gradient(to bottom, rgba(3, 1, 5, 0), #030105);
  z-index: 1;
}
.masthead-slider .img-wrapper:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -1px;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: url("./images/mask.svg") no-repeat bottom center/contain;
}
.masthead-slider .img-wrapper img {
  position: absolute;
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.masthead-slider .slick-current .img-wrapper img {
  animation: zoomOutSlow 5s forwards ease-out;
}
.masthead-slider .slider-content {
  width: 100%;
  height: 100%;
  padding-top: 50%;
  position: relative;
  z-index: 3;
}
.masthead-slider .slider-content a {
  color: var(--white);
  background-image: linear-gradient(108deg, #a9d16f, #007097);
  font-family: "Metropolis";
  border-radius: 8px;
  font-size: 15px;
  padding: 1.25rem 1.75rem;
  transition: all 0.25s ease-out;
  display: inline-block;
}
.masthead-slider .slider-content a:hover {
  outline: none;
  text-decoration: none;
  background-image: linear-gradient(108deg, #6c9c26, #013548);
  transform: translate(0, -8px);
}
.masthead-slider h1 {
  margin: 0 2px;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 54px;
}
.masthead-slider .slick-current h1 {
  animation: fadeUpSlow 1.15s forwards ease-out;
}
.masthead-slider .slick-current .slider-content a {
  animation: fadeUpSlower 1.15s forwards ease-out;
}
@media (min-width: 640px) {
  .masthead-slider .img-wrapper {
    padding-bottom: 80%;
  }
  .masthead-slider .slider-content {
    padding-top: 40%;
  }
}
@media (min-width: 768px) {
  .masthead-slider .img-wrapper {
    padding-bottom: 41.6666%;
  }
  .masthead-slider .slider-content {
    padding-top: 15%;
  }
}
@media (min-width: 1200px) {
  .masthead-slider h1 {
    margin-bottom: 2.25rem;
  }
  .masthead-slider .slider-content {
    padding-top: 18%;
  }
  .masthead-slider a {
    padding: 1.05rem 3rem;
  }
}
@media (min-width: 1200px) {
  .masthead-slider .slider-content {
    padding-top: 20%;
  }
}
@media (min-width: 1400px) {
  .masthead-slider .slider-content {
    padding-top: 24%;
  }
}
@media (min-width: 1600px) {
  .masthead-slider .slider-content {
    padding-top: 30%;
  }
}
.masthead-slider .slick-dots {
  bottom: 6%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .masthead-slider .slick-dots {
    bottom: 15%;
  }
}
.masthead-slider .slick-dots li {
  line-height: 0;
}
.masthead-slider .slick-dots li a {
  color: var(--lightgrey);
  height: 16px;
  line-height: 16px;
}
.masthead-slider .slick-dots li a:hover {
  color: var(--accent);
}
@media (min-width: 768px) {
  .masthead-slider .slick-dots li {
    margin: 6px;
  }
}
.masthead-slider .slick-dots li button {
  margin: 0 auto;
  width: 16px;
  height: 16px;
  background: var(--lightgrey);
  transition: background-color 0.25s ease;
  border-radius: 50%;
}
.masthead-slider .slick-dots li button:before {
  display: none;
}
.masthead-slider .slick-dots li button:hover {
  background: var(--white);
}
.masthead-slider span:before {
  line-height: 10px;
}
.masthead-slider .slick-dots li.slick-active button {
  background-color: var(--accent);
}

@keyframes col1FadeUp {
  0% {
    transform: translate(0, 20%);
    opacity: 0;
  }
  70% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes col2FadeUp {
  0% {
    transform: translate(0, 20%);
    opacity: 0;
  }
  10% {
    transform: translate(0, 20%);
    opacity: 0;
  }
  80% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes col3FadeUp {
  0% {
    transform: translate(0, 20%);
    opacity: 0;
  }
  20% {
    transform: translate(0, 20%);
    opacity: 0;
  }
  90% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes col4FadeUp {
  0% {
    transform: translate(0, 20%);
    opacity: 0;
  }
  30% {
    transform: translate(0, 20%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes zoomOutSlow {
  from {
    transform: scale(1.1) translate(-0.05%, -0.05%);
  }
  to {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes fadeUpSlow {
  from {
    transform: translate(0, 30%);
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes fadeUpSlower {
  from {
    transform: translate(0, 50%);
    opacity: 0;
  }
  40% {
    transform: translate(0, 50%);
  }
  45% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.navbar-nav .dropdown-menu {
  transform: translate(-14px, 1px);
}

.language-dropdown .dropdown-menu {
  transform: translate(10px, 12px);
}

.about-dropdown .dropdown-menu {
  min-width: 12.75rem;
  padding: 0;
}
.about-dropdown .dropdown-menu a {
  padding: 0.95rem 1.5rem;
  color: #222024;
  display: block;
}
.about-dropdown .dropdown-menu a:hover {
  text-decoration: none;
}

.speech-bubble {
  background: #ececec;
  position: relative;
  margin-top: 2rem;
  padding: 3rem 1.5rem;
  text-align: center;
}
.speech-bubble:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 25px solid transparent;
  border-bottom-color: #ececec;
  border-top: 0;
  margin-left: -25px;
  margin-top: -25px;
}
.speech-bubble h3 {
  color: #007097;
  font-size: 25px;
  display: block;
  margin: 0 auto;
}
.speech-bubble .col-12 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.speech-bubble .text-center {
  justify-content: center !important;
}
.speech-bubble .border-group {
  width: 38%;
  margin: 12px;
}
.speech-bubble .border-group a:hover {
  text-decoration: none;
}
.speech-bubble .rounded-circle {
  max-width: 100%;
  border-width: 4px !important;
}
.speech-bubble strong {
  position: relative;
  top: 1rem;
  font-family: PingFangTC-Medium, "STHeiti", sans-serif;
  font-size: 19px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .speech-bubble {
    padding: 3rem;
  }
}
@media (min-width: 992px) {
  .speech-bubble .border-group {
    width: 23%;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  .speech-bubble .border-group {
    width: 136px;
    margin-bottom: 0;
  }
}

.stories {
  text-align: center;
}
.stories .zebra {
  margin-bottom: 8px;
}
.stories .hero {
  font-size: 30px;
  margin-bottom: 0.5rem;
}
.stories h2 {
  font-size: 25px;
}
.stories .unit {
  font-size: 15px;
  line-height: 34px;
}
.stories .caption {
  color: var(--white);
  font-size: 15px;
}
.stories .color-wrapper, .stories .image-content {
  padding: 30px 15px;
}
.stories .image-content {
  z-index: 2;
  position: relative;
  text-align: left;
}
.stories a {
  color: var(--accent);
}
.stories a:after {
  content: "";
  display: inline-block;
  font-family: "winstron";
}
.stories .image-wrapper {
  height: 0;
  padding-bottom: 65%;
  position: relative;
}
.stories .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.stories .image-wrapper:before {
  z-index: 1;
  opacity: 0.72;
  height: 100%;
  width: 50%;
  position: absolute;
  display: block;
  background-image: linear-gradient(to right, #030105 0%, rgba(3, 1, 5, 0));
  content: "";
}
@media (min-width: 768px) {
  .stories .zebra {
    margin-bottom: 1.5rem;
  }
  .stories .image-wrapper {
    height: 0;
    padding-bottom: 35%;
  }
  .stories .color-wrapper {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }
  .stories .color-wrapper .large-middle {
    display: flex;
    flex-direction: column;
    align-self: center;
  }
  .stories .color-wrapper.background-sea-green:after {
    border-left-color: var(--sea-green) !important;
  }
  .stories .color-wrapper.background-mantis:after {
    border-left-color: var(--mantis) !important;
  }
  .stories .color-wrapper.background-yellow:after {
    border-left-color: var(--yellow) !important;
  }
  .stories .color-wrapper.background-peach:after {
    border-left-color: var(--peach) !important;
  }
  .stories .color-wrapper.background-froly:after {
    border-left-color: var(--froly) !important;
  }
  .stories .color-wrapper.background-purple:after {
    border-left-color: var(--purple) !important;
  }
  .stories .color-wrapper:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    border: 22px solid transparent;
    border-left-width: 30px;
    border-right: 0;
    margin-top: -30px;
    margin-right: -30px;
    z-index: 2;
  }
  .stories .image-content {
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
  }
  .stories .odd {
    flex-direction: row-reverse;
  }
  .stories .odd .color-wrapper.background-sea-green:after {
    border-right-color: var(--sea-green) !important;
  }
  .stories .odd .color-wrapper.background-mantis:after {
    border-right-color: var(--mantis) !important;
  }
  .stories .odd .color-wrapper.background-yellow:after {
    border-right-color: var(--yellow) !important;
  }
  .stories .odd .color-wrapper.background-peach:after {
    border-right-color: var(--peach) !important;
  }
  .stories .odd .color-wrapper.background-froly:after {
    border-right-color: var(--froly) !important;
  }
  .stories .odd .color-wrapper.background-purple:after {
    border-right-color: var(--purple) !important;
  }
  .stories .odd .color-wrapper:after {
    content: "";
    left: 0;
    right: auto;
    border: 22px solid transparent;
    border-right-width: 30px;
    border-left: 0;
    margin-left: -30px;
    z-index: 2;
  }
  .stories .color-content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
  }
}
@media (min-width: 992px) {
  .stories {
    max-width: 960px;
  }
  .stories .color-content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
  }
}
@media (min-width: 1200px) {
  .stories {
    max-width: 1140px;
  }
  .stories .hero {
    font-size: 58px;
  }
  .stories .unit {
    font-size: 15px;
  }
  .stories h2 {
    font-size: 37px;
  }
}

.list {
  list-style: none;
  padding: 0;
  color: #222024;
}
.list li {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.list li:first-of-type {
  border-top: 1px solid #e0e0e0;
}
.list li:after {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 12px));
  right: 8px;
  height: 24px;
  width: 24px;
  content: "";
  font-size: 28px;
  font-family: "winstron";
  color: var(--accent);
}
.list .date {
  font-size: 12px;
  font-family: Inter;
  margin-bottom: 0.45rem;
  margin-top: 0.2rem;
}
.list .content {
  font-family: Metropolis;
  font-size: 19px;
  font-weight: bold;
  width: calc(100% - 18px);
}
@media (min-width: 992px) {
  .list li {
    display: flex;
    align-items: center;
    padding: 2rem 1.5rem 1.4rem;
    transition: all 0.25s ease;
  }
  .list li:after {
    opacity: 0;
  }
  .list li:hover {
    background-color: rgba(195, 195, 196, 0.08);
  }
  .list li:hover:after {
    opacity: 1;
  }
  .list li:hover .date, .list li:hover .content {
    opacity: 1;
  }
  .list li.download-list:hover:after {
    opacity: 0;
  }
  .list .date {
    opacity: 0.87;
    font-size: 15px;
    margin-right: 2.5rem;
  }
  .list .content {
    opacity: 0.87;
    font-size: 19px;
    width: calc(100% - 197px);
  }
}

.download-list li:after {
  content: "";
}
.download-list li {
  display: flex;
  justify-content: space-between;
}
.download-list .download-content {
  display: flex;
  flex-flow: column;
  flex: 1;
}
.download-list a {
  font-family: Metropolis;
  font-size: 12px;
  font-weight: bold;
  color: #a9d16f;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
}
.download-list a img {
  margin-left: 0.5rem;
}
.download-list a:hover {
  text-decoration: none;
}
.download-list a span {
  opacity: 0;
}
@media (min-width: 992px) {
  .download-list a {
    opacity: 0;
  }
  .download-list a span {
    opacity: 1;
  }
  .download-list a:hover {
    opacity: 1;
  }
}

.banner-wrapper {
  position: relative;
  overflow: hidden;
}
.banner-wrapper:after {
  bottom: 0;
  width: 100%;
  height: 60%;
  position: absolute;
  content: "";
  display: block;
  opacity: 0.72;
  background-image: linear-gradient(to bottom, rgba(3, 1, 5, 0), #030105);
  z-index: 0;
}
.banner-wrapper.large .banner {
  padding-bottom: 106%;
}
.banner-wrapper.large .banner:after {
  display: none;
}
.banner-wrapper.large .banner .tip {
  font-size: 12px;
  margin-bottom: 0.85rem;
  display: block;
  color: var(--accent);
  opacity: 0;
}
.banner-wrapper.large .banner .underlined:after {
  height: 8px;
  width: 88px;
}
.banner-wrapper.large .banner h1 {
  color: #fdfdfd;
  position: static;
  margin-bottom: 16px;
  font-size: 40px;
}
.banner-wrapper.large .banner h3 {
  font-size: 25px;
  font-weight: 600;
  color: #a9d16f;
}
.banner-wrapper.large .banner .title {
  z-index: 2;
  bottom: 20px;
  position: absolute;
  text-align: center;
  padding: 0 10px;
  width: 100%;
}
.banner-wrapper.large .banner .project-title {
  bottom: 15vw;
  padding: 0 5vw;
}
@media (min-width: 620px) {
  .banner-wrapper.large .banner {
    padding-bottom: 80%;
  }
}
@media (min-width: 620px) {
  .banner-wrapper.large .banner {
    padding-bottom: 70%;
  }
}
@media (min-width: 992px) {
  .banner-wrapper.large .banner {
    padding-bottom: 41%;
  }
  .banner-wrapper.large .banner .title {
    bottom: 3rem;
  }
  .banner-wrapper.large .banner h1 {
    margin-bottom: 0;
  }
  .banner-wrapper.large .banner .project-title {
    bottom: 7.5rem;
  }
}
@media (min-width: 1200px) {
  .banner-wrapper.large {
    margin-bottom: 7.25rem;
  }
  .banner-wrapper.large .banner {
    padding-bottom: 41%;
  }
}

.banner {
  position: relative;
  height: 0;
  padding-bottom: 44.8%;
}
.banner img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}
.banner:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -1px;
  left: -1px;
  height: 100%;
  width: calc(100% + 2px);
  z-index: 1;
  background: url("./images/mask.svg") no-repeat bottom center/contain;
  transform: scaleX(-1);
}
.banner h1 {
  color: var(--white);
  font-family: Metropolis;
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  bottom: -12px;
  text-align: center;
  width: 100%;
  z-index: 2;
}
@media (min-width: 768px) {
  .banner {
    padding-bottom: 20.8%;
  }
  .banner h1 {
    bottom: 0;
  }
}
@media (min-width: 992px) {
  .banner {
    padding-bottom: 20.8%;
  }
  .banner h1 {
    bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .banner h1:after {
    height: 8px;
    width: 80px;
  }
}
@media (min-width: 1200px) {
  .banner h1 {
    bottom: 2rem;
  }
}
@media (min-width: 1680px) {
  .banner h1 {
    bottom: 3rem;
  }
}
@media (min-width: 1920px) {
  .banner h1 {
    bottom: 3.5rem;
  }
}

.left-line {
  position: relative;
  padding-left: 2rem !important;
  padding-right: 1rem !important;
}
.left-line:before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  left: 0;
  height: 100%;
  background: var(--accent);
}

.page-content {
  font-size: 19px;
  line-height: 1.68;
  color: #5e5d60;
}

.color-column .type-column {
  margin-bottom: 15px;
}
.color-column .type-column:hover .boxed {
  border-width: 8px;
}
.color-column .type-column:hover .boxed:after {
  opacity: 1;
  transform: translateX(0) translateY(-50%);
}
.color-column .type-column:hover .color-overlay:after {
  opacity: 0.64;
}
.color-column .type-column:hover span {
  transform: translateX(-10px);
}
.color-column .column-header img {
  margin: 0 auto;
  padding: 5px 0;
  display: block;
}
.color-column .color-overlay {
  position: relative;
}
.color-column .color-overlay.inline-overlay:after {
  background-color: var(--overlay-color);
}
.color-column .color-overlay.background-sea-green:after {
  background-color: var(--sea-green);
}
.color-column .color-overlay.background-mantis:after {
  background-color: var(--mantis);
}
.color-column .color-overlay.background-yellow:after {
  background-color: var(--yellow);
}
.color-column .color-overlay.background-peach:after {
  background-color: var(--peach);
}
.color-column .color-overlay.background-froly:after {
  background-color: var(--froly);
}
.color-column .color-overlay.background-purple:after {
  background-color: var(--purple);
}
.color-column .color-overlay:after {
  transition: opacity 0.25s ease-out;
  z-index: 1;
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
}
.color-column .image-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 64%;
  pointer-events: none;
}
.color-column .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.color-column .boxed {
  transition: border 0.25s ease-out;
  border: solid 4px #fdfdfd;
  font-family: Metropolis;
  font-size: 37px;
  font-weight: bold;
  text-align: center;
  color: #fdfdfd;
  position: absolute;
  width: calc(100% - 26px);
  height: calc(100% - 26vw);
  top: 13vw;
  left: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.color-column .boxed span {
  transition: transform 0.25s ease-out;
}
.color-column .boxed:after {
  content: "";
  transition: all 0.25s ease-out;
  background: url("/assets/images/arrow-right.svg") no-repeat top center;
  color: var(--white);
  font-size: 50px;
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 6px);
  transform: translateX(-40%) translateY(-50%);
  width: 48px;
  height: 42px;
  opacity: 0;
}
.color-column .color-content {
  color: #fff;
  padding: 20px 25px;
}
.color-column .color-content p {
  font-family: Inter;
  font-size: 15px;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
}
@media (min-width: 768px) {
  .color-column {
    padding: 0 15px !important;
  }
  .color-column .image-wrapper {
    padding-bottom: 42.1%;
  }
  .color-column .type-column {
    margin-bottom: 30px;
  }
  .color-column .color-content {
    padding: 25px 100px;
  }
  .color-column .row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .color-column .col-12.col-md-6 {
    padding: 0 15px !important;
  }
  .color-column .boxed {
    top: 40px;
    left: 15%;
    height: calc(100% - 80px);
    width: calc(100% - 30%);
  }
  .color-column .boxed:after {
    top: calc(50% - 6px);
  }
  .color-column .type-column:hover span:after {
    opacity: 1;
    transform: translateX(180%) translateY(-45%);
  }
}
@media (min-width: 992px) {
  .color-column .boxed:after {
    top: calc(50% - 6px);
  }
  .color-column .color-content p {
    height: 66px;
  }
}

html[lang=en] .color-column .boxed {
  font-size: 25px;
}
html[lang=en] span:after {
  transform: translateY(-55%);
}
@media (min-width: 768px) {
  html[lang=en] .type-column:hover span:after {
    opacity: 1;
    transform: translateX(100%) translateY(-55%);
  }
}

.blue-tag {
  background: #007097;
  font-family: Metropolis;
  font-size: 15px;
  font-weight: bold;
  color: #fdfdfd;
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 2rem;
}

.full-slider {
  max-height: 700px;
  margin-bottom: 0 !important;
  overflow: hidden;
}
.full-slider .img-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 80%;
}
.full-slider .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.full-slider .img-wrapper:before {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  top: 0;
  left: 0;
  opacity: 0.72;
  z-index: 1;
  background-image: linear-gradient(to right, #030105 0%, rgba(3, 1, 5, 0) 100%);
}
.full-slider .slider-content, .full-slider .container {
  position: relative;
  z-index: 3;
}
.full-slider .slider-content {
  padding: 3rem 0;
}
.full-slider .green {
  font-family: PingFangTC, "Metropolis", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #a9d16f;
}
.full-slider a {
  color: var(--white);
  background-image: linear-gradient(108deg, #a9d16f, #007097);
  font-family: "Metropolis";
  border-radius: 8px;
  font-size: 15px;
  padding: 1.05rem 2rem;
  transition: all 0.25s ease-out;
  display: inline-block;
  margin-top: 1rem;
}
.full-slider a:hover {
  outline: none;
  color: #a9d16f;
  text-decoration: none;
  background-image: linear-gradient(108deg, #6c9c26, #013548);
}
.full-slider .slick-current .tip, .full-slider .slick-current h1 {
  animation: fadeUpSlow 0.5s forwards ease-out;
}
.full-slider .slick-current .p1 {
  animation: fadeUpSlow 0.8s forwards ease-out;
}
.full-slider .slick-current .column:nth-of-type(1) {
  animation: col1FadeUp 1.5s 0.45s forwards ease-out;
}
.full-slider .slick-current .column:nth-of-type(2) {
  animation: col2FadeUp 1.75s 0.45s forwards ease-out;
}
.full-slider .slick-current .column:nth-of-type(3) {
  animation: col3FadeUp 2s 0.45s forwards ease-out;
}
.full-slider .slick-current .column:nth-of-type(4) {
  animation: col4FadeUp 2.25s 0.45s forwards ease-out;
}
.full-slider h1, .full-slider .p1 {
  font-family: "Inter", "PingFangTC", sans-serif;
  color: #FDFDFD;
}
.full-slider h1 {
  word-break: break-word;
  font-size: 47px;
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.full-slider .tip, .full-slider .amount {
  color: var(--accent);
}
.full-slider .amount {
  margin-bottom: 0;
}
.full-slider .unit {
  font-family: Metropolis;
  font-size: 12px;
  font-weight: bold;
  color: #fdfdfd;
  margin-left: 5px;
}
.full-slider .caption {
  font-family: Metropolis;
  font-size: 15px;
  font-weight: bold;
  color: #fdfdfd;
}
.full-slider .column {
  width: 45%;
  margin-right: 14px;
  margin-bottom: 1rem;
}
@media (min-width: 410px) {
  .full-slider .img-wrapper {
    padding-bottom: 80%;
  }
}
@media (min-width: 520px) {
  .full-slider .img-wrapper {
    padding-bottom: 60%;
  }
  .full-slider .column {
    width: 44%;
    margin-right: 20px;
  }
}
@media (min-width: 768px) {
  .full-slider .img-wrapper {
    padding-bottom: 52%;
  }
}
@media (min-width: 992px) {
  .full-slider .column {
    width: auto;
    margin-right: 1.85rem;
  }
  .full-slider .tip {
    font-size: 15px;
    margin-bottom: 0.85rem;
  }
  .full-slider h1 {
    font-size: 47px;
  }
  .full-slider .caption {
    font-size: 15px;
  }
  .full-slider .slider-content {
    padding-top: 5vh;
    max-width: 97%;
  }
}
@media (min-width: 1200px) {
  .full-slider .img-wrapper {
    padding-bottom: 38%;
  }
}
@media (min-width: 1400px) {
  .full-slider .img-wrapper {
    padding-bottom: 25%;
  }
}

.slider-wrapper {
  margin-top: 2.25rem;
}
.slider-wrapper .slick-dot {
  position: relative;
}
.slider-wrapper .slick-dots {
  bottom: 28px;
}
.slider-wrapper .slick-dots .tl-headline li.slick-active button {
  background: var(--accent);
  opacity: 1;
}
.slider-wrapper .slick-dots li {
  margin-left: 0;
  margin-right: 1.5rem;
}
.slider-wrapper .slick-dots li button {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  opacity: 0.48;
  background-color: var(--accent);
}
.slider-wrapper .slick-dots li button:after, .slider-wrapper .slick-dots li button:before {
  display: none;
}
.slider-wrapper .slick-dots li.slick-active button {
  opacity: 1;
}
@media (min-width: 992px) {
  .slider-wrapper {
    margin-top: 5.5rem;
  }
}

.nature-and-humanities footer {
  margin-top: 0;
}

.related-stories {
  margin-top: 6rem !important;
}
.related-stories .introduction-row {
  margin-bottom: 2.75rem;
}
.related-stories h1 {
  font-size: 37px;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .related-stories {
    padding: 4rem 15px 4.5rem !important;
  }
}

.story-column .image-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 58%;
}
.story-column .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-column .image-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  background-color: #007097;
  width: 100%;
  height: 100%;
  transition: all 0.25s ease-out;
}
.story-column:hover .image-wrapper:after {
  opacity: 0.48;
}
.story-column:hover .content h2 {
  color: #007097;
}
.story-column h2 {
  font-size: 25px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.story-column .content {
  padding: 1rem 0.5rem 0 1.5rem;
  background: #fdfdfd;
  position: relative;
  top: -2.5rem;
  left: 2rem;
  width: calc(100% - 2rem);
}
.story-column .content .inner-content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 46px;
  margin-bottom: 1rem;
}
.story-column .content p {
  font-size: 15px;
  margin-bottom: 0;
}
.story-column .content .tip {
  font-size: 15px;
  font-weight: bold;
  color: #a9d16f;
}
.story-column .content .tip:after {
  margin-left: 4px;
  content: "";
  display: inline-block;
  font-family: "winstron";
}
@media (min-width: 992px) {
  .story-column .image-wrapper {
    padding-bottom: 54%;
  }
}

.social-modal {
  padding-right: 0 !important;
}
.social-modal .close {
  text-shadow: none;
  opacity: 1;
  margin-top: 0 !important;
  margin-right: -0.15rem !important;
  padding: 0.25rem;
  width: 24px;
  height: 24px;
  position: relative;
}
.social-modal .close:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("/assets/images/close.svg") top center/cover;
}
.social-modal .close:hover {
  opacity: 1;
}
.social-modal .close:focus {
  outline: none;
}
.social-modal .modal-dialog {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.social-modal .program-image {
  width: 80%;
  line-height: 0;
}
.social-modal .program-image img {
  width: 100%;
}
.social-modal .modal-content {
  height: auto;
  min-height: 100%;
  border-radius: 0;
  background: var(--overlay-color);
  padding-top: 0;
  border: 0 solid transparent;
}
.social-modal h5 {
  font-size: 47px;
  font-weight: 600;
  font-family: "Metropolis", "PingFangTC", sans-serif;
  color: #fdfdfd;
  margin-bottom: 1rem;
}
.social-modal .modal-header {
  margin-top: 0;
  padding-top: 0.25rem;
}
.social-modal .modal-body {
  padding: 0;
  color: #ececec;
}
.social-modal .modal-body > div {
  padding: 0 15px;
}
.social-modal .modal-body .modal-gallery {
  margin: 0;
  padding: 0;
}
.social-modal .modal-body ul {
  padding-left: 0;
}
.social-modal .modal-body h6 {
  font-size: 25px;
  margin-bottom: 1.15rem;
  font-family: "Metropolis", "PingFangTC", sans-serif;
}
.social-modal .modal-intro {
  margin: 1.5rem auto;
  padding-left: 2rem;
  line-height: 1.68;
}
.social-modal .modal-intro:before {
  background: #fdfdfd;
}
.social-modal .modal-objective li {
  list-style: none;
  margin-bottm: 0.85rem;
  background: url("/assets/images/check.svg") no-repeat left top/24px;
  padding-left: 30px;
}
.social-modal .modal-goals li {
  list-style: none;
  margin-bottom: 0.85rem;
  background: url("/assets/images/arrow.svg") no-repeat left top/24px;
  padding-left: 30px;
}
.social-modal .modal-objective, .social-modal .modal-goals {
  font-size: 15px;
  margin-bottom: 2rem;
}
.social-modal .modal-objective p, .social-modal .modal-goals p {
  color: #ececec;
  font-size: 15px;
}
.social-modal .modal-objective li p, .social-modal .modal-goals li p {
  color: #fdfdfd;
  font-size: 15px;
}
.social-modal .btn {
  display: block;
  padding: 12px 15px;
  font-family: Metropolis;
  font-size: 15px;
  font-weight: bold;
  color: #222024;
  border-radius: 8px;
  box-shadow: 0 8px 24px 0 rgba(34, 32, 36, 0.16);
  background-color: #fdfdfd;
  margin-bottom: 12px;
  text-align: left;
  position: relative;
  transition: all 0.25s ease-out;
}
.social-modal .btn:after {
  position: absolute;
  right: 10px;
  content: "";
  display: block;
  font-family: "winstron";
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--accent);
}
.social-modal .btn:hover {
  color: #a9d16f;
  text-decoration: none;
  box-shadow: 0 8px 24px 0 rgba(169, 209, 111, 0.72);
  background-color: #fdfdfd;
  transform: translate(0, -2px);
}
@media (min-width: 768px) {
  .social-modal .modal-header {
    padding: 0;
    display: flex;
    flex-flow: row nowrap;
  }
  .social-modal .modal-header h5 {
    padding: 0;
  }
  .social-modal .modal-header .program-image {
    max-width: 630px;
    width: 66%;
  }
  .social-modal .close {
    width: 42px;
    height: 42px;
  }
}
@media (min-width: 992px) {
  .social-modal .modal-header {
    margin-top: 1rem;
  }
  .social-modal .modal-title {
    display: flex;
    align-items: center;
  }
  .social-modal .modal-objective, .social-modal .modal-goals {
    padding: 0;
  }
  .social-modal .modal-header .program-image {
    width: 50%;
    margin-left: 10%;
  }
}

.modal-slider {
  margin-top: 2.5rem;
}
.modal-slider .slick-next, .modal-slider .slick-prev {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  box-shadow: 0 8px 24px 0 rgba(34, 32, 36, 0.16);
  background-color: #fdfdfd;
  transition: all 0.25s ease-out;
}
.modal-slider .slick-next:before, .modal-slider .slick-prev:before {
  content: "";
  display: block;
  font-family: "winstron";
  color: var(--dark);
  font-size: 1.5rem;
}
.modal-slider .slick-next:hover, .modal-slider .slick-prev:hover {
  color: #a9d16f;
  text-decoration: none;
  box-shadow: 0 8px 24px 0 rgba(169, 209, 111, 0.72);
  background-color: #fdfdfd;
  transform: translate(0, calc(-50% - 2px));
}
.modal-slider .slick-prev {
  left: 2px;
  z-index: 1;
}
.modal-slider .slick-prev:before {
  transform: rotate(180deg);
}
.modal-slider .slick-next {
  right: 2px;
}
@media (min-width: 992px) {
  .modal-slider .slick-prev {
    left: 31.5%;
  }
  .modal-slider .slick-next {
    right: 31.5%;
  }
}

@media (min-width: 1200px) {
  .project .banner-wrapper.large {
    margin-bottom: 56px;
  }
}

.project .slick-arrow {
  pointer-events: none;
  display: none;
  opacity: 0;
  visibility: hidden;
}

.project .slick-list.draggable {
  pointer-events: none;
}

.quick-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.quick-nav ul {
  display: flex;
  width: 100%;
  flex-flow: row nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  margin-bottom: 0;
  padding: 0;
  border-top: 1px solid rgba(195, 195, 196, 0.48);
  border-bottom: 1px solid rgba(195, 195, 196, 0.48);
  list-style: none;
}
.quick-nav li {
  border-right: 1px solid rgba(195, 195, 196, 0.48);
  padding: 10px;
  transition: all 0.25s ease-out;
}
.quick-nav li:last-of-type {
  border-right: none;
}
.quick-nav li:hover {
  background-color: rgba(3, 1, 5, 0.48);
}
.quick-nav a {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  font-family: Metropolis;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  color: #fdfdfd;
}
.quick-nav a:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .quick-nav ul {
    justify-content: center;
  }
  .quick-nav li {
    padding: 20px 35px;
  }
  .quick-nav li:first-of-type {
    border-left: 1px solid rgba(195, 195, 196, 0.48);
  }
  .quick-nav li:last-of-type {
    border-right: 1px solid rgba(195, 195, 196, 0.48);
  }
}

.square-image {
  position: relative;
  padding-bottom: 100%;
  height: 0;
}
.square-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.project p {
	font-family: Metropolis;
  line-height: 32px;
}
.project .numbers {
  text-align: center;
  margin: 4rem 0 0;
}
.project .numbers .hero {
  color: var(--accent);
  font-family: Metropolis;
  font-size: 37px;
  font-weight: bold;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
}
.project .numbers .unit {
  font-family: Metropolis;
  font-size: 15px;
  font-weight: bold;
  color: #222024;
  margin-left: 4px;
}
.project .numbers .caption {
  font-family: Inter;
  font-size: 15px;
  text-align: center;
  color: #5e5d60;
  margin: 0;
}
.project .numbers .col-6 {
  margin-bottom: 2rem;
}
.project .background-gallery {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 4rem;
}
.project .background-gallery .project-image {
  position: relative;
  padding-bottom: 61.5%;
  height: 0;
}
.project .background-gallery .col {
  width: 50%;
  padding: 0;
}
.project .background-gallery img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  position: absolute;
}
@media (min-width: 768px) {
  .project h1 {
    font-size: 37px;
  }
  .project .background-gallery {
    display: flex;
    flex-flow: row nowrap;
  }
  .project .background-gallery .col-6 {
    width: 25%;
  }
  .project .text-md-left {
    text-align: left;
  }
  .project .text-md-left:after {
    left: 15px;
    bottom: auto;
    top: 55px;
    transform: none;
  }
}
@media (min-width: 992px) {
  .project .numbers {
    text-align: center;
  }
  .project .numbers .hero {
    font-size: 60px;
  }
  .project .numbers .unit {
    font-size: 19px;
  }
  .project .numbers .caption {
    font-size: 15px;
  }
}

.full-container {
  width: 100%;
  overflow: hidden;
}

.task-item h3 {
  color: var(--accent);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.task-item .caption {
  font-size: 15px;
  font-weight: 600;
  color: #222024;
}
.task-item .content {
  font-size: 19px;
  line-height: 2;
  color: #5e5d60;
}
@media (min-width: 768px) {
  .task-item.offset-md-4 {
    margin-left: 33.333333%;
  }
}
@media (min-width: 992px) {
  .task-item {
    margin-top: 0;
  }
}

.dark-grey-bg {
  margin-top: 5.28rem;
}

.outcome-wrapper .image-wrapper {
  position: relative;
  padding-bottom: 85%;
  height: 0;
  width: 100%;
}
.outcome-wrapper .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.outcome-wrapper h1 {
  margin-top: 3.5rem;
  font-family: Metropolis;
  font-size: 37px;
  font-weight: bold;
  color: #222024;
}
@media (min-width: 992px) {
  .outcome-wrapper .image-wrapper {
    padding-bottom: 42%;
  }
}

.task-container {
  margin: 1rem auto 2rem;
}

.mt-8 {
  margin-top: 4rem;
}

.outcome-content {
  overflow: hidden;
  text-align: center;
}
.outcome-content ul {
  padding: 0 15px;
}
.outcome-content li {
  font-family: Metropolis;
  font-size: 19px;
  font-weight: bold;
  color: #222024;
  list-style: none;
  margin-bottom: 1.25rem;
  background: url("/assets/images/green-check.svg") no-repeat left top/24px;
  padding-left: 30px;
}
.outcome-content strong {
  display: block;
  font-family: Metropolis;
  font-size: 25px;
  color: var(--accent);
  line-height: 1.1;
  position: relative;
  left: -1px;
}
.outcome-content p {
  font-family: Metropolis;
  font-size: 19px;
  color: #5e5d60;
  margin-bottom: 1.25rem;
  padding-left: 0;
}
.outcome-content .text-md-left:after {
  position: absolute;
  bottom: 0;
  height: 4px;
  width: 48px;
  display: block;
  content: "";
  background: var(--accent);
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .outcome-content {
    text-align: left;
    width: 92%;
    margin: 0 auto;
  }
  .outcome-content .text-md-left:after {
    left: 0;
    transform: none;
  }
}

.separator {
  border-bottom: 1px solid rgba(195, 195, 196, 0.48);
}

.btn-group {
  margin: 0 -4px 2.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 48px 0 rgba(0, 112, 151, 0.24);
  background-color: #fdfdfd;
  display: flex;
  justify-content: center;
}
.btn-group a {
  border-right: 1px solid rgba(195, 195, 196, 0.48);
  border-radius: 8px;
  padding: 0.85rem 1.48rem 0.7rem;
  font-family: Metropolis;
  font-size: 15px;
  font-weight: bold;
  white-space: nowrap;
}
.btn-group a:first-of-type {
  padding-left: 1.75rem;
}
.btn-group a:last-of-type {
  border-right: 0 solid transparent;
  padding-right: 1.75rem;
}
.btn-group a:focus {
  outline: none;
  box-shadow: none;
}
.btn-group a.active {
  background-color: #007097;
  color: #fdfdfd;
}
.btn-group a.active:hover {
  background-color: #007097;
}
.btn-group a:hover {
  background-color: rgba(195, 195, 196, 0.12);
}
@media (min-width: 414px) {
  .btn-group {
    margin: 0 auto 2.5rem;
  }
}
@media (min-width: 992px) {
  .btn-group {
    width: auto;
    margin: 1.85rem 0 4rem 15px;
  }
}

.tab-nav a {
  font-family: Metropolis;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  width: 50%;
  color: #222024;
  padding: 1rem 2rem 0.5rem;
  border-bottom: 4px solid transparent;
}
.tab-nav a:hover {
  text-decoration: none;
  background-color: rgba(195, 195, 196, 0.12);
}
.tab-nav .active {
  border-color: #a9d16f;
}
@media (min-width: 992px) {
  .tab-nav a {
    width: auto;
  }
}

#timeline > *, #timeline p, #timeline .tl-message, #timeline h1, #timeline h2, #timeline h3, #timeline h4, #timeline h5, #timeline h6 {
  font-family: "Inter", "PingFangTC", sans-serif !important;
  text-transform: none;
}
#timeline .tl-slide, #timeline .tl-media {
  padding-top: 0;
  border-top: 0 solid transparent;
}
#timeline .tl-storyslider {
  box-shadow: none !important;
}
#timeline .tl-timeaxis {
  pointer-events: none;
}
#timeline .tl-message-full {
  display: none;
}
#timeline .tl-slide .tl-slide-scrollable-container {
  width: 100%;
}
#timeline .tl-timeline .content {
  font-size: 15px;
  line-height: 1.85;
}
#timeline .tl-slide-content-container .tl-slide-content {
  flex-direction: column !important;
  padding: 0 !important;
  width: 100%;
  margin-bottom: 80px;
}
#timeline .tl-message {
  height: 50%;
}
#timeline .tl-media-content {
  width: 100%;
  padding-bottom: 56%;
}
#timeline .tl-media-content iframe, #timeline .tl-media-content img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  box-shadow: none;
  max-height: none;
}
#timeline .tl-timemarker.tl-timemarker-active .tl-timemarker-content-container {
  border-radius: 8px;
  box-shadow: 0 2px 16px 0 rgba(255, 195, 53, 0.48);
  background-color: #ffc335;
  border: 0;
  transition: all 0.25s ease-out;
}
#timeline .tl-timeaxis {
  pointer-events: none;
}
#timeline .tl-text-content-container h3.tl-headline-date {
  font-family: Metropolis !important;
  font-size: 37px !important;
  font-weight: bold !important;
  line-height: 37px !important;
  color: #a9d16f;
}
#timeline .tl-text-content-container h3.tl-headline-date span {
  font-size: 15px;
  font-weight: 600;
  color: #222024;
}
#timeline .tl-text-content-container .tl-text-content .content span {
  line-height: 1.68;
}
#timeline .tl-text-content-container .tl-text-content .link {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}
#timeline .tl-text-content-container .tl-text-content a {
  color: var(--accent);
}
#timeline .tl-text p {
  font-family: "Inter", "PingFangTC",  sans-serif !important;
  font-size: 15px;
  color: #5e5d60;
  line-height: 1.68;
}
#timeline .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text, #timeline .tl-timeaxis-tick-text {
  font-family: Metropolis;
  font-weight: bold;
  text-align: center;
  color: #007097;
}
#timeline .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick:before, #timeline .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick:before {
  background-color: rgba(195, 195, 196, 0.48);
}
#timeline .tl-timemarker .tl-timemarker-line-left {
  border-left-color: rgba(195, 195, 196, 0.48);
}
#timeline .tl-timemarker.tl-timemarker-active .tl-timemarker-line-left:after, #timeline .tl-timemarker.tl-timemarker-active .tl-timemarker-line-right:after {
  width: 14px;
  height: 14px;
  background-color: #a9d16f;
  left: -7px;
}
#timeline .tl-timemarker .tl-timemarker-line-left:after, #timeline .tl-timemarker .tl-timemarker-line-right:after {
  width: 14px;
  height: 14px;
  background-color: #a9d16f;
  left: -7px;
}
#timeline .tl-timemarker .tl-timemarker-line-left, #timeline .tl-timemarker .tl-timemarker-line-right {
  box-shadow: none;
}
#timeline .tl-timemarker .tl-timemarker-content-container {
  border-radius: 8px;
  box-shadow: 0 8px 24px 0 rgba(34, 32, 36, 0.16);
  background-color: #fdfdfd;
  border: 0 !important;
  width: 172px;
  max-height:75px;
  transition: all 0.25s ease-out;
}
#timeline .tl-timemarker .tl-timemarker-content-container:hover {
  box-shadow: 0 8px 24px 0 rgba(169, 209, 111, 0.72);
  background-color: #fdfdfd;
  color: #a9d16f;
  transform: translate(0, -2px);
}
#timeline .tl-timemarker .tl-timemarker-content-container:hover .tl-timemarker-text .tl-headline {
  color: #a9d16f;
}
#timeline .tl-timemarker-text .tl-headline {
  color: #222024;
}
#timeline .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content {
  padding: 12px;
}
#timeline .tl-timeaxis-tick-text span {
  display: none;
}
#timeline h3 {
  font-size: 19px;
  font-weight: 600;
  color: #007097;
}
#timeline .tl-slidenav-content-container {
  display: none;
}
#timeline .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container {
  max-width: 32px;
  max-height: 32px;
}
#timeline .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=tl-icon-], #timeline .tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=" tl-icon-"] {
  color: #5E5D60 !important;
}
#timeline .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-icon-image {
  margin: 0 4px;
}
#timeline .tl-icon-youtube {
  width: 32px;
  height: 32px;
  background: url("/assets/images/play.svg") no-repeat top center/28px;
}
#timeline .tl-icon-youtube:after {
  display: none;
}
#timeline .tl-menubar {
  display: none;
}
#timeline .content {
  font-size: 15px;
  line-height: 1.45;
}
@media (min-width: 992px) {
  #timeline .tl-storyslider {
    max-width: 960px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  #timeline .tl-slide .tl-slide-content-container {
    display: flex;
    padding-top: 80px;
  }
  #timeline .tl-slide .tl-slide-content-container .tl-slide-content .tl-text {
    vertical-align: top;
  }
  #timeline h2 {
    font-size: 25px;
    line-height: 1.45;
    font-weight: 600;
    color: #222024;
  }
  #timeline .tl-timemarker-text .tl-headline {
    font-family: Metropolis;
    font-size: 12px;
    font-weight: normal;
    color: #222024;
    line-height: 1.2;
    -webkit-line-clamp: 3!important;
  }
}
@media (min-width: 1200px) {
  #timeline .tl-storyslider {
    max-width: 1140px;
  }
}

.overflow-hidden-x {
  overflow-x: visible;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .overflow-hidden-x {
    overflow: visible;
    align-items: center;
  }
}

section.container.pagination-container {
  padding: 10px 15px;
  position: relative;
  top: 3rem;
  box-shadow: 0 8px 48px 0 rgba(0, 112, 151, 0.24);
  background-color: #fdfdfd;
  max-width: 100%;
}
section.container.pagination-container a:hover {
  text-decoration: none;
}
section.container.pagination-container .pagination {
  justify-content: space-between;
  align-items: center;
  gap:10px;
}
section.container.pagination-container form {
  display: flex;
  margin:0 auto;
}
section.container.pagination-container form input {
  border-radius: 4px;
  border: solid 1px #c3c3c4;
  width: 64px;
  text-align: center;
  padding: 0.2rem 0;
  margin-left: auto;
  margin-right: 0.35rem;
  position: relative;
}
section.container.pagination-container .prev-button, section.container.pagination-container .next-button {
  font-size: 1.6rem;
  color: #222024;
  flex: 2;
  display: inline-block;
  transition: all 0.25s ease-out;
}
section.container.pagination-container .prev-button.disabled, section.container.pagination-container .next-button.disabled {
  opacity: 0.12;
  pointer-events: none;
}
section.container.pagination-container .prev-button:hover, section.container.pagination-container .next-button:hover {
  box-shadow: 0 8px 24px 0 rgba(169, 209, 111, 0.72);
  background-color: #fdfdfd;
  transform: translate(0, -2px);
}
section.container.pagination-container input::-webkit-outer-spin-button,
section.container.pagination-container input::-webkit-inner-spin-button {
  margin-left: 4px;
  right: 0;
}
section.container.pagination-container form, section.container.pagination-container span {
  flex: 1;
  font-family: Inter;
  font-size: 15px;
  color: #5e5d60;
}
section.container.pagination-container .prev-button:after {
  content: "";
  font-family: "winstron";
}
section.container.pagination-container .next-button {
  text-align: right;
}
section.container.pagination-container .next-button:after {
  content: "";
  font-family: "winstron";
}
@media (min-width: 992px) {
  section.container.pagination-container {
    box-shadow: none;
    top: auto;
    display: flex;
    justify-content: flex-end;
    max-width: 960px;
    margin-bottom: 5rem;
  }
  section.container.pagination-container .pagination {
    width: 250px;
  }
  section.container.pagination-container span {
    order: 5;
  }
  section.container.pagination-container .prev-button, section.container.pagination-container .next-button, section.container.pagination-container form, section.container.pagination-container span {
    flex: 0 0 auto;
  }
  section.container.pagination-container form input {
    padding: 0.85rem 0 0.85rem 0.5rem;
  }
  section.container.pagination-container nav.d-none {
    z-index: 0;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 0.5rem;
  }
  section.container.pagination-container nav.d-none a {
    border-radius: 8px;
    box-shadow: 0 8px 24px 0 rgba(34, 32, 36, 0.16);
    background-color: #fdfdfd;
    font-family: Metropolis;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: #222024;
    padding: 1.15rem 3rem 0.75rem;
    transition: all 0.25s ease-out;
    position: relative;
    display: inline-block;
    margin: 0 1rem;
  }
  section.container.pagination-container nav.d-none a:hover {
    text-decoration: none;
    color: #a9d16f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px 0 rgba(169, 209, 111, 0.72);
    background-color: #fdfdfd;
  }
  section.container.pagination-container .pagination {
    position: relative;
    z-index: 1;
  }
  section.container.pagination-container .prev-button, section.container.pagination-container .next-button {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(195, 195, 196, 0.48);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.container.pagination-container .prev-button:after, section.container.pagination-container .next-button:after {
    font-size: 1.5rem;
  }
  section.container.pagination-container .prev-button:hover, section.container.pagination-container .next-button:hover {
    text-decoration: none;
  }
}
@media (min-width: 1200px) {
  section.container.pagination-container {
    max-width: 1140px;
  }
}

.resources-video .video-column .image-wrapper {
  height: 0;
  padding-bottom: 56%;
}
.resources-video .video-column .image-wrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.resources-video .video-column .image-wrapper:before {
  position: absolute;
  width: 100%;
  height: 90%;
  display: block;
  content: "";
  bottom: 0;
  opacity: 0.72;
  background-image: linear-gradient(to bottom, rgba(3, 1, 5, 0), #030105);
  z-index: 1;
}
.resources-video .video-column .image-wrapper:after {
  position: absolute;
  content: "";
  background: url("/assets/images/play-white.svg") top center/cover;
  width: 40px;
  height: 40px;
  right: 20px;
  bottom: 35px;
  z-index: 1;
}
.resources-video .content {
  position: absolute;
  z-index: 1;
  bottom: 15px;
  color: #fff;
  width: 80%;
}
.resources-video .content > * {
  color: #fdfdfd;
}
.resources-video .content .first-line {
  display: flex;
  font-family: Metropolis;
  font-size: 12px;
  font-weight: bold;
  color: #fdfdfd;
}
.resources-video .content .new-tag {
  background-color: #ff5518;
  padding: 0.2rem 0.5rem;
  margin-right: 8px;
}
.resources-video .content .date {
  border-radius: 100px;
  background-color: #a9d16f;
  padding: 0.2rem 0.5rem;
}
.resources-video .content h2 {
  font-family: Metropolis;
  font-size: 25px;
  color: #fdfdfd;
  margin-top: 1rem;
}
.resources-video .first .video-column .image-wrapper {
  padding-bottom: 96%;
}
.resources-video .first .video-column .image-wrapper:after {
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
}
.resources-video .first .content {
  width: 100%;
}
.resources-video .col-12 {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 8px;
}
.resources-video .col-12 .image-wrapper {
  position: relative;
  width: 100%;
}
.resources-video .col-12 .content {
  padding: 0 15px;
}
@media (min-width: 992px) {
  .resources-video .table-flex {
    margin-bottom: 5.25rem;
  }
  .resources-video .table-flex .row {
    display: block;
  }
  .resources-video .table-flex .col-lg-8 {
    width: 66.666667%;
  }
  .resources-video .table-flex .col-lg-4 {
    width: 66.666667%;
  }
  .resources-video .table-flex .col-lg-4:nth-child(2) {
    margin-top: 0.45rem;
  }
  .resources-video .table-flex .col-12 {
    float: left;
    margin-bottom: 2rem;
  }
  .resources-video .table-flex .caption {
    margin-bottom: 0;
  }
  .resources-video .col-12 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .resources-video .content h2 {
    font-family: Metropolis;
    font-size: 19px;
    font-weight: bold;
    color: #fdfdfd;
  }
  .resources-video .content .caption {
    font-family: Inter;
    font-size: 15px;
    color: #ececec;
  }
  .resources-video .first h2 {
    font-family: Metropolis;
    font-size: 25px;
    font-weight: bold;
    color: #fdfdfd;
  }
  .resources-video .first .caption {
    font-family: Inter;
    font-size: 15px;
    color: #ececec;
  }
  .resources-video .first .content {
    width: 85%;
  }
  .resources-video .first .video-column .image-wrapper {
    padding-bottom: 57.922%;
  }
  .resources-video .first .video-column .image-wrapper:after {
    top: auto;
    bottom: 30px;
    transform: none;
    left: auto;
    right: 30px;
  }
}

section.container-fluid.resources-list {
  padding-top: 0;
}

.news .back-news, .legal-terms .back-news, .privacy-policy .back-news {
  color: #222024;
  font-family: "Inter", "PingFangTC", sans-serif !important;
  font-size: 15px;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  display: inline-block;
}
.news .back-news span, .legal-terms .back-news span, .privacy-policy .back-news span {
  font-size: 1.5rem;
}
.news .back-news span:before, .legal-terms .back-news span:before, .privacy-policy .back-news span:before {
  top: 2px;
  position: relative;
}
.news .back-news:hover, .legal-terms .back-news:hover, .privacy-policy .back-news:hover {
  text-decoration: none;
}
.news h1, .legal-terms h1, .privacy-policy h1 {
  margin-bottom: 1rem;
  line-height: 1.3;
  font-size: 36px;
}
.news .date, .legal-terms .date, .privacy-policy .date {
  color: var(--accent);
  font-family: Metropolis;
  font-size: 19px;
  margin-bottom: 1.75rem;
}
.news .date:before, .legal-terms .date:before, .privacy-policy .date:before {
  display: inline-block;
  height: 8px;
  width: 88px;
  content: "";
  top: 4px;
  position: relative;
  margin-right: 1rem;
  background: var(--accent);
}
.news .content, .legal-terms .content, .privacy-policy .content {
  font-family: "Inter", "PingFangTC", sans-serif !important;
  font-size: 19px;
  line-height: 1.7;
  color: #5e5d60;
}
.news .pagination-container, .legal-terms .pagination-container, .privacy-policy .pagination-container {
  box-shadow: none !important;
  top: auto !important;
  margin: 1rem auto;
}
.news .pagination-container nav, .legal-terms .pagination-container nav, .privacy-policy .pagination-container nav {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.news .pagination-container a, .legal-terms .pagination-container a, .privacy-policy .pagination-container a {
  margin: 0 0.9rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px 0 rgba(34, 32, 36, 0.16);
  background-color: #fdfdfd;
  font-family: Metropolis;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  color: #222024;
  padding: 1.15rem 3rem 0.75rem;
  transition: all 0.25s ease;
  position: relative;
}
.news .pagination-container a:hover, .legal-terms .pagination-container a:hover, .privacy-policy .pagination-container a:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px 0 rgba(34, 32, 36, 0.15);
}
.news .content img{display:block;width:100%;max-width:100%;}
@media (min-width: 992px) {
  .news .back-news, .legal-terms .back-news, .privacy-policy .back-news {
    margin-top: 4.5rem;
  }
  .news .content img{width:auto;}
}

.legal-terms .container:first-of-type h1, .privacy-policy .container:first-of-type h1 {
  margin-top: 4.8rem;
  margin-bottom: 0;
}
.legal-terms .container:first-of-type h4:first-of-type, .privacy-policy .container:first-of-type h4:first-of-type {
  margin-top: 2.25rem;
}
.legal-terms .container:first-of-type h4, .privacy-policy .container:first-of-type h4 {
  margin-bottom: 1.25rem;
  margin-top: 4rem;
}

.select-year {
  display: flex;
  align-items: center;
  font-family: "Inter", "PingFangTC", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #222024;
  justify-content: space-around;
  margin-bottom: 2.75rem;
  width: 100%;
  padding: 0 15px;
}
.select-year span {
  width: 20%;
  text-align: center;
  font-size: 15px;
}
.select-year .dropdown {
  width: 80%;
}
.select-year .dropdown-toggle {
  width: 100%;
  display: block;
  font-family: "Inter", "PingFangTC", "Microsoft YaHei", sans-serif;
  border-radius: 4px;
  border: solid 1px #c3c3c4;
  padding: 1rem;
  font-size: 15px;
  color: #5e5d60;
}
.select-year .dropdown-toggle:hover {
  text-decoration: none;
}
@media (min-width: 992px) {
  .select-year {
    width: 220px;
    margin-left: auto;
    margin-right: 0;
  }
  .select-year .dropdown-toggle {
    padding: 0.5rem 1.15rem;
  }
  .select-year span {
    margin-right: 5px;
  }
  .select-year .dropdown {
    width: 160px;
  }
}

.search-project .projects-column, .search .projects-column {
  margin-top: 2rem;
}
.search-project .full-container.separator, .search .full-container.separator {
  margin-top: 56px;
}
@media (min-width: 992px) {
  .search-project .full-container.separator, .search .full-container.separator {
    margin-top: 72px;
  }
}

.about .tag {
  background: var(--accent);
  font-family: Metropolis;
  font-size: 15px;
  font-weight: bold;
  color: #fdfdfd;
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 2rem;
}
.about .blue-tag {
  background: #007097;
}
.about h1 {
  color: #ececec;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(195, 195, 196, 0.48);
}
.about h3 {
  color: #ececec;
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 1.75rem;
  line-height: 1.5;
}
.about h3:after {
  position: absolute;
  width: 48px;
  height: 4px;
  background-color: #a9d16f;
  content: "";
  bottom: 0;
  left: 0;
}
.about .full-container, .about .full-container p {
  color: #ececec;
}
.about .line-separator {
  margin: 1rem auto;
}
.about .large-bg {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
}
.about .large-bg.autostart:before {
  transition: all 0.8s ease-out;
}
.about .large-bg.autostart:after {
  transition: all 0.8s ease-out;
}
.about .large-bg.autostart .row {
  opacity: 0;
  transform: translateY(50%);
  transition: all 0.5s ease-out;
}
.about .large-bg.autostart.fade72 .row {
  opacity: 1;
  transform: translateY(0%);
  transition: all 0.5s ease-out;
}
.about .large-bg.fade10:before {
  transform: scale(1.6);
}
.about .large-bg.fade10:after {
  opacity: 0;
}
.about .large-bg.fade20:before {
  transform: scale(1.5);
}
.about .large-bg.fade20:after {
  opacity: 0;
}
.about .large-bg.fade25:before {
  transform: scale(1.4);
}
.about .large-bg.fade25:after {
  opacity: 0.1;
}
.about .large-bg.fade30:before {
  transform: scale(1.3);
}
.about .large-bg.fade30:after {
  opacity: 0.25;
}
.about .large-bg.fade35:before {
  transform: scale(1.2);
}
.about .large-bg.fade35:after {
  opacity: 0.35;
}
.about .large-bg.fade60:before {
  transform: scale(1.1);
}
.about .large-bg.fade60:after {
  opacity: 0.55;
}
.about .large-bg.fade65:before {
  transform: scale(1.05);
}
.about .large-bg.fade65:after {
  opacity: 0.55;
}
.about .large-bg.fade72:before {
  transform: scale(1);
}
.about .large-bg.fade72:after {
  opacity: 0.72;
}
.about .large-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.65);
  transition: all 0.5s ease-out;
}
.about .large-bg.first-content:before {
  background-image: url("/assets/images/about_01-o.jpg?v=2");
}
.about .large-bg.second-content:before {
  transition: all 0.5s ease-out;
  background-image: url("/assets/images/about_02-o.jpg?v=2");
}
.about .large-bg.third-content:before {
  transition: all 0.5s ease-out;
  background-image: url("/assets/images/about_03-o.jpg?v=2");
}
.about .large-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background-image: linear-gradient(90deg, #030105 1%, rgba(3, 1, 5, 0) 100%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.25s linear;
}
.about .large-bg .container {
  position: relative;
  z-index: 1;
}
.about .large-bg a {
  border-radius: 8px;
  border: solid 2px #a9d16f;
  color: var(--accent);
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 4rem;
  padding: 0.85rem 2rem;
  transition: all 0.25s ease-out;
}
.about .large-bg a:hover {
  outline: none;
  color: #a9d16f;
  text-decoration: none;
  box-shadow: 0 8px 24px 0 rgba(169, 209, 111, 0.72);
  background-color: #fdfdfd;
  transform: translate(0, -2px);
}
.about .separator {
  box-shadow: 0 8px 48px 0 rgba(0, 112, 151, 0.24);
  background-color: #fdfdfd;
}
.about .tab-nav {
  border-bottom: 0 solid transparent;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.about .tab-nav a {
  width: auto;
  white-space: nowrap;
}
.about .text-content {
  margin-top: 2rem;
}
.about .text-content .text-center {
  margin: 0 auto;
  width: 100%;
}
.about .text-content h1 {
  color: #222024;
  border-bottom: 0;
  margin-bottom: 2rem !important;
}
@media (min-width: 992px) {
  .about .large-bg .container {
    padding-top: 20vh;
  }
  .about .large-bg .content {
    font-size: 18px;
    line-height: 1.72;
  }
  .about .large-bg a {
    margin-top: 2rem;
  }
  .about .tab-nav {
    justify-content: center;
  }
  .about .tab-nav a {
    padding: 1rem;
  }
  .about .text-content {
    margin-top: 7.5rem;
  }
  .about .text-content h1 {
    font-family: Metropolis;
    font-size: 42px;
    color: #222024;
  }
  .about .large-bg .content:lang(en) {
    font-size: 16px;
  }
}
@media (min-height: 800px) {	  .about .large-bg {    height: 100vh;    padding-top: 0;    padding-bottom: 0;  }	}
#org-chart .ceo .tip {
  height: 21px;
  font-family: "Inter", "PingFangTC", sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0.35rem auto;
  text-align: center;
  color: #a9d16f;
}
#org-chart .ceo .name {
  font-family: "Inter", "PingFangTC", sans-serif;
  font-size: 37px;
  font-weight: 600;
  text-align: center;
  color: #222024;
}
#org-chart .ceo .designation {
  font-size: 15px;
  font-family: "Inter", "PingFangTC", sans-serif;
  text-align: center;
  color: #5e5d60;
}
#org-chart .line-separator {
  margin: 1.25rem 0;
}
#org-chart .col-6 {
  margin: 1rem 0;
}
#org-chart .org-level .tip {
  font-family: Metropolis;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  color: #a9d16f;
  margin-bottom: 0.25rem;
}
#org-chart .org-level .name {
  font-family: Metropolis;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  color: #222024;
}
#org-chart .org-level .designation {
  font-size: 15px;
  font-family: "Inter", "PingFangTC", sans-serif;
  text-align: center;
  color: #5e5d60;
  white-space: pre-wrap;
}
#org-chart .org-level .col-12 {
  margin-bottom: 3.75rem;
}

.line-separator {
  color: #5e5d60;
  font-size: 12px;
  margin: 3rem auto 3rem;
  position: relative;
}
.line-separator:after {
  opacity: 0.48;
  background-color: #c3c3c4;
  height: 1px;
  width: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  z-index: -1;
}
.line-separator span {
  background: var(--white);
  display: inline-block;
  margin: 0 auto;
  padding: 5px 20px;
}

.contact-row {
  font-size: 19px;
  line-height: 1.68;
  color: #5e5d60;
}
.contact-row .col-sm-12 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contact-row p {
  text-align: left;
  margin-bottom: 0;
}
.contact-row a {
  color: #5e5d60;
}
.contact-row a:hover {
  text-decoration: none;
}
@media (min-width: 992px) {
  .contact-row .col-sm-12 {
    flex-direction: column;
  }
  .contact-row p {
    text-align: center;
  }
}

.contact-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 8px 24px 0 rgba(0, 112, 151, 0.12);
  background-color: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0.5rem;
  flex-basis: 80px;
}
.contact-btn img {
  width: 40px;
  height: 40px;
}
@media (min-width: 992px) {
  .contact-btn {
    width: 120px;
    height: 120px;
    flex-basis: 120px;
  }
  .contact-btn img {
    width: 60px;
    height: 60px;
  }
}

.partners img {
  width: 100%;
  margin: 1rem auto;
}
@media (min-width: 768px) {
  .partners .col-md-2-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.appear-animation {
  opacity: 0;
}

.appear-animation-visible {
  opacity: 1;
}

.animated {
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.03, 0.025, 0, 0.97);
  animation-fill-mode: both;
}
.animated.slow-animation {
  animation-duration: 750ms;
}

.animateFadeIn {
  animation-name: animateFadeIn;
}

.stepsFadeInUp {
  animation-name: stepsFadeInUp;
}

@keyframes animateFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes stepsFadeInUp {
  from {
    opacity: 0;
    transform: translate(0%, 50%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.stepsFadeInLeft {
  animation-name: stepsFadeInLeft;
}

@keyframes stepsFadeInLeft {
  from {
    opacity: 0;
    transform: translate(-10%, 0%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.stepsFadeInRight {
  animation-name: stepsFadeInRight;
}

@keyframes stepsFadeInRight {
  from {
    opacity: 0;
    transform: translate(10%, 0%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slider-project .row.slick-slide {
  display: flex;
}

.privacy-toast {
  box-shadow: 3px 3px 10px 2px rgba(138, 138, 138, 0.5);
  border-radius: 5px;
  position: fixed;
  bottom: 0;
  left: 7px;
  right: 7px;
  max-width: calc(100vw - 14px);
  background: #fff;
  padding: 1rem 1.2rem 0;
  margin-bottom: 0 !important;
  z-index: 6;
  display: none;
}
.privacy-toast .small {
  font-size: 0.85rem;
}
.privacy-toast button {
  color: #fff;
  border-radius: 5px;
  border: 1px solid transparent;
  display: inline-flex;
}
.privacy-toast .toast-body {
  padding: 0;
  position: relative;
}
.privacy-toast .close-toast {
  position: static;
}
.privacy-toast a {
  color: #000;
  text-decoration: underline;
}
.privacy-toast .button-group {
  text-align: right;
  margin-top: 1rem;
}
.privacy-toast .button-group button, .privacy-toast .button-group a {
  padding: 0.5rem 0.85rem;
  margin: 0 0 0.75rem;
}
.privacy-toast p {
  margin-bottom: 0.25rem;
  margin-top: 1.5rem;
}
.privacy-toast p a {
  border-bottom: 2px solid #a9d16f;
}
.privacy-toast p a:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .privacy-toast {
    bottom: 0.15rem;
    left: 50%;
    transform: translateX(-50%);
    width: 620px;
    padding: 1rem 1.2rem;
  }
  .privacy-toast .button-group {
    position: absolute;
    top: 0;
    right: -0.75rem;
    margin-top: 0.25rem;
  }
  .privacy-toast .button-group button, .privacy-toast .button-group a {
    padding: 0.35rem 0.8rem;
    margin-bottom: 0;
  }
  .privacy-toast:lang(en) {
    width: 750px;
  }
  .privacy-toast:lang(en) .small{
    width: 600px;
  }
}
@media (min-width: 1200px) {
  .privacy-toast {
    padding: 0.75rem 2rem;
  }
  .privacy-toast .close-toast {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .privacy-toast p {
    margin: 0.5rem 0;
  }
  .privacy-toast .button-group {
    align-items: center;
    margin-left: 3rem;
  }
}
#testing{display:none;}
/*# sourceMappingURL=main.css.map */
