.menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 11;
  overflow: scroll;
  display: none;
}

.menu-head {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  height: 85px;
  background-color: #edfdef;
  z-index: 11;
}

.menu-head .cross {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -15px;
  background-size: contain;
  background-image: url(../img/icons/cross-green.svg);
}

.menu-head .cross:hover {
  cursor: pointer;
}

.menu-head .head-item {
  width: 200px;
  height: 100%;
  padding: 26px 0px 32px 0px;
  color: #979797;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 500;
}

.menu-head .head-item:hover {
  cursor: pointer;
}

.menu-head .head-item:before {
  content: "";
  width: 28px;
  height: 28px;
  display: block;
  margin-right: 4px;
}

.menu-head .head-item.pc:before {
  background-image: url(../img/icons/computer-grey.svg);
}

.menu-head .head-item.pc.active:before {
  background-image: url(../img/icons/computer-green.svg);
}

.menu-head .head-item.app:before {
  background-image: url(../img/icons/phone-grey.svg);
}

.menu-head .head-item.app.active:before {
  background-image: url(../img/icons/phone-green.svg);
}

.menu-head .head-item.active {
  box-shadow: inset 0 -5px 0 0 #00a661;
  color: #00a661;
}

@media (max-width: 767.98px) {
  .menu-head {
    height: 50px;
  }
  .menu-head .cross {
    width: 20px;
    height: 20px;
    right: 15px;
    margin-top: -10px;
  }
  .menu-head .head-item {
    padding: 0;
    font-size: 0.875rem;
    width: 150px;
  }
  .menu-head .head-item:before {
    width: 22px;
    height: 22px;
    background-size: contain;
  }
  .menu-head .head-item.active {
    box-shadow: inset 0 -3px 0 0 #00a661;
  }
}

@media screen and (orientation: landscape) and (max-height: 576px) {
  .menu-body .container {
    max-width: none;
  }
}

.menu-body .notification {
  color: #ff0000;
  font-size: 0.875rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 22px 35px;
}

.menu-body .notification::before {
  content: "";
  background-image: url(./../img/icons/info-red.svg);
  width: 22px;
  height: 22px;
  display: block;
}

.menu-body .menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.menu-body .menu-item div:first-child {
  margin: 10px 0;
  font-weight: 500;
  font-size: 1.25rem;
}

.menu-body .menu-item div:first-child.with-icon {
  position: relative;
}

.menu-body .menu-item div:first-child.with-icon::after {
  content: "";
  background-image: url(./../img/icons/info-red.svg);
  width: 22px;
  height: 22px;
  display: block;
  position: absolute;
  right: -22px;
  top: 4px;
}

.menu-body .menu-item a {
  width: 100%;
}

.menu-body .menu-item .btn {
  width: 100%;
  text-align: left;
  padding-left: 16px;
  padding-right: 24px;
  margin: 10px 0;
}

@media (max-width: 767.98px) {
  .menu-body .menu-item {
    margin-top: 25px;
  }
  .menu-body .menu-item .btn {
    font-size: 0.875rem;
    margin: 5px 0;
  }
}

@media (max-width: 575.98px) {
  .menu-body {
    display: none;
  }
}

.mobile-menu-body {
  display: none;
}

@media (max-width: 575.98px) {
  .mobile-menu-body {
    display: block;
  }
}

.mobile-menu-body .row {
  flex-direction: column;
}

.mobile-menu-body .title {
  display: flex;
  justify-content: space-between;
  font-size: 0.875;
  font-weight: 500;
  padding: 0.875rem 1.125rem;
  border-bottom: 1px solid #c4c4c4;
}

