style.css 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208
  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. width: 100vw;
  19. background: #fff;
  20. }
  21. body .learn-more {
  22. color: #fff;
  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. #sec-works .sec-work-container {
  526. width: 85vw;
  527. }
  528. #sec-works #sec-work-box .work-box .card {
  529. text-align: center;
  530. -webkit-transition: 0.3s;
  531. transition: 0.3s;
  532. }
  533. #sec-works #sec-work-box .work-box .card:hover {
  534. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  535. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  536. }
  537. #sec-works .sec-work-title h1 {
  538. font-size: 45px;
  539. font-weight: 900;
  540. padding: 15px;
  541. }
  542. #sec02 {
  543. background: #414141;
  544. padding: 3vw;
  545. }
  546. @media screen and (max-width: 767px) {
  547. #sec02 {
  548. display: none;
  549. }
  550. }
  551. #sec02 #sec02-container {
  552. width: 90vw;
  553. padding: 15px;
  554. font-weight: 900;
  555. color: #fff;
  556. position: relative;
  557. }
  558. #sec02 #sec02-container #sec02-top-box {
  559. position: relative;
  560. }
  561. #sec02 #sec02-container #sec02-top-box #sec02-content {
  562. position: absolute;
  563. top: 10px;
  564. left: 300px;
  565. }
  566. #sec02 #sec02-container #sec02-top-box .sec02-box1 {
  567. color: #000;
  568. width: 13vw;
  569. }
  570. #sec02 #sec02-container #sec02-top-box .sec02-box1 img {
  571. display: inline;
  572. width: 150px;
  573. height: 200px;
  574. -o-object-fit: cover;
  575. object-fit: cover;
  576. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  577. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  578. }
  579. #sec02 #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text h1 {
  580. font-size: 50px;
  581. }
  582. #sec02 #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  583. font-size: 30px;
  584. }
  585. #sec02-moblie {
  586. background: #414141;
  587. background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #414141), color-stop(30%, transparent), color-stop(55%, #fff));
  588. background: linear-gradient(180deg, #414141 50%, transparent 30%, #fff 55%);
  589. padding-top: 3vw;
  590. padding-bottom: 10vw;
  591. }
  592. @media screen and (min-width: 1025px) {
  593. #sec02-moblie {
  594. display: none;
  595. }
  596. }
  597. #sec02-moblie #sec02-container {
  598. padding: 15px;
  599. font-weight: 900;
  600. color: #fff;
  601. width: 100vw;
  602. }
  603. #sec02-moblie #sec02-container .sec02-top1-box h1 {
  604. font-size: 40px;
  605. padding: 3vw 0;
  606. }
  607. #sec02-moblie #sec02-container .sec02-top1-box img {
  608. width: 80px;
  609. }
  610. #sec02-moblie #sec02-container .sec02-top1-box span {
  611. font-size: 30px;
  612. }
  613. #sec02-moblie #sec02-container .sec02-top1-box .sec02-top-text {
  614. text-align: center;
  615. }
  616. #sec02-moblie #sec02-container #sec02-top-box {
  617. width: 95vw;
  618. margin: 5px;
  619. }
  620. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 {
  621. color: #000;
  622. }
  623. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 #top1 {
  624. width: 100px;
  625. height: 130px;
  626. }
  627. @media screen and (max-width: 350px) {
  628. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 #top1 {
  629. width: 100px;
  630. height: 130px;
  631. }
  632. }
  633. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 img {
  634. width: 80px;
  635. height: 120px;
  636. }
  637. @media screen and (max-width: 350px) {
  638. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 img {
  639. width: 70px;
  640. height: 100px;
  641. }
  642. }
  643. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text {
  644. font-size: 12px;
  645. text-align: left;
  646. }
  647. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  648. font-size: 30px;
  649. }
  650. @media screen and (max-width: 350px) {
  651. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  652. font-size: 25px;
  653. }
  654. }
  655. #sec03 {
  656. padding-top: 15vw;
  657. padding-bottom: 5vw;
  658. }
  659. @media screen and (max-width: 767px) {
  660. #sec03 {
  661. display: none;
  662. }
  663. }
  664. #sec03 #sec03-table .sec03-table-title {
  665. font-family: 微軟正黑體;
  666. font-weight: 900;
  667. padding: 15px;
  668. font-size: 35px;
  669. }
  670. #sec03 #sec03-table .table th {
  671. font-size: 40px;
  672. display: table-cell;
  673. vertical-align: middle;
  674. }
  675. #sec03 #sec03-table .table td {
  676. padding: 15px;
  677. }
  678. #sec03 #sec03-table .table td a {
  679. text-decoration: none;
  680. color: #000;
  681. }
  682. #sec03 #sec03-table .table img {
  683. width: 50px;
  684. }
  685. #sec03 #sec03-table .table .sec03-table-text {
  686. padding: 10px;
  687. display: table-cell;
  688. vertical-align: middle;
  689. }
  690. #sec03 #sec03-table .table .sec03-table-text h1 {
  691. font-size: 20px;
  692. margin: 0;
  693. font-weight: 900;
  694. }
  695. #sec03 #sec03-table .table .sec03-table-text p {
  696. margin: 0;
  697. color: #9b9b9b;
  698. }
  699. #sec03-moblie {
  700. position: relative;
  701. }
  702. #sec03-moblie .arrow-table {
  703. position: fixed;
  704. width: 25px;
  705. right: 15px;
  706. bottom: 250px;
  707. z-index: 6;
  708. }
  709. @media screen and (max-width: 350px) {
  710. #sec03-moblie .arrow-table {
  711. right: 10px;
  712. bottom: 200px;
  713. }
  714. }
  715. #sec03-moblie .sec03-table-title,
  716. #sec03-moblie .sec03-table-title2 {
  717. font-family: 微軟正黑體;
  718. font-weight: 900;
  719. font-size: 14px;
  720. display: inline-block;
  721. color: #9b9b9b;
  722. }
  723. @media screen and (max-width: 350px) {
  724. #sec03-moblie .sec03-table-title,
  725. #sec03-moblie .sec03-table-title2 {
  726. font-size: 12px;
  727. }
  728. }
  729. #sec03-moblie .contant-toggle {
  730. display: inline-block;
  731. color: #000;
  732. padding-bottom: 10px;
  733. border-bottom: 2px solid #000;
  734. }
  735. #sec03-moblie #sec03-slider {
  736. padding-top: 5vw;
  737. }
  738. #sec03-moblie #sec03-slider .slick-slide img {
  739. display: inline;
  740. }
  741. #sec03-moblie #sec03-slider #sec03-slider1,
  742. #sec03-moblie #sec03-slider #sec03-slider2 {
  743. margin-left: 10px;
  744. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  745. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  746. }
  747. @media screen and (max-width: 350px) {
  748. #sec03-moblie #sec03-slider #sec03-slider1,
  749. #sec03-moblie #sec03-slider #sec03-slider2 {
  750. margin: 0 5px;
  751. }
  752. }
  753. #sec03-moblie #sec03-slider .table th {
  754. font-size: 40px;
  755. display: table-cell;
  756. vertical-align: middle;
  757. padding: 15px;
  758. }
  759. @media screen and (max-width: 350px) {
  760. #sec03-moblie #sec03-slider .table th {
  761. font-size: 25px;
  762. }
  763. }
  764. #sec03-moblie #sec03-slider .table td {
  765. display: table-cell;
  766. vertical-align: middle;
  767. padding: 15px;
  768. padding: 10px 0;
  769. }
  770. @media screen and (max-width: 350px) {
  771. #sec03-moblie #sec03-slider .table td {
  772. padding: 0px;
  773. }
  774. }
  775. #sec03-moblie #sec03-slider .table td a {
  776. text-decoration: none;
  777. color: #000;
  778. }
  779. #sec03-moblie #sec03-slider .table img {
  780. width: 50px;
  781. }
  782. #sec03-moblie #sec03-slider .table .sec03-table-text {
  783. padding: 0px 0px 0px 3px;
  784. display: table-cell;
  785. vertical-align: middle;
  786. }
  787. @media screen and (max-width: 350px) {
  788. #sec03-moblie #sec03-slider .table .sec03-table-text {
  789. padding: 0px;
  790. }
  791. }
  792. #sec03-moblie #sec03-slider .table .sec03-table-text h1 {
  793. font-size: 14px;
  794. margin: 0;
  795. font-weight: 900;
  796. }
  797. #sec03-moblie #sec03-slider .table .sec03-table-text p {
  798. margin: 0;
  799. font-size: 12px;
  800. color: #9b9b9b;
  801. }
  802. @media screen and (min-width: 1025px) {
  803. #sec03-moblie {
  804. display: none;
  805. }
  806. }
  807. #sec04 {
  808. padding-top: 5vw;
  809. padding-bottom: 5vw;
  810. background: #414141;
  811. background-position: center center;
  812. background-size: cover;
  813. }
  814. @media screen and (max-width: 767px) {
  815. #sec04 {
  816. display: none;
  817. }
  818. }
  819. #sec04 .sec04-title {
  820. padding-bottom: 1vw;
  821. }
  822. #sec04 .sec04-title h1 {
  823. color: #fff;
  824. font-size: 45px;
  825. font-weight: 900;
  826. padding: 10px 10px;
  827. }
  828. @media screen and (max-width: 767px) {
  829. #sec04 .sec04-title h1 {
  830. font-weight: 900;
  831. font-size: 32px;
  832. }
  833. }
  834. #sec04 .sec04-title hr {
  835. width: 12vw;
  836. height: 2px;
  837. color: #fff !important;
  838. margin: 10px;
  839. opacity: 1 !important;
  840. }
  841. @media screen and (max-width: 767px) {
  842. #sec04 .sec04-title hr {
  843. width: 30vw;
  844. }
  845. }
  846. #sec04 .learn-more {
  847. width: 120px;
  848. }
  849. #sec04 #sec04-container {
  850. background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #414141), color-stop(0%, #eee));
  851. background: linear-gradient(180deg, #414141 15%, #eee 0%);
  852. padding: 20px;
  853. padding-bottom: 50px;
  854. }
  855. #sec04 #sec04-container .card {
  856. border: none;
  857. border-radius: 0%;
  858. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  859. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  860. }
  861. #sec04 #sec04-container .card img {
  862. height: 150px;
  863. -o-object-fit: cover;
  864. object-fit: cover;
  865. }
  866. #sec04 #sec04-container .card .card-title {
  867. font-weight: 900;
  868. }
  869. #sec04-moblie {
  870. padding-top: 5vw;
  871. padding-bottom: 5vw;
  872. background: #414141;
  873. position: relative;
  874. overflow: hidden;
  875. }
  876. #sec04-moblie .arrow-table {
  877. position: fixed;
  878. width: 25px;
  879. right: 15px;
  880. bottom: 240px;
  881. z-index: 6;
  882. }
  883. @media screen and (max-width: 350px) {
  884. #sec04-moblie .arrow-table {
  885. right: 10px;
  886. }
  887. }
  888. #sec04-moblie .sec04-button {
  889. text-align: center;
  890. margin-top: -50px;
  891. width: 85vw;
  892. }
  893. @media screen and (min-width: 1025px) {
  894. #sec04-moblie .sec04-button {
  895. display: none;
  896. }
  897. }
  898. #sec04-moblie .sec04-button .mouse_scroll {
  899. display: inline-block;
  900. margin: 0 auto;
  901. width: 24px;
  902. -webkit-transform: rotate(90deg);
  903. transform: rotate(90deg);
  904. }
  905. #sec04-moblie .sec04-button .testright {
  906. -webkit-transform: rotate(180deg);
  907. transform: rotate(180deg);
  908. }
  909. #sec04-moblie .sec04-button .m_scroll_arrows {
  910. display: block;
  911. width: 5px;
  912. height: 5px;
  913. /* IE 9 */
  914. -webkit-transform: rotate(45deg);
  915. /* Chrome, Safari, Opera */
  916. transform: rotate(45deg);
  917. border-right: 2px solid #fff;
  918. border-bottom: 2px solid #fff;
  919. margin: 0 0 3px 4px;
  920. width: 16px;
  921. height: 16px;
  922. }
  923. #sec04-moblie .sec04-button .unu {
  924. margin-top: 1px;
  925. }
  926. #sec04-moblie .sec04-button .unu,
  927. #sec04-moblie .sec04-button .doi,
  928. #sec04-moblie .sec04-button .trei {
  929. -webkit-animation: mouse-scroll 1s infinite;
  930. animation: mouse-scroll 1s infinite;
  931. }
  932. #sec04-moblie .sec04-button .unu {
  933. -webkit-animation-delay: 0.1s;
  934. -moz-animation-delay: 0.1s;
  935. -webkit-animation-direction: alternate;
  936. animation-direction: alternate;
  937. -webkit-animation-delay: alternate;
  938. animation-delay: alternate;
  939. }
  940. #sec04-moblie .sec04-button .doi {
  941. -webkit-animation-delay: 0.2s;
  942. -moz-animation-delay: 0.2s;
  943. -webkit-animation-direction: alternate;
  944. animation-delay: 0.2s;
  945. animation-direction: alternate;
  946. margin-top: -6px;
  947. }
  948. #sec04-moblie .sec04-button .trei {
  949. -webkit-animation-delay: 0.3s;
  950. -moz-animation-delay: 0.3s;
  951. -webkit-animation-direction: alternate;
  952. animation-delay: 0.3s;
  953. animation-direction: alternate;
  954. margin-top: -6px;
  955. }
  956. #sec04-moblie .sec04-button .mouse {
  957. height: 42px;
  958. width: 24px;
  959. border-radius: 14px;
  960. -webkit-transform: none;
  961. transform: none;
  962. border: 2px solid #fff;
  963. top: 170px;
  964. }
  965. #sec04-moblie .sec04-button .wheel {
  966. height: 5px;
  967. width: 2px;
  968. display: block;
  969. margin: 5px auto;
  970. background: #fff;
  971. position: relative;
  972. height: 4px;
  973. width: 4px;
  974. border: 2px solid #fff;
  975. border-radius: 8px;
  976. }
  977. #sec04-moblie .sec04-button .wheel {
  978. -webkit-animation: mouse-wheel 0.6s linear infinite;
  979. animation: mouse-wheel 0.8s linear infinite;
  980. }
  981. @-webkit-keyframes mouse-wheel {
  982. 0% {
  983. opacity: 1;
  984. -webkit-transform: translateY(0);
  985. transform: translateY(0);
  986. }
  987. 100% {
  988. opacity: 0;
  989. -webkit-transform: translateY(6px);
  990. transform: translateY(6px);
  991. }
  992. }
  993. @keyframes mouse-wheel {
  994. 0% {
  995. top: 1px;
  996. }
  997. 25% {
  998. top: 5px;
  999. }
  1000. 50% {
  1001. top: 15px;
  1002. }
  1003. 75% {
  1004. top: 5px;
  1005. }
  1006. 100% {
  1007. top: 1px;
  1008. }
  1009. }
  1010. @-webkit-keyframes mouse-scroll {
  1011. 0% {
  1012. opacity: 0;
  1013. }
  1014. 50% {
  1015. opacity: 0.5;
  1016. }
  1017. 100% {
  1018. opacity: 1;
  1019. }
  1020. }
  1021. @keyframes mouse-scroll {
  1022. 0% {
  1023. opacity: 0;
  1024. }
  1025. 50% {
  1026. opacity: 0.5;
  1027. }
  1028. 100% {
  1029. opacity: 1;
  1030. }
  1031. }
  1032. @media screen and (min-width: 1025px) {
  1033. #sec04-moblie {
  1034. display: none;
  1035. }
  1036. }
  1037. #sec04-moblie h1 {
  1038. color: #fff;
  1039. font-size: 45px;
  1040. font-weight: 900;
  1041. padding: 5px 10px;
  1042. }
  1043. @media screen and (max-width: 767px) {
  1044. #sec04-moblie h1 {
  1045. font-weight: 900;
  1046. font-size: 32px;
  1047. }
  1048. }
  1049. #sec04-moblie hr {
  1050. width: 30vw;
  1051. height: 2px;
  1052. color: #fff;
  1053. margin: 10px;
  1054. opacity: 1 !important;
  1055. }
  1056. #sec04-moblie #sec04-moblie-container {
  1057. padding-top: 10vw;
  1058. }
  1059. #sec04-moblie #sec04-moblie-container .col {
  1060. margin: 10px;
  1061. }
  1062. #sec04-moblie #sec04-moblie-container .col .card {
  1063. border-radius: 0%;
  1064. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1065. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1066. }
  1067. #sec04-moblie #sec04-moblie-container .col .card img {
  1068. height: 150px;
  1069. -o-object-fit: cover;
  1070. object-fit: cover;
  1071. }
  1072. #sec04-moblie #sec04-moblie-container .col .card .card-title {
  1073. font-weight: 900;
  1074. }
  1075. #sec04-moblie #sec04-moblie-container .col .card .learn-more {
  1076. width: 120px;
  1077. }
  1078. #sec05 {
  1079. width: 85vw;
  1080. margin: 0 auto;
  1081. padding-top: 5vw;
  1082. padding-bottom: 5vw;
  1083. }
  1084. @media screen and (max-width: 767px) {
  1085. #sec05 {
  1086. display: none;
  1087. }
  1088. }
  1089. #sec05 h1 {
  1090. font-size: 45px;
  1091. font-weight: 900;
  1092. padding: 15px;
  1093. }
  1094. #sec05 #sec05-container #sec05-destop-slider .slick-prev:before,
  1095. #sec05 #sec05-container #sec05-destop-slider .slick-next:before {
  1096. opacity: 0;
  1097. }
  1098. #sec05 #sec05-container #sec05-destop-slider .slick-prev,
  1099. #sec05 #sec05-container #sec05-destop-slider .slick-next {
  1100. width: 40px;
  1101. height: 40px;
  1102. content: none;
  1103. }
  1104. #sec05 #sec05-container #sec05-destop-slider .slick-prev {
  1105. background-image: url(./img/arrow-table2.png);
  1106. background-repeat: no-repeat;
  1107. left: -40px;
  1108. }
  1109. #sec05 #sec05-container #sec05-destop-slider .slick-prev:hover, #sec05 #sec05-container #sec05-destop-slider .slick-prev:focus {
  1110. background-image: url(./img/arrow-table2.png);
  1111. background-repeat: no-repeat;
  1112. }
  1113. #sec05 #sec05-container #sec05-destop-slider .slick-next {
  1114. background-image: url(./img/arrow-table.png);
  1115. background-repeat: no-repeat;
  1116. right: -50px;
  1117. }
  1118. #sec05 #sec05-container #sec05-destop-slider .slick-next:hover, #sec05 #sec05-container #sec05-destop-slider .slick-next:focus {
  1119. background-image: url(./img/arrow-table.png);
  1120. background-repeat: no-repeat;
  1121. }
  1122. #sec05 #sec05-container .col {
  1123. margin: 5px;
  1124. }
  1125. #sec05 #sec05-container .card {
  1126. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1127. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1128. }
  1129. #sec05-moblie {
  1130. padding-top: 5vw;
  1131. padding-bottom: 10vw;
  1132. overflow: hidden;
  1133. }
  1134. @media screen and (min-width: 1025px) {
  1135. #sec05-moblie {
  1136. display: none;
  1137. }
  1138. }
  1139. #sec05-moblie #sec05-moblie-container {
  1140. position: relative;
  1141. }
  1142. #sec05-moblie #sec05-moblie-container .arrow-table {
  1143. position: fixed;
  1144. width: 25px;
  1145. right: 5px;
  1146. bottom: 300px;
  1147. z-index: 6;
  1148. }
  1149. @media screen and (max-width: 350px) {
  1150. #sec05-moblie #sec05-moblie-container .arrow-table {
  1151. right: 10px;
  1152. }
  1153. }
  1154. #sec05-moblie h1 {
  1155. font-size: 45px;
  1156. font-weight: 900;
  1157. padding: 15px;
  1158. }
  1159. #sec05-moblie #sec05-moblie-slider .sec05-moblie-box {
  1160. padding: 20px;
  1161. margin: 30px;
  1162. }
  1163. @media screen and (max-width: 400px) {
  1164. #sec05-moblie #sec05-moblie-slider .sec05-moblie-box {
  1165. padding: 5px;
  1166. margin: 20px;
  1167. }
  1168. }
  1169. #sec05-moblie #sec05-moblie-slider .sec05-moblie-box .card {
  1170. border: none;
  1171. }
  1172. #sec05-moblie .sec05-button {
  1173. text-align: center;
  1174. margin-top: -50px;
  1175. }
  1176. #sec05-moblie .sec05-button .mouse_scroll {
  1177. display: inline-block;
  1178. margin: 0 auto;
  1179. width: 24px;
  1180. -webkit-transform: rotate(90deg);
  1181. transform: rotate(90deg);
  1182. }
  1183. #sec05-moblie .sec05-button .testright {
  1184. -webkit-transform: rotate(180deg);
  1185. transform: rotate(180deg);
  1186. }
  1187. #sec05-moblie .sec05-button .m_scroll_arrows {
  1188. display: block;
  1189. width: 5px;
  1190. height: 5px;
  1191. /* IE 9 */
  1192. -webkit-transform: rotate(45deg);
  1193. /* Chrome, Safari, Opera */
  1194. transform: rotate(45deg);
  1195. border-right: 2px solid #000;
  1196. border-bottom: 2px solid #000;
  1197. margin: 0 0 3px 4px;
  1198. width: 16px;
  1199. height: 16px;
  1200. }
  1201. #sec05-moblie .sec05-button .unu {
  1202. margin-top: 1px;
  1203. }
  1204. #sec05-moblie .sec05-button .unu,
  1205. #sec05-moblie .sec05-button .doi,
  1206. #sec05-moblie .sec05-button .trei {
  1207. -webkit-animation: mouse-scroll 1s infinite;
  1208. animation: mouse-scroll 1s infinite;
  1209. }
  1210. #sec05-moblie .sec05-button .unu {
  1211. -webkit-animation-delay: 0.1s;
  1212. -moz-animation-delay: 0.1s;
  1213. -webkit-animation-direction: alternate;
  1214. animation-direction: alternate;
  1215. -webkit-animation-delay: alternate;
  1216. animation-delay: alternate;
  1217. }
  1218. #sec05-moblie .sec05-button .doi {
  1219. -webkit-animation-delay: 0.2s;
  1220. -moz-animation-delay: 0.2s;
  1221. -webkit-animation-direction: alternate;
  1222. animation-delay: 0.2s;
  1223. animation-direction: alternate;
  1224. margin-top: -6px;
  1225. }
  1226. #sec05-moblie .sec05-button .trei {
  1227. -webkit-animation-delay: 0.3s;
  1228. -moz-animation-delay: 0.3s;
  1229. -webkit-animation-direction: alternate;
  1230. animation-delay: 0.3s;
  1231. animation-direction: alternate;
  1232. margin-top: -6px;
  1233. }
  1234. #sec05-moblie .sec05-button .mouse {
  1235. height: 42px;
  1236. width: 24px;
  1237. border-radius: 14px;
  1238. -webkit-transform: none;
  1239. transform: none;
  1240. border: 2px solid #000;
  1241. top: 170px;
  1242. }
  1243. #sec05-moblie .sec05-button .wheel {
  1244. height: 5px;
  1245. width: 2px;
  1246. display: block;
  1247. margin: 5px auto;
  1248. background: #000;
  1249. position: relative;
  1250. height: 4px;
  1251. width: 4px;
  1252. border: 2px solid #000;
  1253. border-radius: 8px;
  1254. }
  1255. #sec05-moblie .sec05-button .wheel {
  1256. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1257. animation: mouse-wheel 0.8s linear infinite;
  1258. }
  1259. @-webkit-keyframes mouse-wheel {
  1260. 0% {
  1261. opacity: 1;
  1262. -webkit-transform: translateY(0);
  1263. transform: translateY(0);
  1264. }
  1265. 100% {
  1266. opacity: 0;
  1267. -webkit-transform: translateY(6px);
  1268. transform: translateY(6px);
  1269. }
  1270. }
  1271. @keyframes mouse-wheel {
  1272. 0% {
  1273. top: 1px;
  1274. }
  1275. 25% {
  1276. top: 5px;
  1277. }
  1278. 50% {
  1279. top: 15px;
  1280. }
  1281. 75% {
  1282. top: 5px;
  1283. }
  1284. 100% {
  1285. top: 1px;
  1286. }
  1287. }
  1288. @-webkit-keyframes mouse-scroll {
  1289. 0% {
  1290. opacity: 0;
  1291. }
  1292. 50% {
  1293. opacity: 0.5;
  1294. }
  1295. 100% {
  1296. opacity: 1;
  1297. }
  1298. }
  1299. @keyframes mouse-scroll {
  1300. 0% {
  1301. opacity: 0;
  1302. }
  1303. 50% {
  1304. opacity: 0.5;
  1305. }
  1306. 100% {
  1307. opacity: 1;
  1308. }
  1309. }
  1310. #sec06 {
  1311. width: 100vw;
  1312. padding-top: 5vw;
  1313. padding-bottom: 10vw;
  1314. background: #525252;
  1315. }
  1316. @media screen and (max-width: 767px) {
  1317. #sec06 {
  1318. background: #313131;
  1319. }
  1320. }
  1321. #sec06 .sec06-button {
  1322. text-align: center;
  1323. width: 75vw;
  1324. }
  1325. @media screen and (min-width: 1025px) {
  1326. #sec06 .sec06-button {
  1327. display: none;
  1328. }
  1329. }
  1330. #sec06 .sec06-button .mouse_scroll {
  1331. display: inline-block;
  1332. margin: 0 auto;
  1333. width: 24px;
  1334. -webkit-transform: rotate(90deg);
  1335. transform: rotate(90deg);
  1336. }
  1337. #sec06 .sec06-button .testright {
  1338. -webkit-transform: rotate(180deg);
  1339. transform: rotate(180deg);
  1340. }
  1341. #sec06 .sec06-button .m_scroll_arrows {
  1342. display: block;
  1343. width: 5px;
  1344. height: 5px;
  1345. /* IE 9 */
  1346. -webkit-transform: rotate(45deg);
  1347. /* Chrome, Safari, Opera */
  1348. transform: rotate(45deg);
  1349. border-right: 2px solid #fff;
  1350. border-bottom: 2px solid #fff;
  1351. margin: 0 0 3px 4px;
  1352. width: 16px;
  1353. height: 16px;
  1354. }
  1355. #sec06 .sec06-button .unu {
  1356. margin-top: 1px;
  1357. }
  1358. #sec06 .sec06-button .unu,
  1359. #sec06 .sec06-button .doi,
  1360. #sec06 .sec06-button .trei {
  1361. -webkit-animation: mouse-scroll 1s infinite;
  1362. animation: mouse-scroll 1s infinite;
  1363. }
  1364. #sec06 .sec06-button .unu {
  1365. -webkit-animation-delay: 0.1s;
  1366. -moz-animation-delay: 0.1s;
  1367. -webkit-animation-direction: alternate;
  1368. animation-direction: alternate;
  1369. -webkit-animation-delay: alternate;
  1370. animation-delay: alternate;
  1371. }
  1372. #sec06 .sec06-button .doi {
  1373. -webkit-animation-delay: 0.2s;
  1374. -moz-animation-delay: 0.2s;
  1375. -webkit-animation-direction: alternate;
  1376. animation-delay: 0.2s;
  1377. animation-direction: alternate;
  1378. margin-top: -6px;
  1379. }
  1380. #sec06 .sec06-button .trei {
  1381. -webkit-animation-delay: 0.3s;
  1382. -moz-animation-delay: 0.3s;
  1383. -webkit-animation-direction: alternate;
  1384. animation-delay: 0.3s;
  1385. animation-direction: alternate;
  1386. margin-top: -6px;
  1387. }
  1388. #sec06 .sec06-button .mouse {
  1389. height: 42px;
  1390. width: 24px;
  1391. border-radius: 14px;
  1392. -webkit-transform: none;
  1393. transform: none;
  1394. border: 2px solid #fff;
  1395. top: 170px;
  1396. }
  1397. #sec06 .sec06-button .wheel {
  1398. height: 5px;
  1399. width: 2px;
  1400. display: block;
  1401. margin: 5px auto;
  1402. background: #fff;
  1403. position: relative;
  1404. height: 4px;
  1405. width: 4px;
  1406. border: 2px solid #fff;
  1407. border-radius: 8px;
  1408. }
  1409. #sec06 .sec06-button .wheel {
  1410. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1411. animation: mouse-wheel 0.8s linear infinite;
  1412. }
  1413. @-webkit-keyframes mouse-wheel {
  1414. 0% {
  1415. opacity: 1;
  1416. -webkit-transform: translateY(0);
  1417. transform: translateY(0);
  1418. }
  1419. 100% {
  1420. opacity: 0;
  1421. -webkit-transform: translateY(6px);
  1422. transform: translateY(6px);
  1423. }
  1424. }
  1425. @keyframes mouse-wheel {
  1426. 0% {
  1427. top: 1px;
  1428. }
  1429. 25% {
  1430. top: 5px;
  1431. }
  1432. 50% {
  1433. top: 15px;
  1434. }
  1435. 75% {
  1436. top: 5px;
  1437. }
  1438. 100% {
  1439. top: 1px;
  1440. }
  1441. }
  1442. @-webkit-keyframes mouse-scroll {
  1443. 0% {
  1444. opacity: 0;
  1445. }
  1446. 50% {
  1447. opacity: 0.5;
  1448. }
  1449. 100% {
  1450. opacity: 1;
  1451. }
  1452. }
  1453. @keyframes mouse-scroll {
  1454. 0% {
  1455. opacity: 0;
  1456. }
  1457. 50% {
  1458. opacity: 0.5;
  1459. }
  1460. 100% {
  1461. opacity: 1;
  1462. }
  1463. }
  1464. #sec06 h1 {
  1465. font-size: 45px;
  1466. font-weight: 900;
  1467. padding: 15px;
  1468. color: #fff;
  1469. }
  1470. #sec06 hr {
  1471. width: 12vw;
  1472. height: 2px;
  1473. color: #fff;
  1474. margin: 10px;
  1475. opacity: 1 !important;
  1476. }
  1477. @media screen and (max-width: 767px) {
  1478. #sec06 hr {
  1479. width: 30vw;
  1480. }
  1481. }
  1482. #sec06 #sec06-container {
  1483. width: 80vw;
  1484. }
  1485. #sec06 #sec06-container .slick-prev:before,
  1486. #sec06 #sec06-container .slick-next:before {
  1487. opacity: 0;
  1488. }
  1489. #sec06 #sec06-container .slick-prev,
  1490. #sec06 #sec06-container .slick-next {
  1491. width: 40px;
  1492. height: 40px;
  1493. content: none;
  1494. }
  1495. #sec06 #sec06-container .slick-prev {
  1496. background-image: url(./img/sec06/sec06-arrow-2.png);
  1497. background-repeat: no-repeat;
  1498. left: -40px;
  1499. }
  1500. #sec06 #sec06-container .slick-prev:hover, #sec06 #sec06-container .slick-prev:focus {
  1501. background-image: url(./img/sec06/sec06-arrow-2.png);
  1502. background-repeat: no-repeat;
  1503. }
  1504. #sec06 #sec06-container .slick-next {
  1505. background-image: url(./img/sec06/sec06-arrow.png);
  1506. background-repeat: no-repeat;
  1507. right: -50px;
  1508. }
  1509. #sec06 #sec06-container .slick-next:hover, #sec06 #sec06-container .slick-next:focus {
  1510. background-image: url(./img/sec06/sec06-arrow.png);
  1511. background-repeat: no-repeat;
  1512. }
  1513. #sec06 #sec06-container .card {
  1514. margin: 10px;
  1515. display: inline-block !important;
  1516. height: 480px !important;
  1517. border-radius: 0%;
  1518. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1519. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1520. }
  1521. #sec06 #sec06-container .card img {
  1522. height: 150px;
  1523. -o-object-fit: cover;
  1524. object-fit: cover;
  1525. }
  1526. #sec06 #sec06-container .card .card-title {
  1527. font-weight: 900;
  1528. font-size: 18px;
  1529. }
  1530. #sec06 #sec06-container .card .learn-more {
  1531. width: 120px;
  1532. }
  1533. #sec06 #sec06-container .learn-more {
  1534. width: 120px;
  1535. }
  1536. #sec07 {
  1537. padding-top: 5vw;
  1538. padding-bottom: 5vw;
  1539. }
  1540. @media screen and (max-width: 767px) {
  1541. #sec07 {
  1542. display: none;
  1543. }
  1544. }
  1545. #sec07 .NFT-Collections-Sales-Volume {
  1546. width: 80vw;
  1547. margin: 0 auto;
  1548. margin-top: -120px;
  1549. margin-bottom: 50px;
  1550. }
  1551. @media screen and (max-width: 767px) {
  1552. #sec07 .NFT-Collections-Sales-Volume {
  1553. display: none;
  1554. }
  1555. }
  1556. #sec07 .NFT-Collections-Sales-Volume h1 {
  1557. padding: 0;
  1558. margin: 0;
  1559. font-weight: normal;
  1560. color: #fff;
  1561. letter-spacing: 3px;
  1562. font-size: 50px;
  1563. }
  1564. #sec07 .table {
  1565. text-align: center;
  1566. }
  1567. #sec07 .table thead tr th {
  1568. border: 0;
  1569. }
  1570. #sec07 .table td {
  1571. display: table-cell;
  1572. vertical-align: middle;
  1573. text-align: left;
  1574. }
  1575. #sec07 .table td img {
  1576. width: 50px;
  1577. }
  1578. #sec07 .table td .data-line {
  1579. width: 100px;
  1580. }
  1581. #sec07 .table th {
  1582. display: table-cell;
  1583. vertical-align: middle;
  1584. text-align: left;
  1585. }
  1586. #sec07 .table img {
  1587. padding: 5px;
  1588. }
  1589. #sec07 .sec07-table-button {
  1590. text-align: right;
  1591. }
  1592. #sec07 .sec07-table-button .data-button {
  1593. text-align: left;
  1594. border-radius: 25px;
  1595. width: 10vw;
  1596. padding: 5px 20px;
  1597. color: #000;
  1598. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1599. background-size: 18px 18px;
  1600. background-color: #fff;
  1601. border: 1px solid #000;
  1602. }
  1603. #sec07-moblir-title {
  1604. background: #414141;
  1605. }
  1606. @media screen and (min-width: 1025px) {
  1607. #sec07-moblir-title {
  1608. display: none;
  1609. }
  1610. }
  1611. #sec07-moblir-title #sec07-container {
  1612. padding: 15px;
  1613. font-weight: 900;
  1614. color: #fff;
  1615. }
  1616. #sec07-moblie {
  1617. padding-top: 5vw;
  1618. padding-bottom: 5vw;
  1619. }
  1620. @media screen and (min-width: 1025px) {
  1621. #sec07-moblie {
  1622. display: none;
  1623. }
  1624. }
  1625. #sec07-moblie .table {
  1626. text-align: center;
  1627. }
  1628. #sec07-moblie .table thead tr th {
  1629. border: 0;
  1630. }
  1631. #sec07-moblie .table td {
  1632. display: table-cell;
  1633. vertical-align: middle;
  1634. text-align-last: left;
  1635. font-size: 14px;
  1636. }
  1637. #sec07-moblie .table td img {
  1638. width: 30px;
  1639. }
  1640. #sec07-moblie .table td .data-line {
  1641. width: 80px;
  1642. }
  1643. #sec07-moblie .table th {
  1644. display: table-cell;
  1645. vertical-align: middle;
  1646. text-align: left;
  1647. font-size: 14px;
  1648. }
  1649. #sec07-moblie .table img {
  1650. padding: 5px;
  1651. width: 50px;
  1652. }
  1653. #sec07-moblie .sec07-table-button {
  1654. text-align: right;
  1655. }
  1656. #sec07-moblie .sec07-table-button .data-button {
  1657. text-align: left;
  1658. border-radius: 25px;
  1659. width: 35vw;
  1660. padding: 5px 20px;
  1661. color: #000;
  1662. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1663. background-size: 18px 18px;
  1664. background-color: #fff;
  1665. border: 1px solid #000;
  1666. }
  1667. #sec08 {
  1668. padding-top: 5vw;
  1669. }
  1670. #sec08 #sec08-container-box {
  1671. background-size: contain;
  1672. background-repeat: no-repeat;
  1673. background-blend-mode: overlay;
  1674. }
  1675. #sec08 #sec08-title {
  1676. padding: 5vw;
  1677. background: #414141;
  1678. }
  1679. #sec08 #sec08-title h1 {
  1680. text-align: center;
  1681. color: #fff;
  1682. font-size: 45px;
  1683. font-weight: 900;
  1684. padding: 5px 10px;
  1685. }
  1686. @media screen and (max-width: 767px) {
  1687. #sec08 #sec08-title h1 {
  1688. font-weight: 900;
  1689. font-size: 32px;
  1690. }
  1691. }
  1692. #sec08 #sec08-title hr {
  1693. width: 5vw;
  1694. height: 5px;
  1695. color: #fff;
  1696. margin: 10px auto;
  1697. opacity: 1 !important;
  1698. }
  1699. @media screen and (max-width: 767px) {
  1700. #sec08 #sec08-title hr {
  1701. width: 30vw;
  1702. }
  1703. }
  1704. #sec08 #sec08-container {
  1705. text-align: center;
  1706. }
  1707. #sec08 #sec08-container .card {
  1708. padding-top: 5vw;
  1709. padding-bottom: 5vw;
  1710. border: none;
  1711. }
  1712. #sec08 #sec08-container .card .adv4 {
  1713. display: -webkit-box;
  1714. display: -ms-flexbox;
  1715. display: flex;
  1716. -webkit-box-align: center;
  1717. -ms-flex-align: center;
  1718. align-items: center;
  1719. }
  1720. #sec08 #sec08-container .card .adv4 img {
  1721. -webkit-box-align: center;
  1722. -ms-flex-align: center;
  1723. align-items: center;
  1724. -o-object-fit: cover;
  1725. object-fit: cover;
  1726. }
  1727. #sec08 #sec08-container .col-3 {
  1728. margin: 10px 0;
  1729. }
  1730. #sec08 #sec08-container .col-3 img {
  1731. -o-object-fit: cover;
  1732. object-fit: cover;
  1733. }
  1734. #sec09 #sec09-container-box {
  1735. background-size: contain;
  1736. background-repeat: no-repeat;
  1737. background-blend-mode: overlay;
  1738. }
  1739. #sec09 #sec09-title {
  1740. padding: 5vw;
  1741. background: #fff;
  1742. }
  1743. #sec09 #sec09-title h1 {
  1744. text-align: center;
  1745. color: #000;
  1746. font-size: 45px;
  1747. font-weight: 900;
  1748. padding: 5px 10px;
  1749. }
  1750. @media screen and (max-width: 767px) {
  1751. #sec09 #sec09-title h1 {
  1752. font-weight: 900;
  1753. font-size: 32px;
  1754. }
  1755. }
  1756. #sec09 #sec09-title hr {
  1757. width: 5vw;
  1758. height: 5px;
  1759. color: #000;
  1760. margin: 10px auto;
  1761. opacity: 1 !important;
  1762. }
  1763. @media screen and (max-width: 767px) {
  1764. #sec09 #sec09-title hr {
  1765. width: 30vw;
  1766. }
  1767. }
  1768. #sec09 #sec09-container {
  1769. text-align: center;
  1770. }
  1771. #sec09 #sec09-container .card {
  1772. padding-top: 5vw;
  1773. padding-bottom: 5vw;
  1774. border: none;
  1775. }
  1776. #sec09 #sec09-container .card .adv4 {
  1777. display: -webkit-box;
  1778. display: -ms-flexbox;
  1779. display: flex;
  1780. -webkit-box-align: center;
  1781. -ms-flex-align: center;
  1782. align-items: center;
  1783. }
  1784. #sec09 #sec09-container .card .adv4 img {
  1785. -webkit-box-align: center;
  1786. -ms-flex-align: center;
  1787. align-items: center;
  1788. margin: 0 30px;
  1789. width: 300px;
  1790. }
  1791. @media screen and (max-width: 767px) {
  1792. #sec09 #sec09-container .card .adv4 img {
  1793. width: 100px;
  1794. margin: 0px;
  1795. }
  1796. }
  1797. #sec09 #sec09-container .col-4 {
  1798. margin: 10px 0;
  1799. padding: 15px;
  1800. }
  1801. #sec09 #sec09-container .col-4 img {
  1802. width: 200px;
  1803. -o-object-fit: cover;
  1804. object-fit: cover;
  1805. }
  1806. @media screen and (max-width: 767px) {
  1807. #sec09 #sec09-container .col-4 img {
  1808. width: 100px;
  1809. }
  1810. }
  1811. #footer {
  1812. width: 100vw;
  1813. text-align: center;
  1814. line-height: 2;
  1815. background: #313131;
  1816. color: #fff;
  1817. padding-bottom: 3vw !important;
  1818. }
  1819. #footer .footer-link {
  1820. padding-top: 3vw;
  1821. }
  1822. #footer .footer-link a {
  1823. text-decoration: none;
  1824. font-size: 20px;
  1825. padding: 10px;
  1826. color: #fff;
  1827. }
  1828. @media screen and (max-width: 767px) {
  1829. #footer .footer-link a {
  1830. font-size: 14px;
  1831. padding: 0 !important;
  1832. }
  1833. }
  1834. @media screen and (max-width: 400px) {
  1835. #footer .footer-link a {
  1836. font-size: 12px;
  1837. }
  1838. }
  1839. #footer .footer-link a span {
  1840. font-size: 28px;
  1841. }
  1842. @media screen and (max-width: 767px) {
  1843. #footer .footer-link a span {
  1844. font-size: 16px;
  1845. }
  1846. }
  1847. @media screen and (max-width: 350px) {
  1848. #footer .footer-link a span {
  1849. font-size: 14px;
  1850. }
  1851. }
  1852. #footer .text {
  1853. padding-top: 3vw;
  1854. }
  1855. #footer .text a {
  1856. text-decoration: none;
  1857. color: #fff;
  1858. }
  1859. #footer .text h2 {
  1860. font-size: 20px;
  1861. margin: 10px;
  1862. letter-spacing: 1px;
  1863. display: inline;
  1864. }
  1865. @media screen and (max-width: 767px) {
  1866. #footer .text h2 {
  1867. display: block;
  1868. font-size: 16px;
  1869. margin: 8px;
  1870. }
  1871. }
  1872. #footer .text p {
  1873. margin: 0 !important;
  1874. }
  1875. /*# sourceMappingURL=style.css.map */