/** Shopify CDN: Minification failed

Line 122:2 Unexpected "}"

**/


/* CSS from section stylesheet tags */
/* .gw-widget-placeholder-BR {
    display: none;
  } */
  
  .gw-rpl-hero {
    padding: 80px;
    background-color: rgba(36, 50, 81, 0.03);
    box-sizing: border-box;
    overflow: hidden;
  }

  .gw-rpl-hero__container {
    max-width: 1640px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .gw-rpl-hero__left, .gw-rpl-hero__right {
    width: 50%;
  }

  .gw-rpl-hero__left {
    padding-right: 24px;
  }

  .gw-rpl-hero__right img {
    border-radius: 16px;
    height: 481px;
    object-fit: cover;
  }

  .gw-rpl-hero__title {
    padding-top: 60px;
    font-size: 52px;
    line-height: 48px;
    font-weight: 600;
  }

  .gw-rpl-hero__description {
    padding-top: 26px;
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    padding-right: 124px;
  }

  .gw-rpl-hero__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 26px;
    display: flex;
    gap: 5.5px;
    flex-wrap: wrap;
    list-style: none;
  }

  .gw-rpl-hero__card-item {
    padding: 10px 14px;
    background-color: #FFFFFF;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .gw-rpl-hero__card-item-text {
    font-size: 14px;
    line-height: 16.94px;
    font-weight: 400;
    color: #12141D;
    text-transform: uppercase;
  }

  .gw-rpl-hero__actions {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 50px;
    display: flex;
    gap: 30px;
  }

  .gw-rpl-hero__button {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    min-width: 200px;
    text-decoration: none;
    display: block;
    text-align: center;
  }

  .gw-rpl-hero__primary-action {
    background-color: #001C4E;
    color: #FFFFFF;
  }

  .gw-rpl-hero__primary-action:hover {
  background-color: #0B1E47; /* 你可以自定hover顏色 */
  color: #FFFFFF;
  transition: background-color 100ms linear, color 100ms linear;
}

.gw-rpl-hero__secondary-action {
  border: 1px solid #000000; /* 由深藍改為黑色 */
  color: #0B1E47;
}
  }

.gw-rpl-hero__secondary-action:hover {
  background-color: #ebedf0;
  color: #000000;
  border: 1px solid #000000;
  -webkit-transition: background-color 100ms linear;
  -ms-transition: background-color 100ms linear;
  transition: background-color 100ms linear;
}


   @media screen and (max-width: 1000px){
    .gw-rpl-hero__left {
      width: 100%;
    }

    .gw-rpl-hero__right {
      display: none;
    }

    .gw-rpl-hero {
      padding: 40px;
    }

    .gw-rpl-hero__left {
      padding-right: 0;
    }

    .gw-rpl-hero__title {
      padding-top: 20px;
      font-size: 32px;
      line-height: 36px;
    }

    .gw-rpl-hero__description {
      padding-top: 20px;
      padding-right: 16px;
      line-height: 24px;
    }

    .gw-rpl-hero__button {
      min-width: 140px;
    }

    .gw-rpl-hero__actions {
      gap: 24px;
    }
  }

  @media screen and (max-width: 800px) {
    .gw-rpl-hero__right img {
      height: 180px;
    }
  }