style.css 38 KB

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