index.html 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688
  1. <!doctype html>
  2. <html ⚡ lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width">
  6. <link rel="canonical" href="/article.html">
  7. <link rel="shortcut icon" href="amp_favicon.png">
  8. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css"
  9. integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
  10. <title>News Article</title>
  11. <style amp-custom>
  12. body {
  13. width: auto;
  14. margin: 0;
  15. padding: 0;
  16. }
  17. header {
  18. background: Tomato;
  19. color: white;
  20. font-size: 2em;
  21. text-align: center;
  22. }
  23. h1 {
  24. margin: 0;
  25. padding: 0.5em;
  26. background: white;
  27. box-shadow: 0px 3px 5px grey;
  28. }
  29. p {
  30. padding: 0.5em;
  31. margin: 0.5em;
  32. }
  33. :root {
  34. --color-scheme: dark;
  35. --blue: #0084b4;
  36. --indigo: #6610f2;
  37. --purple: #6f42c1;
  38. --pink: #e83e8c;
  39. --red: #dc3545;
  40. --orange: #fd7e14;
  41. --yellow: beige;
  42. --green: #28a745;
  43. --teal: #20c997;
  44. --cyan: #17a2b8;
  45. --white: #fff;
  46. --gray: #6c757d;
  47. --gray-dark: #212529;
  48. --primary: #0084b4;
  49. --secondary: #6c757d;
  50. --success: #28a745;
  51. --info: #17a2b8;
  52. --warning: beige;
  53. --danger: #dc3545;
  54. --light: #dee2e6;
  55. --dark: #212529;
  56. --breakpoint-xs: 0;
  57. --breakpoint-sm: 576px;
  58. --breakpoint-md: 768px;
  59. --breakpoint-lg: 992px;
  60. --breakpoint-xl: 1200px;
  61. --font-family-sans-serif: "Roboto Condensed", sans-serif;
  62. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
  63. ;
  64. }
  65. @media all {
  66. .bg-warning {
  67. color: #212529;
  68. }
  69. }
  70. @media all {
  71. #sidebar {
  72. background: #212529;
  73. }
  74. }
  75. .sidebar-close {
  76. background: transparent;
  77. }
  78. @media all {
  79. .sidebar-close {
  80. color: #f8f9fa;
  81. }
  82. }
  83. *,
  84. *::before,
  85. *::after {
  86. -webkit-box-sizing: border-box;
  87. box-sizing: border-box;
  88. }
  89. html {
  90. font-family: sans-serif;
  91. line-height: 1.15;
  92. -webkit-text-size-adjust: 100%;
  93. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  94. }
  95. article,
  96. aside,
  97. figcaption,
  98. figure,
  99. footer,
  100. header,
  101. hgroup,
  102. main,
  103. nav,
  104. section {
  105. display: block;
  106. }
  107. body {
  108. margin: 0;
  109. font-family: 'Noto Sans TC', sans-serif;
  110. font-weight: 400;
  111. line-height: 1.5;
  112. text-align: left;
  113. font-size: 1rem;
  114. letter-spacing: 2px;
  115. }
  116. @media all {
  117. body {
  118. color: #f8f9fa;
  119. background-color: #212529;
  120. }
  121. }
  122. [tabindex="-1"]:focus:not(:focus-visible) {
  123. outline: 0;
  124. }
  125. hr {
  126. -webkit-box-sizing: content-box;
  127. box-sizing: content-box;
  128. height: 0;
  129. overflow: visible;
  130. }
  131. p {
  132. margin-top: 0;
  133. margin-bottom: 1rem;
  134. }
  135. abbr[title],
  136. abbr[data-original-title] {
  137. text-decoration: underline;
  138. -webkit-text-decoration: underline dotted;
  139. text-decoration: underline dotted;
  140. border-bottom: 0;
  141. text-decoration-skip-ink: none;
  142. cursor: help;
  143. }
  144. address {
  145. margin-bottom: 1rem;
  146. font-style: normal;
  147. line-height: inherit;
  148. }
  149. ol,
  150. ul,
  151. dl {
  152. margin-top: 0;
  153. margin-bottom: 1rem;
  154. }
  155. ol ol,
  156. ul ul,
  157. ol ul,
  158. ul ol {
  159. margin-bottom: 0;
  160. }
  161. dt {
  162. font-weight: 700;
  163. }
  164. dd {
  165. margin-bottom: .5rem;
  166. margin-left: 0;
  167. }
  168. blockquote {
  169. margin: 0 0 1rem;
  170. }
  171. b,
  172. strong {
  173. font-weight: 700;
  174. }
  175. small {
  176. font-size: 80%;
  177. }
  178. sub,
  179. sup {
  180. position: relative;
  181. line-height: 0;
  182. vertical-align: baseline;
  183. font-size: 75%;
  184. }
  185. sub {
  186. bottom: -.25em;
  187. }
  188. sup {
  189. top: -.5em;
  190. }
  191. a {
  192. text-decoration: none;
  193. background: transparent;
  194. }
  195. @media all {
  196. a {
  197. /* color: #f8f9fa; */
  198. color: #2980B8;
  199. }
  200. }
  201. @media all {
  202. a:hover {
  203. color: #9ab6cf;
  204. }
  205. }
  206. a:not([href]) {
  207. color: inherit;
  208. text-decoration: none;
  209. }
  210. a:not([href]):hover {
  211. color: inherit;
  212. text-decoration: none;
  213. }
  214. pre,
  215. code,
  216. kbd,
  217. samp {
  218. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  219. font-size: 1em;
  220. }
  221. pre {
  222. margin-top: 0;
  223. margin-bottom: 1rem;
  224. overflow: auto;
  225. }
  226. figure {
  227. margin: 0 0 1rem;
  228. }
  229. img {
  230. vertical-align: middle;
  231. border-style: none;
  232. }
  233. svg {
  234. overflow: hidden;
  235. vertical-align: middle;
  236. }
  237. table {
  238. border-collapse: collapse;
  239. }
  240. caption {
  241. padding-top: .75rem;
  242. padding-bottom: .75rem;
  243. text-align: left;
  244. caption-side: bottom;
  245. }
  246. @media all {
  247. caption {
  248. color: #6c757d;
  249. }
  250. }
  251. th {
  252. text-align: inherit;
  253. }
  254. label {
  255. display: inline-block;
  256. margin-bottom: .5rem;
  257. }
  258. button {
  259. border-radius: 0;
  260. }
  261. button:focus {
  262. outline: 1px dotted;
  263. outline: 5px auto -webkit-focus-ring-color;
  264. }
  265. input,
  266. button,
  267. select,
  268. optgroup,
  269. textarea {
  270. margin: 0;
  271. font-family: inherit;
  272. line-height: inherit;
  273. font-size: inherit;
  274. }
  275. button,
  276. input {
  277. overflow: visible;
  278. }
  279. button,
  280. select {
  281. text-transform: none;
  282. }
  283. select {
  284. word-wrap: normal;
  285. }
  286. button,
  287. [type="button"],
  288. [type="reset"],
  289. [type="submit"] {
  290. -webkit-appearance: button;
  291. }
  292. button:not(:disabled),
  293. [type="button"]:not(:disabled),
  294. [type="reset"]:not(:disabled),
  295. [type="submit"]:not(:disabled) {
  296. cursor: pointer;
  297. }
  298. button::-moz-focus-inner,
  299. [type="button"]::-moz-focus-inner,
  300. [type="reset"]::-moz-focus-inner,
  301. [type="submit"]::-moz-focus-inner {
  302. padding: 0;
  303. border-style: none;
  304. }
  305. input[type="radio"],
  306. input[type="checkbox"] {
  307. -webkit-box-sizing: border-box;
  308. box-sizing: border-box;
  309. padding: 0;
  310. }
  311. input[type="date"],
  312. input[type="time"],
  313. input[type="datetime-local"],
  314. input[type="month"] {
  315. -webkit-appearance: listbox;
  316. }
  317. textarea {
  318. overflow: auto;
  319. resize: vertical;
  320. }
  321. [type="number"]::-webkit-inner-spin-button,
  322. [type="number"]::-webkit-outer-spin-button {
  323. height: auto;
  324. }
  325. [type="search"] {
  326. outline-offset: -2px;
  327. -webkit-appearance: none;
  328. }
  329. [type="search"]::-webkit-search-decoration {
  330. -webkit-appearance: none;
  331. }
  332. ::-webkit-file-upload-button {
  333. font: inherit;
  334. -webkit-appearance: button;
  335. }
  336. output {
  337. display: inline-block;
  338. }
  339. summary {
  340. display: list-item;
  341. cursor: pointer;
  342. }
  343. template {
  344. display: none;
  345. }
  346. [hidden] {
  347. display: none;
  348. }
  349. h1,
  350. h2,
  351. h3,
  352. h4,
  353. h5,
  354. h6 {
  355. margin-bottom: .5rem;
  356. font-weight: 400;
  357. line-height: 1.2;
  358. }
  359. h1 {
  360. font-size: 2.5rem;
  361. }
  362. @media (max-width: 1200px) {
  363. h1 {
  364. font-size: calc(1.375rem + 1.5vw);
  365. }
  366. }
  367. h2 {
  368. font-size: 2rem;
  369. }
  370. @media (max-width: 1200px) {
  371. h2 {
  372. font-size: calc(1.325rem + .9vw);
  373. }
  374. }
  375. h3 {
  376. font-size: 1.25rem;
  377. }
  378. h4 {
  379. font-size: 1.15rem;
  380. }
  381. h5 {
  382. font-size: 1rem;
  383. }
  384. h6 {
  385. font-size: 1rem;
  386. }
  387. .lead {
  388. font-weight: 400;
  389. font-size: 1.25rem;
  390. }
  391. hr {
  392. margin-top: 2.5rem;
  393. margin-bottom: 2.5rem;
  394. border-top: 1px solid silver;
  395. }
  396. img,
  397. amp-img {
  398. border: 0;
  399. }
  400. amp-img[class^=i-amp],
  401. amp-img[class^=-amp] {
  402. height: auto;
  403. max-width: 100%;
  404. }
  405. .container,
  406. .container-fluid,
  407. .container-xxl,
  408. .container-xl,
  409. .container-lg,
  410. .container-md,
  411. .container-sm {
  412. width: 100%;
  413. padding-right: var(--bs-gutter-x, 0.75rem);
  414. padding-left: var(--bs-gutter-x, 0.75rem);
  415. margin-right: auto;
  416. margin-left: auto;
  417. }
  418. @media (min-width: 576px) {
  419. .container-sm, .container {
  420. max-width: 540px;
  421. }
  422. }
  423. @media (min-width: 768px) {
  424. .container-md, .container-sm, .container {
  425. max-width: 720px;
  426. }
  427. }
  428. @media (min-width: 992px) {
  429. .container-lg, .container-md, .container-sm, .container {
  430. max-width: 960px;
  431. }
  432. }
  433. @media (min-width: 1200px) {
  434. .container-xl, .container-lg, .container-md, .container-sm, .container {
  435. max-width: 1140px;
  436. }
  437. }
  438. @media (min-width: 1400px) {
  439. .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  440. max-width: 1320px;
  441. }
  442. }
  443. .row {
  444. --bs-gutter-x: 1.5rem;
  445. --bs-gutter-y: 0;
  446. display: -webkit-box;
  447. display: -ms-flexbox;
  448. display: flex;
  449. -ms-flex-wrap: wrap;
  450. flex-wrap: wrap;
  451. margin-top: calc(var(--bs-gutter-y) * -1);
  452. margin-right: calc(var(--bs-gutter-x) / -2);
  453. margin-left: calc(var(--bs-gutter-x) / -2);
  454. }
  455. .row > * {
  456. -ms-flex-negative: 0;
  457. flex-shrink: 0;
  458. width: 100%;
  459. max-width: 100%;
  460. padding-right: calc(var(--bs-gutter-x) / 2);
  461. padding-left: calc(var(--bs-gutter-x) / 2);
  462. margin-top: var(--bs-gutter-y);
  463. }
  464. .col-1,
  465. .col-2,
  466. .col-3,
  467. .col-4,
  468. .col-5,
  469. .col-6,
  470. .col-7,
  471. .col-8,
  472. .col-9,
  473. .col-10,
  474. .col-11,
  475. .col-12,
  476. .col,
  477. .col-auto,
  478. .col-sm-1,
  479. .col-sm-2,
  480. .col-sm-3,
  481. .col-sm-4,
  482. .col-sm-5,
  483. .col-sm-6,
  484. .col-sm-7,
  485. .col-sm-8,
  486. .col-sm-9,
  487. .col-sm-10,
  488. .col-sm-11,
  489. .col-sm-12,
  490. .col-sm,
  491. .col-sm-auto,
  492. .col-md-1,
  493. .col-md-2,
  494. .col-md-3,
  495. .col-md-4,
  496. .col-md-5,
  497. .col-md-6,
  498. .col-md-7,
  499. .col-md-8,
  500. .col-md-9,
  501. .col-md-10,
  502. .col-md-11,
  503. .col-md-12,
  504. .col-md,
  505. .col-md-auto,
  506. .col-lg-1,
  507. .col-lg-2,
  508. .col-lg-3,
  509. .col-lg-4,
  510. .col-lg-5,
  511. .col-lg-6,
  512. .col-lg-7,
  513. .col-lg-8,
  514. .col-lg-9,
  515. .col-lg-10,
  516. .col-lg-11,
  517. .col-lg-12,
  518. .col-lg,
  519. .col-lg-auto,
  520. .col-xl-1,
  521. .col-xl-2,
  522. .col-xl-3,
  523. .col-xl-4,
  524. .col-xl-5,
  525. .col-xl-6,
  526. .col-xl-7,
  527. .col-xl-8,
  528. .col-xl-9,
  529. .col-xl-10,
  530. .col-xl-11,
  531. .col-xl-12,
  532. .col-xl,
  533. .col-xl-auto {
  534. position: relative;
  535. width: 100%;
  536. padding-right: 15px;
  537. padding-left: 15px;
  538. }
  539. .col {
  540. -ms-flex-preferred-size: 0;
  541. flex-basis: 0;
  542. -webkit-box-flex: 1;
  543. -ms-flex-positive: 1;
  544. flex-grow: 1;
  545. max-width: 100%;
  546. }
  547. .col-1 {
  548. -webkit-box-flex: 0;
  549. -ms-flex: 0 0 8.33333%;
  550. flex: 0 0 8.33333%;
  551. max-width: 8.33333%;
  552. }
  553. .col-2 {
  554. -webkit-box-flex: 0;
  555. -ms-flex: 0 0 16.66667%;
  556. flex: 0 0 16.66667%;
  557. max-width: 16.66667%;
  558. }
  559. .col-3 {
  560. -webkit-box-flex: 0;
  561. -ms-flex: 0 0 25%;
  562. flex: 0 0 25%;
  563. max-width: 25%;
  564. }
  565. .col-4 {
  566. -webkit-box-flex: 0;
  567. -ms-flex: 0 0 33.33333%;
  568. flex: 0 0 33.33333%;
  569. max-width: 33.33333%;
  570. }
  571. .col-5 {
  572. -webkit-box-flex: 0;
  573. -ms-flex: 0 0 41.66667%;
  574. flex: 0 0 41.66667%;
  575. max-width: 41.66667%;
  576. }
  577. .col-6 {
  578. -webkit-box-flex: 0;
  579. -ms-flex: 0 0 50%;
  580. flex: 0 0 50%;
  581. max-width: 50%;
  582. }
  583. .col-7 {
  584. -webkit-box-flex: 0;
  585. -ms-flex: 0 0 58.33333%;
  586. flex: 0 0 58.33333%;
  587. max-width: 58.33333%;
  588. }
  589. .col-8 {
  590. -webkit-box-flex: 0;
  591. -ms-flex: 0 0 66.66667%;
  592. flex: 0 0 66.66667%;
  593. max-width: 66.66667%;
  594. }
  595. .col-9 {
  596. -webkit-box-flex: 0;
  597. -ms-flex: 0 0 75%;
  598. flex: 0 0 75%;
  599. max-width: 75%;
  600. }
  601. .col-10 {
  602. -webkit-box-flex: 0;
  603. -ms-flex: 0 0 83.33333%;
  604. flex: 0 0 83.33333%;
  605. max-width: 83.33333%;
  606. }
  607. .col-11 {
  608. -webkit-box-flex: 0;
  609. -ms-flex: 0 0 91.66667%;
  610. flex: 0 0 91.66667%;
  611. max-width: 91.66667%;
  612. }
  613. .col-12 {
  614. -webkit-box-flex: 0;
  615. -ms-flex: 0 0 100%;
  616. flex: 0 0 100%;
  617. max-width: 100%;
  618. }
  619. @media (min-width: 576px) {
  620. .col-sm {
  621. -ms-flex-preferred-size: 0;
  622. flex-basis: 0;
  623. -webkit-box-flex: 1;
  624. -ms-flex-positive: 1;
  625. flex-grow: 1;
  626. max-width: 100%;
  627. }
  628. .col-sm-1 {
  629. -webkit-box-flex: 0;
  630. -ms-flex: 0 0 8.33333%;
  631. flex: 0 0 8.33333%;
  632. max-width: 8.33333%;
  633. }
  634. .col-sm-2 {
  635. -webkit-box-flex: 0;
  636. -ms-flex: 0 0 16.66667%;
  637. flex: 0 0 16.66667%;
  638. max-width: 16.66667%;
  639. }
  640. .col-sm-3 {
  641. -webkit-box-flex: 0;
  642. -ms-flex: 0 0 25%;
  643. flex: 0 0 25%;
  644. max-width: 25%;
  645. }
  646. .col-sm-4 {
  647. -webkit-box-flex: 0;
  648. -ms-flex: 0 0 33.33333%;
  649. flex: 0 0 33.33333%;
  650. max-width: 33.33333%;
  651. }
  652. .col-sm-5 {
  653. -webkit-box-flex: 0;
  654. -ms-flex: 0 0 41.66667%;
  655. flex: 0 0 41.66667%;
  656. max-width: 41.66667%;
  657. }
  658. .col-sm-6 {
  659. -webkit-box-flex: 0;
  660. -ms-flex: 0 0 50%;
  661. flex: 0 0 50%;
  662. max-width: 50%;
  663. }
  664. .col-sm-7 {
  665. -webkit-box-flex: 0;
  666. -ms-flex: 0 0 58.33333%;
  667. flex: 0 0 58.33333%;
  668. max-width: 58.33333%;
  669. }
  670. .col-sm-8 {
  671. -webkit-box-flex: 0;
  672. -ms-flex: 0 0 66.66667%;
  673. flex: 0 0 66.66667%;
  674. max-width: 66.66667%;
  675. }
  676. .col-sm-9 {
  677. -webkit-box-flex: 0;
  678. -ms-flex: 0 0 75%;
  679. flex: 0 0 75%;
  680. max-width: 75%;
  681. }
  682. .col-sm-10 {
  683. -webkit-box-flex: 0;
  684. -ms-flex: 0 0 83.33333%;
  685. flex: 0 0 83.33333%;
  686. max-width: 83.33333%;
  687. }
  688. .col-sm-11 {
  689. -webkit-box-flex: 0;
  690. -ms-flex: 0 0 91.66667%;
  691. flex: 0 0 91.66667%;
  692. max-width: 91.66667%;
  693. }
  694. .col-sm-12 {
  695. -webkit-box-flex: 0;
  696. -ms-flex: 0 0 100%;
  697. flex: 0 0 100%;
  698. max-width: 100%;
  699. }
  700. }
  701. @media (min-width: 768px) {
  702. .col-md {
  703. -ms-flex-preferred-size: 0;
  704. flex-basis: 0;
  705. -webkit-box-flex: 1;
  706. -ms-flex-positive: 1;
  707. flex-grow: 1;
  708. max-width: 100%;
  709. }
  710. .col-md-1 {
  711. -webkit-box-flex: 0;
  712. -ms-flex: 0 0 8.33333%;
  713. flex: 0 0 8.33333%;
  714. max-width: 8.33333%;
  715. }
  716. .col-md-2 {
  717. -webkit-box-flex: 0;
  718. -ms-flex: 0 0 16.66667%;
  719. flex: 0 0 16.66667%;
  720. max-width: 16.66667%;
  721. }
  722. .col-md-3 {
  723. -webkit-box-flex: 0;
  724. -ms-flex: 0 0 25%;
  725. flex: 0 0 25%;
  726. max-width: 25%;
  727. }
  728. .col-md-4 {
  729. -webkit-box-flex: 0;
  730. -ms-flex: 0 0 33.33333%;
  731. flex: 0 0 33.33333%;
  732. max-width: 33.33333%;
  733. }
  734. .col-md-5 {
  735. -webkit-box-flex: 0;
  736. -ms-flex: 0 0 41.66667%;
  737. flex: 0 0 41.66667%;
  738. max-width: 41.66667%;
  739. }
  740. .col-md-6 {
  741. -webkit-box-flex: 0;
  742. -ms-flex: 0 0 50%;
  743. flex: 0 0 50%;
  744. max-width: 50%;
  745. }
  746. .col-md-7 {
  747. -webkit-box-flex: 0;
  748. -ms-flex: 0 0 58.33333%;
  749. flex: 0 0 58.33333%;
  750. max-width: 58.33333%;
  751. }
  752. .col-md-8 {
  753. -webkit-box-flex: 0;
  754. -ms-flex: 0 0 66.66667%;
  755. flex: 0 0 66.66667%;
  756. max-width: 66.66667%;
  757. }
  758. .col-md-9 {
  759. -webkit-box-flex: 0;
  760. -ms-flex: 0 0 75%;
  761. flex: 0 0 75%;
  762. max-width: 75%;
  763. }
  764. .col-md-10 {
  765. -webkit-box-flex: 0;
  766. -ms-flex: 0 0 83.33333%;
  767. flex: 0 0 83.33333%;
  768. max-width: 83.33333%;
  769. }
  770. .col-md-11 {
  771. -webkit-box-flex: 0;
  772. -ms-flex: 0 0 91.66667%;
  773. flex: 0 0 91.66667%;
  774. max-width: 91.66667%;
  775. }
  776. .col-md-12 {
  777. -webkit-box-flex: 0;
  778. -ms-flex: 0 0 100%;
  779. flex: 0 0 100%;
  780. max-width: 100%;
  781. }
  782. .ms-md-1 {
  783. margin-left: 0.25rem !important;
  784. }
  785. .ms-md-2 {
  786. margin-left: 0.5rem !important;
  787. }
  788. .ms-md-3 {
  789. margin-left: 1rem !important;
  790. }
  791. .ms-md-4 {
  792. margin-left: 1.5rem !important;
  793. }
  794. .ms-md-5 {
  795. margin-left: 3rem !important;
  796. }
  797. .justify-content-md-center {
  798. -webkit-box-pack: center !important;
  799. -ms-flex-pack: center !important;
  800. justify-content: center !important;
  801. }
  802. }
  803. @media (min-width: 992px) {
  804. .col-lg {
  805. -ms-flex-preferred-size: 0;
  806. flex-basis: 0;
  807. -webkit-box-flex: 1;
  808. -ms-flex-positive: 1;
  809. flex-grow: 1;
  810. max-width: 100%;
  811. }
  812. .col-lg-1 {
  813. -webkit-box-flex: 0;
  814. -ms-flex: 0 0 8.33333%;
  815. flex: 0 0 8.33333%;
  816. max-width: 8.33333%;
  817. }
  818. .col-lg-2 {
  819. -webkit-box-flex: 0;
  820. -ms-flex: 0 0 16.66667%;
  821. flex: 0 0 16.66667%;
  822. max-width: 16.66667%;
  823. }
  824. .col-lg-3 {
  825. -webkit-box-flex: 0;
  826. -ms-flex: 0 0 25%;
  827. flex: 0 0 25%;
  828. max-width: 25%;
  829. }
  830. .col-lg-4 {
  831. -webkit-box-flex: 0;
  832. -ms-flex: 0 0 33.33333%;
  833. flex: 0 0 33.33333%;
  834. max-width: 33.33333%;
  835. }
  836. .col-lg-5 {
  837. -webkit-box-flex: 0;
  838. -ms-flex: 0 0 41.66667%;
  839. flex: 0 0 41.66667%;
  840. max-width: 41.66667%;
  841. }
  842. .col-lg-6 {
  843. -webkit-box-flex: 0;
  844. -ms-flex: 0 0 50%;
  845. flex: 0 0 50%;
  846. max-width: 50%;
  847. }
  848. .col-lg-7 {
  849. -webkit-box-flex: 0;
  850. -ms-flex: 0 0 58.33333%;
  851. flex: 0 0 58.33333%;
  852. max-width: 58.33333%;
  853. }
  854. .col-lg-8 {
  855. -webkit-box-flex: 0;
  856. -ms-flex: 0 0 66.66667%;
  857. flex: 0 0 66.66667%;
  858. max-width: 66.66667%;
  859. }
  860. .col-lg-9 {
  861. -webkit-box-flex: 0;
  862. -ms-flex: 0 0 75%;
  863. flex: 0 0 75%;
  864. max-width: 75%;
  865. }
  866. .col-lg-10 {
  867. -webkit-box-flex: 0;
  868. -ms-flex: 0 0 83.33333%;
  869. flex: 0 0 83.33333%;
  870. max-width: 83.33333%;
  871. }
  872. .col-lg-11 {
  873. -webkit-box-flex: 0;
  874. -ms-flex: 0 0 91.66667%;
  875. flex: 0 0 91.66667%;
  876. max-width: 91.66667%;
  877. }
  878. .col-lg-12 {
  879. -webkit-box-flex: 0;
  880. -ms-flex: 0 0 100%;
  881. flex: 0 0 100%;
  882. max-width: 100%;
  883. }
  884. }
  885. @media (min-width: 1200px) {
  886. .col-xl {
  887. -ms-flex-preferred-size: 0;
  888. flex-basis: 0;
  889. -webkit-box-flex: 1;
  890. -ms-flex-positive: 1;
  891. flex-grow: 1;
  892. max-width: 100%;
  893. }
  894. .col-xl-1 {
  895. -webkit-box-flex: 0;
  896. -ms-flex: 0 0 8.33333%;
  897. flex: 0 0 8.33333%;
  898. max-width: 8.33333%;
  899. }
  900. .col-xl-2 {
  901. -webkit-box-flex: 0;
  902. -ms-flex: 0 0 16.66667%;
  903. flex: 0 0 16.66667%;
  904. max-width: 16.66667%;
  905. }
  906. .col-xl-3 {
  907. -webkit-box-flex: 0;
  908. -ms-flex: 0 0 25%;
  909. flex: 0 0 25%;
  910. max-width: 25%;
  911. }
  912. .col-xl-4 {
  913. -webkit-box-flex: 0;
  914. -ms-flex: 0 0 33.33333%;
  915. flex: 0 0 33.33333%;
  916. max-width: 33.33333%;
  917. }
  918. .col-xl-5 {
  919. -webkit-box-flex: 0;
  920. -ms-flex: 0 0 41.66667%;
  921. flex: 0 0 41.66667%;
  922. max-width: 41.66667%;
  923. }
  924. .col-xl-6 {
  925. -webkit-box-flex: 0;
  926. -ms-flex: 0 0 50%;
  927. flex: 0 0 50%;
  928. max-width: 50%;
  929. }
  930. .col-xl-7 {
  931. -webkit-box-flex: 0;
  932. -ms-flex: 0 0 58.33333%;
  933. flex: 0 0 58.33333%;
  934. max-width: 58.33333%;
  935. }
  936. .col-xl-8 {
  937. -webkit-box-flex: 0;
  938. -ms-flex: 0 0 66.66667%;
  939. flex: 0 0 66.66667%;
  940. max-width: 66.66667%;
  941. }
  942. .col-xl-9 {
  943. -webkit-box-flex: 0;
  944. -ms-flex: 0 0 75%;
  945. flex: 0 0 75%;
  946. max-width: 75%;
  947. }
  948. .col-xl-10 {
  949. -webkit-box-flex: 0;
  950. -ms-flex: 0 0 83.33333%;
  951. flex: 0 0 83.33333%;
  952. max-width: 83.33333%;
  953. }
  954. .col-xl-11 {
  955. -webkit-box-flex: 0;
  956. -ms-flex: 0 0 91.66667%;
  957. flex: 0 0 91.66667%;
  958. max-width: 91.66667%;
  959. }
  960. .col-xl-12 {
  961. -webkit-box-flex: 0;
  962. -ms-flex: 0 0 100%;
  963. flex: 0 0 100%;
  964. max-width: 100%;
  965. }
  966. }
  967. table {
  968. width: 100%;
  969. margin-bottom: 1rem;
  970. }
  971. table th,
  972. table td {
  973. padding: .3rem;
  974. vertical-align: top;
  975. }
  976. .form-row {
  977. display: -webkit-box;
  978. display: -ms-flexbox;
  979. display: flex;
  980. -ms-flex-wrap: wrap;
  981. flex-wrap: wrap;
  982. margin-right: -5px;
  983. margin-left: -5px;
  984. }
  985. @media all {
  986. table th,
  987. table td {
  988. border: 1px solid #343a40;
  989. }
  990. }
  991. table thead th {
  992. vertical-align: bottom;
  993. }
  994. .card {
  995. position: relative;
  996. display: -webkit-box;
  997. display: -ms-flexbox;
  998. display: flex;
  999. -webkit-box-orient: vertical;
  1000. -webkit-box-direction: normal;
  1001. -ms-flex-direction: column;
  1002. flex-direction: column;
  1003. min-width: 0;
  1004. word-wrap: break-word;
  1005. background-color: #fff;
  1006. background-clip: border-box;
  1007. border: 1px solid rgba(0, 0, 0, 0.125);
  1008. }
  1009. @media all {
  1010. table thead th {
  1011. border-bottom: 2px solid #343a40;
  1012. }
  1013. }
  1014. .card-body {
  1015. -webkit-box-flex: 1;
  1016. -ms-flex: 1 1 auto;
  1017. flex: 1 1 auto;
  1018. padding: 1rem 1rem;
  1019. }
  1020. @media all {
  1021. table tbody + tbody {
  1022. border-top: 2px solid #343a40;
  1023. }
  1024. }
  1025. .form-row {
  1026. display: -webkit-box;
  1027. display: -ms-flexbox;
  1028. display: flex;
  1029. -ms-flex-wrap: wrap;
  1030. flex-wrap: wrap;
  1031. margin-right: -5px;
  1032. margin-left: -5px;
  1033. }
  1034. .form-row > .col,
  1035. .form-row > [class*="col-"] {
  1036. padding-right: 5px;
  1037. padding-left: 5px;
  1038. }
  1039. .btn {
  1040. display: inline-block;
  1041. font-weight: 400;
  1042. color: #212529;
  1043. text-align: center;
  1044. vertical-align: middle;
  1045. cursor: pointer;
  1046. -webkit-user-select: none;
  1047. -moz-user-select: none;
  1048. -ms-user-select: none;
  1049. user-select: none;
  1050. background: transparent;
  1051. border: 1px solid transparent;
  1052. padding: .375rem .75rem;
  1053. font-size: 1rem;
  1054. line-height: 1.5;
  1055. border-radius: .25rem;
  1056. }
  1057. .btn:hover {
  1058. color: #212529;
  1059. text-decoration: none;
  1060. }
  1061. .btn:focus,
  1062. .btn.focus {
  1063. outline: 0;
  1064. -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
  1065. box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
  1066. }
  1067. .btn.disabled,
  1068. .btn:disabled {
  1069. opacity: .65;
  1070. }
  1071. a.btn.disabled,
  1072. fieldset:disabled a.btn {
  1073. pointer-events: none;
  1074. }
  1075. .btn-light {
  1076. color: #212529;
  1077. border-color: #dee2e6;
  1078. background: #dee2e6;
  1079. }
  1080. .btn-light:hover {
  1081. color: #212529;
  1082. border-color: #c1c9d0;
  1083. background: #c8cfd6;
  1084. }
  1085. .btn-light:focus,
  1086. .btn-light.focus {
  1087. color: #212529;
  1088. border-color: #c1c9d0;
  1089. background: #c8cfd6;
  1090. -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 198, 202, 0.5);
  1091. box-shadow: 0 0 0 0.2rem rgba(194, 198, 202, 0.5);
  1092. }
  1093. .btn-light.disabled,
  1094. .btn-light:disabled {
  1095. color: #212529;
  1096. background: #dee2e6;
  1097. border-color: #dee2e6;
  1098. }
  1099. .btn-light:not(:disabled):not(.disabled):active,
  1100. .btn-light:not(:disabled):not(.disabled).active,
  1101. .show > .btn-light.dropdown-toggle {
  1102. color: #212529;
  1103. background: #c1c9d0;
  1104. border-color: #bac2cb;
  1105. }
  1106. .btn-light:not(:disabled):not(.disabled):active:focus,
  1107. .btn-light:not(:disabled):not(.disabled).active:focus,
  1108. .show > .btn-light.dropdown-toggle:focus {
  1109. -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 198, 202, 0.5);
  1110. box-shadow: 0 0 0 0.2rem rgba(194, 198, 202, 0.5);
  1111. }
  1112. .nav {
  1113. display: -webkit-box;
  1114. display: -ms-flexbox;
  1115. display: flex;
  1116. -ms-flex-wrap: wrap;
  1117. flex-wrap: wrap;
  1118. padding-left: 0;
  1119. margin-bottom: 0;
  1120. list-style: none;
  1121. }
  1122. .card {
  1123. position: relative;
  1124. display: -webkit-box;
  1125. display: -ms-flexbox;
  1126. display: flex;
  1127. -webkit-box-orient: vertical;
  1128. -webkit-box-direction: normal;
  1129. -ms-flex-direction: column;
  1130. flex-direction: column;
  1131. min-width: 0;
  1132. word-wrap: break-word;
  1133. background-color: #fff;
  1134. background-clip: border-box;
  1135. border: 1px solid rgba(0, 0, 0, 0.125);
  1136. }
  1137. .card > .list-group {
  1138. border-top: inherit;
  1139. border-bottom: inherit;
  1140. }
  1141. .card > .list-group:first-child {
  1142. border-top-width: 0;
  1143. border-top-left-radius: calc(0.25rem - 1px);
  1144. border-top-right-radius: calc(0.25rem - 1px);
  1145. }
  1146. .card > .list-group:last-child {
  1147. border-bottom-width: 0;
  1148. border-bottom-right-radius: calc(0.25rem - 1px);
  1149. border-bottom-left-radius: calc(0.25rem - 1px);
  1150. }
  1151. .card > .card-header + .list-group,
  1152. .card > .list-group + .card-footer {
  1153. border-top: 0;
  1154. }
  1155. .card-body {
  1156. -webkit-box-flex: 1;
  1157. -ms-flex: 1 1 auto;
  1158. flex: 1 1 auto;
  1159. padding: 1rem 1rem;
  1160. }
  1161. .card-title {
  1162. margin-top: 0.5rem;
  1163. margin-bottom: 0.5rem;
  1164. font-size: 1.3rem;
  1165. font-weight: 600;
  1166. }
  1167. .card-subtitle {
  1168. margin-top: -0.25rem;
  1169. margin-bottom: 0;
  1170. }
  1171. .card-text {
  1172. color: grey;
  1173. }
  1174. .card-text:last-child {
  1175. margin-bottom: 0;
  1176. }
  1177. .card-link:hover {
  1178. text-decoration: none;
  1179. }
  1180. .card-link + .card-link {
  1181. margin-left: 1rem;
  1182. }
  1183. .card-header {
  1184. padding: 0.5rem 1rem;
  1185. margin-bottom: 0;
  1186. background-color: rgba(0, 0, 0, 0.03);
  1187. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  1188. }
  1189. .card-footer {
  1190. padding: 0.5rem 1rem;
  1191. background-color: rgba(0, 0, 0, 0.03);
  1192. border-top: 1px solid rgba(0, 0, 0, 0.125);
  1193. }
  1194. .card-header-tabs {
  1195. margin-right: -0.5rem;
  1196. margin-bottom: -0.5rem;
  1197. margin-left: -0.5rem;
  1198. border-bottom: 0;
  1199. }
  1200. .card-header-pills {
  1201. margin-right: -0.5rem;
  1202. margin-left: -0.5rem;
  1203. }
  1204. .card-img-overlay {
  1205. position: absolute;
  1206. top: 0;
  1207. right: 0;
  1208. bottom: 0;
  1209. left: 0;
  1210. padding: 1rem;
  1211. }
  1212. .card-img,
  1213. .card-img-top,
  1214. .card-img-bottom {
  1215. width: 100%;
  1216. }
  1217. .pagination {
  1218. display: -webkit-box;
  1219. display: -ms-flexbox;
  1220. display: flex;
  1221. padding-left: 0;
  1222. list-style: none;
  1223. border-radius: .25rem;
  1224. }
  1225. .page-link {
  1226. position: relative;
  1227. display: block;
  1228. padding: .5rem .75rem;
  1229. margin-left: -1px;
  1230. line-height: 1.25;
  1231. }
  1232. @media all {
  1233. .page-link {
  1234. color: #f8f9fa;
  1235. background: #212529;
  1236. border: 1px solid #495057;
  1237. }
  1238. }
  1239. .page-link:hover {
  1240. z-index: 2;
  1241. text-decoration: none;
  1242. }
  1243. @media all {
  1244. .page-link:hover {
  1245. color: #cbd3da;
  1246. background: #343a40;
  1247. border-color: #495057;
  1248. }
  1249. }
  1250. .page-link:focus {
  1251. z-index: 3;
  1252. outline: 0;
  1253. -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
  1254. box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
  1255. }
  1256. .page-item:first-child .page-link {
  1257. margin-left: 0;
  1258. border-top-left-radius: .25rem;
  1259. border-bottom-left-radius: .25rem;
  1260. }
  1261. .page-item:last-child .page-link {
  1262. border-top-right-radius: .25rem;
  1263. border-bottom-right-radius: .25rem;
  1264. }
  1265. .page-item.active .page-link {
  1266. z-index: 3;
  1267. }
  1268. @media all {
  1269. .page-item.active .page-link {
  1270. color: #212529;
  1271. background: #0084b4;
  1272. border-color: #0084b4;
  1273. }
  1274. }
  1275. .page-item.disabled .page-link {
  1276. pointer-events: none;
  1277. cursor: auto;
  1278. }
  1279. @media all {
  1280. .page-item.disabled .page-link {
  1281. color: #ced4da;
  1282. background: #212529;
  1283. border-color: #495057;
  1284. }
  1285. }
  1286. header {
  1287. width: 100%;
  1288. z-index: 99999;
  1289. top: 0px;
  1290. }
  1291. @media all {
  1292. header.full-width {
  1293. background: #212529;
  1294. }
  1295. }
  1296. header.fixed {
  1297. position: fixed;
  1298. }
  1299. .mega-menu .header {
  1300. -webkit-box-flex: 0;
  1301. -ms-flex: 0 0 100%;
  1302. flex: 0 0 100%;
  1303. max-width: 100%;
  1304. -webkit-box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  1305. box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  1306. }
  1307. .clearfix::after {
  1308. display: block;
  1309. clear: both;
  1310. content: "";
  1311. }
  1312. .blog-content {
  1313. color: #808080;
  1314. }
  1315. .d-flex {
  1316. display: -webkit-box !important;
  1317. display: -ms-flexbox !important;
  1318. display: flex !important;
  1319. }
  1320. .d-inline-flex {
  1321. display: -webkit-inline-box !important;
  1322. display: -ms-inline-flexbox !important;
  1323. display: inline-flex !important;
  1324. }
  1325. .text-start {
  1326. text-align: left !important;
  1327. }
  1328. .text-end {
  1329. text-align: right !important;
  1330. }
  1331. .text-center {
  1332. text-align: center !important;
  1333. }
  1334. .post-title {
  1335. text-align: center;
  1336. }
  1337. .mt-1 {
  1338. margin-top: 0.25rem !important;
  1339. }
  1340. .mt-2 {
  1341. margin-top: 0.5rem !important;
  1342. }
  1343. .mt-3 {
  1344. margin-top: 1rem !important;
  1345. }
  1346. .mt-4 {
  1347. margin-top: 1.5rem !important;
  1348. }
  1349. .mt-5 {
  1350. margin-top: 3rem !important;
  1351. }
  1352. .mb-1 {
  1353. margin-bottom: 0.25rem !important;
  1354. }
  1355. .mb-2 {
  1356. margin-bottom: 0.5rem !important;
  1357. }
  1358. .mb-3 {
  1359. margin-bottom: 1rem !important;
  1360. }
  1361. .mb-4 {
  1362. margin-bottom: 1.5rem !important;
  1363. }
  1364. .mb-5 {
  1365. margin-bottom: 3rem !important;
  1366. }
  1367. .ms-auto {
  1368. margin-left: auto !important;
  1369. }
  1370. .ms-1 {
  1371. margin-left: 0.25rem !important;
  1372. }
  1373. .ms-2 {
  1374. margin-left: 0.5rem !important;
  1375. }
  1376. .ms-3 {
  1377. margin-left: 1rem !important;
  1378. }
  1379. .ms-4 {
  1380. margin-left: 1.5rem !important;
  1381. }
  1382. .ms-5 {
  1383. margin-left: 3rem !important;
  1384. }
  1385. .me-auto {
  1386. margin-right: auto !important;
  1387. }
  1388. .me-1 {
  1389. margin-right: 0.25rem !important;
  1390. }
  1391. .me-2 {
  1392. margin-right: 0.5rem !important;
  1393. }
  1394. .me-3 {
  1395. margin-right: 1rem !important;
  1396. }
  1397. .me-4 {
  1398. margin-right: 1.5rem !important;
  1399. }
  1400. .me-5 {
  1401. margin-right: 3rem !important;
  1402. }
  1403. .mx-2 {
  1404. margin-right: 0.5rem !important;
  1405. margin-left: 0.5rem !important;
  1406. }
  1407. .p-1 {
  1408. padding: 0.25rem !important;
  1409. }
  1410. .p-2 {
  1411. padding: 0.5rem !important;
  1412. }
  1413. .p-3 {
  1414. padding: 1rem !important;
  1415. }
  1416. .p-4 {
  1417. padding: 1.5rem !important;
  1418. }
  1419. .p-5 {
  1420. padding: 3rem !important;
  1421. }
  1422. .mx-auto {
  1423. margin-right: auto !important;
  1424. margin-left: auto !important;
  1425. }
  1426. .row {
  1427. --bs-gutter-x: 1.5rem;
  1428. --bs-gutter-y: 1rem;
  1429. display: -webkit-box;
  1430. display: -ms-flexbox;
  1431. display: flex;
  1432. -ms-flex-wrap: wrap;
  1433. flex-wrap: wrap;
  1434. margin-top: calc(var(--bs-gutter-y) * -1);
  1435. margin-right: calc(var(--bs-gutter-x) / -2);
  1436. margin-left: calc(var(--bs-gutter-x) / -2);
  1437. }
  1438. .row > * {
  1439. -ms-flex-negative: 0;
  1440. flex-shrink: 0;
  1441. width: 100%;
  1442. max-width: 100%;
  1443. padding-right: calc(var(--bs-gutter-x) / 2);
  1444. padding-left: calc(var(--bs-gutter-x) / 2);
  1445. margin-top: var(--bs-gutter-y);
  1446. }
  1447. .col {
  1448. -webkit-box-flex: 100%;
  1449. -ms-flex: 100%;
  1450. flex: 100%;
  1451. }
  1452. .w-50 {
  1453. width: 50% !important;
  1454. }
  1455. .h-100 {
  1456. height: 100% !important;
  1457. }
  1458. .row-cols-auto > * {
  1459. -webkit-box-flex: 0;
  1460. -ms-flex: 0 0 auto;
  1461. flex: 0 0 auto;
  1462. width: auto;
  1463. }
  1464. .row-cols-1 > * {
  1465. -webkit-box-flex: 0;
  1466. -ms-flex: 0 0 auto;
  1467. flex: 0 0 auto;
  1468. width: 100%;
  1469. }
  1470. .row-cols-2 > * {
  1471. -webkit-box-flex: 0;
  1472. -ms-flex: 0 0 auto;
  1473. flex: 0 0 auto;
  1474. width: 50%;
  1475. }
  1476. .row-cols-3 > * {
  1477. -webkit-box-flex: 0;
  1478. -ms-flex: 0 0 auto;
  1479. flex: 0 0 auto;
  1480. width: 33.3333333333%;
  1481. }
  1482. .row-cols-4 > * {
  1483. -webkit-box-flex: 0;
  1484. -ms-flex: 0 0 auto;
  1485. flex: 0 0 auto;
  1486. width: 25%;
  1487. }
  1488. .row-cols-5 > * {
  1489. -webkit-box-flex: 0;
  1490. -ms-flex: 0 0 auto;
  1491. flex: 0 0 auto;
  1492. width: 20%;
  1493. }
  1494. .row-cols-6 > * {
  1495. -webkit-box-flex: 0;
  1496. -ms-flex: 0 0 auto;
  1497. flex: 0 0 auto;
  1498. width: 16.6666666667%;
  1499. }
  1500. @media (min-width: 576px) {
  1501. .col-sm {
  1502. -webkit-box-flex: 1;
  1503. -ms-flex: 1 0 0%;
  1504. flex: 1 0 0%;
  1505. }
  1506. .row-cols-sm-auto > * {
  1507. -webkit-box-flex: 0;
  1508. -ms-flex: 0 0 auto;
  1509. flex: 0 0 auto;
  1510. width: auto;
  1511. }
  1512. .row-cols-sm-1 > * {
  1513. -webkit-box-flex: 0;
  1514. -ms-flex: 0 0 auto;
  1515. flex: 0 0 auto;
  1516. width: 100%;
  1517. }
  1518. .row-cols-sm-2 > * {
  1519. -webkit-box-flex: 0;
  1520. -ms-flex: 0 0 auto;
  1521. flex: 0 0 auto;
  1522. width: 50%;
  1523. }
  1524. .row-cols-sm-3 > * {
  1525. -webkit-box-flex: 0;
  1526. -ms-flex: 0 0 auto;
  1527. flex: 0 0 auto;
  1528. width: 33.3333333333%;
  1529. }
  1530. .row-cols-sm-4 > * {
  1531. -webkit-box-flex: 0;
  1532. -ms-flex: 0 0 auto;
  1533. flex: 0 0 auto;
  1534. width: 25%;
  1535. }
  1536. .row-cols-sm-5 > * {
  1537. -webkit-box-flex: 0;
  1538. -ms-flex: 0 0 auto;
  1539. flex: 0 0 auto;
  1540. width: 20%;
  1541. }
  1542. .row-cols-sm-6 > * {
  1543. -webkit-box-flex: 0;
  1544. -ms-flex: 0 0 auto;
  1545. flex: 0 0 auto;
  1546. width: 16.6666666667%;
  1547. }
  1548. .p-sm-1 {
  1549. padding: 0.25rem !important;
  1550. }
  1551. .p-sm-2 {
  1552. padding: 0.5rem !important;
  1553. }
  1554. .p-sm-3 {
  1555. padding: 1rem !important;
  1556. }
  1557. .p-sm-4 {
  1558. padding: 1.5rem !important;
  1559. }
  1560. .p-sm-5 {
  1561. padding: 3rem !important;
  1562. }
  1563. }
  1564. @media (min-width: 992px) {
  1565. .col-lg {
  1566. -webkit-box-flex: 100%;
  1567. -ms-flex: 100%;
  1568. flex: 100%;
  1569. }
  1570. .row-cols-lg-auto > * {
  1571. -webkit-box-flex: 0;
  1572. -ms-flex: 0 0 auto;
  1573. flex: 0 0 auto;
  1574. width: auto;
  1575. }
  1576. .row-cols-lg-1 > * {
  1577. -webkit-box-flex: 0;
  1578. -ms-flex: 0 0 auto;
  1579. flex: 0 0 auto;
  1580. width: 100%;
  1581. }
  1582. .row-cols-lg-2 > * {
  1583. -webkit-box-flex: 0;
  1584. -ms-flex: 0 0 auto;
  1585. flex: 0 0 auto;
  1586. width: 50%;
  1587. }
  1588. .row-cols-lg-3 > * {
  1589. -webkit-box-flex: 0;
  1590. -ms-flex: 0 0 auto;
  1591. flex: 0 0 auto;
  1592. width: 33.3333333333%;
  1593. }
  1594. .row-cols-lg-4 > * {
  1595. -webkit-box-flex: 0;
  1596. -ms-flex: 0 0 auto;
  1597. flex: 0 0 auto;
  1598. width: 25%;
  1599. }
  1600. .row-cols-lg-5 > * {
  1601. -webkit-box-flex: 0;
  1602. -ms-flex: 0 0 auto;
  1603. flex: 0 0 auto;
  1604. width: 20%;
  1605. }
  1606. .row-cols-lg-6 > * {
  1607. -webkit-box-flex: 0;
  1608. -ms-flex: 0 0 auto;
  1609. flex: 0 0 auto;
  1610. width: 16.6666666667%;
  1611. }
  1612. }
  1613. @media (min-width: 1400px) {
  1614. .col-xxl {
  1615. -webkit-box-flex: 1;
  1616. -ms-flex: 1 0 0%;
  1617. flex: 1 0 0%;
  1618. }
  1619. .row-cols-xxl-auto > * {
  1620. -webkit-box-flex: 0;
  1621. -ms-flex: 0 0 auto;
  1622. flex: 0 0 auto;
  1623. width: auto;
  1624. }
  1625. .row-cols-xxl-1 > * {
  1626. -webkit-box-flex: 0;
  1627. -ms-flex: 0 0 auto;
  1628. flex: 0 0 auto;
  1629. width: 100%;
  1630. }
  1631. .row-cols-xxl-2 > * {
  1632. -webkit-box-flex: 0;
  1633. -ms-flex: 0 0 auto;
  1634. flex: 0 0 auto;
  1635. width: 50%;
  1636. }
  1637. .row-cols-xxl-3 > * {
  1638. -webkit-box-flex: 0;
  1639. -ms-flex: 0 0 auto;
  1640. flex: 0 0 auto;
  1641. width: 33.3333333333%;
  1642. }
  1643. .row-cols-xxl-4 > * {
  1644. -webkit-box-flex: 0;
  1645. -ms-flex: 0 0 auto;
  1646. flex: 0 0 auto;
  1647. width: 25%;
  1648. }
  1649. .row-cols-xxl-5 > * {
  1650. -webkit-box-flex: 0;
  1651. -ms-flex: 0 0 auto;
  1652. flex: 0 0 auto;
  1653. width: 20%;
  1654. }
  1655. .row-cols-xxl-6 > * {
  1656. -webkit-box-flex: 0;
  1657. -ms-flex: 0 0 auto;
  1658. flex: 0 0 auto;
  1659. width: 16.6666666667%;
  1660. }
  1661. }
  1662. .toggle,
  1663. [id^=drop] {
  1664. display: none;
  1665. }
  1666. /* Giving a background-color to the nav container. */
  1667. nav {
  1668. margin: 0;
  1669. padding: 0;
  1670. background-color: #FFFFFF;
  1671. /* Since we'll have the "ul li" "float:left"
  1672. * we need to add a clear after the container. */
  1673. /* Removing padding, margin and "list-style" from the "ul",
  1674. * and adding "position:reltive" */
  1675. /* Styling the links */
  1676. }
  1677. nav:after {
  1678. content: "";
  1679. display: table;
  1680. clear: both;
  1681. }
  1682. nav ul {
  1683. float: right;
  1684. padding: 0;
  1685. margin: 0;
  1686. list-style: none;
  1687. position: relative;
  1688. /* Hide Dropdowns by Default
  1689. * and giving it a position of absolute */
  1690. }
  1691. nav ul li {
  1692. margin: 0px;
  1693. float: left;
  1694. background-color: #FFFFFF;
  1695. /* Display Dropdowns on Hover */
  1696. }
  1697. nav ul li:hover > ul {
  1698. display: inherit;
  1699. }
  1700. nav ul ul {
  1701. display: none;
  1702. position: absolute;
  1703. /* has to be the same number as the "line-height" of "nav a" */
  1704. /* top: 60px; */
  1705. top: 50px;
  1706. /* Fisrt Tier Dropdown */
  1707. /* Second, Third and more Tiers
  1708. * We move the 2nd and 3rd etc tier dropdowns to the left
  1709. * by the amount of the width of the first tier.
  1710. */
  1711. }
  1712. nav ul ul li {
  1713. width: 170px;
  1714. float: none;
  1715. display: list-item;
  1716. position: relative;
  1717. }
  1718. nav ul ul ul li {
  1719. position: relative;
  1720. top: -60px;
  1721. /* has to be the same number as the "width" of "nav ul ul li" */
  1722. left: 170px;
  1723. }
  1724. nav a {
  1725. display: block;
  1726. padding: 14px 20px;
  1727. color: #656565;
  1728. font-size: 12pt;
  1729. font-weight: 400;
  1730. text-decoration: none;
  1731. }
  1732. nav a:hover {
  1733. background-color: #78AD42;
  1734. color: #fff;
  1735. text-decoration: none;
  1736. }
  1737. /* Change ' +' in order to change the Dropdown symbol */
  1738. li > a:after {
  1739. content: ' +';
  1740. }
  1741. li > a:only-child:after {
  1742. content: '';
  1743. }
  1744. /* Media Queries
  1745. --------------------------------------------- */
  1746. @media all and (max-width: 768px) {
  1747. nav {
  1748. margin: 0;
  1749. }
  1750. /* Hide the navigation menu by default */
  1751. /* Also hide the */
  1752. .toggle + a,
  1753. .menu {
  1754. display: none;
  1755. }
  1756. /* Stylinf the toggle lable */
  1757. .toggle {
  1758. display: block;
  1759. /* background-color: #FFFFFF; */
  1760. padding: 14px 20px;
  1761. color: #656565;
  1762. font-size: 17px;
  1763. text-decoration: none;
  1764. border: none;
  1765. }
  1766. .toggle:hover {
  1767. /* background-color: #000000; */
  1768. color: #78AD42;
  1769. }
  1770. /* Display Dropdown when clicked on Parent Lable */
  1771. [id^=drop]:checked + ul {
  1772. display: block;
  1773. }
  1774. /* Change menu item's width to 100% */
  1775. nav ul li {
  1776. display: block;
  1777. width: 100%;
  1778. font-weight: 600;
  1779. }
  1780. nav a:hover,
  1781. nav ul ul ul a {
  1782. background-color: #78AD42;
  1783. }
  1784. nav ul li ul li .toggle,
  1785. nav ul ul a {
  1786. background-color: #212121;
  1787. }
  1788. nav ul li ul li .toggle,
  1789. nav ul ul a,
  1790. nav ul ul ul a {
  1791. padding: 14px 20px;
  1792. color: #FFF;
  1793. font-size: 17px;
  1794. }
  1795. /* Hide Dropdowns by Default */
  1796. nav ul ul {
  1797. float: none;
  1798. position: static;
  1799. color: #ffffff;
  1800. /* has to be the same number as the "line-height" of "nav a" */
  1801. }
  1802. /* Hide menus on hover */
  1803. nav ul ul li:hover > ul,
  1804. nav ul li:hover > ul {
  1805. display: none;
  1806. }
  1807. /* Fisrt Tier Dropdown */
  1808. nav ul ul li {
  1809. display: block;
  1810. width: 100%;
  1811. }
  1812. nav ul ul ul li {
  1813. position: static;
  1814. /* has to be the same number as the "width" of "nav ul ul li" */
  1815. }
  1816. }
  1817. @media all and (max-width: 330px) {
  1818. nav ul li {
  1819. display: block;
  1820. width: 94%;
  1821. }
  1822. }
  1823. .widget {
  1824. margin-bottom: 30px;
  1825. padding-bottom: 35px;
  1826. }
  1827. .widget-title {
  1828. margin-bottom: 15px;
  1829. padding-bottom: 10px;
  1830. font-size: 16px;
  1831. color: #333;
  1832. font-weight: 500;
  1833. border-bottom: 1px solid #dedede;
  1834. }
  1835. .widget.widget-latest-post .media .media-object {
  1836. width: 100px;
  1837. height: auto;
  1838. }
  1839. .widget.widget-latest-post .media .media-heading a {
  1840. color: #000;
  1841. font-size: 16px;
  1842. }
  1843. .widget.widget-latest-post .media p {
  1844. font-size: 12px;
  1845. color: #808080;
  1846. }
  1847. .widget.widget-category ul li {
  1848. margin-bottom: 10px;
  1849. }
  1850. .widget.widget-category ul li a {
  1851. color: #837f7e;
  1852. -webkit-transition: all 0.3s ease;
  1853. transition: all 0.3s ease;
  1854. }
  1855. .widget.widget-category ul li a:before {
  1856. padding-right: 10px;
  1857. }
  1858. .widget.widget-category ul li a:hover {
  1859. color: #655E7A;
  1860. padding-left: 5px;
  1861. }
  1862. .widget.widget-tag ul li {
  1863. margin-bottom: 10px;
  1864. display: inline-block;
  1865. margin-right: 5px;
  1866. }
  1867. .widget.widget-tag ul li a {
  1868. color: #837f7e;
  1869. display: inline-block;
  1870. padding: 8px 15px;
  1871. border: 1px solid #dedede;
  1872. border-radius: 30px;
  1873. font-size: 14px;
  1874. -webkit-transition: all 0.3s ease;
  1875. transition: all 0.3s ease;
  1876. }
  1877. .widget.widget-tag ul li a:hover {
  1878. color: #fff;
  1879. background: #655E7A;
  1880. border: 1px solid #655E7A;
  1881. }
  1882. .list-group {
  1883. display: -webkit-box;
  1884. display: -ms-flexbox;
  1885. display: flex;
  1886. -webkit-box-orient: vertical;
  1887. -webkit-box-direction: normal;
  1888. -ms-flex-direction: column;
  1889. flex-direction: column;
  1890. padding-left: 0;
  1891. margin-bottom: 0;
  1892. border-radius: 0.25rem;
  1893. }
  1894. .list-group-item {
  1895. position: relative;
  1896. display: block;
  1897. padding: 0.5rem 1rem;
  1898. text-decoration: none;
  1899. background-color: #fff;
  1900. border: 1px solid rgba(0, 0, 0, 0.125);
  1901. }
  1902. .list-group-item.active {
  1903. z-index: 2;
  1904. color: #fff;
  1905. background-color: #78AD42;
  1906. border-color: #78AD42;
  1907. }
  1908. .d-none {
  1909. display: none !important;
  1910. }
  1911. .d-block {
  1912. display: block !important;
  1913. }
  1914. @media (min-width: 576px) {
  1915. .d-sm-block {
  1916. display: block !important;
  1917. }
  1918. }
  1919. @media (min-width: 768px) {
  1920. .d-md-block {
  1921. display: block !important;
  1922. }
  1923. .d-md-none {
  1924. display: none !important;
  1925. }
  1926. }
  1927. @media (min-width: 992px) {
  1928. .d-lg-none {
  1929. display: none !important;
  1930. }
  1931. }
  1932. input[type="radio"][class="style"]:checked + label {
  1933. color: white;
  1934. background: #6666ff;
  1935. }
  1936. .align-items-center {
  1937. -webkit-box-align: center !important;
  1938. -ms-flex-align: center !important;
  1939. align-items: center !important;
  1940. }
  1941. .order-1 {
  1942. -webkit-box-ordinal-group: 2 !important;
  1943. -ms-flex-order: 1 !important;
  1944. order: 1 !important;
  1945. }
  1946. .order-2 {
  1947. -webkit-box-ordinal-group: 3 !important;
  1948. -ms-flex-order: 2 !important;
  1949. order: 2 !important;
  1950. }
  1951. .title {
  1952. font-size: 1.3rem;
  1953. }
  1954. .footer {
  1955. color: #656565;
  1956. }
  1957. .footer a {
  1958. color: #656565;
  1959. text-decoration: none;
  1960. }
  1961. .footer a:hover {
  1962. color: #78AD42;
  1963. }
  1964. .footer h5 {
  1965. color: black;
  1966. font-weight: 600;
  1967. padding-bottom: 15px;
  1968. }
  1969. .footer .link {
  1970. padding-bottom: 20px;
  1971. }
  1972. @media (min-width: 992px) {
  1973. .order-lg-1 {
  1974. -webkit-box-ordinal-group: 2 !important;
  1975. -ms-flex-order: 1 !important;
  1976. order: 1 !important;
  1977. }
  1978. .order-lg-2 {
  1979. -webkit-box-ordinal-group: 3 !important;
  1980. -ms-flex-order: 2 !important;
  1981. order: 2 !important;
  1982. }
  1983. }
  1984. /* Airspace Template SCSS */
  1985. .w-25 {
  1986. width: 25% !important;
  1987. }
  1988. .w-50 {
  1989. width: 50% !important;
  1990. }
  1991. .w-75 {
  1992. width: 75% !important;
  1993. }
  1994. .w-100 {
  1995. width: 100% !important;
  1996. }
  1997. .blank {
  1998. height: 130px;
  1999. width: 100%;
  2000. background-color: white;
  2001. }
  2002. .hero__imgfr {
  2003. margin: 0 9rem;
  2004. -webkit-transform: translateY(-90px);
  2005. transform: translateY(-90px);
  2006. position: relative;
  2007. }
  2008. .hero__stamp {
  2009. position: absolute;
  2010. left: -6rem;
  2011. bottom: -4rem;
  2012. width: 150px;
  2013. }
  2014. @media (max-width: 992px) {
  2015. .hero__stamp {
  2016. width: 120px;
  2017. }
  2018. }
  2019. @media (max-width: 576px) {
  2020. .hero__stamp {
  2021. transform: translateX(-50%);
  2022. left: 50%;
  2023. bottom: -3rem;
  2024. }
  2025. }
  2026. .hero__underline {
  2027. width: 50%;
  2028. height: 6px;
  2029. background-color: transparent;
  2030. border: none;
  2031. border-top: 2px solid black;
  2032. border-bottom: 2px solid black;
  2033. margin: 2.5rem auto;
  2034. }
  2035. .hero__h2 {
  2036. margin: 0 12rem;
  2037. font-size: 3rem;
  2038. color: black;
  2039. margin-top: -2rem;
  2040. }
  2041. .hero__p {
  2042. color: black;
  2043. margin: 0 12rem;
  2044. }
  2045. .text-dark {
  2046. color: black;
  2047. }
  2048. .footer {
  2049. background-color: #F0F0F0;
  2050. padding: 3rem;
  2051. }
  2052. .footer .row {
  2053. display: -webkit-box;
  2054. display: -ms-flexbox;
  2055. display: flex;
  2056. -webkit-box-align: center;
  2057. -ms-flex-align: center;
  2058. align-items: center;
  2059. }
  2060. .footer .footer-aigirl {
  2061. font-weight: 600;
  2062. font-size: 2rem;
  2063. margin-top: 1rem;
  2064. margin-bottom: 2.5rem;
  2065. }
  2066. .footer .footer-follow {
  2067. font-size: 1.6rem;
  2068. margin-bottom: 1rem;
  2069. }
  2070. .footer .footer-socials a {
  2071. margin-right: 5px;
  2072. }
  2073. @media (max-width: 992px) {
  2074. .hero__imgfr {
  2075. margin: 0 3rem;
  2076. }
  2077. }
  2078. @media (max-width: 576px) {
  2079. .hero__imgfr {
  2080. margin: 0 0rem;
  2081. }
  2082. }
  2083. @media (max-width: 992px) {
  2084. .hero__h2 {
  2085. margin: 0rem;
  2086. }
  2087. }
  2088. @media (max-width: 576px) {
  2089. .hero__h2 {
  2090. font-size: 2rem;
  2091. }
  2092. }
  2093. @media (max-width: 992px) {
  2094. .hero__p {
  2095. margin: 0rem;
  2096. }
  2097. }
  2098. .logos__img {
  2099. width: 100%;
  2100. height: 12rem;
  2101. background-size: contain;
  2102. background-repeat: no-repeat;
  2103. background-position: center;
  2104. }
  2105. .cards .card {
  2106. height: 75vh;
  2107. max-height: 80vh;
  2108. }
  2109. @media (max-width: 576px) {
  2110. .cards .card {
  2111. height: 80vh;
  2112. max-height: 85vh;
  2113. }
  2114. }
  2115. .cards .card__imgfr {
  2116. position: relative;
  2117. cursor: pointer;
  2118. }
  2119. .cards .card__play {
  2120. position: absolute;
  2121. left: 50%;
  2122. top: 50%;
  2123. transform: translate(-50%, -50%);
  2124. }
  2125. </style>
  2126. <script async src="https://cdn.ampproject.org/v0.js"></script>
  2127. <script async custom-element="amp-mega-menu" src="https://cdn.ampproject.org/v0/amp-mega-menu-0.1.js"></script>
  2128. <script src="base.js"></script>
  2129. <style amp-boilerplate>
  2130. body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;
  2131. -moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;
  2132. -ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;
  2133. animation:-amp-start 8s steps(1,end) 0s 1 normal both}
  2134. @-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}
  2135. @-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}
  2136. @-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}
  2137. @-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}
  2138. @keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}
  2139. </style><noscript>
  2140. <style amp-boilerplate>
  2141. body{-webkit-animation:none;
  2142. -moz-animation:none;-ms-animation:none;
  2143. animation:none}</style></noscript>
  2144. </head>
  2145. <body>
  2146. <amp-mega-menu height="65" layout="fixed-height">
  2147. <nav class="d-flex align-items-center">
  2148. <span>
  2149. <a href="/" >
  2150. <img src="./imgs/Choozmo cloud logo.png" alt="" width="160">
  2151. </a>
  2152. </span>
  2153. <!-- <ul class="ms-auto">
  2154. <li>
  2155. <a href="https://amp.dev/">Link</a>
  2156. </li>
  2157. <li>
  2158. <a href="https://amp.dev/">Link</a>
  2159. </li>
  2160. </ul> -->
  2161. </nav>
  2162. </amp-mega-menu>
  2163. <main>
  2164. <div class="blank">
  2165. </div>
  2166. <section class="hero pb-5" style="background-color: #f1f5f9;padding-bottom: 3rem;">
  2167. <div class="container">
  2168. <div class="hero__imgfr" >
  2169. <amp-img src="./imgs/hero-img.jpg"
  2170. width="266"
  2171. height="150"
  2172. layout="responsive"
  2173. alt="mountains">
  2174. </amp-img>
  2175. <img src="https://images01.nicepage.com/17/7a/177a0cd3cf8239fd77d0994fde9f6248.png" alt="" class="hero__stamp">
  2176. </div>
  2177. <h2 class="text-center hero__h2">改變世界不難,Choozmo 與您一起立刻行動</h2>
  2178. <p class="hero__p text-center">It doesn’t take tons of time or scary talent to be successful. You’ve already got what it takes.
  2179. Now, you need to tap it. Let’s go!</p>
  2180. <div class="hero__underline">
  2181. </div>
  2182. </div>
  2183. </section>
  2184. <section class="logos" style="background-color: white;padding: 2rem 0;">
  2185. <div class="container">
  2186. <h2 style="margin-top: 0rem;color: black;" class="text-center">基金會夥伴</h2>
  2187. <div class="row justify-content-center" style="margin: auto auto;">
  2188. <div class="col-11" style="margin: 0 auto;">
  2189. <div class="row">
  2190. <div class="col-1 d-none d-md-block"></div>
  2191. <div class="col-6 col-md-2 logos__img" style="background-image: url(./imgs/tzuchi.png);"></div>
  2192. <div class="col-6 col-md-2 logos__img" style="background-image: url(./imgs/guide_dog.png);"></div>
  2193. <div class="col-6 col-md-2 logos__img" style="background-image: url(./imgs/women_rescue.png);"></div>
  2194. <div class="col-6 col-md-2 logos__img" style="background-image: url(./imgs/zhishan.png);"></div>
  2195. <div class="col-6 col-md-2 logos__img" style="background-image: url(./imgs/garden_hope.gif);"></div>
  2196. <div class="col-1 d-none d-md-block"></div>
  2197. </div>
  2198. </div>
  2199. </div>
  2200. </div>
  2201. </section>
  2202. <section class="cards" style="padding: 4rem 0;background-color: #cad7e6;">
  2203. <div class="container">
  2204. <div class="row">
  2205. <div class="col-12 col-md-6 col-lg-4">
  2206. <div class="card text-dark mb-4" style="border: none;">
  2207. <div class="card__imgfr" onclick="window.open('https://www.youtube.com/channel/UC2Qda9PhJWuiMTCZ-j7K_hg')">
  2208. <amp-img src="./imgs/hero-img.jpg"
  2209. width="266"
  2210. height="150"
  2211. layout="responsive"
  2212. alt="mountains"
  2213. class="card-img-top">
  2214. </amp-img>
  2215. <amp-img src="./imgs/play.png"
  2216. width="50"
  2217. height="50"
  2218. alt="mountains"
  2219. class="card__play"
  2220. >
  2221. </amp-img>
  2222. </div>
  2223. <div class="card-body">
  2224. <h5 class="card-title">慈濟基金會</h5>
  2225. <p class="card-text">慈濟慈善工作從弱勢家庭濟助到心靈關懷,包含長期扶困、急難救助、居家關懷及海外慈善;近年來也著
  2226. 重於結合社區力量,增益社區善的機能。慈濟重視的不只是救濟、援助的成效,更在乎啟發人性善的良能。</p>
  2227. <p class="card-text">
  2228. <a href="https://www.tzuchi.org.tw" target="_blank" class="d-flex align-items-center">
  2229. <small class="text-muted me-1">深入瞭解慈濟</small><i class="fas fa-angle-double-right"></i>
  2230. </a>
  2231. </p>
  2232. <a href="https://www.tzuchi.org.tw/%E6%8D%90%E6%AC%BE" class="btn btn-light" target="_blank">捐款去</a>
  2233. </div>
  2234. </div>
  2235. </div>
  2236. <div class="col-12 col-md-6 col-lg-4">
  2237. <div class="card text-dark mb-4" style="border: none;">
  2238. <div class="card__imgfr" onclick="window.open('https://www.youtube.com/channel/UC2Qda9PhJWuiMTCZ-j7K_hg')">
  2239. <amp-img src="./imgs/hero-img.jpg"
  2240. width="266"
  2241. height="150"
  2242. layout="responsive"
  2243. alt="mountains"
  2244. class="card-img-top">
  2245. </amp-img>
  2246. <amp-img src="./imgs/play.png"
  2247. width="50"
  2248. height="50"
  2249. alt="mountains"
  2250. class="card__play"
  2251. >
  2252. </amp-img>
  2253. </div>
  2254. <div class="card-body">
  2255. <h5 class="card-title">台灣導盲犬協會</h5>
  2256. <p class="card-text">協會主要目標是建立並推動導盲犬制度,讓台灣的視障者除了使用白手杖外,也有使用導盲犬的權利。
  2257. 主要工作內容包括導盲犬觀念的推廣、本土導盲犬的培育繁殖、導盲犬的訓練、相關法令推動與宣導,並且將訓練成功的導盲犬,免費提供給視障者。
  2258. </p>
  2259. <p class="card-text">
  2260. <a href="http://www.guidedog.org.tw" target="_blank" class="d-flex align-items-center">
  2261. <small class="text-muted me-1">深入瞭解導盲犬協會</small><i class="fas fa-angle-double-right"></i>
  2262. </a>
  2263. </p>
  2264. <a href="http://www.guidedog.org.tw/donation/donation-1.html" class="btn btn-light" target="_blank">捐款去</a>
  2265. </div>
  2266. </div>
  2267. </div>
  2268. <div class="col-12 col-md-6 col-lg-4">
  2269. <div class="card text-dark mb-4" style="border: none;">
  2270. <div class="card__imgfr" onclick="window.open('https://www.youtube.com/channel/UC2Qda9PhJWuiMTCZ-j7K_hg')">
  2271. <amp-img src="./imgs/hero-img.jpg"
  2272. width="266"
  2273. height="150"
  2274. layout="responsive"
  2275. alt="mountains"
  2276. class="card-img-top">
  2277. </amp-img>
  2278. <amp-img src="./imgs/play.png"
  2279. width="50"
  2280. height="50"
  2281. alt="mountains"
  2282. class="card__play"
  2283. >
  2284. </amp-img>
  2285. </div>
  2286. <div class="card-body">
  2287. <h5 class="card-title">婦女救援協會</h5>
  2288. <p class="card-text">婦女救援基金會基於尊重生命價值及追求社會正義,致力於關心受到性別暴力壓迫及被忽略的弱勢婦幼,
  2289. 以倡議推動社會改革,以服務充權弱勢婦幼,讓其得以自立及自主,提升婦幼人權。</p>
  2290. <p class="card-text">
  2291. <a href="https://www.twrf.org.tw" target="_blank" class="d-flex align-items-center">
  2292. <small class="text-muted me-1">深入瞭解婦女救援協會</small><i class="fas fa-angle-double-right"></i>
  2293. </a>
  2294. </p>
  2295. <a href="https://www.twrf.org.tw/info/category/25" class="btn btn-light" target="_blank">捐款去</a>
  2296. </div>
  2297. </div>
  2298. </div>
  2299. <div class="col-12 col-md-6 col-lg-4">
  2300. <div class="card text-dark mb-4" style="border: none;">
  2301. <div class="card__imgfr" onclick="window.open('https://www.youtube.com/channel/UC2Qda9PhJWuiMTCZ-j7K_hg')">
  2302. <amp-img src="./imgs/hero-img.jpg"
  2303. width="266"
  2304. height="150"
  2305. layout="responsive"
  2306. alt="mountains"
  2307. class="card-img-top">
  2308. </amp-img>
  2309. <amp-img src="./imgs/play.png"
  2310. width="50"
  2311. height="50"
  2312. alt="mountains"
  2313. class="card__play"
  2314. >
  2315. </amp-img>
  2316. </div>
  2317. <div class="card-body">
  2318. <h5 class="card-title">至善社會福利基金會</h5>
  2319. <p class="card-text">至善是立足台灣的亞洲兒少發展最佳夥伴,服務地區包括台灣、越南、雲南,以及緬甸等亞洲四地,每一年約幫助
  2320. 90,000 名孩子吃飽、上學,獲得照顧,讓他們成長之路不孤單。</p>
  2321. <p class="card-text">
  2322. <a href="https://www.zhi-shan.org" target="_blank" class="d-flex align-items-center">
  2323. <small class="text-muted me-1">深入瞭解至善基金會</small><i class="fas fa-angle-double-right"></i>
  2324. </a>
  2325. </p>
  2326. <a href="https://www.zhi-shan.org/donate?gclid=Cj0KCQiA2sqOBhCGARIsAPuPK0gGNFU0NutrGGL0hI8WDWeo60Te3T-jZAQ7Tc1pz_CEY8L7UXaSockaAsdmEALw_wcB"
  2327. class="btn btn-light" target="_blank">捐款去</a>
  2328. </div>
  2329. </div>
  2330. </div>
  2331. <div class="col-12 col-md-6 col-lg-4">
  2332. <div class="card text-dark mb-4" style="border: none;">
  2333. <div class="card__imgfr" onclick="window.open('https://www.youtube.com/channel/UC2Qda9PhJWuiMTCZ-j7K_hg')">
  2334. <amp-img src="./imgs/hero-img.jpg"
  2335. width="266"
  2336. height="150"
  2337. layout="responsive"
  2338. alt="mountains"
  2339. class="card-img-top">
  2340. </amp-img>
  2341. <amp-img src="./imgs/play.png"
  2342. width="50"
  2343. height="50"
  2344. alt="mountains"
  2345. class="card__play"
  2346. >
  2347. </amp-img>
  2348. </div>
  2349. <div class="card-body">
  2350. <h5 class="card-title">勵馨基金會</h5>
  2351. <p class="card-text">勵馨本著基督精神,以追求公義與愛的決心和勇氣,預防及消弭性侵害、性剥削及家庭暴力對婦女與兒少的傷害
  2352. ,並致力於社會改造,創造對婦女及兒少的友善環境。</p>
  2353. <p class="card-text">
  2354. <a href="https://www.goh.org.tw" target="_blank" class="d-flex align-items-center">
  2355. <small class="text-muted me-1">深入瞭解勵馨基金會</small><i class="fas fa-angle-double-right"></i>
  2356. </a>
  2357. </p>
  2358. <a href="https://www.goh.org.tw/mobile/donation.asp" class="btn btn-light" target="_blank">捐款去</a>
  2359. </div>
  2360. </div>
  2361. </div>
  2362. </div>
  2363. </div>
  2364. </section>
  2365. <footer class="footer">
  2366. <div class="container">
  2367. <div class="row">
  2368. <div class="col-xs-12 col-sm-6">
  2369. <img src="https://i.imgur.com/P1gNopa.png" alt="" width="250">
  2370. <div class="footer-aigirl">Choozmo AI Spokesgirl</div>
  2371. <div class="footer-follow">關注我們</div>
  2372. <div class="footer-socials">
  2373. <a href="https://www.linkedin.com/company/choozmo/"><img src="https://i.imgur.com/qnd9QrT.png" alt="" width="32px" height="32px"></a>
  2374. <a href="https://www.facebook.com/choozmo/"><img src="https://i.imgur.com/WdCAhSo.png" alt="" width="48px" height="48px"></a>
  2375. <a href="https://line.me/R/ti/p/@choozmo?from=page"><img src="https://i.imgur.com/dNZ2aGW.png" alt="" width="32px" height="32px"></a>
  2376. <a href="https://www.youtube.com/channel/UC2Qda9PhJWuiMTCZ-j7K_hg"><img src="https://i.imgur.com/zn6DUY8.png" alt="" width="32px" height="32px"></a>
  2377. <a href="https://www.instagram.com/choozmo_cmm/"><img src="https://i.imgur.com/pdJPY7m.png" alt="" width="48px" height="48px"></a>
  2378. <a href="https://twitter.com/ai_cmm"><img src="https://i.imgur.com/qGBzq4J.png" alt="" width="32px" height="32px"></a>
  2379. </div>
  2380. </div>
  2381. <div class="col-xs-12 col-sm-6">
  2382. <div class="footer-contacts">
  2383. <h5>CONTACT</h5>
  2384. <div>
  2385. 集仕多股份有限公司<br>新竹縣竹北市復興二路229號9樓之9<br>聯絡電話:036670804<br>聯絡信箱:SERVICE@CHOOZMO.COM
  2386. </div>
  2387. </div>
  2388. </div>
  2389. </div>
  2390. </div>
  2391. </footer>
  2392. </main>
  2393. </body>
  2394. </html>