style.css 45 KB

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