style.css 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403
  1. @charset "UTF-8";
  2. @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC&display=swap");
  3. @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap");
  4. * {
  5. margin: 0;
  6. padding: 0;
  7. -webkit-box-sizing: border-box;
  8. box-sizing: border-box;
  9. font-family: 微軟正黑體;
  10. }
  11. @font-face {
  12. font-family: 追奇手寫體;
  13. src: url(./drechifont-proportional.ttf);
  14. font-weight: 900;
  15. }
  16. body {
  17. width: 100vw;
  18. background: #f4fffc;
  19. position: relative;
  20. z-index: -2;
  21. }
  22. body p {
  23. color: #adadad;
  24. }
  25. @media screen and (max-width: 767px) {
  26. body p {
  27. font-size: 0.5rem;
  28. }
  29. }
  30. body .title-main {
  31. font-family: "Noto Sans TC", sans-serif;
  32. font-weight: 600;
  33. color: #646464;
  34. font-size: 2.5rem;
  35. }
  36. @media screen and (max-width: 1024px) {
  37. body .title-main {
  38. font-size: 2rem;
  39. }
  40. }
  41. @media screen and (max-width: 350px) {
  42. body .title-main {
  43. font-size: 2rem;
  44. }
  45. }
  46. body .line {
  47. background: #9b9a9a;
  48. height: 2px;
  49. width: 8vw;
  50. margin: 15px auto;
  51. }
  52. @media screen and (max-width: 767px) {
  53. body .line {
  54. width: 28vw;
  55. }
  56. }
  57. body .arrow {
  58. position: fixed;
  59. right: 3vw;
  60. bottom: 0.5vw;
  61. width: 5vw;
  62. height: 5vw;
  63. z-index: 10;
  64. border-radius: 80px;
  65. }
  66. @media screen and (max-width: 767px) {
  67. body .arrow {
  68. width: 20vw;
  69. height: 20vw;
  70. }
  71. }
  72. body #btn-a {
  73. text-decoration: none;
  74. }
  75. body #btn-a #mobile-btn {
  76. display: block;
  77. margin: 0 auto;
  78. margin-top: 1vw;
  79. width: 60vw;
  80. border-radius: 30px;
  81. padding: 12px;
  82. background: #fff;
  83. color: #a9d0c5;
  84. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  85. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  86. border: 3px solid #a9d0c5;
  87. font-weight: 900;
  88. }
  89. @media screen and (min-width: 768px) {
  90. body #btn-a {
  91. display: none;
  92. }
  93. }
  94. @media screen and (min-width: 1025px) {
  95. body #btn-a {
  96. display: none;
  97. }
  98. }
  99. #Navigation {
  100. background: #a9d0c5;
  101. height: 4.5vw;
  102. width: 100vw !important;
  103. position: fixed;
  104. z-index: 10;
  105. }
  106. @media screen and (max-width: 1024px) {
  107. #Navigation {
  108. height: 8vw;
  109. }
  110. }
  111. @media screen and (max-width: 767px) {
  112. #Navigation {
  113. height: 15vw;
  114. position: fixed;
  115. z-index: 5;
  116. border-bottom: 1px solid white !important;
  117. }
  118. }
  119. #Navigation #nav {
  120. width: 100vw;
  121. margin: 0 auto;
  122. }
  123. #Navigation #logo {
  124. padding-top: 0.5vw;
  125. }
  126. @media screen and (max-width: 767px) {
  127. #Navigation #logo {
  128. padding-top: 0;
  129. }
  130. }
  131. #Navigation #logo img {
  132. width: 120px;
  133. }
  134. #Navigation #link {
  135. text-align: right;
  136. padding: 1.5vw 3vw;
  137. }
  138. @media screen and (max-width: 1024px) {
  139. #Navigation #link {
  140. padding-top: 2vw;
  141. }
  142. }
  143. @media screen and (max-width: 767px) {
  144. #Navigation #link {
  145. display: none;
  146. }
  147. }
  148. #Navigation #link a {
  149. text-decoration: none;
  150. color: #fff;
  151. letter-spacing: 1px;
  152. font-size: 0.9rem;
  153. font-weight: 600;
  154. cursor: pointer;
  155. padding: 15px;
  156. position: relative;
  157. }
  158. #Navigation #link a :hover {
  159. opacity: 0.8;
  160. }
  161. #Navigation #link a:after {
  162. content: "";
  163. display: block;
  164. width: 80%;
  165. height: 3px;
  166. background-color: #fff;
  167. position: absolute;
  168. left: 12%;
  169. bottom: 0;
  170. -webkit-transition: all 0.3s;
  171. transition: all 0.3s;
  172. opacity: 0;
  173. }
  174. #Navigation #link a:hover:after {
  175. width: 80%;
  176. opacity: 1;
  177. }
  178. @media screen and (max-width: 1024px) {
  179. #Navigation #link a {
  180. padding: 5px;
  181. padding-top: 2vw;
  182. }
  183. }
  184. #Navigation #menu-btn1 {
  185. position: absolute;
  186. right: 1vw;
  187. top: 1vw;
  188. width: 18vw;
  189. z-index: 6;
  190. }
  191. @media screen and (min-width: 1025px) {
  192. #Navigation #menu-btn1 {
  193. display: none;
  194. }
  195. }
  196. @media screen and (min-width: 768px) {
  197. #Navigation #menu-btn1 {
  198. display: none;
  199. }
  200. }
  201. #banner {
  202. background-size: cover;
  203. background-repeat: no-repeat;
  204. background-position: center;
  205. background-image: url(./img/banner/coverwebp.webp);
  206. position: relative;
  207. }
  208. @media screen and (max-width: 767px) {
  209. #banner {
  210. background-image: none;
  211. height: 100vh;
  212. padding-bottom: 30vw;
  213. }
  214. }
  215. #banner .banner1 {
  216. width: 85vw;
  217. padding-top: 10vw;
  218. padding-bottom: 5vw;
  219. text-align: center;
  220. }
  221. #banner .banner1 a {
  222. text-decoration: none;
  223. }
  224. @media screen and (max-width: 1024px) {
  225. #banner .banner1 {
  226. width: 70vw;
  227. }
  228. }
  229. @media screen and (max-width: 767px) {
  230. #banner .banner1 {
  231. width: 100vw;
  232. padding-bottom: 10vw;
  233. padding-top: 20vw;
  234. }
  235. }
  236. @media screen and (max-width: 350px) {
  237. #banner .banner1 {
  238. padding-top: 20vw;
  239. }
  240. }
  241. @media screen and (min-width: 1025px) {
  242. #banner .banner1 #mobilecover {
  243. display: none;
  244. }
  245. }
  246. @media screen and (max-width: 1024px) {
  247. #banner .banner1 #mobilecover {
  248. display: none;
  249. }
  250. }
  251. @media screen and (max-width: 767px) {
  252. #banner .banner1 #mobilecover {
  253. display: block;
  254. width: 100vw;
  255. position: absolute;
  256. top: 35vw;
  257. z-index: -1;
  258. }
  259. }
  260. @media screen and (max-width: 350px) {
  261. #banner .banner1 #mobilecover {
  262. top: 35vw;
  263. padding-top: 12vw;
  264. }
  265. }
  266. #banner .banner1 h1 {
  267. font-size: 28px;
  268. font-weight: 900;
  269. color: #555555;
  270. margin: 3vw 0px;
  271. text-align: center;
  272. }
  273. @media screen and (max-width: 767px) {
  274. #banner .banner1 h1 {
  275. font-size: 0.8rem;
  276. }
  277. }
  278. #banner .banner1 #bannertitle {
  279. display: block;
  280. width: 40vw;
  281. margin: 0 auto;
  282. }
  283. @media screen and (max-width: 767px) {
  284. #banner .banner1 #bannertitle {
  285. width: 80vw;
  286. margin: 0 auto;
  287. }
  288. }
  289. #banner .banner1 .btn {
  290. display: block;
  291. margin: 0 auto;
  292. margin-top: 3vw;
  293. width: 15vw;
  294. border-radius: 30px;
  295. padding: 12px;
  296. background: #fff;
  297. color: #a9d0c5;
  298. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  299. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  300. border: 3px solid #a9d0c5;
  301. font-weight: 900;
  302. }
  303. @media screen and (max-width: 1024px) {
  304. #banner .banner1 .btn {
  305. width: 20vw;
  306. }
  307. }
  308. @media screen and (max-width: 767px) {
  309. #banner .banner1 .btn {
  310. display: none;
  311. }
  312. }
  313. .social-icons {
  314. position: fixed;
  315. left: 50px;
  316. bottom: 12.5rem;
  317. z-index: 10;
  318. display: -webkit-box;
  319. display: -ms-flexbox;
  320. display: flex;
  321. -webkit-box-orient: vertical;
  322. -webkit-box-direction: normal;
  323. -ms-flex-direction: column;
  324. flex-direction: column;
  325. }
  326. @media screen and (max-width: 1024px) {
  327. .social-icons {
  328. left: 30px;
  329. }
  330. }
  331. .social-icons a {
  332. text-decoration: none;
  333. display: block;
  334. margin-bottom: 10px;
  335. }
  336. .social-icons img {
  337. width: 15px;
  338. height: 15px;
  339. -o-object-fit: cover;
  340. object-fit: cover;
  341. }
  342. .scroll-txt {
  343. -webkit-transform: rotate(90deg);
  344. transform: rotate(90deg);
  345. position: fixed;
  346. left: 5px;
  347. bottom: 8rem;
  348. z-index: 3;
  349. font-size: 12px;
  350. color: #707070;
  351. }
  352. @media screen and (max-width: 1024px) {
  353. .scroll-txt {
  354. left: -2%;
  355. }
  356. }
  357. .scroll-txt p {
  358. font-weight: lighter;
  359. display: inline-block;
  360. position: relative;
  361. }
  362. .scroll-txt p::after {
  363. position: absolute;
  364. content: "";
  365. left: 110%;
  366. top: 5%;
  367. width: 6rem;
  368. height: 50%;
  369. border-bottom: 0.5px solid;
  370. }
  371. #trouble {
  372. padding-top: 10vw;
  373. background: #f4fffc;
  374. padding-bottom: 5vw !important;
  375. overflow: hidden;
  376. }
  377. @media screen and (max-width: 767px) {
  378. #trouble {
  379. padding-top: 10vw;
  380. }
  381. }
  382. @media screen and (min-height: 800px) {
  383. #trouble {
  384. padding-top: 0vw;
  385. }
  386. }
  387. #trouble #trouble-img {
  388. position: relative;
  389. z-index: 1;
  390. }
  391. #trouble #trouble-img #circle2 {
  392. position: absolute;
  393. top: 15vw;
  394. left: 45vw;
  395. width: 18vw;
  396. z-index: 0;
  397. -webkit-transition: 0.3s;
  398. transition: 0.3s;
  399. }
  400. @media screen and (max-width: 767px) {
  401. #trouble #trouble-img #circle2 {
  402. display: none;
  403. }
  404. }
  405. #trouble #trouble-img #circle3 {
  406. position: absolute;
  407. top: 55vw;
  408. width: 25vw;
  409. left: 10vw;
  410. z-index: 2;
  411. -webkit-transition: 0.3s;
  412. transition: 0.3s;
  413. }
  414. @media screen and (max-width: 767px) {
  415. #trouble #trouble-img #circle3 {
  416. display: none;
  417. }
  418. }
  419. #trouble #trouble-img .circle2 {
  420. position: absolute;
  421. width: 30vw;
  422. top: 5vw;
  423. right: 5vw;
  424. z-index: 0;
  425. }
  426. @media screen and (min-width: 768px) {
  427. #trouble #trouble-img .circle2 {
  428. display: none;
  429. }
  430. }
  431. @media screen and (min-width: 1025px) {
  432. #trouble #trouble-img .circle2 {
  433. display: none;
  434. }
  435. }
  436. #trouble #trouble-img .circle1 {
  437. position: absolute;
  438. width: 30vw;
  439. right: -15vw;
  440. top: 85vw;
  441. }
  442. @media screen and (min-width: 768px) {
  443. #trouble #trouble-img .circle1 {
  444. display: none;
  445. }
  446. }
  447. @media screen and (min-width: 1025px) {
  448. #trouble #trouble-img .circle1 {
  449. display: none;
  450. }
  451. }
  452. #trouble #trouble-img .circle3 {
  453. position: absolute;
  454. width: 40vw;
  455. top: 85vw;
  456. left: 5vw;
  457. z-index: 2;
  458. }
  459. @media screen and (min-width: 768px) {
  460. #trouble #trouble-img .circle3 {
  461. display: none;
  462. }
  463. }
  464. @media screen and (min-width: 1025px) {
  465. #trouble #trouble-img .circle3 {
  466. display: none;
  467. }
  468. }
  469. #trouble #img01 {
  470. -o-object-fit: cover;
  471. object-fit: cover;
  472. position: relative;
  473. z-index: 1;
  474. width: 60vw;
  475. padding: 10vw 0px;
  476. }
  477. @media screen and (max-width: 1024px) {
  478. #trouble #img01 {
  479. width: 55vw;
  480. }
  481. }
  482. @media screen and (max-width: 767px) {
  483. #trouble #img01 {
  484. width: 95vw;
  485. }
  486. }
  487. #trouble #trouble-text {
  488. padding-top: 20vw;
  489. position: relative;
  490. }
  491. #trouble #trouble-text #circle1 {
  492. position: absolute;
  493. width: 18vw;
  494. top: 35vw;
  495. right: 5vw;
  496. z-index: 0;
  497. -webkit-transition: 0.3s;
  498. transition: 0.3s;
  499. }
  500. @media screen and (max-width: 1024px) {
  501. #trouble #trouble-text #circle1 {
  502. top: 45vw;
  503. }
  504. }
  505. @media screen and (max-width: 767px) {
  506. #trouble #trouble-text #circle1 {
  507. display: none;
  508. }
  509. }
  510. #trouble #trouble-text .text-box {
  511. position: relative;
  512. margin-left: 5vw;
  513. z-index: 1;
  514. }
  515. #trouble #trouble-text .text-box h1 {
  516. padding-bottom: 3vw !important;
  517. }
  518. @media screen and (max-width: 767px) {
  519. #trouble #trouble-text .text-box h1 {
  520. font-size: 2.5rem;
  521. }
  522. }
  523. @media screen and (max-width: 350px) {
  524. #trouble #trouble-text .text-box h1 {
  525. font-size: 2rem;
  526. }
  527. }
  528. #trouble #trouble-text .text-box .text {
  529. font-size: 20px;
  530. color: #646464;
  531. padding: 3px 0px;
  532. letter-spacing: 0.5px;
  533. }
  534. @media screen and (max-width: 1024px) {
  535. #trouble #trouble-text .text-box .text {
  536. font-size: 16px;
  537. }
  538. }
  539. #Course-list {
  540. background: #f4fffc;
  541. text-align: center;
  542. position: relative;
  543. padding-bottom: 12vw !important;
  544. }
  545. @media screen and (max-width: 767px) {
  546. #Course-list {
  547. display: none;
  548. }
  549. }
  550. #Course-list .parallax {
  551. -webkit-transition: 1s;
  552. transition: 1s;
  553. -o-object-fit: contain;
  554. object-fit: contain;
  555. z-index: 0;
  556. }
  557. #Course-list .parallax .act {
  558. position: absolute;
  559. -webkit-transition: 0.5s;
  560. transition: 0.5s;
  561. }
  562. #Course-list .parallax img {
  563. position: absolute;
  564. -webkit-transition: 0.3s;
  565. transition: 0.3s;
  566. }
  567. #Course-list .parallax #act5 {
  568. left: 12vw;
  569. top: 33vw;
  570. width: 15vw;
  571. -webkit-transition: 0.5s;
  572. transition: 0.5s;
  573. }
  574. @media screen and (max-width: 1024px) {
  575. #Course-list .parallax #act5 {
  576. width: 18vw;
  577. top: 35vw;
  578. }
  579. }
  580. #Course-list .parallax #act4 {
  581. left: 13vw;
  582. top: 13vw;
  583. width: 18vw;
  584. -webkit-transition: 0.5s;
  585. transition: 0.5s;
  586. }
  587. @media screen and (max-width: 1024px) {
  588. #Course-list .parallax #act4 {
  589. width: 20vw;
  590. top: 15vw;
  591. }
  592. }
  593. #Course-list .parallax #act3 {
  594. left: 22vw;
  595. top: 8vw;
  596. width: 10vw;
  597. -webkit-transition: 0.5s;
  598. transition: 0.5s;
  599. }
  600. @media screen and (max-width: 1024px) {
  601. #Course-list .parallax #act3 {
  602. width: 15vw;
  603. top: 10vw;
  604. }
  605. }
  606. #Course-list .parallax #act2 {
  607. right: 9vw;
  608. top: 32vw;
  609. width: 19vw;
  610. -webkit-transition: 0.5s;
  611. transition: 0.5s;
  612. }
  613. @media screen and (max-width: 1024px) {
  614. #Course-list .parallax #act2 {
  615. width: 20vw;
  616. top: 35vw;
  617. }
  618. }
  619. #Course-list .parallax #act6 {
  620. left: 25vw;
  621. top: 13vw;
  622. width: 35vw;
  623. -webkit-transition: 0.5s;
  624. transition: 0.5s;
  625. }
  626. @media screen and (max-width: 1024px) {
  627. #Course-list .parallax #act6 {
  628. width: 40vw;
  629. top: 15vw;
  630. }
  631. }
  632. #Course-list .parallax #act1 {
  633. right: 14vw;
  634. top: 20vw;
  635. width: 15vw;
  636. -webkit-transition: 0.5s;
  637. transition: 0.5s;
  638. }
  639. @media screen and (max-width: 1024px) {
  640. #Course-list .parallax #act1 {
  641. width: 18vw;
  642. right: 10vw;
  643. top: 23vw;
  644. }
  645. }
  646. #Course-list #bg {
  647. width: 80vw;
  648. }
  649. @media screen and (max-width: 1024px) {
  650. #Course-list #bg {
  651. width: 90vw;
  652. }
  653. }
  654. #Course-list .title-main {
  655. font-family: 微軟正黑體;
  656. font-weight: 900;
  657. color: #646464;
  658. }
  659. #Course-list #Course-content {
  660. width: 65vw;
  661. margin: 10px auto;
  662. padding-top: -10vw;
  663. position: absolute;
  664. top: 15vw;
  665. left: 20vw;
  666. }
  667. @media screen and (max-width: 1024px) {
  668. #Course-list #Course-content {
  669. top: 22vw;
  670. }
  671. }
  672. #Course-list #Course-content .box1,
  673. #Course-list #Course-content .box2,
  674. #Course-list #Course-content .box3 {
  675. width: 20vw;
  676. background: #fff;
  677. border-radius: 8px;
  678. margin: 10px;
  679. }
  680. #Course-list #Course-content .box1:hover h2,
  681. #Course-list #Course-content .box2:hover h2,
  682. #Course-list #Course-content .box3:hover h2 {
  683. font-size: 1.3rem;
  684. }
  685. #Course-list #Course-content .box1:hover .box-img,
  686. #Course-list #Course-content .box2:hover .box-img,
  687. #Course-list #Course-content .box3:hover .box-img {
  688. padding-top: 0.95vw;
  689. background-image: url(./img/people.png);
  690. background-size: contain;
  691. background-repeat: no-repeat;
  692. }
  693. #Course-list #Course-content .box1:hover .box-img img,
  694. #Course-list #Course-content .box2:hover .box-img img,
  695. #Course-list #Course-content .box3:hover .box-img img {
  696. opacity: 0;
  697. }
  698. #Course-list #Course-content .box1 .box-img,
  699. #Course-list #Course-content .box2 .box-img,
  700. #Course-list #Course-content .box3 .box-img {
  701. margin: 20px;
  702. }
  703. #Course-list #Course-content .box1 .box-img img,
  704. #Course-list #Course-content .box2 .box-img img,
  705. #Course-list #Course-content .box3 .box-img img {
  706. padding: 3vw 0px;
  707. width: 10vw;
  708. -o-object-fit: cover;
  709. object-fit: cover;
  710. }
  711. #Course-list #Course-content .box1 .box-img2 img,
  712. #Course-list #Course-content .box2 .box-img2 img,
  713. #Course-list #Course-content .box3 .box-img2 img {
  714. width: 10vw;
  715. }
  716. #Course-list #Course-content .box1 h1,
  717. #Course-list #Course-content .box2 h1,
  718. #Course-list #Course-content .box3 h1 {
  719. padding-top: 2vw;
  720. font-family: 微軟正黑體;
  721. font-weight: 900;
  722. font-size: 1.8rem;
  723. color: #646464;
  724. }
  725. @media screen and (max-width: 1024px) {
  726. #Course-list #Course-content .box1 h1,
  727. #Course-list #Course-content .box2 h1,
  728. #Course-list #Course-content .box3 h1 {
  729. font-size: 1rem;
  730. }
  731. }
  732. #Course-list #Course-content .box1 h2,
  733. #Course-list #Course-content .box2 h2,
  734. #Course-list #Course-content .box3 h2 {
  735. font-size: 32px;
  736. color: #646464;
  737. }
  738. @media screen and (max-width: 1024px) {
  739. #Course-list #Course-content .box1 h2,
  740. #Course-list #Course-content .box2 h2,
  741. #Course-list #Course-content .box3 h2 {
  742. font-size: 1.5rem;
  743. }
  744. }
  745. #Course-box01,
  746. #Course-box02,
  747. #Course-box03 {
  748. background-color: rgba(0, 0, 0, 0.8);
  749. width: 100vw;
  750. height: 100vh;
  751. z-index: 8;
  752. padding: 50px 50px 100px 50px;
  753. position: fixed;
  754. top: 0vw;
  755. display: none;
  756. }
  757. #Course-box01 .close,
  758. #Course-box02 .close,
  759. #Course-box03 .close {
  760. position: absolute;
  761. right: 3vw;
  762. top: 1vw;
  763. }
  764. #Course-box01 .Course-box01,
  765. #Course-box02 .Course-box01,
  766. #Course-box03 .Course-box01 {
  767. background: #fff;
  768. width: 90vw;
  769. margin: 0 auto;
  770. }
  771. #Course-box01 .Course-box01 h1,
  772. #Course-box02 .Course-box01 h1,
  773. #Course-box03 .Course-box01 h1 {
  774. padding-top: 50px;
  775. text-align: center;
  776. font-family: 追奇手寫體;
  777. font-size: 4rem;
  778. color: #414346;
  779. }
  780. #Course-box01 .Course-box01 #box01,
  781. #Course-box01 .Course-box01 #box02,
  782. #Course-box01 .Course-box01 #box03,
  783. #Course-box02 .Course-box01 #box01,
  784. #Course-box02 .Course-box01 #box02,
  785. #Course-box02 .Course-box01 #box03,
  786. #Course-box03 .Course-box01 #box01,
  787. #Course-box03 .Course-box01 #box02,
  788. #Course-box03 .Course-box01 #box03 {
  789. width: 85vw;
  790. margin: 10px auto;
  791. padding: 10px 0px 80px 0px !important;
  792. }
  793. #Course-box01 .Course-box01 #box01 .card,
  794. #Course-box01 .Course-box01 #box02 .card,
  795. #Course-box01 .Course-box01 #box03 .card,
  796. #Course-box02 .Course-box01 #box01 .card,
  797. #Course-box02 .Course-box01 #box02 .card,
  798. #Course-box02 .Course-box01 #box03 .card,
  799. #Course-box03 .Course-box01 #box01 .card,
  800. #Course-box03 .Course-box01 #box02 .card,
  801. #Course-box03 .Course-box01 #box03 .card {
  802. width: 16vw;
  803. text-align: center;
  804. margin: 10px auto;
  805. -webkit-box-shadow: 0 5px 9px rgba(0, 0, 0, 0.5);
  806. box-shadow: 0 5px 9px rgba(0, 0, 0, 0.5);
  807. background: #fff;
  808. border-radius: 8px;
  809. border: none !important;
  810. padding-left: 0 !important;
  811. padding-right: 0 !important;
  812. }
  813. #Course-box01 .Course-box01 #box01 .card .card-title,
  814. #Course-box01 .Course-box01 #box02 .card .card-title,
  815. #Course-box01 .Course-box01 #box03 .card .card-title,
  816. #Course-box02 .Course-box01 #box01 .card .card-title,
  817. #Course-box02 .Course-box01 #box02 .card .card-title,
  818. #Course-box02 .Course-box01 #box03 .card .card-title,
  819. #Course-box03 .Course-box01 #box01 .card .card-title,
  820. #Course-box03 .Course-box01 #box02 .card .card-title,
  821. #Course-box03 .Course-box01 #box03 .card .card-title {
  822. padding: 30px 0px 20px 0px;
  823. font-weight: 900;
  824. color: #414346;
  825. font-size: 1.1rem;
  826. }
  827. #Course-box01 .Course-box01 #box01 .card .box-img img,
  828. #Course-box01 .Course-box01 #box02 .card .box-img img,
  829. #Course-box01 .Course-box01 #box03 .card .box-img img,
  830. #Course-box02 .Course-box01 #box01 .card .box-img img,
  831. #Course-box02 .Course-box01 #box02 .card .box-img img,
  832. #Course-box02 .Course-box01 #box03 .card .box-img img,
  833. #Course-box03 .Course-box01 #box01 .card .box-img img,
  834. #Course-box03 .Course-box01 #box02 .card .box-img img,
  835. #Course-box03 .Course-box01 #box03 .card .box-img img {
  836. padding: 90px 30px 0px 30px;
  837. width: 10.5vw;
  838. height: 13vw;
  839. }
  840. #Course-box01 .Course-box01 #box01 .card .box-img2 img,
  841. #Course-box01 .Course-box01 #box02 .card .box-img2 img,
  842. #Course-box01 .Course-box01 #box03 .card .box-img2 img,
  843. #Course-box02 .Course-box01 #box01 .card .box-img2 img,
  844. #Course-box02 .Course-box01 #box02 .card .box-img2 img,
  845. #Course-box02 .Course-box01 #box03 .card .box-img2 img,
  846. #Course-box03 .Course-box01 #box01 .card .box-img2 img,
  847. #Course-box03 .Course-box01 #box02 .card .box-img2 img,
  848. #Course-box03 .Course-box01 #box03 .card .box-img2 img {
  849. padding: 90px 30px 0px 30px;
  850. width: 12vw;
  851. }
  852. #Course-box03 .card {
  853. width: 25vw !important;
  854. }
  855. .sec04 {
  856. text-align: center;
  857. padding-top: 4.5rem;
  858. padding-bottom: 10rem !important;
  859. color: #646464;
  860. overflow: hidden;
  861. position: relative;
  862. }
  863. @media screen and (min-width: 768px) {
  864. .sec04 {
  865. display: none;
  866. }
  867. }
  868. .sec04 .element1 {
  869. position: absolute;
  870. top: 150vw;
  871. width: 70vw;
  872. right: -30vw;
  873. z-index: 1;
  874. }
  875. @media screen and (max-width: 350px) {
  876. .sec04 .element1 {
  877. top: 180vw;
  878. }
  879. }
  880. .sec04 #card-box {
  881. background-image: url(./img/Course-list/bg.png);
  882. background-size: cover;
  883. background-repeat: no-repeat;
  884. background-position: 40% 50%;
  885. }
  886. .sec04 #card-box .slick-dots {
  887. margin-top: 50px;
  888. }
  889. .sec04 #card-box .slick-dots li {
  890. margin: 0 10px;
  891. }
  892. .sec04 #card-box .slick-dots button {
  893. margin-top: 10px;
  894. display: block;
  895. width: 30px;
  896. height: 3px;
  897. padding: 0;
  898. border: none;
  899. border-radius: 0%;
  900. background-color: #d9d9d9;
  901. text-indent: -9999px;
  902. }
  903. .sec04 #card-box .slick-dots li.slick-active button {
  904. background-color: #fce49d;
  905. }
  906. .sec04 #card-box .card {
  907. text-align: center;
  908. margin: 0px 10px;
  909. position: relative;
  910. z-index: 2;
  911. }
  912. .sec04 #card-box .card .card-title {
  913. padding-top: 2rem;
  914. color: #646464;
  915. }
  916. @media screen and (max-width: 350px) {
  917. .sec04 #card-box .card .card-title {
  918. font-size: 1.8rem;
  919. }
  920. }
  921. .sec04 #card-box .card h2 {
  922. color: #646464;
  923. font-size: 1.3rem;
  924. }
  925. @media screen and (max-width: 350px) {
  926. .sec04 #card-box .card h2 {
  927. font-size: 1rem;
  928. }
  929. }
  930. .sec04 #card-box .card img {
  931. margin: 0 auto;
  932. }
  933. @media screen and (min-width: 1000px) {
  934. .sec04 {
  935. display: none;
  936. }
  937. }
  938. @media screen and (max-width: 767px) {
  939. .sec04 .name {
  940. padding-bottom: 2rem;
  941. font-size: 4rem;
  942. }
  943. }
  944. @media screen and (max-width: 400px) {
  945. .sec04 .name {
  946. padding-bottom: 2rem;
  947. font-size: 3rem;
  948. }
  949. }
  950. .mobile01-1,
  951. .mobile01-2,
  952. .mobile01-3 {
  953. width: 100vw;
  954. height: 100vh;
  955. background-color: rgba(0, 0, 0, 0.8);
  956. position: fixed;
  957. top: 0vw;
  958. z-index: 10;
  959. padding: 15vw 1vw 15vw 1vw;
  960. overflow: hidden;
  961. margin: 0 !important;
  962. display: none;
  963. }
  964. @media screen and (min-width: 1025px) {
  965. .mobile01-1,
  966. .mobile01-2,
  967. .mobile01-3 {
  968. display: none;
  969. }
  970. }
  971. .mobile01-1 .mobile-box1,
  972. .mobile01-1 .mobile-box2,
  973. .mobile01-1 .mobile-box3,
  974. .mobile01-2 .mobile-box1,
  975. .mobile01-2 .mobile-box2,
  976. .mobile01-2 .mobile-box3,
  977. .mobile01-3 .mobile-box1,
  978. .mobile01-3 .mobile-box2,
  979. .mobile01-3 .mobile-box3 {
  980. height: 80vh;
  981. }
  982. .mobile01-1 .mobile-box1 .close,
  983. .mobile01-1 .mobile-box2 .close,
  984. .mobile01-1 .mobile-box3 .close,
  985. .mobile01-2 .mobile-box1 .close,
  986. .mobile01-2 .mobile-box2 .close,
  987. .mobile01-2 .mobile-box3 .close,
  988. .mobile01-3 .mobile-box1 .close,
  989. .mobile01-3 .mobile-box2 .close,
  990. .mobile01-3 .mobile-box3 .close {
  991. position: absolute;
  992. right: 5vw;
  993. top: 5vw;
  994. }
  995. .mobile01-1 .mobile-box1 .Course-mobile01,
  996. .mobile01-1 .mobile-box2 .Course-mobile01,
  997. .mobile01-1 .mobile-box3 .Course-mobile01,
  998. .mobile01-2 .mobile-box1 .Course-mobile01,
  999. .mobile01-2 .mobile-box2 .Course-mobile01,
  1000. .mobile01-2 .mobile-box3 .Course-mobile01,
  1001. .mobile01-3 .mobile-box1 .Course-mobile01,
  1002. .mobile01-3 .mobile-box2 .Course-mobile01,
  1003. .mobile01-3 .mobile-box3 .Course-mobile01 {
  1004. background: #fff;
  1005. width: 90vw;
  1006. height: 85vh;
  1007. margin: 0 auto;
  1008. border-radius: 5px;
  1009. font-size: 0.9rem;
  1010. }
  1011. .mobile01-1 .mobile-box1 .Course-mobile01 .slick-dots li,
  1012. .mobile01-1 .mobile-box2 .Course-mobile01 .slick-dots li,
  1013. .mobile01-1 .mobile-box3 .Course-mobile01 .slick-dots li,
  1014. .mobile01-2 .mobile-box1 .Course-mobile01 .slick-dots li,
  1015. .mobile01-2 .mobile-box2 .Course-mobile01 .slick-dots li,
  1016. .mobile01-2 .mobile-box3 .Course-mobile01 .slick-dots li,
  1017. .mobile01-3 .mobile-box1 .Course-mobile01 .slick-dots li,
  1018. .mobile01-3 .mobile-box2 .Course-mobile01 .slick-dots li,
  1019. .mobile01-3 .mobile-box3 .Course-mobile01 .slick-dots li {
  1020. margin: 0 10px;
  1021. }
  1022. .mobile01-1 .mobile-box1 .Course-mobile01 .slick-dots button,
  1023. .mobile01-1 .mobile-box2 .Course-mobile01 .slick-dots button,
  1024. .mobile01-1 .mobile-box3 .Course-mobile01 .slick-dots button,
  1025. .mobile01-2 .mobile-box1 .Course-mobile01 .slick-dots button,
  1026. .mobile01-2 .mobile-box2 .Course-mobile01 .slick-dots button,
  1027. .mobile01-2 .mobile-box3 .Course-mobile01 .slick-dots button,
  1028. .mobile01-3 .mobile-box1 .Course-mobile01 .slick-dots button,
  1029. .mobile01-3 .mobile-box2 .Course-mobile01 .slick-dots button,
  1030. .mobile01-3 .mobile-box3 .Course-mobile01 .slick-dots button {
  1031. margin-top: 10px;
  1032. display: block;
  1033. width: 30px;
  1034. height: 3px;
  1035. padding: 0;
  1036. border: none;
  1037. border-radius: 0%;
  1038. background-color: #d9d9d9;
  1039. text-indent: -9999px;
  1040. }
  1041. .mobile01-1 .mobile-box1 .Course-mobile01 .slick-dots li.slick-active button,
  1042. .mobile01-1 .mobile-box2 .Course-mobile01 .slick-dots li.slick-active button,
  1043. .mobile01-1 .mobile-box3 .Course-mobile01 .slick-dots li.slick-active button,
  1044. .mobile01-2 .mobile-box1 .Course-mobile01 .slick-dots li.slick-active button,
  1045. .mobile01-2 .mobile-box2 .Course-mobile01 .slick-dots li.slick-active button,
  1046. .mobile01-2 .mobile-box3 .Course-mobile01 .slick-dots li.slick-active button,
  1047. .mobile01-3 .mobile-box1 .Course-mobile01 .slick-dots li.slick-active button,
  1048. .mobile01-3 .mobile-box2 .Course-mobile01 .slick-dots li.slick-active button,
  1049. .mobile01-3 .mobile-box3 .Course-mobile01 .slick-dots li.slick-active button {
  1050. background-color: #fce49d;
  1051. }
  1052. .mobile01-1 .mobile-box1 .Course-mobile01 h1,
  1053. .mobile01-1 .mobile-box2 .Course-mobile01 h1,
  1054. .mobile01-1 .mobile-box3 .Course-mobile01 h1,
  1055. .mobile01-2 .mobile-box1 .Course-mobile01 h1,
  1056. .mobile01-2 .mobile-box2 .Course-mobile01 h1,
  1057. .mobile01-2 .mobile-box3 .Course-mobile01 h1,
  1058. .mobile01-3 .mobile-box1 .Course-mobile01 h1,
  1059. .mobile01-3 .mobile-box2 .Course-mobile01 h1,
  1060. .mobile01-3 .mobile-box3 .Course-mobile01 h1 {
  1061. padding-top: 10vw;
  1062. text-align: center;
  1063. font-family: 追奇手寫體;
  1064. font-size: 2.5rem;
  1065. color: #414346;
  1066. }
  1067. @media screen and (max-width: 400px) {
  1068. .mobile01-1 .mobile-box1 .Course-mobile01 h1,
  1069. .mobile01-1 .mobile-box2 .Course-mobile01 h1,
  1070. .mobile01-1 .mobile-box3 .Course-mobile01 h1,
  1071. .mobile01-2 .mobile-box1 .Course-mobile01 h1,
  1072. .mobile01-2 .mobile-box2 .Course-mobile01 h1,
  1073. .mobile01-2 .mobile-box3 .Course-mobile01 h1,
  1074. .mobile01-3 .mobile-box1 .Course-mobile01 h1,
  1075. .mobile01-3 .mobile-box2 .Course-mobile01 h1,
  1076. .mobile01-3 .mobile-box3 .Course-mobile01 h1 {
  1077. font-size: 2rem;
  1078. }
  1079. }
  1080. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1,
  1081. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2,
  1082. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3,
  1083. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1,
  1084. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2,
  1085. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3,
  1086. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1,
  1087. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2,
  1088. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3,
  1089. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1,
  1090. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2,
  1091. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3,
  1092. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1,
  1093. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2,
  1094. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3,
  1095. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1,
  1096. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2,
  1097. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3,
  1098. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1,
  1099. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2,
  1100. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3,
  1101. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1,
  1102. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2,
  1103. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3,
  1104. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1,
  1105. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2,
  1106. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 {
  1107. padding: 1vw 20px 1vw 20px;
  1108. }
  1109. @media screen and (max-width: 350px) {
  1110. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1,
  1111. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2,
  1112. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3,
  1113. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1,
  1114. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2,
  1115. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3,
  1116. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1,
  1117. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2,
  1118. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3,
  1119. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1,
  1120. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2,
  1121. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3,
  1122. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1,
  1123. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2,
  1124. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3,
  1125. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1,
  1126. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2,
  1127. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3,
  1128. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1,
  1129. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2,
  1130. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3,
  1131. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1,
  1132. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2,
  1133. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3,
  1134. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1,
  1135. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2,
  1136. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 {
  1137. padding: 1vw 0px 1vw 0px;
  1138. }
  1139. }
  1140. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1141. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1142. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1143. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1144. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1145. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1146. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1147. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1148. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card,
  1149. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1150. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1151. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1152. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1153. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1154. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1155. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1156. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1157. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card,
  1158. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1159. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1160. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1161. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1162. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1163. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1164. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1165. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1166. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card {
  1167. text-align: center;
  1168. margin: 0px 10px;
  1169. }
  1170. @media screen and (max-width: 400px) {
  1171. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1172. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1173. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1174. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1175. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1176. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1177. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1178. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1179. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card,
  1180. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1181. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1182. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1183. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1184. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1185. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1186. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1187. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1188. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card,
  1189. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1190. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1191. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1192. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1193. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1194. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1195. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1196. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1197. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card {
  1198. font-size: 0.7rem;
  1199. }
  1200. }
  1201. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1202. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1203. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1204. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1205. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1206. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1207. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1208. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1209. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title,
  1210. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1211. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1212. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1213. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1214. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1215. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1216. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1217. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1218. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title,
  1219. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1220. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1221. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1222. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1223. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1224. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1225. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1226. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1227. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title {
  1228. padding-top: 1rem;
  1229. font-weight: 900;
  1230. color: #414346;
  1231. font-size: 1.3rem;
  1232. }
  1233. @media screen and (max-width: 400px) {
  1234. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1235. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1236. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1237. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1238. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1239. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1240. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1241. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1242. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title,
  1243. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1244. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1245. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1246. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1247. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1248. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1249. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1250. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1251. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title,
  1252. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1253. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1254. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1255. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1256. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1257. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1258. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1259. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1260. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title {
  1261. font-size: 1rem;
  1262. }
  1263. }
  1264. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card img,
  1265. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card img,
  1266. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card img,
  1267. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card img,
  1268. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card img,
  1269. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card img,
  1270. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card img,
  1271. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card img,
  1272. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card img,
  1273. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card img,
  1274. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card img,
  1275. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card img,
  1276. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card img,
  1277. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card img,
  1278. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card img,
  1279. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card img,
  1280. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card img,
  1281. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card img,
  1282. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card img,
  1283. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card img,
  1284. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card img,
  1285. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card img,
  1286. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card img,
  1287. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card img,
  1288. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card img,
  1289. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card img,
  1290. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card img {
  1291. margin: 0 auto;
  1292. }
  1293. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img img,
  1294. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img img,
  1295. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img img,
  1296. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img img,
  1297. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img,
  1298. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img img,
  1299. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img img,
  1300. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img img,
  1301. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img,
  1302. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img img,
  1303. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img img,
  1304. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img img,
  1305. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img img,
  1306. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img,
  1307. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img img,
  1308. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img img,
  1309. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img img,
  1310. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img,
  1311. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img img,
  1312. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img img,
  1313. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img img,
  1314. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img img,
  1315. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img,
  1316. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img img,
  1317. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img img,
  1318. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img img,
  1319. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img {
  1320. width: 43vw;
  1321. height: 53vw;
  1322. padding: 15vw 12vw;
  1323. }
  1324. @media screen and (max-width: 400px) {
  1325. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img img,
  1326. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img img,
  1327. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img img,
  1328. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img img,
  1329. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img,
  1330. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img img,
  1331. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img img,
  1332. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img img,
  1333. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img,
  1334. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img img,
  1335. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img img,
  1336. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img img,
  1337. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img img,
  1338. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img,
  1339. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img img,
  1340. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img img,
  1341. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img img,
  1342. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img,
  1343. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img img,
  1344. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img img,
  1345. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img img,
  1346. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img img,
  1347. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img,
  1348. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img img,
  1349. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img img,
  1350. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img img,
  1351. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img {
  1352. padding: 13vw 10vw;
  1353. }
  1354. }
  1355. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1356. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1357. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1358. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1359. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1360. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1361. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1362. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1363. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1364. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1365. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1366. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1367. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1368. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1369. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1370. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1371. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1372. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1373. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1374. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1375. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1376. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1377. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1378. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1379. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1380. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1381. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img {
  1382. padding-top: 20vw;
  1383. width: 40vw;
  1384. }
  1385. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card {
  1386. margin: 0px 10px;
  1387. font-size: 1rem;
  1388. }
  1389. @media screen and (max-width: 400px) {
  1390. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card {
  1391. font-size: 0.8rem;
  1392. }
  1393. }
  1394. @media screen and (max-width: 350px) {
  1395. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card {
  1396. font-size: 0.7rem;
  1397. }
  1398. }
  1399. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img {
  1400. padding-top: 20vw;
  1401. width: 40vw;
  1402. }
  1403. @media screen and (max-width: 350px) {
  1404. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img {
  1405. padding-top: 15vw;
  1406. }
  1407. }
  1408. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img {
  1409. width: 43vw;
  1410. height: 50vw;
  1411. padding: 15vw 12vw;
  1412. }
  1413. @media screen and (max-width: 350px) {
  1414. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img {
  1415. padding: 12vw 10vw;
  1416. }
  1417. }
  1418. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title {
  1419. padding-top: 1rem;
  1420. font-weight: 900;
  1421. color: #414346;
  1422. font-size: 1.3rem;
  1423. }
  1424. @media screen and (max-width: 400px) {
  1425. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title {
  1426. font-size: 1.3rem;
  1427. }
  1428. }
  1429. @media screen and (max-width: 400px) {
  1430. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title {
  1431. font-size: 1rem;
  1432. }
  1433. }
  1434. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img {
  1435. width: 43vw;
  1436. height: 50vw;
  1437. padding: 15vw 12vw;
  1438. }
  1439. @media screen and (max-width: 350px) {
  1440. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img {
  1441. padding: 10vw 10vw;
  1442. }
  1443. }
  1444. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img {
  1445. padding-top: 20vw;
  1446. width: 40vw;
  1447. }
  1448. @media screen and (max-width: 350px) {
  1449. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img {
  1450. padding-top: 10vw;
  1451. }
  1452. }
  1453. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title {
  1454. padding-top: 1rem;
  1455. font-weight: 900;
  1456. color: #414346;
  1457. font-size: 1.3rem;
  1458. }
  1459. @media screen and (max-width: 400px) {
  1460. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title {
  1461. font-size: 1.3rem;
  1462. }
  1463. }
  1464. #course-schedule {
  1465. background: #f4fffc;
  1466. text-align: center;
  1467. padding-bottom: 12vw !important;
  1468. position: relative;
  1469. overflow: hidden;
  1470. }
  1471. #course-schedule #arrow-right {
  1472. position: absolute;
  1473. top: 12vw;
  1474. right: 21vw;
  1475. width: 45px;
  1476. }
  1477. @media screen and (max-width: 1024px) {
  1478. #course-schedule #arrow-right {
  1479. width: 40px;
  1480. right: 20vw;
  1481. }
  1482. }
  1483. #course-schedule #arrow-left {
  1484. position: absolute;
  1485. top: 12vw;
  1486. left: 21vw;
  1487. width: 45px;
  1488. }
  1489. @media screen and (max-width: 1024px) {
  1490. #course-schedule #arrow-left {
  1491. width: 40px;
  1492. }
  1493. }
  1494. #course-schedule #element1 {
  1495. position: absolute;
  1496. top: 0vw;
  1497. width: 25vw;
  1498. right: -10vw;
  1499. }
  1500. #course-schedule #element2 {
  1501. position: absolute;
  1502. width: 25vw;
  1503. left: -10vw;
  1504. top: 50vw;
  1505. z-index: 5;
  1506. }
  1507. @media screen and (max-width: 767px) {
  1508. #course-schedule {
  1509. display: none;
  1510. }
  1511. }
  1512. #course-schedule #bg2 {
  1513. width: 80vw;
  1514. }
  1515. @media screen and (max-width: 1024px) {
  1516. #course-schedule #bg2 {
  1517. width: 90vw;
  1518. }
  1519. }
  1520. #course-schedule #schedule-content {
  1521. position: absolute;
  1522. width: 70vw;
  1523. top: 20vw;
  1524. left: 15vw;
  1525. }
  1526. @media screen and (max-width: 1024px) {
  1527. #course-schedule #schedule-content {
  1528. top: 25vw;
  1529. }
  1530. }
  1531. #course-schedule #schedule-content .schedule-box {
  1532. text-align: center;
  1533. }
  1534. #course-schedule #schedule-content .schedule-box h1 {
  1535. font-size: 24px;
  1536. font-weight: 900;
  1537. color: #fff;
  1538. }
  1539. @media screen and (max-width: 1024px) {
  1540. #course-schedule #schedule-content .schedule-box h1 {
  1541. font-size: 20px;
  1542. }
  1543. }
  1544. #course-schedule #schedule-content .schedule-box .content-box {
  1545. width: 18vw;
  1546. height: 10vw;
  1547. margin: 30px auto;
  1548. background: #fff;
  1549. border: 1.5px solid #707070;
  1550. border-radius: 5px;
  1551. color: #646464;
  1552. line-height: 10vw;
  1553. font-size: 18px;
  1554. -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  1555. box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  1556. }
  1557. @media screen and (max-width: 1024px) {
  1558. #course-schedule #schedule-content .schedule-box .content-box {
  1559. font-size: 0.9rem;
  1560. padding: 1vw;
  1561. line-height: 8vw;
  1562. }
  1563. }
  1564. #course-schedule #schedule-content .schedule-box .content-box1 {
  1565. width: 18vw;
  1566. height: 10vw;
  1567. margin: 30px auto;
  1568. background: #fff;
  1569. border: 1.5px solid #707070;
  1570. border-radius: 5px;
  1571. font-size: 18px;
  1572. padding: 2vw;
  1573. color: #646464;
  1574. -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  1575. box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  1576. }
  1577. @media screen and (max-width: 1024px) {
  1578. #course-schedule #schedule-content .schedule-box .content-box1 {
  1579. font-size: 0.9rem;
  1580. padding: 1vw;
  1581. }
  1582. }
  1583. .sec05 {
  1584. text-align: center;
  1585. padding-top: 4.5rem;
  1586. padding-bottom: 8rem;
  1587. color: #646464;
  1588. padding-bottom: 8rem !important;
  1589. overflow: hidden;
  1590. position: relative;
  1591. }
  1592. @media screen and (min-width: 768px) {
  1593. .sec05 {
  1594. display: none;
  1595. }
  1596. }
  1597. .sec05 .element2 {
  1598. position: absolute;
  1599. width: 70vw;
  1600. left: -30vw;
  1601. top: 140vw;
  1602. z-index: 3;
  1603. }
  1604. @media screen and (max-width: 350px) {
  1605. .sec05 .element2 {
  1606. top: 152vw;
  1607. }
  1608. }
  1609. @media screen and (min-width: 1025px) {
  1610. .sec05 {
  1611. display: none;
  1612. }
  1613. }
  1614. .sec05 .line {
  1615. margin-bottom: 10vw;
  1616. }
  1617. .sec05 #card-box2 {
  1618. background-image: url(./img/course-schedule/bg2.png);
  1619. background-size: 155%;
  1620. background-repeat: no-repeat;
  1621. background-position: 50% 50%;
  1622. position: relative;
  1623. }
  1624. .sec05 #card-box2 .slick-dots {
  1625. margin-top: 10px;
  1626. }
  1627. .sec05 #card-box2 .slick-dots li {
  1628. margin: 0 10px;
  1629. }
  1630. .sec05 #card-box2 .slick-dots button {
  1631. display: block;
  1632. width: 30px;
  1633. height: 3px;
  1634. padding: 0;
  1635. border: none;
  1636. border-radius: 0%;
  1637. background-color: #d9d9d9;
  1638. text-indent: -9999px;
  1639. }
  1640. .sec05 #card-box2 .slick-dots li.slick-active button {
  1641. background-color: #fce49d;
  1642. }
  1643. .sec05 #card-box2 .arrow-left {
  1644. position: absolute;
  1645. left: 76vw;
  1646. top: 45vw;
  1647. z-index: 5;
  1648. width: 10vw !important;
  1649. height: 40vw;
  1650. }
  1651. @media screen and (max-width: 350px) {
  1652. .sec05 #card-box2 .arrow-left {
  1653. top: 50vw;
  1654. left: 70vw;
  1655. }
  1656. }
  1657. .sec05 #card-box2 .arrow-right {
  1658. position: absolute;
  1659. left: 155vw;
  1660. top: 45vw;
  1661. z-index: 5;
  1662. width: 10vw !important;
  1663. height: 40vw;
  1664. }
  1665. @media screen and (max-width: 350px) {
  1666. .sec05 #card-box2 .arrow-right {
  1667. top: 50vw;
  1668. left: 150vw;
  1669. }
  1670. }
  1671. .sec05 #card-box2 .box {
  1672. padding-bottom: 5vw !important;
  1673. }
  1674. .sec05 #card-box2 .box .boxs-chedule1 {
  1675. padding-bottom: 20vw;
  1676. }
  1677. .sec05 #card-box2 .box .boxs-chedule1 h1 {
  1678. color: #70b2a0;
  1679. text-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.3);
  1680. }
  1681. .sec05 #card-box2 .box .boxs-chedule2 h1 {
  1682. color: #fff;
  1683. text-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.3);
  1684. }
  1685. .sec05 #card-box2 .box .boxs-chedule1,
  1686. .sec05 #card-box2 .box .boxs-chedule2 {
  1687. margin: 0px 30px;
  1688. color: #646464;
  1689. font-weight: 900;
  1690. }
  1691. .sec05 #card-box2 .box .boxs-chedule1 h1,
  1692. .sec05 #card-box2 .box .boxs-chedule2 h1 {
  1693. padding-bottom: 5vw;
  1694. font-family: "Noto Sans TC", sans-serif;
  1695. font-weight: 600;
  1696. }
  1697. .sec05 #card-box2 .box .boxs-chedule1 .card,
  1698. .sec05 #card-box2 .box .boxs-chedule2 .card {
  1699. padding: 30px 20px;
  1700. border: 2px solid #707070 !important;
  1701. -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  1702. box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  1703. }
  1704. #information {
  1705. text-align: center;
  1706. background: #f4fffc;
  1707. color: #646464;
  1708. position: relative;
  1709. padding-bottom: 40vw;
  1710. }
  1711. @media screen and (max-width: 1024px) {
  1712. #information {
  1713. padding-bottom: 75vw;
  1714. }
  1715. }
  1716. @media screen and (max-width: 767px) {
  1717. #information {
  1718. display: none;
  1719. }
  1720. }
  1721. #information #bg3 {
  1722. width: 80vw;
  1723. }
  1724. @media screen and (max-width: 1024px) {
  1725. #information #bg3 {
  1726. width: 90vw;
  1727. }
  1728. }
  1729. #information .information {
  1730. position: absolute;
  1731. text-align: left;
  1732. font-size: 1.6rem;
  1733. line-height: 3vw;
  1734. top: 15vw;
  1735. left: 20vw;
  1736. width: 50vw;
  1737. }
  1738. @media screen and (max-width: 1024px) {
  1739. #information .information {
  1740. font-size: 1rem;
  1741. line-height: 3vw;
  1742. }
  1743. }
  1744. #information .information a {
  1745. color: #646464;
  1746. }
  1747. #information #information-form {
  1748. position: absolute;
  1749. top: 40vw;
  1750. }
  1751. #information #information-form #form-card {
  1752. width: 75vw;
  1753. margin: 0 auto;
  1754. }
  1755. #information #information-form #form-card .contact-form #name,
  1756. #information #information-form #form-card .contact-form #company {
  1757. width: 100%;
  1758. padding: 10px 15px;
  1759. font-size: 16px;
  1760. border-radius: 3px;
  1761. margin: 10px 0px;
  1762. border: 1px solid rgba(0, 0, 0, 0.3);
  1763. }
  1764. @media screen and (max-width: 1024px) {
  1765. #information #information-form #form-card .contact-form #name,
  1766. #information #information-form #form-card .contact-form #company {
  1767. width: 100%;
  1768. }
  1769. }
  1770. #information #information-form #form-card .contact-form #phone,
  1771. #information #information-form #form-card .contact-form #email,
  1772. #information #information-form #form-card .contact-form #pay,
  1773. #information #information-form #form-card .contact-form #message,
  1774. #information #information-form #form-card .contact-form #message1,
  1775. #information #information-form #form-card .contact-form #profession,
  1776. #information #information-form #form-card .contact-form #line {
  1777. width: 100%;
  1778. padding: 10px 15px;
  1779. font-size: 16px;
  1780. border-radius: 3px;
  1781. margin: 10px 0px;
  1782. border: 1px solid rgba(0, 0, 0, 0.3);
  1783. }
  1784. #information #information-form #form-card .contact-form .btn {
  1785. margin-top: 3vw;
  1786. width: 15vw;
  1787. border-radius: 30px;
  1788. padding: 15px;
  1789. background: #fff;
  1790. color: #a9d0c5;
  1791. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1792. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1793. border: 2px solid #a9d0c5;
  1794. font-weight: 900;
  1795. }
  1796. #information #map {
  1797. border: 1px solid rgba(0, 0, 0, 0.3);
  1798. border-radius: 10px;
  1799. width: 35vw !important;
  1800. }
  1801. #information #map #googlemap {
  1802. padding-top: 1vw !important;
  1803. width: 33vw;
  1804. }
  1805. #information-mobile {
  1806. text-align: center;
  1807. }
  1808. @media screen and (min-width: 1025px) {
  1809. #information-mobile {
  1810. display: none;
  1811. }
  1812. }
  1813. @media screen and (min-width: 768px) {
  1814. #information-mobile {
  1815. display: none;
  1816. }
  1817. }
  1818. #information-mobile .information {
  1819. background-image: url(./img/information/bg3.png);
  1820. background-size: 175%;
  1821. background-repeat: no-repeat;
  1822. background-position: bottom center;
  1823. text-align: left;
  1824. color: #646464;
  1825. font-size: 1rem;
  1826. }
  1827. @media screen and (max-width: 350px) {
  1828. #information-mobile .information {
  1829. font-size: 0.9rem;
  1830. }
  1831. }
  1832. #information-mobile .information a {
  1833. color: #646464;
  1834. }
  1835. #information-mobile .information #information-01 {
  1836. width: 90vw;
  1837. padding: 30vw 0px !important;
  1838. margin: auto;
  1839. line-height: 8vw;
  1840. padding-right: 0px !important;
  1841. }
  1842. @media screen and (max-width: 350px) {
  1843. #information-mobile .information #information-01 {
  1844. padding-left: 1vw;
  1845. padding-top: 0.8vw;
  1846. }
  1847. }
  1848. #information-mobile #mobile-form #form-card {
  1849. width: 90vw;
  1850. margin: 0 auto;
  1851. }
  1852. #information-mobile #mobile-form #form-card .contact-form2 #name,
  1853. #information-mobile #mobile-form #form-card .contact-form2 #company {
  1854. width: 49.5%;
  1855. padding: 10px 15px;
  1856. font-size: 16px;
  1857. border-radius: 3px;
  1858. margin: 10px 0px;
  1859. border: 1px solid rgba(0, 0, 0, 0.3);
  1860. }
  1861. @media screen and (max-width: 1024px) {
  1862. #information-mobile #mobile-form #form-card .contact-form2 #name,
  1863. #information-mobile #mobile-form #form-card .contact-form2 #company {
  1864. width: 100%;
  1865. }
  1866. }
  1867. #information-mobile #mobile-form #form-card .contact-form2 #phone,
  1868. #information-mobile #mobile-form #form-card .contact-form2 #email,
  1869. #information-mobile #mobile-form #form-card .contact-form2 #pay,
  1870. #information-mobile #mobile-form #form-card .contact-form2 #message,
  1871. #information-mobile #mobile-form #form-card .contact-form2 #message1,
  1872. #information-mobile #mobile-form #form-card .contact-form2 #profession,
  1873. #information-mobile #mobile-form #form-card .contact-form2 #line {
  1874. width: 100%;
  1875. padding: 10px 15px;
  1876. font-size: 16px;
  1877. border-radius: 3px;
  1878. margin: 10px 0px;
  1879. border: 1px solid rgba(0, 0, 0, 0.3);
  1880. }
  1881. #information-mobile #mobile-form #form-card .contact-form2 #profession {
  1882. height: 50px;
  1883. background: url(./img/icondown.webp) 95% 50% no-repeat scroll transparent;
  1884. background-size: 10px 10px;
  1885. background-color: #fff;
  1886. -webkit-appearance: none;
  1887. -moz-appearance: none;
  1888. appearance: none;
  1889. }
  1890. #information-mobile #mobile-form #form-card .contact-form2 .btn {
  1891. margin-top: 3vw;
  1892. width: 55vw;
  1893. border-radius: 30px;
  1894. padding: 10px;
  1895. background: #fff;
  1896. color: #a9d0c5;
  1897. font-family: "Noto Sans TC", sans-serif;
  1898. font-weight: 900;
  1899. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1900. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1901. border: 3px solid #a9d0c5;
  1902. font-size: 1.2rem;
  1903. letter-spacing: 1px;
  1904. }
  1905. #information-mobile #map {
  1906. border: 1px solid rgba(0, 0, 0, 0.3);
  1907. border-radius: 10px;
  1908. width: 90vw !important;
  1909. margin: 10vw auto;
  1910. }
  1911. #information-mobile #map #googlemap {
  1912. padding: 2vw !important;
  1913. width: 85vw;
  1914. }
  1915. #footer {
  1916. background: #b0d4ca;
  1917. text-align: center;
  1918. }
  1919. #footer p {
  1920. padding: 15px;
  1921. color: #fff;
  1922. }
  1923. #menu-box {
  1924. top: 15vw;
  1925. height: 25vh;
  1926. width: 100vw;
  1927. position: fixed;
  1928. z-index: 5;
  1929. overflow: hidden;
  1930. display: none;
  1931. }
  1932. @media screen and (min-width: 1025px) {
  1933. #menu-box {
  1934. display: none;
  1935. }
  1936. }
  1937. @media screen and (max-width: 767px) {
  1938. #menu-box {
  1939. height: 47vh;
  1940. }
  1941. }
  1942. @media screen and (max-width: 350px) {
  1943. #menu-box {
  1944. height: 55vh;
  1945. }
  1946. }
  1947. #menu-box hr {
  1948. display: inline-block;
  1949. margin: 0px auto !important;
  1950. width: 55vw;
  1951. background: #fff;
  1952. opacity: 1 !important;
  1953. }
  1954. #menu-box #menu-box2 {
  1955. width: 100vw;
  1956. height: 25vh;
  1957. background-color: #a9d0c5;
  1958. opacity: 0.95;
  1959. z-index: 7;
  1960. text-align: center;
  1961. }
  1962. @media screen and (max-width: 767px) {
  1963. #menu-box #menu-box2 {
  1964. height: 45vh;
  1965. }
  1966. }
  1967. @media screen and (max-width: 350px) {
  1968. #menu-box #menu-box2 {
  1969. height: 55vh;
  1970. }
  1971. }
  1972. #menu-box #menu-box2 #menu-link {
  1973. display: -ms-grid;
  1974. display: grid;
  1975. -ms-grid-columns: (1fr)[4];
  1976. grid-template-columns: repeat(4, 1fr);
  1977. width: 60vw;
  1978. margin: 0 auto;
  1979. }
  1980. #menu-box #menu-box2 .menu-logo {
  1981. opacity: 1;
  1982. }
  1983. #menu-box #menu-box2 .menu-logo img {
  1984. width: 7vw;
  1985. }
  1986. #menu-box #menu-box2 a {
  1987. display: inline-block;
  1988. text-decoration: none;
  1989. color: #fff;
  1990. font-size: 16px;
  1991. margin-top: 20px;
  1992. font-weight: 900;
  1993. }
  1994. @media screen and (max-width: 767px) {
  1995. #menu-box #menu-box2 a {
  1996. margin-top: 4vw;
  1997. }
  1998. }
  1999. #menu-box #menu-box2 .menu-text {
  2000. width: 100vw;
  2001. text-align: center;
  2002. margin-bottom: 10px;
  2003. }
  2004. @media screen and (max-width: 767px) {
  2005. #menu-box #menu-box2 .menu-text {
  2006. margin-bottom: 5px !important;
  2007. }
  2008. }
  2009. .container {
  2010. padding: 0 !important;
  2011. margin: 0 !important;
  2012. text-align: center;
  2013. }
  2014. .container #countdown {
  2015. position: relative;
  2016. width: 80vw;
  2017. }
  2018. @media screen and (max-width: 1024px) {
  2019. .container #countdown {
  2020. width: 70vw;
  2021. }
  2022. }
  2023. @media screen and (max-width: 767px) {
  2024. .container #countdown {
  2025. width: 100vw;
  2026. }
  2027. }
  2028. @media screen and (max-width: 400px) {
  2029. .container #countdown {
  2030. width: 100vw;
  2031. }
  2032. }
  2033. .container #countdown ul {
  2034. padding-left: 0 !important;
  2035. margin: 0 !important;
  2036. }
  2037. .container li {
  2038. display: inline-block;
  2039. font-size: 1.5em;
  2040. list-style-type: none;
  2041. padding: 1em;
  2042. text-transform: uppercase;
  2043. }
  2044. @media screen and (max-width: 400px) {
  2045. .container li {
  2046. font-size: 12px;
  2047. }
  2048. }
  2049. .container li span {
  2050. display: block;
  2051. font-size: 4.5rem;
  2052. }
  2053. li {
  2054. display: inline-block;
  2055. list-style-type: none;
  2056. text-transform: uppercase;
  2057. padding-left: 0 !important;
  2058. position: relative;
  2059. padding: 1em;
  2060. font-size: 1.5em;
  2061. }
  2062. li #days,
  2063. li #hours,
  2064. li #minutes,
  2065. li #seconds {
  2066. font-size: 6rem;
  2067. font-family: "Roboto", sans-serif !important;
  2068. font-weight: 900;
  2069. color: #fff;
  2070. text-shadow: 0.5px 0.5px 13px rgba(0, 0, 0, 0.15);
  2071. border-right: 2px solid #fff;
  2072. padding: 0 40px;
  2073. }
  2074. @media screen and (max-width: 1024px) {
  2075. li #days,
  2076. li #hours,
  2077. li #minutes,
  2078. li #seconds {
  2079. font-size: 3rem;
  2080. padding: 0 25px;
  2081. }
  2082. }
  2083. @media screen and (max-width: 767px) {
  2084. li #days,
  2085. li #hours,
  2086. li #minutes,
  2087. li #seconds {
  2088. font-size: 2rem;
  2089. padding: 0 5vw 0 1vw;
  2090. }
  2091. }
  2092. @media screen and (max-width: 400px) {
  2093. li #days,
  2094. li #hours,
  2095. li #minutes,
  2096. li #seconds {
  2097. padding: 0 3vw 0 3vw;
  2098. }
  2099. }
  2100. @media all and (max-width: 768px) {
  2101. h1 {
  2102. font-size: 1.5rem;
  2103. }
  2104. li {
  2105. font-size: 1.125rem;
  2106. padding: .75rem;
  2107. }
  2108. li span {
  2109. font-size: 3.375rem;
  2110. }
  2111. }
  2112. /*# sourceMappingURL=style.css.map */