ul.small-bullet {
  list-style: none;
  padding-left: 20px;
}

ul.small-bullet li {
  padding-left: 8px;
}

ul.small-bullet li::marker {
  content: '•';
  font-size: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

.trapezoid.w-94 {

  width: 94%;
}

.trapezoid.w-96 {
  width: 96%;
}

.page-anchor {
  margin-top: 80px;
}

.page-anchor-list {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.page-anchor-list .page-anchor-link {
  padding: 14px 40px;
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  font-weight: var(--h4-font-weight);
  text-decoration: none;
  display: inline-block;
  color: var(--color-navy);
  border-radius: 5px;
  border: 2px solid #CEE7D6;
  /* border-image: linear-gradient(to right, #CCDEE6 0%, #CEE7D6 100%) 1; */
  background: linear-gradient(145deg, #FEFFFF 50%, #F5FBFA 50%);
  white-space: nowrap;
  text-align: center;
}

.page-anchor-list .page-anchor-link:hover {
  opacity: 0.8;
}

.page-anchor-list .page-anchor-link.active {
  background: #CEE7ED;
  border-color: #E7FFEF;
  opacity: 1;
}

.download-button-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  /* align-items: center; */
  justify-content: center;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  margin: auto;
  width: 90%;
}

.download-button-list .download-button-item {
  width: calc(50% - 20px*1/2);
  /* flex: 1 1 calc(50% - 20px*1/2); */
}

.download-button-list .download-button-link {
  padding: 38px 80px 38px 44px;
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  font-weight: var(--h4-font-weight);
  text-decoration: none;
  display: inline-block;
  color: var(--color-navy);
  border-radius: 5px;
  box-shadow: 0 0 15px #0000000D;
  background: linear-gradient(156deg, #FEFFFF 46%, #F5FBFA 46%, #FEFFFF 77%, #f2f8f3 90%);
  display: flex;
  align-items: center;
  text-align: left;
  width: 100%;
  height: 100%;
  position: relative;
}

.download-button-list .download-button-link::after {
  content: '';
  position: absolute;
  right: 45px;
  top: 0;
  bottom: 0;
  width: 25px;
  height: 100%;
  background-image: url(../images/download_button_link_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: center;
}


.download-button-list .download-button-link:hover {
  background: #CEE7ED;
  border-color: #E7FFEF;
  opacity: 1;
}

.download-button-list .download-button-link.active {
  background: #CEE7ED;
  border-color: #E7FFEF;
  opacity: 1;
}

.activities-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 50px 100px;
}

.activity-item {
  display: flex;
  /* gap: 6.8%; */
  gap: 40px;
  width: calc(50% - 100px * 1 / 2);
  align-items: center;
}

.activity-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  margin-left: 7.8%;
  width: 47.5%;
  max-height: fit-content;
  aspect-ratio: 1 / 1;

  border: solid 5px transparent;
  border-radius: 100%;
  position: relative;
  background: #f6fbfd;
}

.activity-icon {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  width: 44%;
  min-width: 80px;
  aspect-ratio: 1 / 1;
  background-color: transparent;
  border-radius: 100%;
  transform: translate(-35%, -35%);
}

.activity-circle.green .activity-icon {
  background-color: #B1D27C;
}

.activity-circle.blue .activity-icon {
  background-color: #7BCBF1;
}

.activity-circle.pink .activity-icon {
  background-color: #F6CEDD;
}

.activity-circle.purple .activity-icon {
  background-color: #BAA4CC;
}

.activity-circle.orange .activity-icon {
  background-color: #EACAA4;
}

.activity-circle:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -8px;
  border-radius: inherit;
}

.activity-circle.green:before {
  background: linear-gradient(to right, #D8F3B2, #86C9A8);
}

.activity-circle.blue:before {
  background: linear-gradient(to right, #7BCBF1, #2C84AE);
}

.activity-circle.pink:before {
  background: linear-gradient(to right, #F6CEDD, #EC9AB9);
}

.activity-circle.purple:before {
  background: linear-gradient(to right, #BAA4CC, #6F5B80);
}

.activity-circle.orange:before {
  background: linear-gradient(to right, #EACAA4, #A38562);
}

.activity-thumbnail {
  width: 45%;
  position: relative;
}

.activity-thumbnail figure {
  text-align: center;
  margin: 0;
}

.activity-number {
  color: var(--color-navy-900);
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1;
}

.activity-label p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #231815;
}

.activity-circle .activity-icon::before {
  content: '';
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 60%;
  height: 60%;
  display: block;
  margin: auto;
}

.activity-thumbnail::before {
  content: '';
  background-image: url(../images/activity-right-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 20px;
  height: 40px;
}

.activity-thumbnail img {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  /* margin: 0 30px 0px; */
  /* width: calc(100% - 60px); */
  width: 100%;
  margin-bottom: 10px;
}

.activity-thumbnail figcaption {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.text-line-height-10 {
  line-height: 1.1;
}

.row-trapezoid {
  position: absolute;
  inset: 0 -50px 0 -50px;
  min-width: calc(100% + 100px);
  z-index: -1;
}


.row-trapezoid.yellow {
  inset: 0;
  min-width: unset;
}

.row-trapezoid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0089c4;
  clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0% 100%);
}

.row-trapezoid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #00A2E8;
  clip-path: polygon(0 0, calc(100% - 13px) 0, calc(100% - 73px) 100%, 0% 100%);
}

.row-trapezoid.yellow::before {
  background: #FAECDD;
}

.row-trapezoid.yellow::after {
  background: #FDFBF6;
}

.horizontal-rule {
  border-top: 1px solid;
}

.orange.horizontal-rule {
  border-color: #FAECDD;
}

.bullet {
  position: relative;
  left: 30px;
}

.bullet::before {
  content: '';
  position: absolute;
  left: -30px;
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  background-color: #000000;
}

.red.bullet::before {
  background-color: #E35B36;
}

.orange.bullet::before {
  background-color: #EF9C1B;
}

.yellow.bullet::before {
  background-color: #F4D61A;
}

.green.bullet::before {
  background-color: #8AC271;
}

.blue.bullet::before {
  background-color: #00ABAC;
}

.max-width-narrow-2,
.max-width-narrow-1 {
  max-width: 1098px;
  margin: 0 auto;
}

.before-icon {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.before-icon::before {
  content: '';
  display: inline-block;
  margin-right: 30px;
  width: 90px;
  height: 90px;
  background-image: url(../images/section-title_icon.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}

.background-w-8 {
  width: 8.5vw !important;
}

.background-w-23 {
  width: 23vw !important;
}

.background-w-40 {
  width: 40vw !important;
}

.background-image-left-top {
  position: absolute;
  left: 0 !important;
  top: 0 !important;
  right: unset !important;
  bottom: unset !important;
}

.background-image-right-bottom {
  position: absolute;
  right: 0 !important;
  bottom: 0 !important;
  top: unset !important;
  left: unset !important;
}

.background-translate-y-50 {
  transform: translateY(50%);
}

.background-translate-y--100 {
  transform: translateY(-100%);
}


@media screen and (min-width: 769px) {
  .trapezoid.clip-path-md-style-1::before {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  }

  .trapezoid.clip-path-md-style-1::after {
    clip-path: polygon(0 0, 99% 0%, 84% 100%, 0% 100%);
  }

  .trapezoid.clip-path-md-style-2::before {
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0% 100%);
  }

  .trapezoid.clip-path-md-style-2::after {
    clip-path: polygon(0 0, 99% 0%, 85% 100%, 0% 100%);
  }

  .trapezoid.clip-path-md-style-3::before {
    clip-path: polygon(0 0, 100% 0, 91% 100%, 0% 100%);
  }

  .trapezoid.clip-path-md-style-3::after {
    clip-path: polygon(0 0, 99% 0%, 90% 100%, 0% 100%);
  }

  .trapezoid.clip-path-md-style-4::before {
    clip-path: polygon(0 0, 100% 0, 89% 100%, 0% 100%);
  }

  .trapezoid.clip-path-md-style-4::after {
    clip-path: polygon(0 0, 99.3% 0%, 88.3% 100%, 0% 100%);
  }
}

@media screen and (min-width:993px) {

  .row-trapezoid.lg-vertical-flip::before,
  .row-trapezoid.lg-vertical-flip::after,
  .trapezoid.lg-vertical-flip::before,
  .trapezoid.lg-vertical-flip::after {
    transform: scaleY(-1);
  }
}

@media screen and (min-width: 2201px) {

  .trapezoid.clip-path-md-style-1::before {
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  }

  .trapezoid.clip-path-md-style-1::after {
    clip-path: polygon(0 0, 99% 0%, 74% 100%, 0% 100%);
  }

  .trapezoid.clip-path-md-style-2::before {
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0% 100%);
  }

  .trapezoid.clip-path-md-style-2::after {
    clip-path: polygon(0 0, 99% 0%, 85% 100%, 0% 100%);
  }

  .trapezoid.clip-path-md-style-3::before {
    clip-path: polygon(0 0, 100% 0, 83% 100%, 0% 100%);
  }

  .trapezoid.clip-path-md-style-3::after {
    clip-path: polygon(0 0, 99% 0%, 82% 100%, 0% 100%);
  }
}

@media screen and (max-width: 2200px) {

  .max-width-narrow-2,
  .max-width-narrow-1 {
    max-width: 42vw;
  }

  .before-icon::before {
    width: 70px;
    height: 70px;
  }

  .download-button-list {
    width: 100%;
  }

  .download-button-list .download-button-link {
    padding: 30px 80px 30px 40px;
  }

  .page-anchor-list .page-anchor-link {
    font-size: 18px;
    padding: 10px 25px;
  }

  .activities-group {
    gap: 40px 80px;
  }

  .activity-item {
    width: calc(50% - 80px * 1 / 2);
  }

  .activity-number {
    font-size: 48px;
    margin-bottom: 15px;
  }

  .activity-label p {
    font-size: 15px;
    letter-spacing: 0.1px;
  }

  .activity-thumbnail figcaption {
    font-size: 14px;
  }

  .bullet::before {
    left: -30px;
    width: 15px;
    height: 15px;
  }
}

@media screen and (max-width: 1700px) {
  .download-button-list {
    width: 80%;
  }

  .download-button-list .download-button-link {
    padding: 20px 70px 20px 30px;
  }

  .download-button-list .download-button-link::after {
    width: 20px;
  }
}

@media screen and (max-width: 1500px) {}

@media screen and (max-width: 1400px) {

  .max-width-narrow-2,
  .max-width-narrow-1 {
    max-width: 50vw;
  }

  .download-button-list {
    width: 70%;
  }

  .page-anchor-list .page-anchor-link {
    font-size: 16px;
    padding: 8px 20px;
  }

  .activities-group {
    gap: 30px 50px;
  }

  .activity-item {
    width: calc(50% - 50px * 1 / 2);
  }

  .activity-number {
    font-size: 42px;
    margin-bottom: 10px;
  }

  .activity-label p {
    font-size: 14px;
  }

  .activity-thumbnail figcaption {
    font-size: 14px;
  }

  .row-trapezoid::before {
    clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
  }

  .row-trapezoid::after {
    clip-path: polygon(0 0, calc(100% - 13px) 0, calc(100% - 53px) 100%, 0% 100%);
  }
}

@media screen and (max-width: 1200px) {
  .download-button-list .download-button-item {
    /* width: 80%; */
    flex: 1 1 80%;
  }

  .download-button-list .download-button-link {
    padding: 15px 70px 15px 20px;
  }

  .download-button-list .download-button-link::after {
    width: 18px;
  }

  .activities-group {
    gap: 30px 50px;
  }

  .activity-number {
    font-size: 38px;
    margin-bottom: 10px;
  }

  .activity-label p {
    font-size: 14px;
  }

  .activity-thumbnail figcaption {
    font-size: 14px;
  }
}

@media screen and (max-width: 1120px) {
  .page-anchor-list {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }

  .page-anchor-list .page-anchor-link {
    width: 100%;
  }
}


@media screen and (max-width: 1024px) {

  .download-button-list,
  .download-button-list .download-button-item {
    /* width: 100%; */
    flex: 1 1 100%;
  }

  .page-anchor-list .page-anchor-link {
    font-size: 14px;
    padding: 10px 15px;
  }

  .activities-group {
    flex-direction: column;
    gap: 80px;
  }

  .activity-item {
    width: 100%;
    max-width: 500px;
  }

  .activity-icon {
    min-width: 50px;
  }

  .bullet::before {
    left: -25px;
    width: 13px;
    height: 13px;
  }

  .row-trapezoid {
    inset: 0;
    min-width: unset;
  }

  .max-width-narrow-2,
  .max-width-narrow-1 {
    max-width: 67.5vw;
  }
}

@media screen and (max-width: 768px) {
  .activity-thumbnail img {
    width: 85%;
  }
  .background-image-left-top,
  .background-image-right-bottom {
    display: none !important;
  }

  .max-width-narrow-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .max-width-narrow-2,
  .max-width-narrow-1 {
    max-width: 100%;
  }

  .download-button-list {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .download-button-list .download-button-link::after {
    right: 20px;
  }

  .page-anchor-list {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .page-anchor-list .page-anchor-link {
    width: 100%;
    font-size: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
  }


  .row-trapezoid::before {
    clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0% 100%);
  }

  .row-trapezoid::after {
    clip-path: polygon(0 0, calc(100% - 8px) 0, calc(100% - 38px) 100%, 0% 100%);
  }
}

@media screen and (max-width: 500px) {
  .page-anchor-list {
    gap: 5px;
  }

  .page-anchor-list .page-anchor-link {
    font-size: clamp(16px, 4vw, 20px);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .activities-group {
    gap: 50px;
  }

  .activity-number {
    font-size: 28px;
    margin-bottom: 5px;
  }

  .activity-label p {
    font-size: 11px;
    line-height: 1.3;
  }

  .activity-thumbnail figcaption {
    font-size: 11px;
    line-height: 1.3;
  }

  .activity-item {
    gap: 20px;
  }

  .activity-thumbnail::before {
    width: 10px;
    height: 20px;
    left: 0px;
  }

  .bullet::before {
    left: -20px;
    width: 8px;
    height: 8px;
  }
}