.mobile-menu-body .title:after {
  content: "";
  background-image: url(../img/icons/arrow-up.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  transition: 0.5s;
  transform: rotate(180deg);
}

.mobile-menu-body .title.with-icon div {
  display: flex;
  align-items: center;
}

.mobile-menu-body .title.with-icon div:after {
  content: "";
  background-image: url(./../img/icons/info-red.svg);
  width: 22px;
  height: 22px;
  display: block;
  margin-left: 4px;
}

.mobile-menu-body .notification {
  color: #ff0000;
  font-size: 0.875rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 10px 0;
  background-color: #FBF3F3;
  border-radius: 0;
}

.mobile-menu-body .notification::before {
  content: "";
  background-image: url(./../img/icons/info-red.svg);
  width: 22px;
  height: 22px;
  display: block;
}

.mobile-menu-body .menu-item ul {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
}

.mobile-menu-body .menu-item.active .title:after {
  transform: rotate(360deg);
}

.mobile-menu-body .menu-item.active ul {
  max-height: 300px;
  height: auto;
}

.mobile-menu-body ul {
  margin: 0;
  padding: 0;
}

.mobile-menu-body li {
  padding: 0.875rem 1.125rem;
  border-bottom: 1px solid #c4c4c4;
  list-style-type: none;
}

.menu {
  position: static;
  height: auto;
}

span.highlight {
  background-color: #ffd1d1;
  color: #0084ff;
}

span.highlight.active {
  background-color: yellow;
}

header {
  z-index: 101;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  border-top: 4px solid #00a661;
  border-bottom: 4px solid #fffd00;
  display: flex;
  align-items: center;
  padding: 0 18px;
}

header .cathay-logo {
  width: 205px;
  height: 66px;
}

header .seperation-line {
  width: 0.72px;
  height: 34px;
  background-color: #979797;
  margin: 4px 17px 0 17px;
}

header .b2b-logo {
  width: 34px;
  height: 34px;
  margin-right: 8px;
  margin-top: 4px;
}

header div {
  color: #333;
  font-size: 1.5rem;
}

header a {
  display: flex;
  align-items: center;
}

header a:hover {
  text-decoration: none;
}

@media (max-width: 767.98px) {
  header {
    padding: 8px;
    border: none;
  }
  header .cathay-logo {
    width: 134px;
    height: 43px;
  }
  header .seperation-line {
    height: 25px;
  }
  header .b2b-logo {
    width: 24px;
    height: 24px;
  }
  header div {
    font-size: 0.875rem;
  }
}

.key-view {
  background-color: #edfdef;
  display: flex;
  align-items: center;
  background-image: url(./../img/index/hero.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 307px;
}

.key-view h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 10px;
  margin-bottom: 57px;
}

.key-view .content {
  padding-top: 48px;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.key-view .search-btns {
  display: flex;
  justify-content: center;
  width: 100%;
}

.key-view .search-btns .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding: 23px;
  max-width: 415px;
  width: 50%;
  margin: 0 1rem;
}

.key-view .search-btns .btn::before {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  margin-right: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.key-view .search-btns .by-senario::before {
  background-image: url(./../img/icons/user-outline.svg);
}

.key-view .search-btns .by-senario.active::before {
  background-image: url(./../img/icons/user-white.svg);
}

.key-view .search-btns .by-feature::before {
  background-image: url(./../img/icons/gear-outline.svg);
}

.key-view .search-btns .by-feature.active::before {
  background-image: url(./../img/icons/gear-white.svg);
}

@media (max-width: 1024.98px) {
  .key-view .search-btns .btn {
    padding: 9px 22px;
    width: 50%;
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .key-view {
    height: 270px;
    background-image: url(./../img/index/hero-mobile.png);
  }
  .key-view h1 {
    font-size: 2.25rem;
  }
  .key-view .content {
    padding-top: 80px;
  }
  .key-view .search-btns .btn {
    font-size: 1rem;
    margin: 0 5px;
  }
  .key-view .search-btns .btn::before {
    justify-content: flex-start;
    margin-right: 10px;
  }
}

.search-and-tabs-wrapper {
  width: 100%;
  z-index: 100;
}

.search-bar {
  width: 100%;
  background-color: #edfdef;
  padding: 16px 0;
}

.search-bar .search-field {
  max-width: 100%;
  width: 865px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #00a661;
  position: relative;
}

.search-bar img {
  width: 24px;
  height: 24px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .search-bar img {
    min-width: 24px;
  }
}

.search-bar input {
  border: none;
  background: transparent;
  padding: 11px;
  color: #00a661;
  font-size: 1.125rem;
  line-height: 1.5;
  width: 100%;
  outline: none !important;
}

.search-bar input::-ms-clear {
  width: 0;
  height: 0;
  display: none;
}

.search-bar input:focus-visible, .search-bar input:focus {
  outline: none;
}

.search-bar input::placeholder {
  color: #00a661;
}

.search-bar .keyword-list {
  position: absolute;
  top: calc(1.8rem + 22px);
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 101;
  font-size: 1.125rem;
  border-radius: 0 0 8px 8px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.39);
}

.search-bar .keyword-list .list-item {
  padding: 8px 16px;
}

.search-bar .keyword-list .list-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.search-bar .keyword-list .list-item:hover {
  cursor: pointer;
}

.search-bar .search-control {
  display: flex;
  align-items: center;
  color: #00a661;
}

.search-bar .search-control img:hover {
  cursor: pointer;
}

.search-bar .arrows-wrapper {
  background: #ffffff;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.search-bar .arrows-wrapper .seperation-line {
  background-color: #c4c4c4;
  width: 1px;
  height: 20px;
}

.search-bar .arrows-wrapper img {
  margin: 4px;
}

@media (max-width: 767.98px) {
  .search-bar {
    padding: 8px 0 4px;
  }
  .search-bar img {
    width: 20px;
    height: 20px;
  }
  .search-bar input {
    font-size: 0.875rem;
  }
  .search-bar .keyword-list {
    top: calc(1.4rem + 22px);
    font-size: 0.875rem;
  }
}

.tabs-group-wrapper-outer {
  display: flex;
  align-items: center;
  background-color: #edfdef;
  position: relative;
  transition: 0.5s;
  width: 100%;
}

.tabs-group-wrapper-outer.expand {
  box-shadow: 0px 6px 4px rgba(0, 0, 0, 0.1);
}

.tabs-group-wrapper-outer .dropdown-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  background: #edfdef;
  width: 60px;
  height: 30px;
  border-left: 1px solid #979797;
  margin: 12px 0;
}

.tabs-group-wrapper-outer .dropdown-arrow img {
  width: 20px;
  height: 20px;
  transition: 0.5s;
}

.tabs-group-wrapper-outer .dropdown-arrow.active img {
  transform: rotate(180deg);
}

@media (max-width: 1024.98px) {
  .tabs-group-wrapper-outer .dropdown-arrow {
    display: flex;
  }
  .tabs-group-wrapper-outer .tabs-group-wrapper {
    width: calc(100% - 60px);
  }
}

.tabs-group-wrapper {
  width: 100%;
  background-color: #edfdef;
}

.tabs-group-wrapper .tabs-group {
  max-width: 100%;
  width: 990px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs-group-wrapper .tabs-group::-webkit-scrollbar {
  display: none;
}

.tabs-group-wrapper .tabs-group img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.tabs-group-wrapper .tabs-group__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
  font-size: 1.125rem;
  max-width: 200px;
  color: #979797;
}

.tabs-group-wrapper .tabs-group__tab img:nth-child(1) {
  display: block;
}

.tabs-group-wrapper .tabs-group__tab img:nth-child(2) {
  display: none;
}

.tabs-group-wrapper .tabs-group__tab:hover {
  text-decoration: none;
  cursor: pointer;
}

.tabs-group-wrapper .tabs-group__tab--active {
  box-shadow: inset 0px -5px 0px 0px #00a661;
  color: #00a661;
}

.tabs-group-wrapper .tabs-group__tab--active img:nth-child(1) {
  display: none;
}

.tabs-group-wrapper .tabs-group__tab--active img:nth-child(2) {
  display: block;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .tabs-group-wrapper .tabs-group .fix-width-for-ie {
    min-width: 200px;
  }
}

@media (max-width: 1024.98px) {
  .tabs-group-wrapper .tabs-group {
    width: 100%;
    max-width: 100%;
    overflow: auto;
    justify-content: normal;
  }
  .tabs-group-wrapper .tabs-group img {
    width: 22px;
    height: 22px;
    margin-right: 5px;
  }
  .tabs-group-wrapper .tabs-group__tab {
    height: 50px;
    min-width: 142px;
    font-size: 0.875rem;
  }
  .tabs-group-wrapper .tabs-group__tab--active {
    box-shadow: inset 0px -5px 0px 0px #00a661;
  }
}

@media (max-width: 767.98px) {
  .tabs-group-wrapper .tabs-group__tab {
    min-width: 115px;
  }
}

.expand-tabs-group {
  display: none;
  background-color: #edfdef;
  padding: 10px;
}

.expand-tabs-group img {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}

.expand-tabs-group img:nth-child(1) {
  display: none;
}

.expand-tabs-group .active img:nth-child(1),
.expand-tabs-group .btn:hover img:nth-child(1) {
  display: block;
}

.expand-tabs-group .active img:nth-child(2),
.expand-tabs-group .btn:hover img:nth-child(2) {
  display: none;
}

.expand-tabs-group .btn {
  font-size: 12px;
  margin: 5px 10px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  transition: 0;
}

section {
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  min-height: 800px;
}

section.bg-bottom-right {
  background-image: url(./../img/index/bg-bottom-right.svg);
}

section.bg-bottom-left {
  background-image: url(./../img/index/bg-bottom-left.svg);
}

@media (max-width: 1024.98px) {
  section.bg-bottom-right {
    background-image: url(./../img/index/bg-bottom-right-mobile.svg);
  }
  section.bg-bottom-left {
    background-image: url(./../img/index/bg-bottom-left-mobile.svg);
  }
}

@media (max-width: 1024.98px) {
  section {
    min-height: auto;
  }
}

.section {
  padding-top: 71px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
}

.section .title-row {
  color: #00a661;
  display: flex;
  width: 100%;
  align-items: flex-end;
  white-space: nowrap;
  justify-content: space-evenly;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .section .title-row {
    justify-content: space-around;
  }
}

.section .title-row .wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.section .title-row .wrapper img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 10px;
  line-height: 1.4;
}

