/*
=============== 
Fonts
===============
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap");

/*
=============== 
Variables
===============
*/

:root {
  /* dark shades of primary color*/
  --clr-primary-1: hsl(43, 86%, 17%);
  --clr-primary-2: hsl(43, 77%, 27%);
  --clr-primary-3: hsl(43, 72%, 37%);
  --clr-primary-4: hsl(42, 63%, 48%);
  /* primary/main color */
  --clr-primary-5: hsl(42, 78%, 60%);
  /* lighter shades of primary color */
  --clr-primary-6: hsl(43, 89%, 70%);
  --clr-primary-7: hsl(43, 90%, 76%);
  --clr-primary-8: hsl(45, 86%, 81%);
  --clr-primary-9: hsl(45, 90%, 88%);
  --clr-primary-10: hsl(45, 100%, 96%);
  /* darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  /* grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --ff-primary: "Roboto", sans-serif;
  --ff-secondary: "Open Sans", sans-serif;
  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --max-width: 1170px;
}
/*
=============== 
Global Styles
===============
*/

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--ff-secondary);
  background: var(--clr-white);
  color: var(--clr-grey-1);
  line-height: 1.5;
  font-size: 0.875rem;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
img:not(.nav-logo) {
  width: 100%;
  display: block;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-family: var(--ff-primary);
}
h1 {
  font-size: 3rem;
  font-weight: bolder;
}
h2 {
  font-size: 2rem;
  font-weight: bolder;
}
h3 {
  font-size: 1.25rem;
  font-weight: bolder;
}
h4 {
  font-size: 0.875rem;
  font-weight: bolder;
}
p {
  margin-bottom: 1.25rem;
  color: var(--clr-grey-5);
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}
/*  global classes */

.btn {
  text-transform: uppercase;
  background: var(--clr-primary-5);
  color: var(--clr-primary-1);
  padding: 0.375rem 0.75rem;
  letter-spacing: var(--spacing);
  display: inline-block;
  font-weight: 700;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
}
.btn:hover {
  color: var(--clr-primary-1);
  background: var(--clr-primary-7);
}
/* section */
.section {
  padding: 3rem 0;
}

.section-center {
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
}
@media screen and (min-width: 992px) {
  .section-center {
    width: 95vw;
  }
}
/* added during recording */
.underline {
  width: 5rem;
  height: 0.25rem;
  margin-bottom: 1.25rem;
  background: var(--clr-primary-5);
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  margin-bottom: 4rem;
  text-align: center;
}
.bg-grey {
  background: var(--clr-grey-10);
}

.ApplyNow {
  background-color: rgb(68, 155, 199);
  color: white;
  display: block;
  font-size: 2rem;
  margin: 0 auto;
  border-radius: 10px;
  border-color: lightblue;
  padding: 3px 10px;
}

.section-footer {
  margin-top: 50px;
}

/*
=============== 
Navbar
===============
*/
.myNavbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--clr-white);
  box-shadow: var(--dark-shadow);
  z-index: 2;
}
.nav-icons {
  display: none;
}
.nav-center {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.nav-toggle {
  background: transparent;
  border: transparent;
  font-size: 1.5rem;
  color: var(--clr-primary-5);
  cursor: pointer;
  transition: var(--transition);
}
.nav-toggle:hover {
  transform: scale(1.2);
}
.nav-linkx {
  display: block;
  padding: 0.3rem 2rem;
  text-transform: capitalize;
  letter-spacing: var(--spacing);
  transition: var(--transition);
  color: var(--clr-grey-1);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}
.nav-linkx:hover {
  color: var(--clr-primary-1);
  background: var(--clr-primary-8);
  padding-left: 2.25rem;
}
/* 280px */
.nav-links {
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}
.show-links {
  height: 280px;
}

.joinNow {
  /* color: white;
  background-color: blue;
  border-radius: 20px;
  padding: 0 10px !important; */
}
.nav-logo {
  display: block;
  max-width: 60vw;
  max-height: 36px;
}
@media screen and (min-width: 676px) {
  .navbar-brand {
    margin-right: auto !important;
    margin-left: initial !important;
  }
}

@media screen and (min-width: 992px) {
  /* hide toggle button */
  .myNavbar {
    padding: 1rem 2rem;
  }
  .nav-toggle {
    display: none;
  }
  .nav-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* optional */
    flex-wrap: wrap;
  }
  .nav-links {
    height: auto;
    display: flex;
  }
  .nav-header {
    padding: 0 0;
  }
  .nav-linkx {
    padding: 0 0;
    margin-right: 0.7rem;
  }
  .nav-linkx:hover {
    padding: 0;
    color: var(--clr-primary-5);
    background: transparent;
  }
  .nav-icons {
    display: flex;
  }
  .nav-icon {
    margin-right: 0.7rem;
    color: var(--clr-primary-5);
    font-size: 1.2rem;
    transition: var(--transition);
  }
  .nav-icon:hover {
    color: var(--clr-primary-8);
  }

  .nav-logo {
    display: block;
    max-width: 24vw;
  }

  .joinNow {
    color: white;
    background-color: blue;
    border-radius: 20px;
    padding: 0 10px !important;
  }
}
/*
===============
店家困境
===============
*/

