/* #region 字体引入 */
/* Futura */
@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/Futura.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/Futura-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Noto Sans (标准宽度) */
@font-face {
  font-family: "Noto Sans";
  src: url("/assets/fonts/NotoSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("/assets/fonts/NotoSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("/assets/fonts/NotoSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("/assets/fonts/NotoSans-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Noto Sans SemiCondensed */
@font-face {
  font-family: "Noto Sans SemiCondensed";
  src: url("/assets/fonts/NotoSans-SemiCondensedMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans SemiCondensed";
  src: url("/assets/fonts/NotoSans-SemiCondensedSemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans SemiCondensed";
  src: url("/assets/fonts/NotoSans-SemiCondensedSemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans SemiCondensed";
  src: url("/assets/fonts/NotoSans-SemiCondensedBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Noto Sans Condensed */
@font-face {
  font-family: "Noto Sans Condensed";
  src: url("/assets/fonts/NotoSans-CondensedBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans Condensed";
  src: url("/assets/fonts/NotoSans-CondensedBoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Noto Sans ExtraCondensed */
@font-face {
  font-family: "Noto Sans ExtraCondensed";
  src: url("/assets/fonts/NotoSans-ExtraCondensedBlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* Noto Sans CJK TC (繁体中文) */
@font-face {
  font-family: "Noto Sans CJK TC";
  src: url("/assets/fonts/NotoSansCJKtc-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Noto Sans HK (香港繁体中文) */
@font-face {
  font-family: "Noto Sans HK";
  src: url("/assets/fonts/NotoSansHK-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Noto Sans HK (香港繁体中文) */
@font-face {
  font-family: "Noto Sans HK";
  src: url("/assets/fonts/NotoSansHK-ExtraBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* #endregion 字体引入 */

.headline {
	display: none;
}

html:has(.fsa-page) {
  scroll-behavior: smooth;
}
.content-wrap:has(.fsa-page) {
  overflow: visible;
}

.content:has(.fsa-page) {
  overflow: visible;
}

/* #region HeroBanner */
.fsa-page .header-wrapper {
  position: relative;
  z-index: 1;
}

.fsa-page .hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.fsa-page .hero-banner__bg {
  width: 100%;
  height: auto;
  display: block;
}

.fsa-page .hero-banner__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fsa-page .hero-banner__img {
  height: 100%;
}

.fsa-page .hero-banner__img img {
  height: 115%;
  display: block;
}

.fsa-page .hero-banner__title {
  font-family: "Futura";
  font-size: clamp(14px, 5.2vw, 70px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 8px 6px 1px rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
}

.fsa-page .hero-banner__subtitle {
  font-family: "Noto Sans HK";
  font-size: clamp(12px, 4vw, 70px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  text-align-last: justify;
  text-shadow: 8px 6px 1px rgba(0, 0, 0, 0.4);
}

/* #endregion HeroBanner */

/* #region FsaMenu */
.fsa-page .fsa-menu {
  position: sticky;
  top: -6px;
  width: 100%;
  margin-top: -20px;
  z-index: 10;
}

.fsa-page .fsa-menu__bg {
  width: 100%;
  height: auto;
  display: block;
}

.fsa-page .fsa-menu__nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 72px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.fsa-page .fsa-menu .fsa-menu__item {
  font-family: "Futura";
  font-weight: 700;
  font-size: clamp(8px, 2vw, 21px);
  color: #8acbca;
  text-decoration: none;
  position: relative;
}

.fsa-page .fsa-menu .fsa-menu__item:hover {
  color: #ffffff;
}

.fsa-page .fsa-menu .fsa-menu__item.is-active {
  color: #ffffff;
  border-bottom: 2px solid #fff;
}

/* #endregion FsaMenu */

/* #region KnowTheSigns */
.fsa-page .know-the-signs {
  width: 100%;
  margin-top: -20px;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #b0f2e9;
  scroll-margin-top: 60px;
}

.fsa-page .know-the-signs__bg {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  position: absolute;
  bottom: 0;
  left: 0;
}

.fsa-page .know-the-signs__wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.fsa-page .know-the-signs__wrapper .know-the-signs__leftimg {
  width: 20%;
  height: 100%;
}

.fsa-page .know-the-signs__wrapper .know-the-signs__content {
  width: 56%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fsa-page .know-the-signs__wrapper .know-the-signs__title {
  font-family: "Futura";
  font-weight: 700;
  font-size: clamp(12px, 4.2vw, 54px);
  color: #00726d;
  line-height: 1.2;
  background-color: #fff;
  padding: 8px 40px;
  border-radius: 12px;
  text-transform: uppercase;
  text-shadow: 4px 4px 1px #d1f1ef;
}

.fsa-page .know-the-signs__wrapper .know-the-signs__des {
  color: #00726d;
  font-family: "Noto Sans";
  font-weight: 400;
  font-size: 18px;
}

.fsa-page .know-the-signs__wrapper .know-the-signs__rightimg {
  width: 20%;
  height: 100%;
}

/* #endregion KnowTheSigns */

/* #region Section-2 */
.fsa-page .section-2 {
}

.fsa-page .section-2__pc {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  gap: 40px;
}

.fsa-page .section-2__pc__title {
  font-family: "Futura";
  font-weight: 700;
  font-size: clamp(12px, 4.2vw, 54px);
  color: #00726d;
  line-height: 1;
  text-shadow: 4px 4px 1px #b4e4e1;
  text-transform: uppercase;
}

.fsa-page .section-2__pc__content {
  display: flex;
  align-items: flex-start;
}

.fsa-page .section-2__pc__content__left {
  flex: 1;
  position: relative;
  z-index: 1;
}

.fsa-page .section-2__pc__content__left__img {
  width: 85%;
}

.fsa-page .section-2__pc__content__left__textwrapper {
  width: 400px;
  position: absolute;
  top: 50%;
  transform: translateY(-30px);
  right: -70px;
}

.fsa-page .section-2__pc__content__left__textwrapper__img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.fsa-page .section-2__pc__content__left__textwrapper__text {
  color: #fff;
  font-family: "Noto Sans SemiCondensed";
  font-weight: 600;
  position: relative;
  z-index: 2;
  font-size: 22px;
  padding: 40px;
  line-height: 1.2;
}

.fsa-page .section-2__pc__content__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fsa-page .section-2__pc__content__right__item {
  display: flex;
  align-items: center;
}

.fsa-page .section-2__pc__content__right__item__icon {
  width: 70px;
  margin-right: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.fsa-page .section-2__pc__content__right__item__icon__img {
  display: block;
}

.fsa-page .section-2__pc__content__right__item__icon__img__active {
  display: none;
}

.fsa-page .section-2__pc__content__right__item__flagcontainer {
  font-family: "Noto Sans";
  font-weight: 700;
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  display: inline-block;
  padding-left: 3px;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.3));
  cursor: pointer;
}

.fsa-page .section-2__pc__content__right__item__flagcontainer::after {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  bottom: 0;
  width: 4px;
  background-color: #eaf2f2;
  border-radius: 2px;
  margin-bottom: -10px;
}

.fsa-page .section-2__pc__content__right__item__flagcontainer::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -12px;
  width: 10px;
  height: 10px;
  background-color: #eaf2f2;
  border-radius: 50%;
}

.fsa-page .section-2__pc__content__right__item__flagcontainer__text {
  color: #00726d;
  padding: 10px 30px 10px 15px;
  background-color: #eaf2f2;
  clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 50%, 100% 100%, 0 100%);
}

.fsa-page .section-2__pc__content__right__item__flagcontainer__value {
  display: none;
}

.fsa-page .section-2__pc__content__right__item__todoicon {
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 5px;
  opacity: 0;
  font-family: "Noto Sans";
  color: #00726d !important;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  pointer-events: none;
}

.fsa-page a.section-2__pc__content__right__item__todoicon {
  text-decoration: none;
}

.fsa-page .section-2__pc__content__right__item.active .section-2__pc__content__right__item__todoicon {
  pointer-events: auto;
}

.fsa-page .section-2__pc__content__right__item__todoicon__img {
  width: 45px;
}

.fsa-page .section-2__pc__content__right__item__todoicon__text {
  background: #fff;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.3));
  padding: 2px 10px;
  transform: translateY(-5px);
}

.fsa-page .section-2__pc__content__right__item__todoicon__text a {
  font-family: "Noto Sans";
  color: #00726d !important;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.fsa-page .section-2__pc__content__right__item.active .section-2__pc__content__right__item__flagcontainer::after,
.fsa-page .section-2__pc__content__right__item.active .section-2__pc__content__right__item__flagcontainer::before,
.fsa-page .section-2__pc__content__right__item.active .section-2__pc__content__right__item__flagcontainer__text {
  background-color: #f35052;
  color: #fff;
}

.fsa-page .section-2__pc__content__right__item.active .section-2__pc__content__right__item__todoicon {
  opacity: 1;
}

.fsa-page .section-2__pc__content__right__item.active .section-2__pc__content__right__item__icon__img {
  display: none;
}

.fsa-page .section-2__pc__content__right__item.active .section-2__pc__content__right__item__icon__img__active {
  display: block;
}

.fsa-page .section-2__pc__tips {
  display: flex;
  justify-content: center;
  background: #ebf2f2;
  width: 62%;
  border-radius: 50px;
  border-radius: 100px;
  box-shadow: 0px 0px 8px #c1bfbf;
}

.fsa-page .section-2__pc__tipscontent {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 50px;
}

.fsa-page .section-2__pc__tipscontent__text {
  flex: 1;
  font-family: "Noto Sans";
  font-size: 18px;
  color: #00726d;
}

.fsa-page .section-2__pc__tipscontent__imgwrapper {
  width: 4vw;
}

.fsa-page .section-2__mobile {
  display: none;
}

.fsa-page .section-2__mobile__tips {
  display: none;
}
/* #endregion Section-2 */

/* #region Section-3 */
.fsa-page .section-3 {
  position: relative;
  background: #007b78;
  display: flex;
  justify-content: center;
}

.fsa-page .section-3__overlay {
  width: 100%;
  background: #007c7e;
  height: 20px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
  z-index: 3;
}

.fsa-page .section-3__bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.fsa-page .section-3__content {
  width: 80%;
  position: relative;
  z-index: 2;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fsa-page .section-3__content__title {
  font-family: "Futura";
  font-weight: 700;
  font-size: clamp(12px, 4vw, 52px);
  color: #fff;
  line-height: 1;
  border-radius: 12px;
  text-transform: uppercase;
  text-shadow: 4px 4px 1px #004d4a;
  text-align: center;
  text-transform: uppercase;
}

.fsa-page .section-3__content__item {
  display: flex;
  justify-content: center;
}

.fsa-page .section-3__content__item__content {
  flex: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fsa-page .section-3__content__item__content__two {
  flex: 7;
}

.fsa-page .section-3__content__item__content__header {
  display: flex;
  align-items: center;
  z-index: 2;
}

.fsa-page .section-3__content__item__content__header__icon {
  flex: 2;
}

.fsa-page .section-3__content__item__content__header__title {
  flex: 6;
  font-family: "Noto Sans ExtraCondensed";
  font-style: italic;
  font-size: 35px;
  color: #fff;
  font-weight: 900;
  font-stretch: extra-condensed;
  line-height: 1;
}

.fsa-page .section-3__content__item__content__list {
  background: #00726e;
  border-radius: 0 40px 0 40px;
  transform: translateY(-25px);
  z-index: 1;
  cursor: pointer;
  padding: 0px 40px;
}

.fsa-page .section-3__content__item__content__list > *:nth-child(even) {
  background: linear-gradient(to right, #00726e 0%, #007c77 30%, #007c77 70%, #00726e 100%);
}

.fsa-page .section-3__content__item__content__list__item:hover {
  background: linear-gradient(to right, #00726e 0%, #008c9c 30%, #008c9c 70%, #00726e 100%);
}

.section-3__content__item__content__list > .section-3__content__item__content__list__item:last-child {
  border-bottom: none;
}

.fsa-page .section-3__content__item__content__list__item {
  font-family: "Noto Sans";
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 0;
  gap: 20px;
  border-bottom: 1px solid #008e8a;
}

.fsa-page .section-3__content__item__content__list__item__icon {
  width: 35px;
}

.fsa-page .section-3__content__item__content__list__item__title {
  flex: 1;
  line-height: 1.1;
}

.fsa-page .section-3__content__item__content__list__item__title a {
  color: #fff !important;
}

.fsa-page .section-3__content__item__imgwrapper {
  flex: 4;
  position: relative;
}

.fsa-page .section-3__content__item__img {
  position: absolute;
  bottom: -149px;
}

html[lang="TC"] .fsa-page .section-3__content__item__img {
  bottom: -134px;
}

/* #endregion Section-3 */

/* #region Section-4 */
.fsa-page .section-4 {
  display: grid;
  place-items: start;
  position: relative;
  overflow: hidden;
}

.fsa-page .section-4__bg {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fsa-page .section-4__content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
  grid-area: 1 / 1;
}

.fsa-page .section-4__title {
  font-family: "Futura";
  font-weight: 700;
  font-size: clamp(12px, 4.2vw, 54px);
  color: #00726d;
  line-height: 1;
  padding: 8px 40px;
  border-radius: 12px;
  text-transform: uppercase;
  text-shadow: 4px 4px 1px #fff;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
}

.fsa-page .section-4__subtitle {
  z-index: 2;
  padding: 5px 10px;
  background: #ebfcfa;
  border-radius: 10px;
  line-height: 1;
  font-size: 12px;
  font-family: Noto Sans Condensed;
  font-weight: 700;
  color: #0e7b7b;
  margin-bottom: 35px;
}

.fsa-page .section-4__table {
  width: 80%;
  background: #dafaf5;
  padding: 40px;
  border-radius: 0 50px 0 50px;
  transform: translateY(-28px);
  z-index: 1;
  position: relative;
  padding-bottom: 0;
}

.fsa-page .section-4__table > *:nth-child(even) {
  background: linear-gradient(to right, #d9faf5 0%, #ebfcfa 30%, #ebfcfa 70%, #d9faf5 100%);
}

.fsa-page .section-4__table__row {
  display: flex;
  font-family: "Noto Sans";
  font-weight: 600;
  color: #0e7b7b;
  padding-top: 8px;
  border-bottom: 1px solid #8dd7d4;
}

.fsa-page .section-4__table__row__img {
  width: 45px;
}

.fsa-page .section-4__table__img {
  position: absolute;
  width: 250px;
  bottom: -85px;
  right: -85px;
}

.fsa-page .section-4__table__row__content__arrow {
  width: 10px;
}

.fsa-page .section-4__table__row__content {
  min-height: 60px;
  flex: 1;
  display: flex;
  gap: 30px;
  padding-bottom: 10px;
  padding-left: 10px;
}

/* 让紧挨着 .section-4__table__img 的那个 row 去掉边框 */
.fsa-page .section-4__table > .section-4__table__row:has(+ .section-4__table__img) {
  border-bottom: none;
}
.fsa-page .section-4__table > .section-4__table__row:has(+ .section-4__table__img) .section-4__table__row__content {
  padding-bottom: 0;
}

.fsa-page .section-4__table__row__content__title {
  flex: 20;
  font-family: Noto Sans Condensed;
  font-weight: 700;
  line-height: 1.2;
}

.fsa-page .section-4__table__row__content__des {
  flex: 15;
  color: #0e7b7b !important;
  font-family: "Noto Sans Condensed";
  font-weight: 700;
}

.fsa-page .section-4__table__row__content__des__phone {
  font-style: normal;
}

.section-4__overlay {
  width: 105%;
  background: #fff;
  height: 20px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
}

/* #endregion Section-4 */

/* #region Section-5 */
.fsa-page .section-5 {
  scroll-margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
  gap: 40px;
}

.fsa-page .section-5__title {
  font-family: "Futura";
  font-weight: 700;
  font-size: clamp(12px, 4.2vw, 54px);
  color: #00726d;
  line-height: 1.2;
  background-color: #a4eee7;
  padding: 8px 40px;
  border-radius: 12px;
  text-transform: uppercase;
  text-shadow: 4px 4px 1px #d1f1ef;
}

.fsa-page .section-5__img__wrapper {
  width: 80%;
  text-align: center;
  position: relative;
}

.fsa-page .section-5__img__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  right: 15%;
  bottom: 15%;
}

.fsa-page .section-5__img__text__item {
  font-family: "Futura";
  font-weight: 700;
  /* font-size: clamp(12px, 1.25vw, 30px); */
  font-size: 24px;
  color: #00726d;
  line-height: 1;
  background-color: #fff;
  padding: 6px 15px;
  border-radius: 6px;
}

.fsa-page .section-5__img__text__item__anti-scam {
  padding-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.fsa-page .section-5__subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fsa-page .section-5__subtitle__text {
  font-family: "Futura";
  font-weight: 700;
  font-size: clamp(20px, 3vw, 39px);
  position: relative;
  display: inline-block;
  color: #0e7b7b;
  user-select: none;
  padding-right: 20px;
  transform: translateX(10px);
  line-height: 1;
}

.fsa-page .section-5__subtitle__text::before {
  content: attr(data-text);
  /* 用 data-text 属性获取相同文字 */
  position: absolute;
  top: 2px;
  left: 2px;
  color: #fff;
  -webkit-text-stroke: 0.2px #0e7b7b;
  -webkit-font-smoothing: antialiased;
  z-index: -1;
}

.fsa-page .section-5__des {
  max-width: 80%;
  font-family: "Noto Sans";
  color: #0e7b7b;
  font-size: 18px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  border-radius: 50px;
  font-weight: 600;
}

.fsa-page .section-5__desitem {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.fsa-page .section-5__desitem__label {
  padding: 4px 10px 6px 10px;
  line-height: 1;
  height: unset;
  border-radius: 50px;
  font-weight: 600;
  border: 0.5px solid #0e7b7b;
}

.fsa-page .section-5__content {
  width: 80%;
  border-top: 1px solid #0e7b7b;
  display: flex;
  gap: 40px;
  padding-top: 40px;
}

.fsa-page .section-5__content__item {
  font-family: "Noto Sans";
  font-weight: 500;
  color: #0e7b7b;
  font-size: 18px;
  flex: 1;
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fsa-page .highlight-first-letter {
  font-size: 25px;
  /* 放大首字母 */
  font-weight: bold;
  /* 加粗 */
  color: #0e7b7b;
}

/* #endregion Section-5 */

/* #region Section-6 */
.fsa-page .section-6 {
  background: #017c7b;
  display: grid;
  place-items: start;
  border-radius: 50% 50% 0 0 / 5% 5% 0 0;
  overflow: hidden;
  scroll-margin-top: 60px;
}

.fsa-page .section-6__bgwrapper {
  height: 100%;
  grid-area: 1 / 1;
  overflow: hidden;
  z-index: 1;
  position: relative;
  display: grid;
  place-items: start;
}

.fsa-page .section-6__bg01 {
  width: 100%;
  max-width: unset;
  height: auto;
  display: block;
  grid-area: 1 / 1;
  height: 100%;
  object-fit: cover;
}

.fsa-page .section-6__bg01__mobile {
  display: none;
}

.fsa-page .section-6__bg02 {
  grid-area: 1 / 1;
}

.fsa-page .section-6__bg03 {
  grid-area: 1 / 1;
  display: none;
}

.fsa-page .section-6__wrapper {
  grid-area: 1 / 1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.fsa-page .section-6__title {
  font-family: "Futura";
  font-weight: 700;
  font-size: clamp(12px, 4.2vw, 54px);
  color: #fff;
  line-height: 1;
  background-color: #00a3a0;
  padding: 8px 40px 2px 40px;
  border-radius: 12px;
  text-shadow: 4px 4px 1px rgba(0, 0, 0, 0.4);
  margin-bottom: 8px;
}

.fsa-page .section-6__des {
  width: 65%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.fsa-page .section-6__desimg {
  flex: 12;
}

.fsa-page .section-6__descontent {
  flex: 18;
  color: #fff;
  font-family: "Noto Sans";
  font-weight: 400;
  font-size: 18px;
  text-align: justify;
  line-height: 1.4;
}

/* #endregion Section-6 */

@media only screen and (max-width: 1300px) {
  /* #region Section-3 */
  .fsa-page .section-3__content__item__img {
    position: absolute;
    bottom: -11.4vw;
  }

  /* #endregion Section-3 */

  /* #region Section-4 */
  .fsa-page .section-4__table__img {
    width: 20vw;
    bottom: -5vw;
    right: -9vw;
  }

  /* #endregion Section-4 */

  /* #region Section-5 */
  .fsa-page .section-5__img__text__item {
    font-size: clamp(12px, 1.9vw, 24px);
  }

  /* #endregion Section-5 */
}

@media only screen and (max-width: 991px) {
  .fsa-page .hero-banner__title,
  .fsa-page .hero-banner__subtitle {
    text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.4);
  }

  .fsa-page .fsa-menu__nav {
    gap: 15px;
  }

  /* #region KnowTheSigns */
  .fsa-page .know-the-signs__wrapper .know-the-signs__leftimg {
    display: none;
  }

  .fsa-page .know-the-signs__wrapper .know-the-signs__content {
    width: 90%;
  }

  .fsa-page .know-the-signs__wrapper .know-the-signs__rightimg {
    display: none;
  }

  .fsa-page .know-the-signs__wrapper .know-the-signs__title {
    font-size: 35px;
  }

  /* #endregion KnowTheSigns */

  /* #region Section-2 */
  .fsa-page .section-2 {
    z-index: 9;
    position: relative;
  }

  .fsa-page .section-2__pc {
    display: none;
  }

  .fsa-page .section-2__pc__tips {
    display: none;
  }

  .fsa-page .section-2__mobile {
    padding: 20px 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .fsa-page .section-2__mobile__content {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .fsa-page .section-2__mobile__content__item {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .fsa-page .section-2__mobile__content__item:nth-child(even) {
    transform: translateX(4vw);
  }

  .fsa-page .section-2__mobile__content__item.active {
    z-index: 2;
  }

  .fsa-page .section-2__mobile__content__item__icon {
    width: 65px;
    margin-right: 2px;
    flex-shrink: 0;
  }

  .fsa-page .section-2__mobile__content__item__icon__img {
    display: block;
  }

  .fsa-page .section-2__mobile__content__item__icon__img__active {
    display: none;
  }

  .fsa-page .section-2__mobile__content__item__flagcontainer {
    font-family: "Noto Sans";
    font-weight: 700;
    position: relative;
    font-size: 18px;
    line-height: 1.2;
    display: inline-block;
    padding-left: 3px;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.3));
    cursor: pointer;
    z-index: 1;
  }

  .fsa-page .section-2__mobile__content__item.active .section-2__mobile__content__item__flagcontainer {
    font-weight: 400;
  }

  .fsa-page .section-2__mobile__content__item__flagcontainer::before {
    content: "";
    position: absolute;
    left: -3px;
    top: -12px;
    width: 10px;
    height: 10px;
    background-color: #eaf2f2;
    border-radius: 50%;
  }

  .fsa-page .section-2__mobile__content__item__flagcontainer::after {
    content: "";
    position: absolute;
    left: 0;
    top: -5px;
    bottom: 0;
    width: 4px;
    background-color: #eaf2f2;
    border-radius: 2px;
    margin-bottom: -10px;
  }

  .fsa-page .section-2__mobile__content__item__flagcontainer__text {
    color: #00726d;
    padding: 10px 15px 10px 15px;
    background-color: #eaf2f2;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .fsa-page .section-2__mobile__content__item__flagcontainer__text svg {
    flex-shrink: 0;
  }

  .fsa-page .section-2__mobile__content__item__flagcontainer__value {
    font-family: Noto Sans SemiCondensed;
    color: #fff;
    position: absolute;
    background: #007b79;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 20px 10px 20px;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    opacity: 1;
    transition:
      height 0.35s cubic-bezier(0.2, 0, 0, 1),
      padding-top 0.35s cubic-bezier(0.2, 0, 0, 1),
      padding-bottom 0.35s cubic-bezier(0.2, 0, 0, 1),
      opacity 0.3s ease;
  }

  .fsa-page .section-2__mobile__content__item:not(.active) .section-2__mobile__content__item__flagcontainer__value {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
  }

  .fsa-page .section-2__mobile__content__item__todoicon {
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 5px;
    opacity: 0;
    font-family: "Noto Sans";
    color: #00726d !important;
    font-size: 14px;

    font-weight: 600;
  }

  .fsa-page a.section-2__mobile__content__item__todoicon {
    text-decoration: none;
	pointer-events: none;
  }

  .fsa-page .section-2__mobile__content__item__todoicon__img {
    width: 45px;
  }

  .fsa-page .section-2__mobile__content__item__todoicon__text {
    background: #fff;
    border-radius: 20px;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.3));
    padding: 2px 10px;
    transform: translateY(-5px);
  }

  .fsa-page .section-2__mobile__header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .fsa-page .section-2__mobile__header__img {
    width: 55vw;
  }

  .fsa-page .section-2__mobile__header__title {
    font-family: "Futura";
    font-weight: 700;
    color: #00726d;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 4px 4px 1px #b7e4e1;
    text-transform: uppercase;
    font-size: 35px;
    position: absolute;
    transform: translate(45%, 85%);
    top: 55%;
  }

  .fsa-page .section-2__mobile__content__item.active .section-2__mobile__content__item__flagcontainer::after,
  .fsa-page .section-2__mobile__content__item.active .section-2__mobile__content__item__flagcontainer::before,
  .fsa-page .section-2__mobile__content__item.active .section-2__mobile__content__item__flagcontainer__text {
    background-color: #f35052;
    color: #fff;
  }

  .fsa-page .section-2__mobile__content__item.active .bi-plus-lg,
  .fsa-page .section-2__mobile__content__item.active .section-2__mobile__content__item__icon__img {
    display: none;
  }

  .fsa-page .section-2__mobile__content__item .bi-dash-lg {
    display: none;
  }

  .fsa-page .section-2__mobile__content__item.active .bi-dash-lg,
  .fsa-page .section-2__mobile__content__item.active .section-2__mobile__content__item__icon__img__active {
    display: block;
  }

  .fsa-page .section-2__mobile__content__item.active .section-2__mobile__content__item__todoicon {
    opacity: 1;
	pointer-events: auto;
  }

  /* #endregion Section-2 */

  /* #region Section-3 */
  .fsa-page .section-3__content__title {
    font-size: 35px;
  }

  .fsa-page .section-3__content {
    width: 75%;
    padding-bottom: 50px;
  }

  .fsa-page .section-3__content__item__content {
    width: 80%;
    flex: unset;
  }

  .fsa-page .section-3__content__item__content__two {
    width: 100%;
  }

  .fsa-page .section-3__content__item__content__two .section-3__content__item__content__header {
    width: 75%;
  }

  .fsa-page .section-3__content__item__imgwrapper {
    display: none;
  }

  /* #endregion Section-3 */

  /* #region Section-4 */
  .fsa-page .section-4__title {
    font-size: 35px;
  }

  /* #endregion Section-4 */

  /* #region Section-5 */
  .fsa-page .section-5__title {
    font-size: 35px;
  }

  .fsa-page .section-5__content {
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
  }

  .fsa-page .section-5__des {
    font-size: 16px;
    width: 100%;
    gap: 20px;
  }

  .fsa-page .section-5__content__item {
    font-size: 16px;
  }

  .fsa-page .highlight-first-letter {
    font-size: 22px;
  }

  /* #endregion Section-5 */

  /* #region Section-6 */

  .fsa-page .section-6__bg01__mobile {
    display: block;
  }
  .fsa-page .section-6__bg01__pc {
    display: none;
  }
  .fsa-page .section-6__bg02 {
    display: none;
  }

  .fsa-page .section-6__bg03 {
    grid-area: 1 / 1;
    display: block;
  }

  .fsa-page .section-6__title {
    font-size: 35px;
  }

  .fsa-page .section-6__des {
    flex-direction: column;
  }

  .fsa-page .section-6__desimg {
    width: 38%;
  }

  .fsa-page .section-6__descontent {
    text-align: justify;
  }

  /* #endregion Section-6 */
}

@media only screen and (max-width: 765px) {
  .fsa-page .fsa-menu {
    margin-top: -15px;
  }

  /* #region KnowTheSigns */
  .fsa-page .know-the-signs__wrapper .know-the-signs__title {
    font-size: 24px;
    padding: 8px 20px;
  }

  /* #endregion KnowTheSigns */

  /* #region Section-2 */
  .fsa-page .section-2__mobile__header__title {
    font-size: 24px;
  }

  .fsa-page .section-2__mobile__content {
    width: 85%;
  }

  /* #endregion Section-2 */

  /* #region Section-3 */
  .fsa-page .section-3__content__title {
    font-size: 24px;
  }

  .fsa-page .section-3__content__item__content__header__title {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .fsa-page .section-3__content__item__content__header__icon {
    width: 85px;
    flex: unset;
  }

  /* #endregion Section-3 */

  /* #region Section-4 */
  .fsa-page .section-4__title {
    font-size: 24px;
  }

  .fsa-page .section-4__table {
    transform: translateY(-18px);
  }

  /* #endregion Section-4 */

  /* #region Section-5 */
  .fsa-page .section-5__title {
    font-size: 24px;
    padding: 8px 20px;
  }

  .fsa-page .section-5__img__text {
    right: 16vw;
    bottom: 4vw;
  }

  .fsa-page .section-5__img__text__item {
    padding: 2px 8px;
  }

  .fsa-page .section-5__img__wrapper {
    width: 100%;
  }

  .fsa-page .section-5__des {
    font-size: 14px;
    gap: 20px;
  }

  .fsa-page .section-5__content__item {
    font-size: 14px;
  }

  .fsa-page .highlight-first-letter {
    font-size: 20px;
  }

  /* #endregion Section-5 */

  /* #region Section-6 */
  .fsa-page .section-6__title {
    font-size: 24px;
    padding: 8px 20px 2px 20px;
  }

  /* #endregion Section-6 */
}

@media only screen and (max-width: 575px) {
  .container:has(.fsa-page) {
    padding: 0;
  }

  .fsa-page .fsa-menu {
    margin-top: -10px;
  }

  /* #region HeroBanner */
  .fsa-page .hero-banner__title {
    font-size: 22px;
  }

  .fsa-pgae .hero-banner__content {
    transform: translateX(-5px);
  }
  /* #endregion HeroBanner */

  /* #region KnowTheSigns */
  .fsa-page .know-the-signs {
    padding-top: 32px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .fsa-page .know-the-signs__wrapper .know-the-signs__title {
    line-height: 1.1;
    text-shadow: 2px 2px 1px #d1f1ef;
    padding: 1px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 25px;
    letter-spacing: 3px;
  }

  .fsa-page .know-the-signs__wrapper .know-the-signs__des {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.005em;
  }

  .fsa-page .know-the-signs__wrapper .know-the-signs__content {
    width: 100%;
  }

  /* #endregion KnowTheSigns */

  /* #region Section-2 */
  .fsa-page .section-2 {
    padding: 0 15px;
  }
  
  .fsa-page .section-2__mobile {
    padding-top: 5px;
    padding-bottom: 0;
    gap: 10px;
  }

  .fsa-page .section-2__mobile__header__img {
    width: 68vw;
  }
  
  .fsa-page .section-2__mobile__header__title {
    transform: translate(45%, 48%);
    text-shadow: 2px 2px 1px #b7e4e1;
    line-height: 1.2;
    font-size: 25px;
    letter-spacing: 3px;
  }
  
  html[lang="en"] .fsa-page .section-2__mobile__header__title {
    text-transform: unset;
    font-size: 20px;
    letter-spacing: unset;
  }

  .fsa-page .section-2__mobile__content__item__flagcontainer {
    font-size: 12px;
    padding-left: 0px;
  }

  .fsa-page .section-2__mobile__content {
    width: 100%;
    gap: 5px;
    margin-bottom: 20px;
    padding-left: 45px;
    padding-right: 20px;
  }

  .fsa-page .section-2__mobile__content__item__icon {
    width: 45px;
  }
  .fsa-page .section-2__mobile__content__item__todoicon__img {
    width: 30px;
  }
  .fsa-page .section-2__mobile__content__item__todoicon__text {
    line-height: 1;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 15px;
  }

  .fsa-page .section-2__mobile__content__item__todoicon {
    min-width: 75px;
    margin-left: 0;
    scale: 0.8;
    font-size: 12px;
  }

  .fsa-page .section-2__mobile__content__item__todoicon__text a {
    font-size: 12px;
  }

  .fsa-page .section-2__mobile__content__item__flagcontainer::before {
    left: -2px;
    top: -5px;
    width: 5px;
    height: 5px;
  }
  .fsa-page .section-2__mobile__content__item__flagcontainer::after {
    top: -4px;
    width: 2px;
    margin-bottom: -5px;
  }

  .fsa-page .section-2__mobile__content__item__flagcontainer__text {
    padding: 3px 5px 2px 8px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 5px) 50%, 100% 100%, 0 100%);
    gap: 0px;
  }

  .fsa-page .section-2__mobile__content__item:nth-child(even) {
    transform: translateX(20px);
  }

  .fsa-page .section-2__mobile__content__item__flagcontainer__value {
    width: 95%;
    font-weight: 400;
    padding: 5px 9px 5px 10px;
    border-radius: 0 0 10px 10px;
  }
  .fsa-page .section-2__mobile__tips {
    display: block;
    display: flex;
    justify-content: center;
    background: #ebf2f2;
    margin-left: -15px;
    margin-right: -15px;
    padding: 15px 50px 25px 50px;
    border-radius: 50% 50% 0 0 / 12% 12% 0 0;
  }

  .fsa-page .section-2__mobile__tipscontent {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .fsa-page .section-2__mobile__tipscontent__imgwrapper {
    width: 10vw;
  }

  .fsa-page .section-2__mobile__tipscontent__text {
    flex: 1;
    font-family: "Noto Sans";
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    color: #00726d;
  }
  /* #endregion Section-2 */

  /* #region Section-3 */
  .fsa-page .section-3__content {
    width: 100%;
    gap: 12px;
    padding-top: 20px;
    padding-bottom: 15px;
  }

  .fsa-page .section-3__overlay {
    height: 10px;
    top: -9px;
    z-index: 9;
  }

  .fsa-page .section-3__content__title {
    line-height: 1.2;
    text-shadow: 2px 2px 1px #004d4a;
    font-size: 25px;
    letter-spacing: 3px;
  }
  
  html[lang="en"] .fsa-page .section-3__content__title {
    text-transform: unset;
    font-size: 20px;
    letter-spacing: unset;
  }

  .fsa-page .section-3__content__item__content__header {
    padding: 0 10px;
  }

  .fsa-page .section-3__content__item__content__header__title {
    font-size: 18px;
  }

  .fsa-page .section-3__content__item__content__list {
    transform: translateY(-7px);
    padding: 0px 20px;
    border-radius: 0 10px 0 10px;
  }

  .fsa-page .section-3__content__item__content__header__icon {
    width: 58px;
    flex: unset;
  }

  .fsa-page .section-3__content__item__content {
    width: 66%;
  }

  .fsa-page .section-3__content__item__content__two {
    width: 78%;
  }

  .fsa-page .section-3__content__item__content__two .section-3__content__item__content__header {
    padding: 0 16px;
  }

  .fsa-page .section-3__content__item__content__list__item__icon {
    width: 13px;
  }

  .fsa-page .section-3__content__item__content__list__item {
    font-size: 12px;
    gap: 10px;
    padding: 8px 0;
  }

  .fsa-page .section-3__content__item__content__two .section-3__content__item__content__header {
    width: 100%;
  }

  /* #endregion Section-3 */

  /* #region Section-4 */
  .fsa-page .section-4__content {
    padding-top: 12px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .fsa-page .section-4__title {
    text-shadow: 2px 2px 1px #fff;
    font-size: 25px;
    padding-bottom: 5px;
    letter-spacing: 2px;
  }

  .fsa-page .section-4__table {
    width: 95%;
  }

  .fsa-page .section-4__table__row__content__title {
    font-size: 12px;
  }

  .fsa-page .section-4__table__row__content__des {
    font-size: 12px;
  }

  .fsa-page .section-4__table__row__img {
    width: 28px;
  }

  .fsa-page .section-4__table__row__content {
    min-height: 45px;
  }

  .fsa-page .section-4__table__row__content__arrow {
    width: 6px;
    display: flex;
    align-items: flex-start;
    padding-top: 5px;
  }

  .fsa-page .section-4__table {
    padding: 0px 30px;
    border-radius: 0 20px;
  }

  .fsa-page .section-4__table__img {
    width: 20vw;
    bottom: -3vw;
    right: -2vw;
  }

  .fsa-page .section-4__table__row__content {
    gap: 10px;
    padding-left: 5px;
  }

  .fsa-page .section-5__subtitle__text {
    padding-right: 2px;
    font-size: 20px;
    letter-spacing: 2px;
    padding-top: 10px;
  }

  .fsa-page .section-5__subtitle__text::before {
    top: 1px;
    left: 1px;
    padding-top: 10px;
  }
  .fsa-page .section-5__desitem {
    gap: 5px;
  }

  .fsa-page .section-5__desitem__label {
    padding: 2px 5px 2px 5px;
    font-weight: 400;
  }

  .fsa-page .section-5__desitem__value {
    font-weight: 400;
    line-height: 1.1;
  }

  .fsa-page .section-4__overlay {
    height: 10px;
  }

  /* #endregion Section-4 */

  /* #region Section-5 */
  .fsa-page .section-5 {
    gap: 10px;
    padding: 0 15px;
    padding-top: 16px;
    padding-bottom: 25px;
  }

  .fsa-page .section-5__title {
    font-size: 20px;
    text-shadow: 2px 2px 1px #d1f1ef;
    padding: 0px 10px;
    border-radius: 5px;
  }

  .fsa-page .section-5__img__wrapper {
    width: 86%;
  }

  .fsa-page .section-5__img__text {
    right: 16vw;
  }

  .fsa-page .section-5__des {
    width: 85%;
    max-width: unset;
    font-size: 12px;
    gap: 10px;
  }

  .fsa-page .section-5__content {
    width: 90%;
    padding-top: 5px;
  }

  .fsa-page .section-5__content__item {
    font-size: 12px;
    line-height: 1.4;
  }

  .fsa-page .highlight-first-letter {
    font-size: 14px;
  }

  /* #endregion Section-5 */

  /* #region Section-6 */
  .fsa-page .section-6 {
    border-radius: 50% 50% 0 0 / 10px 10px 0 0;
  }

  .fsa-page .section-6__title {
    font-size: 20px;
    border-radius: 5px;
    padding: 1px 6px 2px 6px;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.4);
  }
  .fsa-page .section-6__wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .fsa-page .section-6__des {
    width: 60%;
    gap: 10px;
  }
  .fsa-page .section-6__desimg {
    width: 38%;
  }
  .fsa-page .section-6__descontent {
    font-size: 12px;
  }

  /* #endregion Section-6 */
}

@media only screen and (max-width: 440px) {
  /* #region Section-5 */
  .fsa-page .section-5__img__text {
    right: 6vw;
    bottom: 2vw;
  }

  /* #endregion Section-5 */
}

@media only screen and (min-width: 992px) {
  /* #region FsaMenu */
  .fsa-page .fsa-menu {
    top: -20px;
  }
  /* #endregion FsaMenu */

  /* #region KnowTheSigns */
  .fsa-page .know-the-signs__wrapper .know-the-signs__title {
    border-radius: 15px;
    line-height: 1.1;
    margin-top: 12px;
    margin-bottom: 25px;
    padding: 5px 35px;
		letter-spacing: 3px;
  }

  .fsa-page .know-the-signs__wrapper .know-the-signs__des {
    font-weight: 500;
	letter-spacing: 0.5px;
  }
  /* #endregion KnowTheSigns */

  /* #region Section-2 */
  .fsa-page .section-2__pc {
    padding-bottom: 65px;
  }

  .fsa-page .section-2__pc__title {
    line-height: 1.1;
  }

  .fsa-page .section-2__pc__content__left {
    flex: unset;
    width: 50%;
    margin-left: -4%;
  }

  .fsa-page .section-2__pc__content__left__textwrapper.active {
    transform: scaleY(-1);
    top: unset;
    bottom: 50%;
  }

  .fsa-page .section-2__pc__content__left__textwrapper__text {
    font-weight: 400;
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: 0.5px;
  }

  .fsa-page .section-2__pc__content__left__textwrapper.active .section-2__pc__content__left__textwrapper__text {
    transform: scaleY(-1);
  }

  .fsa-page .section-2__pc__content__left__img {
    width: 100%;
  }

  .fsa-page .section-2__pc__content__right {
    margin-left: 7%;
  }

  .fsa-page .section-2__pc__content__left__textwrapper {
    right: -120px;
  }
  /* #endregion Section-2 */

  /* #region Section-3 */
  .fsa-page .section-3__content__title {
    font-size: clamp(12px, 4.2vw, 54px);
    margin-bottom: 24px;
    letter-spacing: 3px;
    line-height: 1.2;
  }

  .fsa-page .section-3__content {
    width: 84%;
    padding-bottom: 40px;
  }

  .fsa-page .section-3__content__item__content__header {
    padding-left: 10px;
  }
  .fsa-page .section-3__content__item__content__header__title {
    font-size: 41px;
  }

  .fsa-page .section-3__content__item__content {
    width: 53.5%;
    flex: unset;
  }

  .fsa-page .section-3__content__item__imgwrapper {
    flex: 1;
  }
  .fsa-page .section-3__content__item__content__list {
    transform: translateY(-20px);
  }
  .fsa-page .section-3__content__item__content__list__item {
    padding: 18px 0;
  }

  .fsa-page .section-3__content__item__content__two {
    width: 65%;
  }

  .fsa-page .section-3__content__item__content__two .section-3__content__item__content__header__icon {
    width: 20%;
    flex: unset;
  }

  .fsa-page .section-3__content__item__content__two .section-3__content__item__content__list__item__icon {
    width: 25px;
  }

  .fsa-page .section-3__content__item__content__two .section-3__content__item__content__list {
    transform: translateY(-5px);
  }

  .fsa-page .section-3__content__item__img {
    max-width: unset;
    width: 127%;
    z-index: 2;
    left: -6%;
  }
  /* #endregion Section-3 */

  /* #region Section-4 */
  .fsa-page .section-4__title {
    position: relative;
    top: -9px;
	  letter-spacing: 3px;
  }
  
  .fsa-page .section-4__subtitle {
    font-size: 16px;
  }
  
  .fsa-page .section-4__content {
    padding-top: 70px;
    padding-bottom: 75px;
  }

  .fsa-page .section-4__table {
    width: 81.5%;
    padding-left: 50px;
    padding-right: 50px;
  }

  .fsa-page .section-4__table__row__img {
    width: 50px;
  }

  .fsa-page .section-4__table__row__content__title {
    font-size: 20px;
  }

  .fsa-page .section-4__table__row__content {
    padding-left: 20px;
  }

  .fsa-page .section-4__table__row__content__des {
    font-size: 20px;
  }
  .fsa-page .section-4__table__img {
    bottom: -6vw;
    right: -6vw;
  }
  /* #endregion Section-4 */

  /* #region Section-5 */
  .fsa-page .section-5 {
    padding-top: 40px;
    gap: 0;
  }
  .fsa-page .section-5__title {
    line-height: 1.1;
    padding: 2px 35px;
  }

  .fsa-page .section-5__img__wrapper {
    width: 79%;
    padding-top: 35px;
  }

  .fsa-page .section-5__subtitle {
    padding-top: 25px;
  }

  .fsa-page .section-5__subtitle__text {
    line-height: 1.1;
    letter-spacing: 3px;
  }

  .fsa-page .section-5__subtitle__text::before {
    -webkit-text-stroke: 0.5px #0e7b7b;
  }

  .fsa-page .section-5__des {
    max-width: 100%;
    margin-top: 15px;
    gap: 30px;
    font-size: 20px;
    font-weight: 500;
  }
  
  .fsa-page .section-5__desitem__label {
    padding: 2px 10px 4px 10px;
    border: 0.5px solid #0e7b7b;
	  font-weight: 500;
  }
  
  .fsa-page .section-5__desitem {
    min-width: 215px;
  }

  .fsa-page .section-5__desitem__value {
    line-height: 1.1;
	text-wrap: nowrap;
  }

  .fsa-page .section-5__content {
    margin-top: 15px;
    padding-top: 15px;
  }

  .fsa-page .section-5__content__item {
    line-height: 1.5;
    font-weight: 400;
  }
  /* #endregion Section-5 */

  /* #region Section-6 */
  .fsa-page .section-6__title {
    padding: 4px 30px 6px 30px;
    letter-spacing: 3px;
  }
  .fsa-page .section-6__wrapper {
    padding-top: 68px;
  }

  .fsa-page .section-6__des {
        width: 60%;
    gap: 45px;
    margin-top: -15px;
    position: relative;
    align-items: unset;
  }

  .fsa-page .section-6__desimg {
    flex: unset;
    width: 38%;
  }

  .fsa-page .section-6__descontent {
    line-height: 1.5;
    position: relative;
    top: 82px;
  }
  /* #endregion Section-6 */
}

@media only screen and (min-width: 1300px) {
  .fsa-page .section-4__table__img {
    bottom: -60px;
  }
}