.section h3 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 10px;
  margin-bottom: 0;
}

.section .notes {
  color: #979797;
  font-size: 0.875rem;
  margin-top: 20px;
  margin-bottom: 22px;
}

@media (max-width: 1024.98px) {
  .section .title-row {
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .section:first-of-type {
    padding-top: 36px;
  }
  .section.container {
    padding-left: 0;
    padding-right: 0;
  }
  .section .title-row {
    justify-content: space-between;
  }
  .section .title-row .wrapper img {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
  }
  .section .notes {
    margin-bottom: 0;
  }
  .section h2 {
    font-size: 2.25rem;
  }
  .section h3 {
    font-size: 1.5rem;
  }
}

.card {
  border-radius: 10px;
  width: 100%;
  height: 380px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  display: flex;
  flex-direction: column;
  transition: 0.5s;
  overflow: hidden;
}

.card .card__img {
  width: 100%;
  height: 190px;
}

.card .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .card__body {
  padding: 10px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card .card__title {
  font-size: 1.125rem;
  flex-grow: 1;
}

.card .card__link {
  color: #00a661;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0;
}

.card .card__link::after {
  content: "";
  background-image: url(./../img/icons/right-green.svg);
  width: 14px;
  height: 14px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.card .card__link:hover {
  color: #00de82;
}

.card .card__link:hover::after {
  background-image: url(./../img/icons/right-green-light.svg);
}

.card:hover {
  box-shadow: 1px 7px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767.98px) {
  .card {
    font-size: 1rem;
  }
}

.swiper-container {
  width: 100%;
  margin: 35px 0 30px;
  position: relative;
}

@media (max-width: 767.98px) {
  .swiper-container {
    width: 80%;
    margin: 24px 0 50px 0;
  }
}

.swiper-slide {
  width: 33%;
  padding: 15px 30px;
}

@media (max-width: 1199.98px) {
  .swiper-slide {
    padding: 15px 10px;
  }
}

@media (max-width: 1024.98px) {
  .swiper-slide {
    width: 50%;
  }
}

@media (max-width: 767.98px) {
  .swiper-slide {
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
  }
}

.swiper-wrapper {
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 767.98px) {
  .swiper-wrapper {
    flex-wrap: nowrap;
  }
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
}

@media (max-width: 767.98px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: block;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.3);
}

.swiper-button-next {
  width: 30px;
  height: 30px;
  right: -25px;
}

.swiper-button-next::after {
  content: url(./../img/icons/swiper-arrow-right.svg);
}

.swiper-button-next:focus {
  outline: none;
}

.swiper-button-prev {
  width: 30px;
  height: 30px;
  left: -25px;
}

.swiper-button-prev::after {
  content: url(./../img/icons/swiper-arrow-left.svg);
}

.swiper-button-prev:focus {
  outline: none;
}

.notification {
  padding: 22px 35px;
  border: 1px solid #00a661;
  border-radius: 10px;
  background: #ffffff;
  width: calc(100% - 60px);
  margin-top: -15px 0 50px;
}

.notification .title-row {
  color: #00a661;
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification .title-row:hover {
  cursor: pointer;
}

.notification .title-row::after {
  content: "";
  background-image: url(./../img/icons/minus-green.svg);
  width: 21px;
  height: 21px;
  display: block;
}

.notification .title-row.collapse::after {
  background-image: url(./../img/icons/plus-green.svg);
}

.notification a {
  color: #0085ff;
}

.notification .text {
  font-size: 0.875rem;
  margin-top: 10px;
  display: none;
}
/*# sourceMappingURL=index.css.map */