.section-dilemma {
  padding-top: 100px;
}

.dilemma {
  display: flex;
  flex-direction: column;
}

.textWithUnderline {
  /* text-decoration: underline !important; */
}

.dilemma__subTitle {
  color: darkslateblue;
}

.dilemma__button {
  font-size: 3rem;
  border: 10px;
  background-color: blueviolet;
  color: white;
  border-radius: 10px;
  padding: 2px 10px;
  /* padding-bottom: 5px; */
  display: flex;
  align-items: center;
  gap: 10px 10px;
}

.dilemma__button--icon {
  display: inline-block;
  color: blueviolet;
  background-color: white;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

.dilemma__button--iconx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: blueviolet;
  background-color: white;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .dilemma {
    flex-direction: row;
  }
  .dilemma__text {
    flex: 1 1 0;
    width: 0;
    align-self: center;
  }
  .dilemma__image {
    flex: 1 1 0;
    width: 0;
  }
}

/*
=============== 
Conditions 店家老闆可能遇到的狀況
===============
*/

.condition__article {
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  margin: 0 auto;
  gap: 15px 10px;
}
/* 
https://css-tricks.com/equal-columns-with-flexbox-its-more-complicated-than-you-might-think/
*/
.condition__article > * {
  /* flex: 1; */
  flex-basis: 100%;
  align-self: center;
}

.condition--img {
  width: 100%;
  height: 100%;
  max-width: 100px;
  object-fit: cover;
}

.grid-section__content li {
  font-size: 1.2rem;
}

