style.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970
  1. @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap");
  2. @font-face {
  3. font-family: drechifont;
  4. src: url(../drechifont-Proportional.woff);
  5. font-weight: 300;
  6. font-display: swap; }
  7. @font-face {
  8. font-family: 'Taipei Sans TC Beta';
  9. src: local("Taipei Sans TC Beta");
  10. font-weight: 300; }
  11. body {
  12. background-color: #F7F7F7;
  13. overflow-x: hidden !important;
  14. font-family: 'Taipei Sans TC Beta'; }
  15. .header {
  16. z-index: 5;
  17. height: 94vh;
  18. background-image: url("../images/hero.webp");
  19. background-repeat: no-repeat;
  20. background-position: center;
  21. background-size: cover;
  22. border-bottom-right-radius: 18rem;
  23. border-bottom-left-radius: 18rem;
  24. -webkit-border-bottom-right-radius: 18rem;
  25. -webkit-border-bottom-left-radius: 18rem;
  26. -moz-border-bottom-right-radius: 18rem;
  27. -moz-border-bottom-left-radius: 18rem;
  28. position: relative;
  29. box-shadow: 0px 8px 25px 5px #a8a8a8; }
  30. @media screen and (max-width: 576px) {
  31. .header {
  32. border-bottom-right-radius: 4rem;
  33. border-bottom-left-radius: 4rem;
  34. -webkit-border-bottom-right-radius: 4rem;
  35. -webkit-border-bottom-left-radius: 4rem;
  36. -moz-border-bottom-right-radius: 4rem;
  37. -moz-border-bottom-left-radius: 4rem;
  38. height: 90vh; } }
  39. .header__logo {
  40. display: block;
  41. width: 163px;
  42. height: 67px;
  43. overflow: hidden;
  44. background-image: url(../images/logo.svg);
  45. background-repeat: no-repeat;
  46. background-position: center;
  47. background-size: cover;
  48. transform: scale(1.4);
  49. position: relative; }
  50. @media screen and (max-width: 576px) {
  51. .header__logo {
  52. background-image: url(../images/Logo@2x.webp);
  53. transform: scale(1); } }
  54. .header__logo-box {
  55. padding: 1rem;
  56. padding-top: 0;
  57. margin: 0rem 4.5rem; }
  58. @media screen and (max-width: 576px) {
  59. .header__logo-box {
  60. margin: 0rem .4rem;
  61. padding-top: .3rem; } }
  62. .header__line {
  63. background-color: white;
  64. height: 2px;
  65. border-top: 1px solid #ffff;
  66. margin: 0; }
  67. @media screen and (max-width: 576px) {
  68. .header__line {
  69. margin: 0rem .4rem;
  70. margin-top: .3rem; } }
  71. .header__text-box {
  72. position: absolute;
  73. width: 40vw;
  74. text-align: center;
  75. left: 50%;
  76. top: 50%;
  77. transform: translate(-50%, -60%); }
  78. .header__text-box::after {
  79. position: absolute;
  80. left: 50%;
  81. top: 50%;
  82. transform: translate(-50%, -50%);
  83. width: 125%;
  84. height: 125%;
  85. border-radius: 70%;
  86. -webkit-border-radius: 70%;
  87. -moz-border-radius: 70%;
  88. content: ' ';
  89. background: #E5A982;
  90. opacity: .5;
  91. mix-blend-mode: darken;
  92. -webkit-filter: blur(80px);
  93. -moz-filter: blur(80px);
  94. -o-filter: blur(80px);
  95. -ms-filter: blur(80px);
  96. filter: blur(80px);
  97. z-index: -1; }
  98. @media screen and (max-width: 576px) {
  99. .header__text-box::after {
  100. opacity: .3; } }
  101. @media screen and (max-width: 576px) {
  102. .header__text-box {
  103. width: 98vw; } }
  104. .header__text-box .title__img {
  105. width: 100%;
  106. animation-duration: 2.5s;
  107. animation-name: fadein;
  108. animation-iteration-count: 1; }
  109. .header__text-box .pen__img {
  110. position: absolute;
  111. width: 110px;
  112. height: 109px;
  113. left: 90%;
  114. top: 44%; }
  115. @media screen and (max-width: 576px) {
  116. .header__text-box .pen__img {
  117. width: 70px;
  118. height: 80px;
  119. left: 80%;
  120. top: 75%;
  121. transform: rotate(5deg); } }
  122. .header__polygon-box {
  123. position: absolute;
  124. bottom: 3%;
  125. left: 50%;
  126. display: flex;
  127. flex-direction: column; }
  128. @media screen and (max-width: 576px) {
  129. .header__polygon-box {
  130. transform: translateX(-50%); } }
  131. .header__polygon-box img {
  132. margin-top: -6px; }
  133. .deco__path1 {
  134. z-index: -1;
  135. width: 100%;
  136. position: absolute;
  137. top: 60%; }
  138. @media screen and (max-width: 576px) {
  139. .deco__path1 {
  140. top: 80%; } }
  141. .deco__path1 img {
  142. width: 100%; }
  143. .regulation {
  144. z-index: 5;
  145. padding: 10rem .5rem 9rem .5rem;
  146. padding-bottom: 7rem;
  147. position: relative; }
  148. @media screen and (max-width: 576px) {
  149. .regulation {
  150. padding: 6rem .5rem 7rem .5rem;
  151. padding-bottom: 7rem; } }
  152. .regulation__box {
  153. transform: translateX(35%);
  154. width: 52%;
  155. padding: 3rem;
  156. background-color: #F7F7F7;
  157. border-radius: 50px;
  158. padding-bottom: 6rem;
  159. padding-top: 4rem;
  160. color: #707070;
  161. box-shadow: 1px 1px 10px 1px #cccccc, inset 0em 3px white;
  162. position: relative; }
  163. @media screen and (max-width: 576px) {
  164. .regulation__box {
  165. width: 95%;
  166. padding: 1.5rem;
  167. border-radius: 20px;
  168. transform: none;
  169. margin: 0 auto; } }
  170. .regulation__box::after {
  171. content: " ";
  172. position: absolute;
  173. bottom: 3rem;
  174. right: 3rem;
  175. width: 27%;
  176. height: 1px;
  177. background: #707070; }
  178. @media screen and (max-width: 576px) {
  179. .regulation__box::after {
  180. bottom: 2rem;
  181. right: 1.5rem; } }
  182. .regulation__box__title {
  183. font-weight: 600;
  184. margin-bottom: 1.5rem;
  185. font-size: 1.4rem; }
  186. @media screen and (max-width: 576px) {
  187. .regulation__box__title {
  188. font-size: 1.6rem; } }
  189. .regulation__box__list {
  190. font-family: 'Taipei Sans TC Beta';
  191. margin-bottom: 1.5rem;
  192. font-size: 1rem;
  193. color: #707070;
  194. line-height: 2rem;
  195. font-weight: 300; }
  196. @media screen and (max-width: 576px) {
  197. .regulation__box__list {
  198. font-size: 1.1rem; } }
  199. .regulation__imgbox {
  200. width: 43vw;
  201. height: 60%;
  202. background-image: url("../images/plant.jpg");
  203. background-repeat: no-repeat;
  204. background-position: center;
  205. background-size: cover;
  206. -webkit-filter: blur(3px);
  207. -moz-filter: blur(3px);
  208. -o-filter: blur(3px);
  209. -ms-filter: blur(3px);
  210. filter: blur(3px);
  211. opacity: 0.75;
  212. position: absolute;
  213. right: 0;
  214. bottom: 3rem;
  215. z-index: -1;
  216. border-radius: 3rem 0 0 2rem; }
  217. @media screen and (max-width: 576px) {
  218. .regulation__imgbox {
  219. width: 70vw; } }
  220. .regulation__square {
  221. position: absolute;
  222. bottom: 2.4rem;
  223. left: 11%; }
  224. .regulation__cricle {
  225. position: absolute;
  226. top: 12rem;
  227. right: 20%; }
  228. .regulation__line {
  229. position: absolute;
  230. left: -4rem;
  231. opacity: 0.5; }
  232. .designers {
  233. padding: 4rem 0;
  234. text-align: center;
  235. color: #707070;
  236. font-family: 'TaipeiSansTCBeta';
  237. position: relative; }
  238. @media screen and (max-width: 576px) {
  239. .designers {
  240. padding-top: 0rem; } }
  241. .designers .row {
  242. margin: 1px 0; }
  243. .designers__left {
  244. position: absolute;
  245. top: 75%;
  246. left: -1rem;
  247. z-index: -2; }
  248. .designers__cricle {
  249. position: absolute;
  250. bottom: -5rem;
  251. left: 10%;
  252. z-index: -1; }
  253. .designers__title {
  254. padding: .5rem 0 1rem 0;
  255. font-size: 1.8rem;
  256. font-weight: 700;
  257. margin-bottom: 2rem;
  258. display: block;
  259. position: relative;
  260. letter-spacing: 1px; }
  261. @media screen and (max-width: 576px) {
  262. .designers__title {
  263. font-size: 2rem;
  264. padding-top: .5rem;
  265. margin-bottom: 1rem; } }
  266. .designers__title::before, .designers__title::after {
  267. content: " ";
  268. position: absolute;
  269. width: 25%;
  270. height: 1px;
  271. background-color: #E0E0E0;
  272. top: 42%; }
  273. @media screen and (max-width: 576px) {
  274. .designers__title::before, .designers__title::after {
  275. width: 18%;
  276. top: 40%; } }
  277. .designers__title::before {
  278. left: 18%; }
  279. @media screen and (max-width: 576px) {
  280. .designers__title::before {
  281. left: 6%; } }
  282. .designers__title::after {
  283. right: 18%; }
  284. @media screen and (max-width: 576px) {
  285. .designers__title::after {
  286. right: 6%; } }
  287. .designers__small {
  288. font-family: 'Taipei Sans TC Beta'; }
  289. .designers__card {
  290. height: 14rem;
  291. padding: 0rem 0 1.5rem 0;
  292. color: #707070;
  293. background-color: #F7F7F7;
  294. margin-right: 10px;
  295. margin-left: 10px;
  296. text-decoration: none;
  297. text-align: center; }
  298. .designers__card:hover {
  299. color: #707070; }
  300. @media screen and (max-width: 576px) {
  301. .designers__card {
  302. margin-right: 5px;
  303. margin-left: 5px;
  304. padding: 0rem 0 1.5rem 0;
  305. height: 16rem; } }
  306. .designers__card__imgfr {
  307. display: inline-block;
  308. width: 100px;
  309. height: 100px;
  310. border-radius: 50%;
  311. overflow: hidden;
  312. box-shadow: 0px 3px 20px 6px rgba(214, 214, 214, 0.8); }
  313. @media screen and (max-width: 576px) {
  314. .designers__card__imgfr {
  315. width: 125px;
  316. height: 125px; } }
  317. .designers__card__imgfr img {
  318. display: inline-block;
  319. width: 100px; }
  320. @media screen and (max-width: 576px) {
  321. .designers__card__imgfr img {
  322. width: 125px; } }
  323. .designers__card__text {
  324. font-weight: 350;
  325. margin-top: .6rem; }
  326. @media screen and (max-width: 576px) {
  327. .designers__card__text {
  328. margin-top: .6rem;
  329. padding-left: 3px;
  330. padding-right: 3px; } }
  331. .designers__card__text strong {
  332. font-weight: bold;
  333. font-size: 1rem;
  334. letter-spacing: 1px; }
  335. @media screen and (max-width: 576px) {
  336. .designers__card__text strong {
  337. font-size: 1.05rem; } }
  338. .designers__card__text p {
  339. font-size: .8rem; }
  340. .designers__card__text p:nth-of-type(1) {
  341. padding-bottom: 3px; }
  342. .designers__card__text p small {
  343. font-size: .7rem; }
  344. @media screen and (max-width: 576px) {
  345. .designers__card__text p {
  346. font-size: .95rem; } }
  347. .designers .container-fluid {
  348. padding-left: 0;
  349. padding-right: 0; }
  350. .personal {
  351. padding: 4rem 0;
  352. padding-top: 0;
  353. text-align: center;
  354. color: #707070;
  355. position: relative; }
  356. @media screen and (max-width: 576px) {
  357. .personal {
  358. padding-top: 0rem;
  359. padding-bottom: 2rem; } }
  360. .personal__title {
  361. padding: .5rem 0 1rem 0;
  362. font-size: 1.8rem;
  363. font-weight: 700;
  364. margin-bottom: 2rem;
  365. display: block;
  366. position: relative;
  367. letter-spacing: 1px; }
  368. @media screen and (max-width: 576px) {
  369. .personal__title {
  370. font-size: 2rem;
  371. padding-top: .5rem; } }
  372. .personal__title::before, .personal__title::after {
  373. content: " ";
  374. position: absolute;
  375. width: 25%;
  376. height: 1px;
  377. background-color: #E0E0E0;
  378. top: 42%; }
  379. @media screen and (max-width: 576px) {
  380. .personal__title::before, .personal__title::after {
  381. width: 18%;
  382. top: 40%; } }
  383. .personal__title::before {
  384. left: 18%; }
  385. @media screen and (max-width: 576px) {
  386. .personal__title::before {
  387. left: 6%; } }
  388. .personal__title::after {
  389. right: 18%; }
  390. @media screen and (max-width: 576px) {
  391. .personal__title::after {
  392. right: 6%; } }
  393. .personal__small {
  394. font-weight: 300; }
  395. .personal__box {
  396. min-width: 350px;
  397. width: 60%;
  398. padding: 3rem;
  399. background-color: #F7F7F7;
  400. color: #707070;
  401. box-shadow: 1px 1px 10px 1px #cccccc, inset 0em 3px white;
  402. border-radius: 3rem;
  403. height: fit-content;
  404. min-height: 630px;
  405. margin: 0 auto; }
  406. @media screen and (max-width: 576px) {
  407. .personal__box {
  408. padding: .5rem;
  409. padding-top: 2rem;
  410. border-radius: 2rem;
  411. min-height: 750px; } }
  412. .personal__triangle {
  413. position: absolute;
  414. top: 1rem;
  415. right: 9%;
  416. transform: rotate(43deg);
  417. z-index: -1; }
  418. .personal__wave {
  419. position: absolute;
  420. bottom: 8rem;
  421. left: 13%;
  422. z-index: -1; }
  423. .personal__left {
  424. position: absolute;
  425. left: -1rem;
  426. top: -1.5rem;
  427. z-index: -1; }
  428. .personal #msform select {
  429. -webkit-appearance: none;
  430. -moz-appearance: none;
  431. appearance: none; }
  432. .modal {
  433. background-color: rgba(0, 0, 0, 0.7); }
  434. .modal-body {
  435. color: #707070;
  436. padding: 2rem; }
  437. @media screen and (max-width: 576px) {
  438. .modal-body {
  439. padding: 1rem; } }
  440. .modal-title {
  441. text-align: center;
  442. font-size: 22px;
  443. display: block;
  444. width: 16rem;
  445. margin: 1rem auto; }
  446. .modal-dialog {
  447. max-width: 800px;
  448. border-radius: 3rem;
  449. margin-top: calc(50vh - 297px); }
  450. @media screen and (max-width: 576px) {
  451. .modal-dialog {
  452. padding: 1rem;
  453. margin-top: 2rem;
  454. margin-left: 0;
  455. margin-right: 0; } }
  456. .modal-content {
  457. border-radius: 1.3rem; }
  458. .modal-closer {
  459. width: 30px;
  460. height: 30px;
  461. position: absolute;
  462. right: -2.1rem;
  463. top: -2.1rem; }
  464. @media screen and (max-width: 576px) {
  465. .modal-closer {
  466. right: -.75rem;
  467. top: -2.2rem; } }
  468. .modal-terms {
  469. font-size: 1rem;
  470. line-height: 2rem; }
  471. .owl-carousel .owl-item img {
  472. display: inline-block;
  473. width: 100px; }
  474. @media screen and (max-width: 576px) {
  475. .owl-carousel .owl-item img {
  476. width: 125px; } }
  477. .owl-carousel .owl-stage-outer {
  478. overflow: unset; }
  479. .owl-theme .owl-nav {
  480. margin-top: 0;
  481. text-align: unset; }
  482. .owl-theme .owl-nav .owl-prev .owl-prev-icon, .owl-theme .owl-nav .owl-next .owl-next-icon {
  483. background-color: transparent;
  484. margin: 0;
  485. padding: 0; }
  486. .owl-theme .owl-nav span i {
  487. font-size: 2rem;
  488. color: #bebebe; }
  489. .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  490. position: absolute;
  491. top: 50%;
  492. transform: translateY(-50%); }
  493. .owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover {
  494. background-color: transparent; }
  495. .owl-carousel .owl-nav button.owl-next:hover i, .owl-carousel .owl-nav button.owl-prev:hover i {
  496. color: grey; }
  497. .owl-carousel .owl-nav button.owl-prev {
  498. left: 0px;
  499. margin: 0; }
  500. .owl-carousel .owl-nav button.owl-next {
  501. right: 0px;
  502. margin: 0; }
  503. .owl-theme .owl-dots {
  504. margin-top: 2rem; }
  505. @media screen and (max-width: 576px) {
  506. .owl-theme .owl-dots {
  507. margin-top: .5rem; } }
  508. .owl-theme .owl-dots .owl-dot span {
  509. width: 25px;
  510. height: 3px;
  511. margin: 5px 3px; }
  512. @media screen and (max-width: 576px) {
  513. .owl-theme .owl-dots .owl-dot span {
  514. width: 15px; } }
  515. .owl-theme .owl-dots .owl-dot.active span {
  516. background-color: #F39800; }
  517. .mb {
  518. margin-bottom: 8px; }
  519. .mt {
  520. margin-top: 8px; }
  521. .mr {
  522. margin-right: 5px; }
  523. /*form styles*/
  524. #msform {
  525. min-width: 370px;
  526. max-width: 1000px;
  527. margin: auto;
  528. text-align: center;
  529. position: relative;
  530. font-family: 'Taipei Sans TC Beta'; }
  531. @media screen and (max-width: 576px) {
  532. #msform {
  533. min-width: 340px; } }
  534. #msform fieldset {
  535. background: transparent;
  536. box-sizing: border-box;
  537. width: 85%;
  538. margin: 0 7.5%;
  539. /*stacking fieldsets above each other*/
  540. position: relative; }
  541. /*Hide all except first fieldset*/
  542. #msform fieldset:not(:first-of-type) {
  543. display: none;
  544. margin-top: 2rem; }
  545. /*inputs*/
  546. #msform input[type="text"], #msform textarea, #msform input[type="email"], #msform select {
  547. padding: 8px;
  548. padding-left: 1rem;
  549. border: 1px solid #C4C4C4;
  550. border-radius: 0px;
  551. margin-bottom: 16px;
  552. width: 100%;
  553. box-sizing: border-box;
  554. font-family: montserrat;
  555. color: #2C3E50;
  556. font-size: 14px; }
  557. #msform select {
  558. background-color: white;
  559. color: #C4C4C4; }
  560. #msform input {
  561. color: black; }
  562. #msform input::placeholder {
  563. color: #C4C4C4; }
  564. /*buttons*/
  565. #msform .action-button {
  566. width: 90px;
  567. background: #F7F7F7;
  568. font-weight: 400;
  569. color: #707070;
  570. border: 1px solid #707070;
  571. border-radius: 5px;
  572. cursor: pointer;
  573. padding: 4px 9px;
  574. margin: 10px auto;
  575. display: inline-block; }
  576. #msform .action-button:hover, #msform .action-button:focus {
  577. background: #707070;
  578. color: #F7F7F7; }
  579. #msform .action-button.btn-margin {
  580. margin-top: 1.5rem; }
  581. @media screen and (max-width: 576px) {
  582. #msform .action-button.btn-margin {
  583. margin-top: 160px; } }
  584. /*headings*/
  585. .fs-title {
  586. font-size: 15px;
  587. text-transform: uppercase;
  588. color: #2C3E50;
  589. margin-bottom: 10px; }
  590. .fs-subtitle {
  591. display: inline-block;
  592. font-weight: normal;
  593. font-size: 13px;
  594. color: #666;
  595. margin-bottom: 20px;
  596. padding-bottom: 3px;
  597. border-bottom: 2px solid #27AE60; }
  598. .fs-label {
  599. display: block;
  600. text-align: left;
  601. font-weight: bold; }
  602. /*progressbar*/
  603. #progressbar {
  604. width: 85%;
  605. margin: 0 auto;
  606. overflow: hidden;
  607. /*CSS counters to number the steps*/
  608. counter-reset: step; }
  609. #progressbar li {
  610. list-style-type: none;
  611. color: #C4C4C4;
  612. font-size: .9rem;
  613. width: 33.33%;
  614. float: left;
  615. position: relative; }
  616. @media screen and (max-width: 576px) {
  617. #progressbar li {
  618. font-size: .8rem; } }
  619. #progressbar span {
  620. display: block; }
  621. /* #progressbar li:before {
  622. content: counter(step);
  623. counter-increment: step;
  624. width: 20px;
  625. line-height: 20px;
  626. display: block;
  627. font-size: 12px;
  628. color: #333;
  629. background: white;
  630. border-radius: 3px;
  631. margin: 0 auto 5px auto;
  632. }
  633. /* progressbar connectors*/
  634. #progressbar li:after {
  635. content: '';
  636. width: 60%;
  637. height: 1px;
  638. background: #C4C4C4;
  639. position: absolute;
  640. left: -30%;
  641. top: 17px;
  642. z-index: 2;
  643. /*put it behind the numbers*/ }
  644. @media screen and (max-width: 576px) {
  645. #progressbar li:after {
  646. width: 35%;
  647. height: 1px;
  648. background: #C4C4C4;
  649. position: absolute;
  650. left: -20%;
  651. top: 14px; } }
  652. #progressbar li:first-child:after {
  653. /*connector not needed before the first step*/
  654. content: none; }
  655. /*marking active/completed steps green*/
  656. /*The number of the step and the connector before it = green*/
  657. #progressbar li.active:after {
  658. background-color: #F39800;
  659. color: white; }
  660. #progressbar li.active {
  661. color: #F39800;
  662. font-weight: 600; }
  663. p.error-text {
  664. bottom: -23px;
  665. left: 24px;
  666. color: rgba(255, 0, 0, 0.7);
  667. font-size: .8em; }
  668. #term-error {
  669. color: rgba(255, 0, 0, 0.7);
  670. font-size: .8em;
  671. bottom: -23px;
  672. left: 24px; }
  673. select {
  674. padding: 15px;
  675. border: 1px solid #ccc;
  676. border-radius: 3px;
  677. margin-bottom: 10px;
  678. width: 100%;
  679. box-sizing: border-box;
  680. font-family: montserrat;
  681. color: #2C3E50;
  682. font-size: 13px;
  683. background-color: transparent; }
  684. .pl-0 {
  685. padding-left: 0; }
  686. .terms {
  687. font-size: .9rem;
  688. width: 95%;
  689. min-width: 250px;
  690. height: auto;
  691. overflow: scroll;
  692. margin-bottom: 1rem;
  693. margin-left: auto;
  694. margin-right: auto;
  695. border: 1px solid #a3a3a3;
  696. line-height: 1.5rem; }
  697. @media screen and (max-width: 576px) {
  698. .term-link {
  699. font-size: .8rem; } }
  700. .term-link span {
  701. color: black;
  702. display: inline-block;
  703. margin-left: 4px;
  704. text-decoration: underline;
  705. cursor: pointer; }
  706. .h2 {
  707. text-align: center;
  708. font-size: 1.2rem;
  709. font-weight: 500;
  710. margin-top: 2rem; }
  711. .left_align {
  712. font-size: 18px;
  713. text-align: left; }
  714. #overlay {
  715. position: fixed;
  716. /* Sit on top of the page content */
  717. display: none;
  718. width: 100%;
  719. height: 100%;
  720. top: 0;
  721. left: 0;
  722. right: 0;
  723. bottom: 0;
  724. background-color: rgba(0, 0, 0, 0.5);
  725. z-index: 2;
  726. cursor: pointer; }
  727. .check_button {
  728. display: none; }
  729. .fs-label-type {
  730. background: white;
  731. padding: 5px 11px;
  732. border: 1px solid #C4C4C4;
  733. border-radius: 8px;
  734. display: inline-block;
  735. font-weight: lighter;
  736. font-size: 1rem; }
  737. .check_button:checked + .fs-label-type {
  738. background-color: #FFC107;
  739. color: black;
  740. border-color: #FFC107; }
  741. input[type="checkbox"] {
  742. display: none; }
  743. #checker1, #checker2 {
  744. display: inline; }
  745. .fs-label-info {
  746. background: white;
  747. padding: 5px 11px;
  748. border: 1px solid #C4C4C4;
  749. border-radius: 8px;
  750. display: inline-block;
  751. font-weight: lighter;
  752. font-size: 1rem; }
  753. input[type="radio"] {
  754. display: none; }
  755. input[type="radio"]:checked + .fs-label-info {
  756. background-color: #FFC107;
  757. color: black;
  758. border-color: #FFC107; }
  759. input[type="checkbox"]:checked + .fs-label-info {
  760. background-color: #FFC107;
  761. color: black;
  762. border-color: #FFC107; }
  763. #msform .submit {
  764. background-color: #0D6EFD;
  765. color: white;
  766. border: 1px solid #0D6EFD; }
  767. #msform .submit:hover, #msform .submit:focus {
  768. background-color: #0D6EFD;
  769. color: white; }
  770. .btn-exit {
  771. padding: .5rem .75rem;
  772. background-color: transparent;
  773. border: 1px solid black;
  774. margin-top: .3rem; }
  775. .btn-term-exit {
  776. padding: .5rem .75rem;
  777. background-color: transparent;
  778. border: 1px solid black;
  779. margin-top: .3rem;
  780. display: block;
  781. margin-left: auto;
  782. margin-right: auto;
  783. margin-bottom: 2rem; }
  784. #msform #userid, #msform #area {
  785. height: 0;
  786. padding: 0;
  787. margin: 0;
  788. border: none; }
  789. .footer {
  790. text-align: center;
  791. padding: 1.5rem;
  792. color: #707070;
  793. font-size: 1rem;
  794. position: relative;
  795. font-family: 'Taipei Sans TC Beta'; }
  796. @media screen and (max-width: 576px) {
  797. .footer {
  798. padding-bottom: 3rem;
  799. background-color: transparent;
  800. font-size: .9rem; } }
  801. .footer .deco__bottomdiv {
  802. position: absolute;
  803. right: 15%;
  804. bottom: 0rem;
  805. z-index: -2;
  806. width: 920px;
  807. overflow: hidden; }
  808. .footer .deco__rightdiv {
  809. width: 710px;
  810. position: absolute;
  811. right: 0;
  812. bottom: 0rem;
  813. z-index: -2;
  814. overflow: hidden; }
  815. @media screen and (max-width: 576px) {
  816. .footer .deco__rightdiv {
  817. width: 270px; } }
  818. .footer .deco__right {
  819. width: 100%;
  820. transform: translateY(2rem); }
  821. .footer .deco__bottom {
  822. width: 100%;
  823. transform: translateY(2rem); }
  824. .footer .deco__linediv {
  825. width: 310px;
  826. position: absolute;
  827. bottom: 0rem;
  828. left: -8rem;
  829. z-index: -1;
  830. overflow: hidden; }
  831. @media screen and (max-width: 576px) {
  832. .footer .deco__linediv {
  833. width: 140px;
  834. left: -3rem; } }
  835. .footer .deco__line3 {
  836. width: 100%;
  837. height: 110%;
  838. transform: translateY(3rem);
  839. opacity: .5; }
  840. .footer .deco__rightlinediv {
  841. width: 650px;
  842. position: absolute;
  843. bottom: 0rem;
  844. right: -4rem;
  845. z-index: -1;
  846. overflow: hidden; }
  847. @media screen and (max-width: 576px) {
  848. .footer .deco__rightlinediv {
  849. width: 300px; } }
  850. .footer .deco__rightline {
  851. width: 100%;
  852. opacity: .6;
  853. transform: translateY(2rem); }
  854. @media screen and (max-width: 576px) {
  855. .footer .deco__rightline {
  856. opacity: 1; } }
  857. @keyframes fadein {
  858. 0% {
  859. opacity: 0; }
  860. 100% {
  861. opacity: 1; } }
  862. .nav-tabs .nav-link {
  863. font-size: 1.2rem;
  864. color: #c2c2c2;
  865. padding: 0 6px;
  866. padding-bottom: 5px;
  867. margin: 1rem;
  868. margin-top: 0;
  869. margin-bottom: 0;
  870. font-weight: 400; }
  871. @media screen and (max-width: 576px) {
  872. .nav-tabs .nav-link {
  873. margin: .4rem .4rem; } }
  874. .nav-tabs .nav-link.active {
  875. color: #F39800;
  876. border-color: #F39800;
  877. background-color: transparent;
  878. font-weight: 500; }
  879. .nav {
  880. justify-content: center; }
  881. @media screen and (max-width: 576px) {
  882. .nav {
  883. /* display: inline-block;
  884. width: max-content;
  885. overflow: scroll;
  886. } */ } }
  887. /*
  888. .tabdiv {
  889. width: max-content;
  890. overflow: scroll;
  891. }
  892. .nav-item {
  893. @media screen and(max-width: 576px) {
  894. display: inline-block;
  895. }
  896. } */