.conditions {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.conditions-title {
  margin: 0 1rem;
}

/* .conditions-title h2 {
  font-size: 1.6rem;
} */

/* 576 768 992 1200 1400*/
@media screen and (min-width: 768px) {
  /* .conditions {
    grid-template-columns: repeat(2, 1fr);
  } */
  .condition--img {
    max-width: 150px;
  }

  .grid-section__content ul {
    padding-left: 0;
  }

  .condition__article .grid-section__content {
    align-self: start;
  }

    .submit-form {
        width: 200px;
        height: 60px;
        max-width: 300px;
        background-color: '#007799';
        color: white;
        display: block;
        /*font-size: 1.5rem;*/
        margin: 0 auto;
        border-radius: 35px;
        border-color: transparent;
        padding: 1px 3px;
        text-align: center;
        font-size: 16px;
        font-family: 微軟正黑體;
        letter-spacing: 0px;
        font-weight: bold;
        line-height: 1.2;
        font-style: normal;
    }

}

@media screen and (min-width: 992px) {
  .condition--img {
    max-width: 200px;
  }
}

@media screen and (min-width: 1200px) {
  .condition__article {
    flex-direction: row;
  }

  .grid-section__content ul {
    padding-left: 2rem;
  }

  .condition__article .grid-section__content {
    align-self: center;
  }
}
/*
=============== 
Cooperates 成為月付大人合作店家
===============
*/
/* bg-grey in globals */
.cooperate {
  display: flex;
  background: var(--clr-white);
  padding: 0 1.5rem;
  margin-bottom: 0;
  border-radius: var(--radius);
  text-align: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.cooperate-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}
.cooperate-image {
  font-size: 2rem;
  margin-bottom: 1.5rem !important;
  max-width: 100px;
}
.cooperate .underline {
  width: 3rem;
  height: 0.12rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.cooperates-title {
  /* font-size: 1.6rem; */
  margin-left: 1rem;
  margin-right: 1rem;
}

.cooperate-title {
  font-size: 1.6rem;
  text-align: left;
}

/* .cooperate-title h2 {
  font-size: 1.8rem;
} */

.cooperate p {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.cooperate:hover {
  background: var(--clr-primary-5);
  color: var(--clr-white);
}
.cooperate:hover p {
  color: var(--clr-white);
}
.cooperate:hover .underline {
  background: var(--clr-white);
}

.cooperates-center {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}

.cooperate-info ul {
  text-align: left;
  padding-left: 0;
}

@media screen and (min-width: 576px) {
  .cooperate-title {
    text-align: center;
  }
}

@media screen and (min-width: 676px) {
  .cooperate {
    padding: 1rem 0.3rem;
  }
  .cooperates-center {
    grid-template-columns: 1fr 1fr;
  }

  .cooperate-image-container {
    width: 100%;
  }

  .cooperate-info ul {
    padding-left: 15%;
  }
}

@media screen and (min-width: 768px) {
  .cooperate {
    flex-direction: column;
  }

  .cooperate-info ul {
    padding-left: 32%;
  }
}
@media screen and (min-width: 992px) {
  .cooperates-center {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cooperate-info ul {
    padding-left: 26%;
  }
}

@media screen and (min-width: 1200px) {
  .cooperates-center {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .cooperate-info ul {
    padding-left: 4rem;
  }
}

/*
=============== 
solutions 合作方案一覽
===============
*/

.solutions-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.2rem 1rem;
}

.solution {
  width: 100%;
  display: flex;
  gap: 0.2rem 0.2rem;
  flex-direction: column;
}

.solution-image-container {
  /* flex-grow: 10; */
  display: flex;
  justify-content: center;
  align-items: start;
  /* width: 100%; */
}

.solution-image {
  max-width: 250px;
  min-width: 200px;
}
/*
.solution-info {
   flex-grow: 1;
}
 */
.solution-title {
  font-weight: bold;
  display: none;
}

.solution-text {
  padding: 0 3rem;
  font-size: 1rem;
}

.solution-header-title {
  margin-top: 1rem;
}

@media screen and (min-width: 576px) {
  .solution {
    flex-direction: row;
  }
  .solution-title {
    font-size: 1.6rem;
  }
  .solution-text {
    padding: 0 0;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 676px) {
  .solutions-center {
    gap: 0.5rem 0.5rem;
  }
  .solution {
    gap: 0.5rem 0.5rem;
  }
  .solution-title {
    display: inline;
  }
  .solution-header-title {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .solutions-center {
    gap: 1rem 1rem;
  }
  .solution {
    gap: 1rem 1rem;
  }

  .solution-image {
    width: 220px;
  }
}
@media screen and (min-width: 992px) {
  .solutions-center {
    gap: 1.5rem 2rem;
  }
  .solution {
    gap: 2rem 2rem;
  }
  .solution-image {
    width: 250px !important;
  }
}

@media screen and (min-width: 1200px) {
  .solutions-center {
    gap: 2rem 3rem;
  }
  .solution {
    gap: 3rem 3rem;
  }
  .solution-image {
    width: 300px !important;
  }
}

/*
=============== 
Cases 合作店家見證
===============
*/

#section-cases {
  padding-bottom: 0;
}
.carousel-item-content {
  border-radius: 30px;
  border: 1px solid black;
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  align-items: center;
  /* background-color: lightgrey; */
}

.carousel__image {
  max-width: 100px;
}

.carousel-item-title {
  font-size: 1rem;
  line-height: 3rem;
}

.carousel-item {
  height: 260px;
}
.carousel-item-text {
  font-size: 0.8rem;
  line-height: 2rem;
}

.carousel-inner {
  padding-bottom: 50px;
}

.carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

@media screen and (min-width: 576px) {
  .carousel__image {
    max-width: 250px;
  }
  .carousel-item-content {
    flex-direction: row;
  }
}

/*mobile portrait*/
@media screen and (min-width: 768px) {
  .carousel__image {
    max-width: 300px;
  }
  .carousel-item-content {
    flex-direction: row;
  }

  .carousel-item-title {
    font-size: 1.5rem;
  }
  .carousel-item-text {
    font-size: 1.2rem;
  }

    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        width: 100%;
        /*        padding-right: var(--bs-gutter-x,.25rem);
        padding-left: var(--bs-gutter-x,.25rem);*/
        padding-right: 0px;
        padding-left: 0px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-content {
        width: 100%;
        max-width: 100%;
        margin: 0 2% 0 2%;
        padding: 5px;
    }

    .form-control2 {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: var(--bs-body-bg);
        background-clip: padding-box;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: 0;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .submit-form {
        width: 200px;
        height: 60px;
        max-width: 300px;
        background-color: '#007799';
        color: white;
        display: block;
        font-size: 1.5rem;
        margin: 0 auto;
        border-radius: 35px;
        border-color: transparent;
        padding: 1px 3px;
        text-align: center;
    }
}

/*desktop*/
@media screen and (min-width: 1200px) {

      .carousel-item-title {
        font-size: 1.8rem;
      }
      .carousel-item-text {
        font-size: 1.5rem;
      }

    .contact-content {
        width: 80%;
        max-width: 100%;
        margin: 0 10% 0 10%;
        padding: 5px;
    }

    .contact-body {
        width: 80%;
        max-width: 100%;
        margin: 0 10% 0 10%;
        padding: 5px;
        height: 50%;
        overflow-y: scroll;
    }

    .contact-footer {
        width: 80%;
        max-width: 100%;
        margin: 0 10% 0 10%;
        padding: 5px;
        text-align:center;
        overflow-y: hidden;
    }

    .form-control2 {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: var(--bs-body-bg);
        background-clip: padding-box;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: 0;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .submit-form {
        width: 200px;
        height: 60px;
        max-width: 300px;
        background-color: '#007799';
        color: white;
        display: block;
        font-size: 1.5rem;
        margin: 0 auto;
        border-radius: 35px;
        border-color: transparent;
        padding: 1px 3px;
        text-align: center;
    }
}

/* 
@media screen and (min-width: 992px) {
  .cooperates-center {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
} */

/*
=============== 
Open 加入就送網路開店
===============
*/
.section-title.about-title {
  margin-bottom: 0;
}
#section-open {
  padding-top: 0;
  padding-bottom: 0;
}
.open-section {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px 10px;
  justify-content: center;
}
.open-image {
  max-width: 100%;
}

.open-list {
  list-style-type: disc;
  text-align: initial;
}

.open-list-section {
  max-width: 60vw;
  margin: 0 auto;
}

/*mobile*/
@media screen and (max-width: 575px) {

    .modal-Lease{
        height:100%;
    }

    .modal-body {
        height:50%;
        overflow-y:auto;
    }

    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        width: 100%;
        /*        padding-right: var(--bs-gutter-x,.25rem);
        padding-left: var(--bs-gutter-x,.25rem);*/
        padding-right: 0px;
        padding-left: 0px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-content {
        width: 90%;
        max-width: 100%;
        margin: 0 5% 0 5%;
        padding: 5px;
    }

    .contact-body {
        width: 90%;
        max-width: 100%;
        margin: 0 5% 0 5%;
        padding: 5px;
        height: 40%;
        overflow-y: scroll;
    }

    .contact-footer {
        width: 80%;
        max-width: 100%;
        margin: 0 10% 0 10%;
        padding: 5px;
        text-align: center;
        overflow-y: hidden;
    }

    .form-control2 {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: var(--bs-body-bg);
        background-clip: padding-box;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: 0;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .submit-form {
        width: 200px;
        height: 60px;
        max-width: 300px;
        background-color: '#007799';
        color: white;
        display: block;
        /*font-size: 1.5rem;*/
        margin: 0 auto;
        border-radius: 35px;
        border-color: transparent;
        padding: 1px 3px;
        text-align: center;
        font-size: 20px;
        font-family: 微軟正黑體;
        letter-spacing: 0px;
        font-weight: bold;
        line-height: 1.2;
        font-style: normal;
    }
}

/*pad*/
@media screen and (min-width: 576px) {
    .contact-content {
        width: 80%;
        max-width: 100%;
        margin: 0 10% 0 10%;
        padding: 5px;
    }

    .contact-body {
        width: 80%;
        max-width: 100%;
        margin: 0 10% 0 10%;
        padding: 5px;
        height: 50%;
        overflow-y: scroll;
    }

    .contact-footer {
        width: 80%;
        max-width: 100%;
        margin: 0 10% 0 10%;
        padding: 5px;
        text-align: center;
        overflow-y: hidden;
    }



    .form-control2 {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: var(--bs-body-bg);
        background-clip: padding-box;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: 0;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .submit-form {
        width: 290px;
        height: 72px;
        max-width: 300px;
        background-color: '#007799';
        color: white;
        display: block;
        font-size: 1.5rem;
        margin: 0 auto;
        border-radius: 35px;
        border-color: transparent;
        padding: 3px 10px;
        text-align: center;
    }
}

/*pad*/
@media screen and (min-width: 768px) {
      .open-section {
        flex-direction: row;
        gap: 30px 50px;
      }

      .open-image {
        max-width: 500px;
      }

      .open-list-section {
        max-width: 100vw;
        margin: 0 auto;
      }

        .contact-content {
            width: 80%;
            max-width: 100%;
            margin: 0 10% 0 10%;
            padding: 5px;
        }

    .form-control2 {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: var(--bs-body-bg);
        background-clip: padding-box;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: 0;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .submit-form {
        width: 200px;
        height: 60px;
        max-width: 300px;
        background-color: '#007799';
        color: white;
        display: block;
        /*font-size: 1.5rem;*/
        margin: 0 auto;
        border-radius: 35px;
        border-color: transparent;
        padding: 3px 10px;
        text-align: center;
        color: rgb(0, 0, 0);
        font-size: 18px;
        font-family: 微軟正黑體;
        letter-spacing: 0px;
        font-weight: bold;
        line-height: 1.3;
        font-style: normal;
    }
}

@media screen and (min-width: 992px) {
}

/*
=============== 
常見問與答
===============
*/
.imessage {
  background-color: #fff;
  border: 1px solid #e5e5ea;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  font-family: "SanFrancisco";
  font-size: 1.25rem;
  margin: 0 auto 1rem;
  max-width: 600px;
  padding: 0.5rem 1.5rem;
}

.imessage p {
  border-radius: 1.15rem;
  line-height: 1.25;
  max-width: 75%;
  padding: 0.5rem 0.875rem;
  position: relative;
  word-wrap: break-word;
}

.imessage p::before,
.imessage p::after {
  bottom: -0.1rem;
  content: "";
  height: 1rem;
  position: absolute;
}

p.from-me {
  align-self: flex-end;
  background-color: #248bf5;
  color: #fff;
}

p.from-me::before {
  border-bottom-left-radius: 0.8rem 0.7rem;
  border-right: 1rem solid #248bf5;
  right: -0.35rem;
  transform: translate(0, -0.1rem);
}

p.from-me::after {
  background-color: #fff;
  border-bottom-left-radius: 0.5rem;
  right: -40px;
  transform: translate(-30px, -2px);
  width: 10px;
}

p[class^="from-"] {
  margin: 0.5rem 0;
  width: fit-content;
}

p.from-me ~ p.from-me {
  margin: 0.25rem 0 0;
}

p.from-me ~ p.from-me:not(:last-child) {
  margin: 0.25rem 0 0;
}

p.from-me ~ p.from-me:last-child {
  margin-bottom: 0.5rem;
}

p.from-them {
  align-items: flex-start;
  background-color: #e5e5ea;
  color: #000;
}

p.from-them:before {
  border-bottom-right-radius: 0.8rem 0.7rem;
  border-left: 1rem solid #e5e5ea;
  left: -0.35rem;
  transform: translate(0, -0.1rem);
}

p.from-them::after {
  background-color: #fff;
  border-bottom-right-radius: 0.5rem;
  left: 20px;
  transform: translate(-30px, -2px);
  width: 10px;
}

p[class^="from-"].emoji {
  background: none;
  font-size: 2.5rem;
}

p[class^="from-"].emoji::before {
  content: none;
}

.no-tail::before {
  display: none;
}

.margin-b_none {
  margin-bottom: 0 !important;
}

.margin-b_one {
  margin-bottom: 1rem !important;
}

.margin-t_one {
  margin-top: 1rem !important;
}

/*
=============== 
已合作商家 Partners 576 768 992 1200 1400
===============
*/

.section-partner {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (min-width: 768px) {
      .section-partner {
        grid-template-columns: repeat(3, 1fr);
      }

    .contact-content {
        width: 90%;
        max-width: 100%;
        margin: 0 5% 0 5%;
        padding: 5px;
    }

}
@media screen and (min-width: 992px) {
  .section-partner {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*desktop*/
@media screen and (min-width: 1200px) {
      .section-partner {
        grid-template-columns: repeat(5, 1fr);
      }

    .contact-content {
        width: 80%;
        max-width: 100%;
        margin: 0 10% 0 10%;
        padding: 5px;
    }

    .inputText {
        width: 100%;
        max-width: 100%;
        border-top: none;
        border-left: none;
        border-right: none;
        border-radius: 0px;
        border-bottom: 2px solid lightgrey;
        margin: 3px;
        padding: 8px;
    }

    .inputSelect {
        width: 100%;
        max-width: 100%;
        border-top: none;
        border-left: none;
        border-right: none;
        border-radius: 0px;
        border-bottom: 2px solid lightgrey;
        margin: 3px;
        padding: 8px;
    }

    .form-control2 {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: var(--bs-body-bg);
        background-clip: padding-box;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: 0;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .submit-form {
        width: 290px;
        height: 72px;
        max-width: 300px;
        background-color: '#007799';
        color: white;
        display: block;
        font-size: 1.5rem;
        margin: 0 auto;
        border-radius: 35px;
        border-color: transparent;
        padding: 3px 10px;
        text-align: center;
    }
}

/*
=============== 
Footer
===============
*/
.footer {
  padding-bottom: 3rem;
  background: transparent;
  display: grid;
  place-items: center;
}
.footer .social-icons {
  margin-bottom: 2rem;
}
.footer .social-icon {
  color: var(--clr-primary-5);
}
.footer .social-icon:hover {
  color: var(--clr-primary-10);
}
.footer p {
  font-size: 1.25rem;
  text-transform: capitalize;
}

.footer button {
  border: none;
}

/*20231120*/

/*.contact-content {
    width: 80%;
    max-width: 100%;
    margin: 0 10% 0 10%;
    padding: 5px;
}*/

.hidden{
    display:none;
}

.f-24b {
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-family: 微軟正黑體;
    letter-spacing: 0px;
    font-weight: bold;
    line-height: 1.5;
    font-style: normal;
}

.f-22b {
    color: rgb(0, 0, 0);
    font-size: 22px;
    font-family: 微軟正黑體;
    letter-spacing: 0px;
    font-weight: bold;
    line-height: 1.5;
    font-style: normal;
}

.f-22 {
    color: rgb(0, 0, 0);
    font-size: 22px;
    font-family: 微軟正黑體;
    letter-spacing: 0px;
    /*font-weight: bold;*/
    line-height: 1.5;
    font-style: normal;
}

.f-20b {
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-family: 微軟正黑體;
    letter-spacing: 0px;
    font-weight: bold;
    line-height: 1.5;
    font-style: normal;
}

.f-20 {
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-family: 微軟正黑體;
    letter-spacing: 0px;
    /*font-weight: bold;*/
    line-height: 1.5;
    font-style: normal;
}

.f-18b {
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-family: 微軟正黑體;
    letter-spacing: 0px;
    font-weight: bold;
    line-height: 1.5;
    font-style: normal;
}

.f-16b {
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-family: 微軟正黑體;
    letter-spacing: 0px;
    font-weight: bold;
    line-height: 1.5;
    font-style: normal;
}

.fc-lightgrey {
    color: rgb(122, 122, 122);
}

.fc-error {
    color: rgb(215, 38, 60);
}

.fc-red {
    color: red;
}


.inputText {
    width: 100%;
    max-width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius:0px;
    border-bottom: 2px solid lightgrey;
    margin: 3px;
    padding: 8px;
}

.inputSelect {
    width: 100%;
    max-width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0px;
    border-bottom: 2px solid lightgrey;
    margin: 3px;
    padding: 8px;
}

.select {
    width: 100%;
    max-width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    /*border-bottom: 2px #000 solid;*/
}

.center{
    text-align:center;
}

/*.submit-form {
    width:290px;
    height:72px;
    max-width:300px;
    background-color: rgb(68, 155, 199);
    color: white;
    display: block;
    font-size: 1.5rem;
    margin: 0 auto;
    border-radius: 35px;
    border-color: lightblue;
    padding: 3px 10px;
    text-align:center;
}*/

.progressbar {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 10px auto 10px;
    height: 15px;
    background: rgb(230, 230, 230);
    overflow: hidden;
    border-radius: 20px;
}

span.progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    height: 15px;
    background: rgb(68, 155, 199);
    transition: all .3s;
    border-radius: 20px;
}

/*20231128*/
.modal-title2 {
    padding: 5px;
    background-color:rgb(68, 155, 199);
}