chuz.css 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713
  1. @charset "UTF-8";
  2. /* 顏色設定 */
  3. :root {
  4. --color-scheme: dark;
  5. --blue: #0084b4;
  6. --indigo: #6610f2;
  7. --purple: #6f42c1;
  8. --pink: #e83e8c;
  9. --red: #dc3545;
  10. --orange: #fd7e14;
  11. --yellow: beige;
  12. --green: #28a745;
  13. --teal: #20c997;
  14. --cyan: #17a2b8;
  15. --white: #fff;
  16. --gray: #6c757d;
  17. --gray-dark: #212529;
  18. --primary: #0084b4;
  19. --secondary: #6c757d;
  20. --success: #28a745;
  21. --info: #17a2b8;
  22. --warning: beige;
  23. --danger: #dc3545;
  24. --light: #dee2e6;
  25. --dark: #212529;
  26. --breakpoint-xs: 0;
  27. --breakpoint-sm: 576px;
  28. --breakpoint-md: 768px;
  29. --breakpoint-lg: 992px;
  30. --breakpoint-xl: 1200px;
  31. --font-family-sans-serif: "Roboto Condensed", sans-serif;
  32. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
  33. "Liberation Mono", "Courier New", monospace;
  34. }
  35. @media all {
  36. .bg-warning {
  37. color: #212529;
  38. }
  39. }
  40. @media all {
  41. #sidebar {
  42. background: #212529;
  43. }
  44. }
  45. .sidebar-close {
  46. background: transparent;
  47. }
  48. @media all {
  49. .sidebar-close {
  50. color: #f8f9fa;
  51. }
  52. }
  53. *,
  54. *::before,
  55. *::after {
  56. -webkit-box-sizing: border-box;
  57. box-sizing: border-box;
  58. }
  59. html {
  60. font-family: sans-serif;
  61. line-height: 1.15;
  62. -webkit-text-size-adjust: 100%;
  63. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  64. scroll-behavior: smooth;
  65. }
  66. article,
  67. aside,
  68. figcaption,
  69. figure,
  70. footer,
  71. header,
  72. hgroup,
  73. main,
  74. nav,
  75. section {
  76. display: block;
  77. }
  78. body {
  79. margin: 0;
  80. font-family: "Noto Sans TC", sans-serif;
  81. font-weight: 400;
  82. line-height: 1.5;
  83. text-align: left;
  84. font-size: 1rem;
  85. letter-spacing: 2px;
  86. }
  87. @media all {
  88. body {
  89. color: #f8f9fa;
  90. background-color: #212529;
  91. }
  92. }
  93. [tabindex="-1"]:focus:not(:focus-visible) {
  94. outline: 0;
  95. }
  96. hr {
  97. -webkit-box-sizing: content-box;
  98. box-sizing: content-box;
  99. height: 0;
  100. overflow: visible;
  101. }
  102. p {
  103. margin-top: 0;
  104. margin-bottom: 1rem;
  105. }
  106. abbr[title],
  107. abbr[data-original-title] {
  108. text-decoration: underline;
  109. -webkit-text-decoration: underline dotted;
  110. text-decoration: underline dotted;
  111. border-bottom: 0;
  112. text-decoration-skip-ink: none;
  113. cursor: help;
  114. }
  115. address {
  116. margin-bottom: 1rem;
  117. font-style: normal;
  118. line-height: inherit;
  119. }
  120. ol,
  121. ul,
  122. dl {
  123. margin-top: 0;
  124. margin-bottom: 1rem;
  125. }
  126. ol ol,
  127. ul ul,
  128. ol ul,
  129. ul ol {
  130. margin-bottom: 0;
  131. }
  132. dt {
  133. font-weight: 700;
  134. }
  135. dd {
  136. margin-bottom: 0.5rem;
  137. margin-left: 0;
  138. }
  139. blockquote {
  140. margin: 0 0 1rem;
  141. }
  142. b,
  143. strong {
  144. font-weight: 700;
  145. }
  146. small {
  147. font-size: 80%;
  148. }
  149. sub,
  150. sup {
  151. position: relative;
  152. line-height: 0;
  153. vertical-align: baseline;
  154. font-size: 75%;
  155. }
  156. sub {
  157. bottom: -0.25em;
  158. }
  159. sup {
  160. top: -0.5em;
  161. }
  162. a {
  163. text-decoration: none;
  164. background: transparent;
  165. }
  166. @media all {
  167. a {
  168. /* color: #f8f9fa; */
  169. color: #2980b8;
  170. }
  171. }
  172. a:hover {
  173. text-decoration: underline;
  174. }
  175. @media all {
  176. a:hover {
  177. color: #cbd3da;
  178. }
  179. }
  180. a:not([href]) {
  181. color: inherit;
  182. text-decoration: none;
  183. }
  184. a:not([href]):hover {
  185. color: inherit;
  186. text-decoration: none;
  187. }
  188. pre,
  189. code,
  190. kbd,
  191. samp {
  192. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
  193. "Courier New", monospace;
  194. font-size: 1em;
  195. }
  196. pre {
  197. margin-top: 0;
  198. margin-bottom: 1rem;
  199. overflow: auto;
  200. }
  201. figure {
  202. margin: 0 0 1rem;
  203. }
  204. img {
  205. vertical-align: middle;
  206. border-style: none;
  207. }
  208. svg {
  209. overflow: hidden;
  210. vertical-align: middle;
  211. }
  212. table {
  213. border-collapse: collapse;
  214. }
  215. caption {
  216. padding-top: 0.75rem;
  217. padding-bottom: 0.75rem;
  218. text-align: left;
  219. caption-side: bottom;
  220. }
  221. @media all {
  222. caption {
  223. color: #6c757d;
  224. }
  225. }
  226. th {
  227. text-align: inherit;
  228. }
  229. label {
  230. display: inline-block;
  231. margin-bottom: 0.5rem;
  232. }
  233. button {
  234. border-radius: 0;
  235. }
  236. button:focus {
  237. outline: 1px dotted;
  238. outline: 5px auto -webkit-focus-ring-color;
  239. }
  240. input,
  241. button,
  242. select,
  243. optgroup,
  244. textarea {
  245. margin: 0;
  246. font-family: inherit;
  247. line-height: inherit;
  248. font-size: inherit;
  249. }
  250. button,
  251. input {
  252. overflow: visible;
  253. }
  254. button,
  255. select {
  256. text-transform: none;
  257. }
  258. select {
  259. word-wrap: normal;
  260. }
  261. button,
  262. [type="button"],
  263. [type="reset"],
  264. [type="submit"] {
  265. -webkit-appearance: button;
  266. }
  267. button:not(:disabled),
  268. [type="button"]:not(:disabled),
  269. [type="reset"]:not(:disabled),
  270. [type="submit"]:not(:disabled) {
  271. cursor: pointer;
  272. }
  273. button::-moz-focus-inner,
  274. [type="button"]::-moz-focus-inner,
  275. [type="reset"]::-moz-focus-inner,
  276. [type="submit"]::-moz-focus-inner {
  277. padding: 0;
  278. border-style: none;
  279. }
  280. input[type="radio"],
  281. input[type="checkbox"] {
  282. -webkit-box-sizing: border-box;
  283. box-sizing: border-box;
  284. padding: 0;
  285. }
  286. input[type="date"],
  287. input[type="time"],
  288. input[type="datetime-local"],
  289. input[type="month"] {
  290. -webkit-appearance: listbox;
  291. }
  292. textarea {
  293. overflow: auto;
  294. resize: vertical;
  295. }
  296. [type="number"]::-webkit-inner-spin-button,
  297. [type="number"]::-webkit-outer-spin-button {
  298. height: auto;
  299. }
  300. [type="search"] {
  301. outline-offset: -2px;
  302. -webkit-appearance: none;
  303. }
  304. [type="search"]::-webkit-search-decoration {
  305. -webkit-appearance: none;
  306. }
  307. ::-webkit-file-upload-button {
  308. font: inherit;
  309. -webkit-appearance: button;
  310. }
  311. output {
  312. display: inline-block;
  313. }
  314. summary {
  315. display: list-item;
  316. cursor: pointer;
  317. }
  318. template {
  319. display: none;
  320. }
  321. [hidden] {
  322. display: none;
  323. }
  324. h1,
  325. h2,
  326. h3,
  327. h4,
  328. h5,
  329. h6 {
  330. margin-bottom: 0.5rem;
  331. font-weight: 400;
  332. line-height: 1.2;
  333. }
  334. h1 {
  335. font-size: 2.5rem;
  336. }
  337. @media (max-width: 1200px) {
  338. h1 {
  339. font-size: calc(1.375rem + 1.5vw);
  340. }
  341. }
  342. h2 {
  343. font-size: 2rem;
  344. }
  345. @media (max-width: 1200px) {
  346. h2 {
  347. font-size: calc(1.325rem + 0.9vw);
  348. }
  349. }
  350. h3 {
  351. font-size: 1.25rem;
  352. }
  353. h4 {
  354. font-size: 1.15rem;
  355. }
  356. h5 {
  357. font-size: 1rem;
  358. }
  359. h6 {
  360. font-size: 1rem;
  361. }
  362. .lead {
  363. font-weight: 400;
  364. font-size: 1.25rem;
  365. }
  366. hr {
  367. margin-top: 2.5rem;
  368. margin-bottom: 2.5rem;
  369. border-top: 1px solid silver;
  370. }
  371. img,
  372. amp-img {
  373. border: 0;
  374. }
  375. amp-img[class^="i-amp"],
  376. amp-img[class^="-amp"] {
  377. height: auto;
  378. max-width: 100%;
  379. }
  380. .container,
  381. .container-fluid,
  382. .container-xxl,
  383. .container-xl,
  384. .container-lg,
  385. .container-md,
  386. .container-sm {
  387. width: 100%;
  388. padding-right: var(--bs-gutter-x, 0.75rem);
  389. padding-left: var(--bs-gutter-x, 0.75rem);
  390. margin-right: auto;
  391. margin-left: auto;
  392. }
  393. @media (min-width: 576px) {
  394. .container-sm,
  395. .container {
  396. max-width: 540px;
  397. }
  398. }
  399. @media (min-width: 768px) {
  400. .container-md,
  401. .container-sm,
  402. .container {
  403. max-width: 720px;
  404. }
  405. }
  406. @media (min-width: 992px) {
  407. .container-lg,
  408. .container-md,
  409. .container-sm,
  410. .container {
  411. max-width: 960px;
  412. }
  413. }
  414. @media (min-width: 1200px) {
  415. .container-xl,
  416. .container-lg,
  417. .container-md,
  418. .container-sm,
  419. .container {
  420. max-width: 1140px;
  421. }
  422. }
  423. @media (min-width: 1400px) {
  424. .container-xxl,
  425. .container-xl,
  426. .container-lg,
  427. .container-md,
  428. .container-sm,
  429. .container {
  430. max-width: 1320px;
  431. }
  432. }
  433. .row {
  434. --bs-gutter-x: 1.5rem;
  435. --bs-gutter-y: 0;
  436. display: -webkit-box;
  437. display: -ms-flexbox;
  438. display: flex;
  439. -ms-flex-wrap: wrap;
  440. flex-wrap: wrap;
  441. margin-top: calc(var(--bs-gutter-y) * -1);
  442. margin-right: calc(var(--bs-gutter-x) / -2);
  443. margin-left: calc(var(--bs-gutter-x) / -2);
  444. }
  445. .row>* {
  446. -ms-flex-negative: 0;
  447. flex-shrink: 0;
  448. width: 100%;
  449. max-width: 100%;
  450. padding-right: calc(var(--bs-gutter-x) / 2);
  451. padding-left: calc(var(--bs-gutter-x) / 2);
  452. margin-top: var(--bs-gutter-y);
  453. }
  454. .col-1,
  455. .col-2,
  456. .col-3,
  457. .col-4,
  458. .col-5,
  459. .col-6,
  460. .col-7,
  461. .col-8,
  462. .col-9,
  463. .col-10,
  464. .col-11,
  465. .col-12,
  466. .col,
  467. .col-auto,
  468. .col-sm-1,
  469. .col-sm-2,
  470. .col-sm-3,
  471. .col-sm-4,
  472. .col-sm-5,
  473. .col-sm-6,
  474. .col-sm-7,
  475. .col-sm-8,
  476. .col-sm-9,
  477. .col-sm-10,
  478. .col-sm-11,
  479. .col-sm-12,
  480. .col-sm,
  481. .col-sm-auto,
  482. .col-md-1,
  483. .col-md-2,
  484. .col-md-3,
  485. .col-md-4,
  486. .col-md-5,
  487. .col-md-6,
  488. .col-md-7,
  489. .col-md-8,
  490. .col-md-9,
  491. .col-md-10,
  492. .col-md-11,
  493. .col-md-12,
  494. .col-md,
  495. .col-md-auto,
  496. .col-lg-1,
  497. .col-lg-2,
  498. .col-lg-3,
  499. .col-lg-4,
  500. .col-lg-5,
  501. .col-lg-6,
  502. .col-lg-7,
  503. .col-lg-8,
  504. .col-lg-9,
  505. .col-lg-10,
  506. .col-lg-11,
  507. .col-lg-12,
  508. .col-lg,
  509. .col-lg-auto,
  510. .col-xl-1,
  511. .col-xl-2,
  512. .col-xl-3,
  513. .col-xl-4,
  514. .col-xl-5,
  515. .col-xl-6,
  516. .col-xl-7,
  517. .col-xl-8,
  518. .col-xl-9,
  519. .col-xl-10,
  520. .col-xl-11,
  521. .col-xl-12,
  522. .col-xl,
  523. .col-xl-auto {
  524. position: relative;
  525. width: 100%;
  526. padding-right: 15px;
  527. padding-left: 15px;
  528. }
  529. .col {
  530. -ms-flex-preferred-size: 0;
  531. flex-basis: 0;
  532. -webkit-box-flex: 1;
  533. -ms-flex-positive: 1;
  534. flex-grow: 1;
  535. max-width: 100%;
  536. }
  537. .col-1 {
  538. -webkit-box-flex: 0;
  539. -ms-flex: 0 0 8.33333%;
  540. flex: 0 0 8.33333%;
  541. max-width: 8.33333%;
  542. }
  543. .col-2 {
  544. -webkit-box-flex: 0;
  545. -ms-flex: 0 0 16.66667%;
  546. flex: 0 0 16.66667%;
  547. max-width: 16.66667%;
  548. }
  549. .col-3 {
  550. -webkit-box-flex: 0;
  551. -ms-flex: 0 0 25%;
  552. flex: 0 0 25%;
  553. max-width: 25%;
  554. }
  555. .col-4 {
  556. -webkit-box-flex: 0;
  557. -ms-flex: 0 0 33.33333%;
  558. flex: 0 0 33.33333%;
  559. max-width: 33.33333%;
  560. }
  561. .col-5 {
  562. -webkit-box-flex: 0;
  563. -ms-flex: 0 0 41.66667%;
  564. flex: 0 0 41.66667%;
  565. max-width: 41.66667%;
  566. }
  567. .col-6 {
  568. -webkit-box-flex: 0;
  569. -ms-flex: 0 0 50%;
  570. flex: 0 0 50%;
  571. max-width: 50%;
  572. }
  573. .col-7 {
  574. -webkit-box-flex: 0;
  575. -ms-flex: 0 0 58.33333%;
  576. flex: 0 0 58.33333%;
  577. max-width: 58.33333%;
  578. }
  579. .col-8 {
  580. -webkit-box-flex: 0;
  581. -ms-flex: 0 0 66.66667%;
  582. flex: 0 0 66.66667%;
  583. max-width: 66.66667%;
  584. }
  585. .col-9 {
  586. -webkit-box-flex: 0;
  587. -ms-flex: 0 0 75%;
  588. flex: 0 0 75%;
  589. max-width: 75%;
  590. }
  591. .col-10 {
  592. -webkit-box-flex: 0;
  593. -ms-flex: 0 0 83.33333%;
  594. flex: 0 0 83.33333%;
  595. max-width: 83.33333%;
  596. }
  597. .col-11 {
  598. -webkit-box-flex: 0;
  599. -ms-flex: 0 0 91.66667%;
  600. flex: 0 0 91.66667%;
  601. max-width: 91.66667%;
  602. }
  603. .col-12 {
  604. -webkit-box-flex: 0;
  605. -ms-flex: 0 0 100%;
  606. flex: 0 0 100%;
  607. max-width: 100%;
  608. }
  609. @media (min-width: 576px) {
  610. .col-sm {
  611. -ms-flex-preferred-size: 0;
  612. flex-basis: 0;
  613. -webkit-box-flex: 1;
  614. -ms-flex-positive: 1;
  615. flex-grow: 1;
  616. max-width: 100%;
  617. }
  618. .col-sm-1 {
  619. -webkit-box-flex: 0;
  620. -ms-flex: 0 0 8.33333%;
  621. flex: 0 0 8.33333%;
  622. max-width: 8.33333%;
  623. }
  624. .col-sm-2 {
  625. -webkit-box-flex: 0;
  626. -ms-flex: 0 0 16.66667%;
  627. flex: 0 0 16.66667%;
  628. max-width: 16.66667%;
  629. }
  630. .col-sm-3 {
  631. -webkit-box-flex: 0;
  632. -ms-flex: 0 0 25%;
  633. flex: 0 0 25%;
  634. max-width: 25%;
  635. }
  636. .col-sm-4 {
  637. -webkit-box-flex: 0;
  638. -ms-flex: 0 0 33.33333%;
  639. flex: 0 0 33.33333%;
  640. max-width: 33.33333%;
  641. }
  642. .col-sm-5 {
  643. -webkit-box-flex: 0;
  644. -ms-flex: 0 0 41.66667%;
  645. flex: 0 0 41.66667%;
  646. max-width: 41.66667%;
  647. }
  648. .col-sm-6 {
  649. -webkit-box-flex: 0;
  650. -ms-flex: 0 0 50%;
  651. flex: 0 0 50%;
  652. max-width: 50%;
  653. }
  654. .col-sm-7 {
  655. -webkit-box-flex: 0;
  656. -ms-flex: 0 0 58.33333%;
  657. flex: 0 0 58.33333%;
  658. max-width: 58.33333%;
  659. }
  660. .col-sm-8 {
  661. -webkit-box-flex: 0;
  662. -ms-flex: 0 0 66.66667%;
  663. flex: 0 0 66.66667%;
  664. max-width: 66.66667%;
  665. }
  666. .col-sm-9 {
  667. -webkit-box-flex: 0;
  668. -ms-flex: 0 0 75%;
  669. flex: 0 0 75%;
  670. max-width: 75%;
  671. }
  672. .col-sm-10 {
  673. -webkit-box-flex: 0;
  674. -ms-flex: 0 0 83.33333%;
  675. flex: 0 0 83.33333%;
  676. max-width: 83.33333%;
  677. }
  678. .col-sm-11 {
  679. -webkit-box-flex: 0;
  680. -ms-flex: 0 0 91.66667%;
  681. flex: 0 0 91.66667%;
  682. max-width: 91.66667%;
  683. }
  684. .col-sm-12 {
  685. -webkit-box-flex: 0;
  686. -ms-flex: 0 0 100%;
  687. flex: 0 0 100%;
  688. max-width: 100%;
  689. }
  690. }
  691. @media (min-width: 768px) {
  692. .col-md {
  693. -ms-flex-preferred-size: 0;
  694. flex-basis: 0;
  695. -webkit-box-flex: 1;
  696. -ms-flex-positive: 1;
  697. flex-grow: 1;
  698. max-width: 100%;
  699. }
  700. .col-md-1 {
  701. -webkit-box-flex: 0;
  702. -ms-flex: 0 0 8.33333%;
  703. flex: 0 0 8.33333%;
  704. max-width: 8.33333%;
  705. }
  706. .col-md-2 {
  707. -webkit-box-flex: 0;
  708. -ms-flex: 0 0 16.66667%;
  709. flex: 0 0 16.66667%;
  710. max-width: 16.66667%;
  711. }
  712. .col-md-3 {
  713. -webkit-box-flex: 0;
  714. -ms-flex: 0 0 25%;
  715. flex: 0 0 25%;
  716. max-width: 25%;
  717. }
  718. .col-md-4 {
  719. -webkit-box-flex: 0;
  720. -ms-flex: 0 0 33.33333%;
  721. flex: 0 0 33.33333%;
  722. max-width: 33.33333%;
  723. }
  724. .col-md-5 {
  725. -webkit-box-flex: 0;
  726. -ms-flex: 0 0 41.66667%;
  727. flex: 0 0 41.66667%;
  728. max-width: 41.66667%;
  729. }
  730. .col-md-6 {
  731. -webkit-box-flex: 0;
  732. -ms-flex: 0 0 50%;
  733. flex: 0 0 50%;
  734. max-width: 50%;
  735. }
  736. .col-md-7 {
  737. -webkit-box-flex: 0;
  738. -ms-flex: 0 0 58.33333%;
  739. flex: 0 0 58.33333%;
  740. max-width: 58.33333%;
  741. }
  742. .col-md-8 {
  743. -webkit-box-flex: 0;
  744. -ms-flex: 0 0 66.66667%;
  745. flex: 0 0 66.66667%;
  746. max-width: 66.66667%;
  747. }
  748. .col-md-9 {
  749. -webkit-box-flex: 0;
  750. -ms-flex: 0 0 75%;
  751. flex: 0 0 75%;
  752. max-width: 75%;
  753. }
  754. .col-md-10 {
  755. -webkit-box-flex: 0;
  756. -ms-flex: 0 0 83.33333%;
  757. flex: 0 0 83.33333%;
  758. max-width: 83.33333%;
  759. }
  760. .col-md-11 {
  761. -webkit-box-flex: 0;
  762. -ms-flex: 0 0 91.66667%;
  763. flex: 0 0 91.66667%;
  764. max-width: 91.66667%;
  765. }
  766. .col-md-12 {
  767. -webkit-box-flex: 0;
  768. -ms-flex: 0 0 100%;
  769. flex: 0 0 100%;
  770. max-width: 100%;
  771. }
  772. .ms-md-1 {
  773. margin-left: 0.25rem !important;
  774. }
  775. .ms-md-2 {
  776. margin-left: 0.5rem !important;
  777. }
  778. .ms-md-3 {
  779. margin-left: 1rem !important;
  780. }
  781. .ms-md-4 {
  782. margin-left: 1.5rem !important;
  783. }
  784. .ms-md-5 {
  785. margin-left: 3rem !important;
  786. }
  787. .justify-content-md-center {
  788. -webkit-box-pack: center !important;
  789. -ms-flex-pack: center !important;
  790. justify-content: center !important;
  791. }
  792. }
  793. @media (min-width: 992px) {
  794. .col-lg {
  795. -ms-flex-preferred-size: 0;
  796. flex-basis: 0;
  797. -webkit-box-flex: 1;
  798. -ms-flex-positive: 1;
  799. flex-grow: 1;
  800. max-width: 100%;
  801. }
  802. .col-lg-1 {
  803. -webkit-box-flex: 0;
  804. -ms-flex: 0 0 8.33333%;
  805. flex: 0 0 8.33333%;
  806. max-width: 8.33333%;
  807. }
  808. .col-lg-2 {
  809. -webkit-box-flex: 0;
  810. -ms-flex: 0 0 16.66667%;
  811. flex: 0 0 16.66667%;
  812. max-width: 16.66667%;
  813. }
  814. .col-lg-3 {
  815. -webkit-box-flex: 0;
  816. -ms-flex: 0 0 25%;
  817. flex: 0 0 25%;
  818. max-width: 25%;
  819. }
  820. .col-lg-4 {
  821. -webkit-box-flex: 0;
  822. -ms-flex: 0 0 33.33333%;
  823. flex: 0 0 33.33333%;
  824. max-width: 33.33333%;
  825. }
  826. .col-lg-5 {
  827. -webkit-box-flex: 0;
  828. -ms-flex: 0 0 41.66667%;
  829. flex: 0 0 41.66667%;
  830. max-width: 41.66667%;
  831. }
  832. .col-lg-6 {
  833. -webkit-box-flex: 0;
  834. -ms-flex: 0 0 50%;
  835. flex: 0 0 50%;
  836. max-width: 50%;
  837. }
  838. .col-lg-7 {
  839. -webkit-box-flex: 0;
  840. -ms-flex: 0 0 58.33333%;
  841. flex: 0 0 58.33333%;
  842. max-width: 58.33333%;
  843. }
  844. .col-lg-8 {
  845. -webkit-box-flex: 0;
  846. -ms-flex: 0 0 66.66667%;
  847. flex: 0 0 66.66667%;
  848. max-width: 66.66667%;
  849. }
  850. .col-lg-9 {
  851. -webkit-box-flex: 0;
  852. -ms-flex: 0 0 75%;
  853. flex: 0 0 75%;
  854. max-width: 75%;
  855. }
  856. .col-lg-10 {
  857. -webkit-box-flex: 0;
  858. -ms-flex: 0 0 83.33333%;
  859. flex: 0 0 83.33333%;
  860. max-width: 83.33333%;
  861. }
  862. .col-lg-11 {
  863. -webkit-box-flex: 0;
  864. -ms-flex: 0 0 91.66667%;
  865. flex: 0 0 91.66667%;
  866. max-width: 91.66667%;
  867. }
  868. .col-lg-12 {
  869. -webkit-box-flex: 0;
  870. -ms-flex: 0 0 100%;
  871. flex: 0 0 100%;
  872. max-width: 100%;
  873. }
  874. }
  875. @media (min-width: 1200px) {
  876. .col-xl {
  877. -ms-flex-preferred-size: 0;
  878. flex-basis: 0;
  879. -webkit-box-flex: 1;
  880. -ms-flex-positive: 1;
  881. flex-grow: 1;
  882. max-width: 100%;
  883. }
  884. .col-xl-1 {
  885. -webkit-box-flex: 0;
  886. -ms-flex: 0 0 8.33333%;
  887. flex: 0 0 8.33333%;
  888. max-width: 8.33333%;
  889. }
  890. .col-xl-2 {
  891. -webkit-box-flex: 0;
  892. -ms-flex: 0 0 16.66667%;
  893. flex: 0 0 16.66667%;
  894. max-width: 16.66667%;
  895. }
  896. .col-xl-3 {
  897. -webkit-box-flex: 0;
  898. -ms-flex: 0 0 25%;
  899. flex: 0 0 25%;
  900. max-width: 25%;
  901. }
  902. .col-xl-4 {
  903. -webkit-box-flex: 0;
  904. -ms-flex: 0 0 33.33333%;
  905. flex: 0 0 33.33333%;
  906. max-width: 33.33333%;
  907. }
  908. .col-xl-5 {
  909. -webkit-box-flex: 0;
  910. -ms-flex: 0 0 41.66667%;
  911. flex: 0 0 41.66667%;
  912. max-width: 41.66667%;
  913. }
  914. .col-xl-6 {
  915. -webkit-box-flex: 0;
  916. -ms-flex: 0 0 50%;
  917. flex: 0 0 50%;
  918. max-width: 50%;
  919. }
  920. .col-xl-7 {
  921. -webkit-box-flex: 0;
  922. -ms-flex: 0 0 58.33333%;
  923. flex: 0 0 58.33333%;
  924. max-width: 58.33333%;
  925. }
  926. .col-xl-8 {
  927. -webkit-box-flex: 0;
  928. -ms-flex: 0 0 66.66667%;
  929. flex: 0 0 66.66667%;
  930. max-width: 66.66667%;
  931. }
  932. .col-xl-9 {
  933. -webkit-box-flex: 0;
  934. -ms-flex: 0 0 75%;
  935. flex: 0 0 75%;
  936. max-width: 75%;
  937. }
  938. .col-xl-10 {
  939. -webkit-box-flex: 0;
  940. -ms-flex: 0 0 83.33333%;
  941. flex: 0 0 83.33333%;
  942. max-width: 83.33333%;
  943. }
  944. .col-xl-11 {
  945. -webkit-box-flex: 0;
  946. -ms-flex: 0 0 91.66667%;
  947. flex: 0 0 91.66667%;
  948. max-width: 91.66667%;
  949. }
  950. .col-xl-12 {
  951. -webkit-box-flex: 0;
  952. -ms-flex: 0 0 100%;
  953. flex: 0 0 100%;
  954. max-width: 100%;
  955. }
  956. }
  957. table {
  958. width: 100%;
  959. margin-bottom: 1rem;
  960. }
  961. table th,
  962. table td {
  963. padding: 0.3rem;
  964. vertical-align: top;
  965. }
  966. .form-row {
  967. display: -webkit-box;
  968. display: -ms-flexbox;
  969. display: flex;
  970. -ms-flex-wrap: wrap;
  971. flex-wrap: wrap;
  972. margin-right: -5px;
  973. margin-left: -5px;
  974. }
  975. @media all {
  976. table th,
  977. table td {
  978. border: 1px solid #343a40;
  979. }
  980. }
  981. table thead th {
  982. vertical-align: bottom;
  983. }
  984. .card {
  985. position: relative;
  986. display: -webkit-box;
  987. display: -ms-flexbox;
  988. display: flex;
  989. -webkit-box-orient: vertical;
  990. -webkit-box-direction: normal;
  991. -ms-flex-direction: column;
  992. flex-direction: column;
  993. min-width: 0;
  994. word-wrap: break-word;
  995. background-color: #fff;
  996. background-clip: border-box;
  997. border: 1px solid rgba(0, 0, 0, 0.125);
  998. }
  999. @media all {
  1000. table thead th {
  1001. border-bottom: 2px solid #343a40;
  1002. }
  1003. }
  1004. .card-body {
  1005. -webkit-box-flex: 1;
  1006. -ms-flex: 1 1 auto;
  1007. flex: 1 1 auto;
  1008. padding: 1rem 1rem;
  1009. }
  1010. @media all {
  1011. table tbody+tbody {
  1012. border-top: 2px solid #343a40;
  1013. }
  1014. }
  1015. .form-row {
  1016. display: -webkit-box;
  1017. display: -ms-flexbox;
  1018. display: flex;
  1019. -ms-flex-wrap: wrap;
  1020. flex-wrap: wrap;
  1021. margin-right: -5px;
  1022. margin-left: -5px;
  1023. }
  1024. .form-row>.col,
  1025. .form-row>[class*="col-"] {
  1026. padding-right: 5px;
  1027. padding-left: 5px;
  1028. }
  1029. .btn {
  1030. display: inline-block;
  1031. font-weight: 400;
  1032. color: #212529;
  1033. text-align: center;
  1034. vertical-align: middle;
  1035. cursor: pointer;
  1036. -webkit-user-select: none;
  1037. -moz-user-select: none;
  1038. -ms-user-select: none;
  1039. user-select: none;
  1040. background: transparent;
  1041. border: 1px solid transparent;
  1042. padding: 0.375rem 0.75rem;
  1043. font-size: 1rem;
  1044. line-height: 1.5;
  1045. border-radius: 0.25rem;
  1046. }
  1047. .btn:hover {
  1048. color: #212529;
  1049. text-decoration: none;
  1050. }
  1051. .btn:focus,
  1052. .btn.focus {
  1053. outline: 0;
  1054. -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
  1055. box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
  1056. }
  1057. .btn.disabled,
  1058. .btn:disabled {
  1059. opacity: 0.65;
  1060. }
  1061. a.btn.disabled,
  1062. fieldset:disabled a.btn {
  1063. pointer-events: none;
  1064. }
  1065. .btn-light {
  1066. color: #212529;
  1067. border-color: #dee2e6;
  1068. background: #dee2e6;
  1069. }
  1070. .btn-light:hover {
  1071. color: #212529;
  1072. border-color: #c1c9d0;
  1073. background: #c8cfd6;
  1074. }
  1075. .btn-light:focus,
  1076. .btn-light.focus {
  1077. color: #212529;
  1078. border-color: #c1c9d0;
  1079. background: #c8cfd6;
  1080. -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 198, 202, 0.5);
  1081. box-shadow: 0 0 0 0.2rem rgba(194, 198, 202, 0.5);
  1082. }
  1083. .btn-light.disabled,
  1084. .btn-light:disabled {
  1085. color: #212529;
  1086. background: #dee2e6;
  1087. border-color: #dee2e6;
  1088. }
  1089. .btn-light:not(:disabled):not(.disabled):active,
  1090. .btn-light:not(:disabled):not(.disabled).active,
  1091. .show>.btn-light.dropdown-toggle {
  1092. color: #212529;
  1093. background: #c1c9d0;
  1094. border-color: #bac2cb;
  1095. }
  1096. .btn-light:not(:disabled):not(.disabled):active:focus,
  1097. .btn-light:not(:disabled):not(.disabled).active:focus,
  1098. .show>.btn-light.dropdown-toggle:focus {
  1099. -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 198, 202, 0.5);
  1100. box-shadow: 0 0 0 0.2rem rgba(194, 198, 202, 0.5);
  1101. }
  1102. .nav {
  1103. display: -webkit-box;
  1104. display: -ms-flexbox;
  1105. display: flex;
  1106. -ms-flex-wrap: wrap;
  1107. flex-wrap: wrap;
  1108. padding-left: 0;
  1109. margin-bottom: 0;
  1110. list-style: none;
  1111. }
  1112. .card {
  1113. position: relative;
  1114. display: -webkit-box;
  1115. display: -ms-flexbox;
  1116. display: flex;
  1117. -webkit-box-orient: vertical;
  1118. -webkit-box-direction: normal;
  1119. -ms-flex-direction: column;
  1120. flex-direction: column;
  1121. min-width: 0;
  1122. word-wrap: break-word;
  1123. background-color: #fff;
  1124. background-clip: border-box;
  1125. border: 1px solid rgba(0, 0, 0, 0.125);
  1126. }
  1127. .card>.list-group {
  1128. border-top: inherit;
  1129. border-bottom: inherit;
  1130. }
  1131. .card>.list-group:first-child {
  1132. border-top-width: 0;
  1133. border-top-left-radius: calc(0.25rem - 1px);
  1134. border-top-right-radius: calc(0.25rem - 1px);
  1135. }
  1136. .card>.list-group:last-child {
  1137. border-bottom-width: 0;
  1138. border-bottom-right-radius: calc(0.25rem - 1px);
  1139. border-bottom-left-radius: calc(0.25rem - 1px);
  1140. }
  1141. .card>.card-header+.list-group,
  1142. .card>.list-group+.card-footer {
  1143. border-top: 0;
  1144. }
  1145. .card-body {
  1146. -webkit-box-flex: 1;
  1147. -ms-flex: 1 1 auto;
  1148. flex: 1 1 auto;
  1149. padding: 1rem 1rem;
  1150. }
  1151. .card-title {
  1152. margin-bottom: 0.5rem;
  1153. }
  1154. .card-subtitle {
  1155. margin-top: -0.25rem;
  1156. margin-bottom: 0;
  1157. }
  1158. .card-text:last-child {
  1159. margin-bottom: 0;
  1160. }
  1161. .card-link:hover {
  1162. text-decoration: none;
  1163. }
  1164. .card-link+.card-link {
  1165. margin-left: 1rem;
  1166. }
  1167. .card-header {
  1168. padding: 0.5rem 1rem;
  1169. margin-bottom: 0;
  1170. background-color: rgba(0, 0, 0, 0.03);
  1171. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  1172. }
  1173. .card-footer {
  1174. padding: 0.5rem 1rem;
  1175. background-color: rgba(0, 0, 0, 0.03);
  1176. border-top: 1px solid rgba(0, 0, 0, 0.125);
  1177. }
  1178. .card-header-tabs {
  1179. margin-right: -0.5rem;
  1180. margin-bottom: -0.5rem;
  1181. margin-left: -0.5rem;
  1182. border-bottom: 0;
  1183. }
  1184. .card-header-pills {
  1185. margin-right: -0.5rem;
  1186. margin-left: -0.5rem;
  1187. }
  1188. .card-img-overlay {
  1189. position: absolute;
  1190. top: 0;
  1191. right: 0;
  1192. bottom: 0;
  1193. left: 0;
  1194. padding: 1rem;
  1195. }
  1196. .card-img,
  1197. .card-img-top,
  1198. .card-img-bottom {
  1199. width: 100%;
  1200. }
  1201. .pagination {
  1202. display: -webkit-box;
  1203. display: -ms-flexbox;
  1204. display: flex;
  1205. padding-left: 0;
  1206. list-style: none;
  1207. border-radius: 0.25rem;
  1208. }
  1209. .page-link {
  1210. position: relative;
  1211. display: block;
  1212. padding: 0.5rem 0.75rem;
  1213. margin-left: -1px;
  1214. line-height: 1.25;
  1215. }
  1216. @media all {
  1217. .page-link {
  1218. color: #f8f9fa;
  1219. background: #212529;
  1220. border: 1px solid #495057;
  1221. }
  1222. }
  1223. .page-link:hover {
  1224. z-index: 2;
  1225. text-decoration: none;
  1226. }
  1227. @media all {
  1228. .page-link:hover {
  1229. color: #cbd3da;
  1230. background: #343a40;
  1231. border-color: #495057;
  1232. }
  1233. }
  1234. .page-link:focus {
  1235. z-index: 3;
  1236. outline: 0;
  1237. -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
  1238. box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
  1239. }
  1240. .page-item:first-child .page-link {
  1241. margin-left: 0;
  1242. border-top-left-radius: 0.25rem;
  1243. border-bottom-left-radius: 0.25rem;
  1244. }
  1245. .page-item:last-child .page-link {
  1246. border-top-right-radius: 0.25rem;
  1247. border-bottom-right-radius: 0.25rem;
  1248. }
  1249. .page-item.active .page-link {
  1250. z-index: 3;
  1251. }
  1252. @media all {
  1253. .page-item.active .page-link {
  1254. color: #212529;
  1255. background: #0084b4;
  1256. border-color: #0084b4;
  1257. }
  1258. }
  1259. .page-item.disabled .page-link {
  1260. pointer-events: none;
  1261. cursor: auto;
  1262. }
  1263. @media all {
  1264. .page-item.disabled .page-link {
  1265. color: #ced4da;
  1266. background: #212529;
  1267. border-color: #495057;
  1268. }
  1269. }
  1270. header {
  1271. width: 100%;
  1272. z-index: 99999;
  1273. top: 0px;
  1274. }
  1275. @media all {
  1276. header.full-width {
  1277. background: #212529;
  1278. }
  1279. }
  1280. header.fixed {
  1281. position: fixed;
  1282. }
  1283. .mega-menu .header {
  1284. -webkit-box-flex: 0;
  1285. -ms-flex: 0 0 100%;
  1286. flex: 0 0 100%;
  1287. max-width: 100%;
  1288. -webkit-box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  1289. box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  1290. }
  1291. .clearfix::after {
  1292. display: block;
  1293. clear: both;
  1294. content: "";
  1295. }
  1296. .blog-content {
  1297. color: #808080;
  1298. }
  1299. .d-flex {
  1300. display: -webkit-box !important;
  1301. display: -ms-flexbox !important;
  1302. display: flex !important;
  1303. }
  1304. .d-inline-flex {
  1305. display: -webkit-inline-box !important;
  1306. display: -ms-inline-flexbox !important;
  1307. display: inline-flex !important;
  1308. }
  1309. .flex-column {
  1310. flex-direction: column !important;
  1311. }
  1312. @media (min-width: 768px) {
  1313. .flex-md-row {
  1314. flex-direction: row !important;
  1315. }
  1316. }
  1317. .text-start {
  1318. text-align: left !important;
  1319. }
  1320. .text-end {
  1321. text-align: right !important;
  1322. }
  1323. .text-center {
  1324. text-align: center !important;
  1325. }
  1326. .post-title {
  1327. text-align: center;
  1328. }
  1329. .mt-1 {
  1330. margin-top: 0.25rem !important;
  1331. }
  1332. .mt-2 {
  1333. margin-top: 0.5rem !important;
  1334. }
  1335. .mt-3 {
  1336. margin-top: 1rem !important;
  1337. }
  1338. .mt-4 {
  1339. margin-top: 1.5rem !important;
  1340. }
  1341. .mt-5 {
  1342. margin-top: 3rem !important;
  1343. }
  1344. .mb-1 {
  1345. margin-bottom: 0.25rem !important;
  1346. }
  1347. .mb-2 {
  1348. margin-bottom: 0.5rem !important;
  1349. }
  1350. .mb-3 {
  1351. margin-bottom: 1rem !important;
  1352. }
  1353. .mb-4 {
  1354. margin-bottom: 1.5rem !important;
  1355. }
  1356. .mb-5 {
  1357. margin-bottom: 3rem !important;
  1358. }
  1359. .ms-1 {
  1360. margin-left: 0.25rem !important;
  1361. }
  1362. .ms-2 {
  1363. margin-left: 0.5rem !important;
  1364. }
  1365. .ms-3 {
  1366. margin-left: 1rem !important;
  1367. }
  1368. .ms-4 {
  1369. margin-left: 1.5rem !important;
  1370. }
  1371. .ms-5 {
  1372. margin-left: 3rem !important;
  1373. }
  1374. .me-auto {
  1375. margin-right: auto !important;
  1376. }
  1377. .me-1 {
  1378. margin-right: 0.25rem !important;
  1379. }
  1380. .me-2 {
  1381. margin-right: 0.5rem !important;
  1382. }
  1383. .me-3 {
  1384. margin-right: 1rem !important;
  1385. }
  1386. .me-4 {
  1387. margin-right: 1.5rem !important;
  1388. }
  1389. .me-5 {
  1390. margin-right: 3rem !important;
  1391. }
  1392. .p-1 {
  1393. padding: 0.25rem !important;
  1394. }
  1395. .p-2 {
  1396. padding: 0.5rem !important;
  1397. }
  1398. .p-3 {
  1399. padding: 1rem !important;
  1400. }
  1401. .p-4 {
  1402. padding: 1.5rem !important;
  1403. }
  1404. .p-5 {
  1405. padding: 3rem !important;
  1406. }
  1407. .mx-auto {
  1408. margin-right: auto !important;
  1409. margin-left: auto !important;
  1410. }
  1411. .row {
  1412. --bs-gutter-x: 1.5rem;
  1413. --bs-gutter-y: 1rem;
  1414. display: -webkit-box;
  1415. display: -ms-flexbox;
  1416. display: flex;
  1417. -ms-flex-wrap: wrap;
  1418. flex-wrap: wrap;
  1419. margin-top: calc(var(--bs-gutter-y) * -1);
  1420. margin-right: calc(var(--bs-gutter-x) / -2);
  1421. margin-left: calc(var(--bs-gutter-x) / -2);
  1422. }
  1423. .row>* {
  1424. -ms-flex-negative: 0;
  1425. flex-shrink: 0;
  1426. width: 100%;
  1427. max-width: 100%;
  1428. padding-right: calc(var(--bs-gutter-x) / 2);
  1429. padding-left: calc(var(--bs-gutter-x) / 2);
  1430. margin-top: var(--bs-gutter-y);
  1431. }
  1432. .col {
  1433. -webkit-box-flex: 100%;
  1434. -ms-flex: 100%;
  1435. flex: 100%;
  1436. }
  1437. .w-50 {
  1438. width: 50% !important;
  1439. }
  1440. .h-100 {
  1441. height: 100% !important;
  1442. }
  1443. .row-cols-auto>* {
  1444. -webkit-box-flex: 0;
  1445. -ms-flex: 0 0 auto;
  1446. flex: 0 0 auto;
  1447. width: auto;
  1448. }
  1449. .row-cols-1>* {
  1450. -webkit-box-flex: 0;
  1451. -ms-flex: 0 0 auto;
  1452. flex: 0 0 auto;
  1453. width: 100%;
  1454. }
  1455. .row-cols-2>* {
  1456. -webkit-box-flex: 0;
  1457. -ms-flex: 0 0 auto;
  1458. flex: 0 0 auto;
  1459. width: 50%;
  1460. }
  1461. .row-cols-3>* {
  1462. -webkit-box-flex: 0;
  1463. -ms-flex: 0 0 auto;
  1464. flex: 0 0 auto;
  1465. width: 33.3333333333%;
  1466. }
  1467. .row-cols-4>* {
  1468. -webkit-box-flex: 0;
  1469. -ms-flex: 0 0 auto;
  1470. flex: 0 0 auto;
  1471. width: 25%;
  1472. }
  1473. .row-cols-5>* {
  1474. -webkit-box-flex: 0;
  1475. -ms-flex: 0 0 auto;
  1476. flex: 0 0 auto;
  1477. width: 20%;
  1478. }
  1479. .row-cols-6>* {
  1480. -webkit-box-flex: 0;
  1481. -ms-flex: 0 0 auto;
  1482. flex: 0 0 auto;
  1483. width: 16.6666666667%;
  1484. }
  1485. @media (min-width: 576px) {
  1486. .col-sm {
  1487. -webkit-box-flex: 1;
  1488. -ms-flex: 1 0 0%;
  1489. flex: 1 0 0%;
  1490. }
  1491. .row-cols-sm-auto>* {
  1492. -webkit-box-flex: 0;
  1493. -ms-flex: 0 0 auto;
  1494. flex: 0 0 auto;
  1495. width: auto;
  1496. }
  1497. .row-cols-sm-1>* {
  1498. -webkit-box-flex: 0;
  1499. -ms-flex: 0 0 auto;
  1500. flex: 0 0 auto;
  1501. width: 100%;
  1502. }
  1503. .row-cols-sm-2>* {
  1504. -webkit-box-flex: 0;
  1505. -ms-flex: 0 0 auto;
  1506. flex: 0 0 auto;
  1507. width: 50%;
  1508. }
  1509. .row-cols-sm-3>* {
  1510. -webkit-box-flex: 0;
  1511. -ms-flex: 0 0 auto;
  1512. flex: 0 0 auto;
  1513. width: 33.3333333333%;
  1514. }
  1515. .row-cols-sm-4>* {
  1516. -webkit-box-flex: 0;
  1517. -ms-flex: 0 0 auto;
  1518. flex: 0 0 auto;
  1519. width: 25%;
  1520. }
  1521. .row-cols-sm-5>* {
  1522. -webkit-box-flex: 0;
  1523. -ms-flex: 0 0 auto;
  1524. flex: 0 0 auto;
  1525. width: 20%;
  1526. }
  1527. .row-cols-sm-6>* {
  1528. -webkit-box-flex: 0;
  1529. -ms-flex: 0 0 auto;
  1530. flex: 0 0 auto;
  1531. width: 16.6666666667%;
  1532. }
  1533. .p-sm-1 {
  1534. padding: 0.25rem !important;
  1535. }
  1536. .p-sm-2 {
  1537. padding: 0.5rem !important;
  1538. }
  1539. .p-sm-3 {
  1540. padding: 1rem !important;
  1541. }
  1542. .p-sm-4 {
  1543. padding: 1.5rem !important;
  1544. }
  1545. .p-sm-5 {
  1546. padding: 3rem !important;
  1547. }
  1548. }
  1549. @media (min-width: 992px) {
  1550. .col-lg {
  1551. -webkit-box-flex: 100%;
  1552. -ms-flex: 100%;
  1553. flex: 100%;
  1554. }
  1555. .row-cols-lg-auto>* {
  1556. -webkit-box-flex: 0;
  1557. -ms-flex: 0 0 auto;
  1558. flex: 0 0 auto;
  1559. width: auto;
  1560. }
  1561. .row-cols-lg-1>* {
  1562. -webkit-box-flex: 0;
  1563. -ms-flex: 0 0 auto;
  1564. flex: 0 0 auto;
  1565. width: 100%;
  1566. }
  1567. .row-cols-lg-2>* {
  1568. -webkit-box-flex: 0;
  1569. -ms-flex: 0 0 auto;
  1570. flex: 0 0 auto;
  1571. width: 50%;
  1572. }
  1573. .row-cols-lg-3>* {
  1574. -webkit-box-flex: 0;
  1575. -ms-flex: 0 0 auto;
  1576. flex: 0 0 auto;
  1577. width: 33.3333333333%;
  1578. }
  1579. .row-cols-lg-4>* {
  1580. -webkit-box-flex: 0;
  1581. -ms-flex: 0 0 auto;
  1582. flex: 0 0 auto;
  1583. width: 25%;
  1584. }
  1585. .row-cols-lg-5>* {
  1586. -webkit-box-flex: 0;
  1587. -ms-flex: 0 0 auto;
  1588. flex: 0 0 auto;
  1589. width: 20%;
  1590. }
  1591. .row-cols-lg-6>* {
  1592. -webkit-box-flex: 0;
  1593. -ms-flex: 0 0 auto;
  1594. flex: 0 0 auto;
  1595. width: 16.6666666667%;
  1596. }
  1597. }
  1598. @media (min-width: 1400px) {
  1599. .col-xxl {
  1600. -webkit-box-flex: 1;
  1601. -ms-flex: 1 0 0%;
  1602. flex: 1 0 0%;
  1603. }
  1604. .row-cols-xxl-auto>* {
  1605. -webkit-box-flex: 0;
  1606. -ms-flex: 0 0 auto;
  1607. flex: 0 0 auto;
  1608. width: auto;
  1609. }
  1610. .row-cols-xxl-1>* {
  1611. -webkit-box-flex: 0;
  1612. -ms-flex: 0 0 auto;
  1613. flex: 0 0 auto;
  1614. width: 100%;
  1615. }
  1616. .row-cols-xxl-2>* {
  1617. -webkit-box-flex: 0;
  1618. -ms-flex: 0 0 auto;
  1619. flex: 0 0 auto;
  1620. width: 50%;
  1621. }
  1622. .row-cols-xxl-3>* {
  1623. -webkit-box-flex: 0;
  1624. -ms-flex: 0 0 auto;
  1625. flex: 0 0 auto;
  1626. width: 33.3333333333%;
  1627. }
  1628. .row-cols-xxl-4>* {
  1629. -webkit-box-flex: 0;
  1630. -ms-flex: 0 0 auto;
  1631. flex: 0 0 auto;
  1632. width: 25%;
  1633. }
  1634. .row-cols-xxl-5>* {
  1635. -webkit-box-flex: 0;
  1636. -ms-flex: 0 0 auto;
  1637. flex: 0 0 auto;
  1638. width: 20%;
  1639. }
  1640. .row-cols-xxl-6>* {
  1641. -webkit-box-flex: 0;
  1642. -ms-flex: 0 0 auto;
  1643. flex: 0 0 auto;
  1644. width: 16.6666666667%;
  1645. }
  1646. }
  1647. .toggle,
  1648. [id^="drop"] {
  1649. display: none;
  1650. }
  1651. /* Giving a background-color to the nav container. */
  1652. nav {
  1653. margin: 0;
  1654. padding: 0;
  1655. background-color: #ffffff;
  1656. /* Since we'll have the "ul li" "float:left"
  1657. * we need to add a clear after the container. */
  1658. /* Removing padding, margin and "list-style" from the "ul",
  1659. * and adding "position:reltive" */
  1660. /* Styling the links */
  1661. }
  1662. nav:after {
  1663. content: "";
  1664. display: table;
  1665. clear: both;
  1666. }
  1667. nav ul {
  1668. float: right;
  1669. padding: 0;
  1670. margin: 0;
  1671. list-style: none;
  1672. position: relative;
  1673. /* Hide Dropdowns by Default
  1674. * and giving it a position of absolute */
  1675. }
  1676. nav ul li {
  1677. margin: 0px;
  1678. float: left;
  1679. background-color: #ffffff;
  1680. /* Display Dropdowns on Hover */
  1681. }
  1682. nav ul li:hover>ul {
  1683. display: inherit;
  1684. }
  1685. nav ul ul {
  1686. display: none;
  1687. position: absolute;
  1688. /* has to be the same number as the "line-height" of "nav a" */
  1689. /* top: 60px; */
  1690. top: 50px;
  1691. /* Fisrt Tier Dropdown */
  1692. /* Second, Third and more Tiers
  1693. * We move the 2nd and 3rd etc tier dropdowns to the left
  1694. * by the amount of the width of the first tier.
  1695. */
  1696. }
  1697. nav ul ul li {
  1698. width: 170px;
  1699. float: none;
  1700. display: list-item;
  1701. position: relative;
  1702. }
  1703. nav ul ul ul li {
  1704. position: relative;
  1705. top: -60px;
  1706. /* has to be the same number as the "width" of "nav ul ul li" */
  1707. left: 170px;
  1708. }
  1709. nav a {
  1710. display: block;
  1711. padding: 14px 20px;
  1712. color: #656565;
  1713. font-size: 12pt;
  1714. font-weight: 400;
  1715. text-decoration: none;
  1716. }
  1717. nav a:hover {
  1718. background-color: #78ad42;
  1719. color: #fff;
  1720. text-decoration: none;
  1721. }
  1722. /* Change ' +' in order to change the Dropdown symbol */
  1723. li>a:after {
  1724. content: " +";
  1725. }
  1726. li>a:only-child:after {
  1727. content: "";
  1728. }
  1729. /* Media Queries
  1730. --------------------------------------------- */
  1731. @media all and (max-width: 768px) {
  1732. nav {
  1733. margin: 0;
  1734. }
  1735. /* Hide the navigation menu by default */
  1736. /* Also hide the */
  1737. .toggle+a,
  1738. .menu {
  1739. display: none;
  1740. }
  1741. /* Stylinf the toggle lable */
  1742. .toggle {
  1743. display: block;
  1744. /* background-color: #FFFFFF; */
  1745. padding: 14px 20px;
  1746. color: #656565;
  1747. font-size: 17px;
  1748. text-decoration: none;
  1749. border: none;
  1750. }
  1751. .toggle:hover {
  1752. /* background-color: #000000; */
  1753. color: #78ad42;
  1754. }
  1755. /* Display Dropdown when clicked on Parent Lable */
  1756. [id^="drop"]:checked+ul {
  1757. display: block;
  1758. }
  1759. /* Change menu item's width to 100% */
  1760. nav ul li {
  1761. display: block;
  1762. width: 100%;
  1763. font-weight: 600;
  1764. }
  1765. nav a:hover,
  1766. nav ul ul ul a {
  1767. background-color: #78ad42;
  1768. }
  1769. nav ul li ul li .toggle,
  1770. nav ul ul a {
  1771. background-color: #212121;
  1772. }
  1773. nav ul li ul li .toggle,
  1774. nav ul ul a,
  1775. nav ul ul ul a {
  1776. padding: 14px 20px;
  1777. color: #fff;
  1778. font-size: 17px;
  1779. }
  1780. /* Hide Dropdowns by Default */
  1781. nav ul ul {
  1782. float: none;
  1783. position: static;
  1784. color: #ffffff;
  1785. /* has to be the same number as the "line-height" of "nav a" */
  1786. }
  1787. /* Hide menus on hover */
  1788. nav ul ul li:hover>ul,
  1789. nav ul li:hover>ul {
  1790. display: none;
  1791. }
  1792. /* Fisrt Tier Dropdown */
  1793. nav ul ul li {
  1794. display: block;
  1795. width: 100%;
  1796. }
  1797. nav ul ul ul li {
  1798. position: static;
  1799. /* has to be the same number as the "width" of "nav ul ul li" */
  1800. }
  1801. }
  1802. @media all and (max-width: 330px) {
  1803. nav ul li {
  1804. display: block;
  1805. width: 94%;
  1806. }
  1807. }
  1808. .widget {
  1809. margin-bottom: 30px;
  1810. padding-bottom: 35px;
  1811. }
  1812. .widget-title {
  1813. margin-bottom: 15px;
  1814. padding-bottom: 10px;
  1815. font-size: 16px;
  1816. color: #333;
  1817. font-weight: 500;
  1818. border-bottom: 1px solid #dedede;
  1819. }
  1820. .widget.widget-latest-post .media .media-object {
  1821. width: 100px;
  1822. height: auto;
  1823. }
  1824. .widget.widget-latest-post .media .media-heading a {
  1825. color: #000;
  1826. font-size: 16px;
  1827. }
  1828. .widget.widget-latest-post .media p {
  1829. font-size: 12px;
  1830. color: #808080;
  1831. }
  1832. .widget.widget-category ul li {
  1833. margin-bottom: 10px;
  1834. }
  1835. .widget.widget-category ul li a {
  1836. color: #837f7e;
  1837. -webkit-transition: all 0.3s ease;
  1838. transition: all 0.3s ease;
  1839. }
  1840. .widget.widget-category ul li a:before {
  1841. padding-right: 10px;
  1842. }
  1843. .widget.widget-category ul li a:hover {
  1844. color: #655e7a;
  1845. padding-left: 5px;
  1846. }
  1847. .widget.widget-tag ul li {
  1848. margin-bottom: 10px;
  1849. display: inline-block;
  1850. margin-right: 5px;
  1851. }
  1852. .widget.widget-tag ul li a {
  1853. color: #837f7e;
  1854. display: inline-block;
  1855. padding: 8px 15px;
  1856. border: 1px solid #dedede;
  1857. border-radius: 30px;
  1858. font-size: 14px;
  1859. -webkit-transition: all 0.3s ease;
  1860. transition: all 0.3s ease;
  1861. }
  1862. .widget.widget-tag ul li a:hover {
  1863. color: #fff;
  1864. background: #655e7a;
  1865. border: 1px solid #655e7a;
  1866. }
  1867. .list-group {
  1868. display: -webkit-box;
  1869. display: -ms-flexbox;
  1870. display: flex;
  1871. -webkit-box-orient: vertical;
  1872. -webkit-box-direction: normal;
  1873. -ms-flex-direction: column;
  1874. flex-direction: column;
  1875. padding-left: 0;
  1876. margin-bottom: 0;
  1877. border-radius: 0.25rem;
  1878. }
  1879. .list-group-item {
  1880. position: relative;
  1881. display: block;
  1882. padding: 0.5rem 1rem;
  1883. text-decoration: none;
  1884. background-color: #fff;
  1885. border: 1px solid rgba(0, 0, 0, 0.125);
  1886. }
  1887. .list-group-item.active {
  1888. z-index: 2;
  1889. color: #fff;
  1890. background-color: #78ad42;
  1891. border-color: #78ad42;
  1892. }
  1893. .d-none {
  1894. display: none !important;
  1895. }
  1896. .d-block {
  1897. display: block !important;
  1898. }
  1899. @media (min-width: 576px) {
  1900. .d-sm-block {
  1901. display: block !important;
  1902. }
  1903. }
  1904. @media (min-width: 768px) {
  1905. .d-md-block {
  1906. display: block !important;
  1907. }
  1908. .d-md-none {
  1909. display: none !important;
  1910. }
  1911. }
  1912. @media (min-width: 992px) {
  1913. .d-lg-none {
  1914. display: none !important;
  1915. }
  1916. }
  1917. input[type="radio"][class="style"]:checked+label {
  1918. color: white;
  1919. background: #6666ff;
  1920. }
  1921. .align-items-center {
  1922. -webkit-box-align: center !important;
  1923. -ms-flex-align: center !important;
  1924. align-items: center !important;
  1925. }
  1926. .justify-content-center {
  1927. justify-content: center !important;
  1928. }
  1929. .order-1 {
  1930. -webkit-box-ordinal-group: 2 !important;
  1931. -ms-flex-order: 1 !important;
  1932. order: 1 !important;
  1933. }
  1934. .order-2 {
  1935. -webkit-box-ordinal-group: 3 !important;
  1936. -ms-flex-order: 2 !important;
  1937. order: 2 !important;
  1938. }
  1939. .title {
  1940. font-size: 1.3rem;
  1941. }
  1942. .footer {
  1943. color: #656565;
  1944. }
  1945. .footer a {
  1946. color: #656565;
  1947. text-decoration: none;
  1948. }
  1949. .footer a:hover {
  1950. color: #78ad42;
  1951. }
  1952. .footer h5 {
  1953. color: black;
  1954. font-weight: 600;
  1955. padding-bottom: 15px;
  1956. }
  1957. .footer .link {
  1958. padding-bottom: 20px;
  1959. }
  1960. @media (min-width: 992px) {
  1961. .order-lg-1 {
  1962. -webkit-box-ordinal-group: 2 !important;
  1963. -ms-flex-order: 1 !important;
  1964. order: 1 !important;
  1965. }
  1966. .order-lg-2 {
  1967. -webkit-box-ordinal-group: 3 !important;
  1968. -ms-flex-order: 2 !important;
  1969. order: 2 !important;
  1970. }
  1971. }
  1972. /* Airspace Template SCSS */
  1973. .w-25 {
  1974. width: 25% !important;
  1975. }
  1976. .w-50 {
  1977. width: 50% !important;
  1978. }
  1979. .w-75 {
  1980. width: 75% !important;
  1981. }
  1982. .w-100 {
  1983. width: 100% !important;
  1984. }
  1985. /* 顏色設定 */
  1986. section-style,
  1987. .section1,
  1988. .section2,
  1989. .section3,
  1990. .section4,
  1991. .section5,
  1992. .section6,
  1993. .section7,
  1994. .section8,
  1995. .section9,
  1996. .section10,
  1997. .section11,
  1998. .section13,
  1999. .section14,
  2000. .section16,
  2001. .section17,
  2002. .section18,
  2003. .section19,
  2004. .section22,
  2005. .section24,
  2006. .section25,
  2007. .section26,
  2008. .section27,
  2009. .section28,
  2010. .section29,
  2011. .section30,
  2012. .section31,
  2013. .section32,
  2014. .section33,
  2015. .section34,
  2016. .section35,
  2017. .section36,
  2018. .section37,
  2019. .section38,
  2020. .section39,
  2021. .section40,
  2022. .section43,
  2023. .section44,
  2024. .section45 {
  2025. padding: 80px 0;
  2026. }
  2027. section-style .block p,
  2028. .section1 .block p,
  2029. .section2 .block p,
  2030. .section3 .block p,
  2031. .section4 .block p,
  2032. .section5 .block p,
  2033. .section6 .block p,
  2034. .section7 .block p,
  2035. .section8 .block p,
  2036. .section9 .block p,
  2037. .section10 .block p,
  2038. .section11 .block p,
  2039. .section13 .block p,
  2040. .section14 .block p,
  2041. .section16 .block p,
  2042. .section17 .block p,
  2043. .section18 .block p,
  2044. .section19 .block p,
  2045. .section22 .block p,
  2046. .section24 .block p,
  2047. .section25 .block p,
  2048. .section26 .block p,
  2049. .section27 .block p,
  2050. .section28 .block p,
  2051. .section29 .block p,
  2052. .section30 .block p,
  2053. .section31 .block p,
  2054. .section32 .block p,
  2055. .section33 .block p,
  2056. .section34 .block p,
  2057. .section35 .block p,
  2058. .section36 .block p,
  2059. .section37 .block p,
  2060. .section38 .block p,
  2061. .section39 .block p,
  2062. .section40 .block p,
  2063. .section43 .block p,
  2064. .section44 .block p,
  2065. .section45 .block p {
  2066. line-height: 20px;
  2067. }
  2068. section-style .block img,
  2069. .section1 .block img,
  2070. .section2 .block img,
  2071. .section3 .block img,
  2072. .section4 .block img,
  2073. .section5 .block img,
  2074. .section6 .block img,
  2075. .section7 .block img,
  2076. .section8 .block img,
  2077. .section9 .block img,
  2078. .section10 .block img,
  2079. .section11 .block img,
  2080. .section13 .block img,
  2081. .section14 .block img,
  2082. .section16 .block img,
  2083. .section17 .block img,
  2084. .section18 .block img,
  2085. .section19 .block img,
  2086. .section22 .block img,
  2087. .section24 .block img,
  2088. .section25 .block img,
  2089. .section26 .block img,
  2090. .section27 .block img,
  2091. .section28 .block img,
  2092. .section29 .block img,
  2093. .section30 .block img,
  2094. .section31 .block img,
  2095. .section32 .block img,
  2096. .section33 .block img,
  2097. .section34 .block img,
  2098. .section35 .block img,
  2099. .section36 .block img,
  2100. .section37 .block img,
  2101. .section38 .block img,
  2102. .section39 .block img,
  2103. .section40 .block img,
  2104. .section43 .block img,
  2105. .section44 .block img,
  2106. .section45 .block img {
  2107. width: 100%;
  2108. }
  2109. section-style .block .start,
  2110. .section1 .block .start,
  2111. .section2 .block .start,
  2112. .section3 .block .start,
  2113. .section4 .block .start,
  2114. .section5 .block .start,
  2115. .section6 .block .start,
  2116. .section7 .block .start,
  2117. .section8 .block .start,
  2118. .section9 .block .start,
  2119. .section10 .block .start,
  2120. .section11 .block .start,
  2121. .section13 .block .start,
  2122. .section14 .block .start,
  2123. .section16 .block .start,
  2124. .section17 .block .start,
  2125. .section18 .block .start,
  2126. .section19 .block .start,
  2127. .section22 .block .start,
  2128. .section24 .block .start,
  2129. .section25 .block .start,
  2130. .section26 .block .start,
  2131. .section27 .block .start,
  2132. .section28 .block .start,
  2133. .section29 .block .start,
  2134. .section30 .block .start,
  2135. .section31 .block .start,
  2136. .section32 .block .start,
  2137. .section33 .block .start,
  2138. .section34 .block .start,
  2139. .section35 .block .start,
  2140. .section36 .block .start,
  2141. .section37 .block .start,
  2142. .section38 .block .start,
  2143. .section39 .block .start,
  2144. .section40 .block .start,
  2145. .section43 .block .start,
  2146. .section44 .block .start,
  2147. .section45 .block .start {
  2148. padding-top: 30px;
  2149. }
  2150. section-style .content,
  2151. .section1 .content,
  2152. .section2 .content,
  2153. .section3 .content,
  2154. .section4 .content,
  2155. .section5 .content,
  2156. .section6 .content,
  2157. .section7 .content,
  2158. .section8 .content,
  2159. .section9 .content,
  2160. .section10 .content,
  2161. .section11 .content,
  2162. .section13 .content,
  2163. .section14 .content,
  2164. .section16 .content,
  2165. .section17 .content,
  2166. .section18 .content,
  2167. .section19 .content,
  2168. .section22 .content,
  2169. .section24 .content,
  2170. .section25 .content,
  2171. .section26 .content,
  2172. .section27 .content,
  2173. .section28 .content,
  2174. .section29 .content,
  2175. .section30 .content,
  2176. .section31 .content,
  2177. .section32 .content,
  2178. .section33 .content,
  2179. .section34 .content,
  2180. .section35 .content,
  2181. .section36 .content,
  2182. .section37 .content,
  2183. .section38 .content,
  2184. .section39 .content,
  2185. .section40 .content,
  2186. .section43 .content,
  2187. .section44 .content,
  2188. .section45 .content {
  2189. padding: 0 30px;
  2190. }
  2191. @media (min-width: 992px) {
  2192. section-style .content,
  2193. .section1 .content,
  2194. .section2 .content,
  2195. .section3 .content,
  2196. .section4 .content,
  2197. .section5 .content,
  2198. .section6 .content,
  2199. .section7 .content,
  2200. .section8 .content,
  2201. .section9 .content,
  2202. .section10 .content,
  2203. .section11 .content,
  2204. .section13 .content,
  2205. .section14 .content,
  2206. .section16 .content,
  2207. .section17 .content,
  2208. .section18 .content,
  2209. .section19 .content,
  2210. .section22 .content,
  2211. .section24 .content,
  2212. .section25 .content,
  2213. .section26 .content,
  2214. .section27 .content,
  2215. .section28 .content,
  2216. .section29 .content,
  2217. .section30 .content,
  2218. .section31 .content,
  2219. .section32 .content,
  2220. .section33 .content,
  2221. .section34 .content,
  2222. .section35 .content,
  2223. .section36 .content,
  2224. .section37 .content,
  2225. .section38 .content,
  2226. .section39 .content,
  2227. .section40 .content,
  2228. .section43 .content,
  2229. .section44 .content,
  2230. .section45 .content {
  2231. padding: 0 50px;
  2232. }
  2233. }
  2234. section-style .card-text,
  2235. .section1 .card-text,
  2236. .section2 .card-text,
  2237. .section3 .card-text,
  2238. .section4 .card-text,
  2239. .section5 .card-text,
  2240. .section6 .card-text,
  2241. .section7 .card-text,
  2242. .section8 .card-text,
  2243. .section9 .card-text,
  2244. .section10 .card-text,
  2245. .section11 .card-text,
  2246. .section13 .card-text,
  2247. .section14 .card-text,
  2248. .section16 .card-text,
  2249. .section17 .card-text,
  2250. .section18 .card-text,
  2251. .section19 .card-text,
  2252. .section22 .card-text,
  2253. .section24 .card-text,
  2254. .section25 .card-text,
  2255. .section26 .card-text,
  2256. .section27 .card-text,
  2257. .section28 .card-text,
  2258. .section29 .card-text,
  2259. .section30 .card-text,
  2260. .section31 .card-text,
  2261. .section32 .card-text,
  2262. .section33 .card-text,
  2263. .section34 .card-text,
  2264. .section35 .card-text,
  2265. .section36 .card-text,
  2266. .section37 .card-text,
  2267. .section38 .card-text,
  2268. .section39 .card-text,
  2269. .section40 .card-text,
  2270. .section43 .card-text,
  2271. .section44 .card-text,
  2272. .section45 .card-text {
  2273. padding-bottom: 5px;
  2274. font-size: 0.8rem;
  2275. color: #666666;
  2276. }
  2277. section-style .sub-title,
  2278. .section1 .sub-title,
  2279. .section2 .sub-title,
  2280. .section3 .sub-title,
  2281. .section4 .sub-title,
  2282. .section5 .sub-title,
  2283. .section6 .sub-title,
  2284. .section7 .sub-title,
  2285. .section8 .sub-title,
  2286. .section9 .sub-title,
  2287. .section10 .sub-title,
  2288. .section11 .sub-title,
  2289. .section13 .sub-title,
  2290. .section14 .sub-title,
  2291. .section16 .sub-title,
  2292. .section17 .sub-title,
  2293. .section18 .sub-title,
  2294. .section19 .sub-title,
  2295. .section22 .sub-title,
  2296. .section24 .sub-title,
  2297. .section25 .sub-title,
  2298. .section26 .sub-title,
  2299. .section27 .sub-title,
  2300. .section28 .sub-title,
  2301. .section29 .sub-title,
  2302. .section30 .sub-title,
  2303. .section31 .sub-title,
  2304. .section32 .sub-title,
  2305. .section33 .sub-title,
  2306. .section34 .sub-title,
  2307. .section35 .sub-title,
  2308. .section36 .sub-title,
  2309. .section37 .sub-title,
  2310. .section38 .sub-title,
  2311. .section39 .sub-title,
  2312. .section40 .sub-title,
  2313. .section43 .sub-title,
  2314. .section44 .sub-title,
  2315. .section45 .sub-title {
  2316. color: #000;
  2317. }
  2318. .section1 table {
  2319. border-collapse: collapse;
  2320. }
  2321. .section1 td {
  2322. border: none;
  2323. }
  2324. .section2 {
  2325. background-color: #f2f2f2;
  2326. }
  2327. .section5 {
  2328. background-color: #ececec;
  2329. }
  2330. .section5 .card {
  2331. background-color: #ececec;
  2332. }
  2333. .section6 {
  2334. color: #666666;
  2335. }
  2336. .section6 h2 {
  2337. color: #000;
  2338. }
  2339. .section7 {
  2340. padding: 40px 0;
  2341. margin-bottom: 60px;
  2342. color: #666666;
  2343. background-color: #f2f2f2;
  2344. }
  2345. .section7 a {
  2346. color: #000;
  2347. font-weight: 600;
  2348. padding: 0 15px;
  2349. }
  2350. .section7 a:hover {
  2351. color: #78ad42;
  2352. text-decoration: none;
  2353. }
  2354. .section8 {
  2355. color: #666666;
  2356. }
  2357. .section8 h2 {
  2358. font-weight: 600;
  2359. color: #000;
  2360. }
  2361. .section8 p {
  2362. font-size: 0.8rem;
  2363. color: #666666;
  2364. }
  2365. .section9 {
  2366. color: #666666;
  2367. }
  2368. .section9 h1 {
  2369. font-weight: 600;
  2370. color: #000;
  2371. }
  2372. .section9 h2 {
  2373. font-weight: 600;
  2374. color: #000;
  2375. }
  2376. .section9 p {
  2377. font-size: 0.8rem;
  2378. color: #666666;
  2379. }
  2380. .section9 .title {
  2381. color: #000;
  2382. }
  2383. .section10 {
  2384. font-weight: 600;
  2385. }
  2386. .section10 .l1 {
  2387. font-size: 0.8rem;
  2388. margin-top: 60px;
  2389. color: #b4b4b4;
  2390. }
  2391. .section10 .l2 {
  2392. font-size: 0.8rem;
  2393. color: #d1c7a8;
  2394. }
  2395. .section10 .l3 {
  2396. font-size: 0.8rem;
  2397. color: #a5aa91;
  2398. }
  2399. .section11 {
  2400. background-color: #ececec;
  2401. }
  2402. .section12 {
  2403. color: #666666;
  2404. }
  2405. .section12 h2 {
  2406. font-weight: 600;
  2407. color: #000;
  2408. }
  2409. .section12 .li {
  2410. list-style-type: disc;
  2411. padding-left: 0px;
  2412. }
  2413. .section12 a.reservation-link {
  2414. text-decoration: underline;
  2415. }
  2416. .section13 {
  2417. padding: 0;
  2418. }
  2419. .section14 {
  2420. padding: 60px;
  2421. height: 200px;
  2422. }
  2423. .section14 .title {
  2424. color: #78ad42;
  2425. }
  2426. .section15 .title {
  2427. color: #78ad42;
  2428. }
  2429. .section16 h2 {
  2430. color: #78ad42;
  2431. }
  2432. .section16 .row {
  2433. margin-bottom: 60px;
  2434. }
  2435. .section16 .title {
  2436. color: #78ad42;
  2437. }
  2438. .section16 .img-resize {
  2439. padding: 0 2.5rem;
  2440. }
  2441. .section17 {
  2442. background-color: #f1f1f1;
  2443. }
  2444. .section17 h2 {
  2445. color: #78ad42;
  2446. }
  2447. .section17 .row {
  2448. margin-bottom: 60px;
  2449. }
  2450. .section17 .title {
  2451. color: #78ad42;
  2452. }
  2453. .section17 .img-resize {
  2454. padding: 0 2.5rem;
  2455. }
  2456. .section18 {
  2457. color: #fff;
  2458. font-weight: 600;
  2459. background-color: #333333;
  2460. }
  2461. .section18 a {
  2462. color: #2abff4;
  2463. padding: 0 15px;
  2464. text-decoration: underline;
  2465. }
  2466. .section18 a:hover {
  2467. color: #78ad42;
  2468. }
  2469. .section19 h2 {
  2470. color: #78ad42;
  2471. }
  2472. .section19 .title {
  2473. color: #78ad42;
  2474. }
  2475. .section19 .sub-title {
  2476. color: #4d4d4d;
  2477. }
  2478. @media (min-width: 768px) {
  2479. .section19 .img-padding {
  2480. padding: 0 330px;
  2481. }
  2482. }
  2483. .section22 .title {
  2484. color: #78ad42;
  2485. }
  2486. @media (min-width: 768px) {
  2487. .section22 .img-padding {
  2488. padding: 0 100px 0 0;
  2489. }
  2490. }
  2491. .section24 {
  2492. padding: 50px 0;
  2493. }
  2494. .section24 .title {
  2495. color: #78ad42;
  2496. }
  2497. .section25 {
  2498. background-color: #f1f1f1;
  2499. font-family: "Noto Sans TC", sans-serif;
  2500. }
  2501. .section25 h2 {
  2502. color: #78ad42;
  2503. }
  2504. .section25 .title {
  2505. color: #78ad42;
  2506. }
  2507. .section25 .sub-title {
  2508. color: #4d4d4d;
  2509. }
  2510. .section25 .header p {
  2511. font-size: 1.1rem;
  2512. padding-bottom: 5px;
  2513. color: black;
  2514. text-align: center;
  2515. font-weight: bold;
  2516. }
  2517. .section25 .title-box {
  2518. width: 700px;
  2519. margin: auto;
  2520. padding-bottom: 25px;
  2521. margin-bottom: 40px;
  2522. display: flex;
  2523. flex-wrap: wrap;
  2524. justify-content: center;
  2525. border-bottom: 2px solid #78ad42;
  2526. color: #78ad42;
  2527. font-size: 1.1rem;
  2528. font-weight: bold;
  2529. }
  2530. /* .section25 .title-box {
  2531. padding: 0 20px;
  2532. font-size: 1.1rem;
  2533. padding-bottom: 5px;
  2534. color: #78ad42;
  2535. font-weight: bold;
  2536. } */
  2537. /* .section25 .title-box div {
  2538. display: inline;
  2539. padding-bottom: 25px;
  2540. margin-bottom: 40px;
  2541. border-bottom: 2px solid;
  2542. } */
  2543. .section25 .title-box a {
  2544. padding: 5px 8px;
  2545. color: #78ad42;
  2546. text-decoration: none;
  2547. cursor: pointer;
  2548. }
  2549. .section25 .title-box a:hover {
  2550. opacity: 0.7;
  2551. }
  2552. @media (max-width: 767px) {
  2553. .section25 .header-img-box {
  2554. padding: 0 8%;
  2555. }
  2556. .section25 .title-box {
  2557. width: 490px;
  2558. margin-bottom: 40px;
  2559. justify-content: start;
  2560. }
  2561. }
  2562. @media (max-width: 414px) {
  2563. .section25 .title-box {
  2564. width: 350px;
  2565. }
  2566. }
  2567. @media (max-width: 576px) {
  2568. .section25 .header-img-box {
  2569. padding: 0 12%;
  2570. }
  2571. }
  2572. .section25 .header-img {
  2573. width: 200px;
  2574. height: auto;
  2575. max-width: 100%;
  2576. margin-bottom: 30px;
  2577. }
  2578. .section25 #container-1 {
  2579. padding-top: 100px;
  2580. height: 850px;
  2581. }
  2582. .section25 #container-4 {
  2583. height: 650px;
  2584. }
  2585. .section25 #container-5 {
  2586. height: 1050px;
  2587. }
  2588. .section25 #container-1,
  2589. .section25 #container-2,
  2590. .section25 #container-3,
  2591. .section25 #container-4,
  2592. .section25 #container-5 {
  2593. margin-bottom: 12rem;
  2594. }
  2595. @media (max-width: 992px) {
  2596. .section25 #container-1 {
  2597. height: 950px;
  2598. }
  2599. }
  2600. @media (max-width: 767px) {
  2601. .section25 #container-1 {
  2602. height: 1750px;
  2603. }
  2604. .section25 #container-4 {
  2605. height: 1100px;
  2606. }
  2607. .section25 #container-5 {
  2608. height: 1450px;
  2609. }
  2610. .section25 #container-1,
  2611. .section25 #container-2,
  2612. .section25 #container-3,
  2613. .section25 #container-4,
  2614. .section25 #container-5 {
  2615. margin-bottom: 8rem;
  2616. }
  2617. }
  2618. @media (max-width: 480px) {
  2619. .section25 #container-1 {
  2620. height: 1850px;
  2621. }
  2622. .section25 #container-4 {
  2623. height: 1200px;
  2624. }
  2625. .section25 #container-5 {
  2626. height: 1520px;
  2627. }
  2628. }
  2629. @media (max-width: 376px) {
  2630. .section25 #container-1 {
  2631. height: 1950px;
  2632. }
  2633. .section25 #container-5 {
  2634. height: 1600px;
  2635. }
  2636. }
  2637. .section25 .number-1,
  2638. .section25 .number-2,
  2639. .section25 .number-3,
  2640. .section25 .number-4,
  2641. .section25 .number-5 {
  2642. width: 120px;
  2643. height: 120px;
  2644. position: relative;
  2645. margin-right: 20px;
  2646. border: 2px solid #769948;
  2647. border-radius: 100%;
  2648. font-size: 1rem;
  2649. line-height: 1.5;
  2650. letter-spacing: 2px;
  2651. color: #78ad42;
  2652. text-align: center;
  2653. }
  2654. .section25 .number-1::before,
  2655. .section25 .number-2::before,
  2656. .section25 .number-3::before,
  2657. .section25 .number-4::before,
  2658. .section25 .number-5::before {
  2659. content: "";
  2660. display: block;
  2661. width: 2px;
  2662. background: #78ad42;
  2663. position: relative;
  2664. left: 2.3rem;
  2665. }
  2666. .section25 .number-1::before {
  2667. height: 610px;
  2668. bottom: -22.8rem;
  2669. }
  2670. .section25 .number-2::before,
  2671. .section25 .number-3::before {
  2672. height: 380px;
  2673. bottom: -15.6rem;
  2674. }
  2675. .section25 .number-4::before {
  2676. height: 470px;
  2677. bottom: -18.3rem;
  2678. }
  2679. .section25 .number-5::before {
  2680. height: 1050px;
  2681. bottom: -36.5rem;
  2682. }
  2683. @media (max-width: 1200px) {
  2684. .section25 .number-1::before {
  2685. height: 680px;
  2686. bottom: -25rem;
  2687. }
  2688. .section25 .number-4::before {
  2689. height: 560px;
  2690. bottom: -21.2rem;
  2691. }
  2692. .section25 .number-5::before {
  2693. height: 1080px;
  2694. bottom: -37.5rem;
  2695. }
  2696. }
  2697. @media (max-width: 992px) {
  2698. .section25 .number-1::before {
  2699. height: 780px;
  2700. bottom: -28rem;
  2701. }
  2702. .section25 .number-4::before {
  2703. height: 600px;
  2704. bottom: -22.5rem;
  2705. }
  2706. .section25 .number-5::before {
  2707. height: 1100px;
  2708. bottom: -38.1rem;
  2709. }
  2710. }
  2711. @media (max-width: 767px) {
  2712. .section25 .number-1::before {
  2713. height: 1530px;
  2714. bottom: -51.5rem;
  2715. }
  2716. .section25 .number-2::before {
  2717. height: 780px;
  2718. bottom: -28rem;
  2719. }
  2720. .section25 .number-3::before {
  2721. height: 570px;
  2722. bottom: -21.5rem;
  2723. }
  2724. .section25 .number-4::before {
  2725. height: 980px;
  2726. bottom: -34.3rem;
  2727. }
  2728. .section25 .number-5::before {
  2729. height: 1440px;
  2730. bottom: -48.6rem;
  2731. }
  2732. }
  2733. @media (max-width: 480px) {
  2734. .section25 .number-1::before {
  2735. height: 1700px;
  2736. bottom: -56.2rem;
  2737. }
  2738. .section25 .number-2::before {
  2739. height: 900px;
  2740. bottom: -31.2rem;
  2741. }
  2742. .section25 .number-3::before {
  2743. height: 650px;
  2744. bottom: -23.4rem;
  2745. }
  2746. .section25 .number-4::before {
  2747. height: 1070px;
  2748. bottom: -36.5rem;
  2749. }
  2750. .section25 .number-5::before {
  2751. height: 1480px;
  2752. bottom: -49.4rem;
  2753. }
  2754. .section25 .number-1,
  2755. .section25 .number-2,
  2756. .section25 .number-3,
  2757. .section25 .number-4,
  2758. .section25 .number-5 {
  2759. width: 100px;
  2760. height: 100px;
  2761. margin-right: 0px;
  2762. }
  2763. }
  2764. @media (max-width: 414px) {
  2765. .section25 .number-5::before {
  2766. height: 1550px;
  2767. bottom: -51.5rem;
  2768. }
  2769. }
  2770. @media (max-width: 375px) {
  2771. .section25 .number-1::before {
  2772. height: 1800px;
  2773. bottom: -59.3rem;
  2774. }
  2775. .section25 .number-2::before {
  2776. height: 950px;
  2777. bottom: -32.7rem;
  2778. }
  2779. .section25 .number-3::before {
  2780. height: 700px;
  2781. bottom: -25rem;
  2782. }
  2783. .section25 .number-4::before {
  2784. height: 1170px;
  2785. bottom: -39.6rem;
  2786. }
  2787. .section25 .number-5::before {
  2788. height: 1630px;
  2789. bottom: -54rem;
  2790. }
  2791. }
  2792. .section25 .number-1::after,
  2793. .section25 .number-2::after,
  2794. .section25 .number-3::after,
  2795. .section25 .number-4::after {
  2796. content: "";
  2797. display: block;
  2798. width: 10px;
  2799. height: 10px;
  2800. border-top: solid 15px #78ad42;
  2801. border-left: solid 15px transparent;
  2802. border-right: solid 15px transparent;
  2803. position: absolute;
  2804. }
  2805. .section25 .number-5::after {
  2806. content: "";
  2807. display: block;
  2808. width: 18px;
  2809. height: 18px;
  2810. border-radius: 100%;
  2811. border-top: solid 18px #78ad42;
  2812. position: absolute;
  2813. left: 2.75rem;
  2814. }
  2815. .section25 .number-1::after {
  2816. bottom: -39rem;
  2817. }
  2818. .section25 .number-2::after,
  2819. .section25 .number-3::after {
  2820. bottom: -24.7rem;
  2821. }
  2822. .section25 .number-4::after {
  2823. bottom: -30rem;
  2824. }
  2825. .section25 .number-5::after {
  2826. bottom: -66.5rem;
  2827. left: 3.15rem;
  2828. }
  2829. @media (max-width: 1200px) {
  2830. .section25 .number-1::after {
  2831. bottom: -43rem;
  2832. }
  2833. .section25 .number-4::after {
  2834. bottom: -35.5rem;
  2835. }
  2836. .section25 .number-5::after {
  2837. bottom: -68rem;
  2838. left: 3.15rem;
  2839. }
  2840. }
  2841. @media (max-width: 992px) {
  2842. .section25 .number-1::after {
  2843. bottom: -49rem;
  2844. }
  2845. .section25 .number-4::after {
  2846. bottom: -38rem;
  2847. }
  2848. .section25 .number-5::after {
  2849. bottom: -69.5rem;
  2850. left: 3.15rem;
  2851. }
  2852. }
  2853. @media (max-width: 767px) {
  2854. .section25 .number-1::after {
  2855. bottom: -96rem;
  2856. }
  2857. .section25 .number-2::after {
  2858. bottom: -49rem;
  2859. }
  2860. .section25 .number-3::after {
  2861. bottom: -36rem;
  2862. }
  2863. .section25 .number-4::after {
  2864. bottom: -62rem;
  2865. }
  2866. .section25 .number-5::after {
  2867. bottom: -90.5rem;
  2868. left: 3.1rem;
  2869. }
  2870. }
  2871. @media (max-width: 480px) {
  2872. .section25 .number-1::after {
  2873. bottom: -107rem;
  2874. }
  2875. .section25 .number-2::after {
  2876. bottom: -56.5rem;
  2877. }
  2878. .section25 .number-3::after {
  2879. bottom: -41.5rem;
  2880. }
  2881. .section25 .number-4::after {
  2882. bottom: -67.5rem;
  2883. }
  2884. .section25 .number-5::after {
  2885. bottom: -93.5rem;
  2886. left: 2.5rem;
  2887. }
  2888. }
  2889. @media (max-width: 414px) {
  2890. .section25 .number-5::after {
  2891. bottom: -97rem;
  2892. }
  2893. }
  2894. @media (max-width: 375px) {
  2895. .section25 .number-1::after {
  2896. bottom: -113rem;
  2897. }
  2898. .section25 .number-2::after {
  2899. bottom: -60rem;
  2900. }
  2901. .section25 .number-3::after {
  2902. bottom: -44.5rem;
  2903. }
  2904. .section25 .number-4::after {
  2905. bottom: -74rem;
  2906. }
  2907. .section25 .number-5::after {
  2908. bottom: -102.5rem;
  2909. }
  2910. }
  2911. .section25 .number-mt {
  2912. padding-top: 4rem;
  2913. }
  2914. @media (max-width: 992px) {
  2915. .section25 .number-mt {
  2916. padding-top: 0;
  2917. }
  2918. }
  2919. .section25 .img-style {
  2920. width: 150px;
  2921. height: auto;
  2922. margin-bottom: 30px;
  2923. }
  2924. .section25 h3 {
  2925. margin: 30px 0 60px;
  2926. }
  2927. .section25 h3,
  2928. .section25 h4 {
  2929. margin: 0;
  2930. padding-bottom: 5px;
  2931. font-size: 1.1rem;
  2932. font-weight: bold;
  2933. color: #78ad42;
  2934. }
  2935. .section25 .text-box {
  2936. margin: 0;
  2937. padding: 20px;
  2938. font-family: "Noto Sans TC", sans-serif;
  2939. font-weight: 400;
  2940. font-size: 1rem;
  2941. letter-spacing: 2px;
  2942. color: #4d4d4d;
  2943. border: 2px solid #78ad42;
  2944. text-align: justify;
  2945. }
  2946. .section25 .text-box p {
  2947. margin-bottom: 0;
  2948. }
  2949. .section25 .example {
  2950. margin: 20px 0;
  2951. display: block;
  2952. color: #78ad42;
  2953. font-weight: bold;
  2954. }
  2955. .section25 .example:hover {
  2956. opacity: .8;
  2957. }
  2958. .section25 ul {
  2959. margin-left: 25px;
  2960. padding-left: 0;
  2961. margin-bottom: 0;
  2962. }
  2963. .section25 .content {
  2964. color: #fff;
  2965. background: #565656;
  2966. font-size: 1.3rem;
  2967. font-weight: bold;
  2968. }
  2969. .section25 a {
  2970. color: #29b4e8;
  2971. text-decoration: underline;
  2972. font-size: 1rem;
  2973. }
  2974. @media (min-width: 768px) {
  2975. .section25 .img-padding {
  2976. padding: 0px 350px;
  2977. }
  2978. }
  2979. .section25 .break {
  2980. display: none;
  2981. }
  2982. @media (max-width: 768px) {
  2983. .section25 .break {
  2984. display: inline;
  2985. }
  2986. }
  2987. .section26 {
  2988. background-color: #f1f1f1;
  2989. }
  2990. .section26 .title {
  2991. color: #78ad42;
  2992. }
  2993. @media (min-width: 768px) {
  2994. .section26 .img-padding {
  2995. padding: 80px 280px;
  2996. }
  2997. }
  2998. .section27 h2 {
  2999. color: #78ad42;
  3000. }
  3001. .section27 .row {
  3002. margin-bottom: 60px;
  3003. }
  3004. .section27 .title {
  3005. color: #78ad42;
  3006. }
  3007. .section28 {
  3008. background-color: #f1f1f1;
  3009. }
  3010. .section28 h2 {
  3011. color: #78ad42;
  3012. }
  3013. .section28 .row {
  3014. margin-bottom: 60px;
  3015. }
  3016. .section28 .step {
  3017. margin-bottom: 20px;
  3018. }
  3019. .section28 .title {
  3020. color: #78ad42;
  3021. }
  3022. .section29 {
  3023. background-color: #f1f1f1;
  3024. }
  3025. .section29 .title {
  3026. color: #78ad42;
  3027. }
  3028. .section30 .title {
  3029. color: #78ad42;
  3030. }
  3031. .section31 h2 {
  3032. color: #78ad42;
  3033. }
  3034. .section31 .title {
  3035. color: #78ad42;
  3036. }
  3037. @media (min-width: 768px) {
  3038. .section31 .img-padding {
  3039. padding: 0 200px;
  3040. }
  3041. .section31 .img-padding2 {
  3042. padding: 0 330px;
  3043. }
  3044. }
  3045. .section32 {
  3046. padding: 0 0 80px 0;
  3047. background-color: #f1f1f1;
  3048. }
  3049. .section32 h2 {
  3050. color: #78ad42;
  3051. }
  3052. .section32 .title {
  3053. color: #78ad42;
  3054. }
  3055. .section32 .sub-title {
  3056. color: #4d4d4d;
  3057. }
  3058. .section33 {
  3059. padding: 0 0 80px 0;
  3060. }
  3061. .section33 h2 {
  3062. color: #78ad42;
  3063. }
  3064. .section33 .title {
  3065. color: #78ad42;
  3066. }
  3067. .section33 .sub-title {
  3068. color: #4d4d4d;
  3069. }
  3070. .section34 .title {
  3071. color: #78ad42;
  3072. }
  3073. @media (min-width: 768px) {
  3074. .section34 .img-padding {
  3075. padding-right: 250px;
  3076. padding-left: 250px;
  3077. }
  3078. }
  3079. .section35 {
  3080. padding: 0 0 80px 0;
  3081. }
  3082. .section35 h2 {
  3083. color: #78ad42;
  3084. }
  3085. .section35 .title {
  3086. color: #78ad42;
  3087. }
  3088. .section35 .sub-title {
  3089. color: #4d4d4d;
  3090. }
  3091. @media (min-width: 768px) {
  3092. .section35 .img-padding {
  3093. padding: 0 150px;
  3094. }
  3095. }
  3096. .section36 .title {
  3097. color: #78ad42;
  3098. }
  3099. .section36 .img-padding2 {
  3100. padding: 0 50px;
  3101. }
  3102. @media (min-width: 768px) {
  3103. .section36 .img-padding {
  3104. padding: 0 200px;
  3105. }
  3106. .section36 .img-padding2 {
  3107. padding: 0 400px;
  3108. }
  3109. }
  3110. .section37 {
  3111. padding: 0 0 80px 0;
  3112. background-color: #f1f1f1;
  3113. }
  3114. .section37 h2 {
  3115. color: #78ad42;
  3116. }
  3117. .section37 .title {
  3118. color: #78ad42;
  3119. }
  3120. .section37 .sub-title {
  3121. color: #4d4d4d;
  3122. }
  3123. @media (min-width: 768px) {
  3124. .section37 .img-padding {
  3125. padding: 0 150px;
  3126. }
  3127. }
  3128. .section38 {
  3129. padding: 40px 0;
  3130. margin-bottom: 60px;
  3131. color: #666666;
  3132. background-color: #f2f2f2;
  3133. color: #777777;
  3134. }
  3135. .section38 .title {
  3136. color: #000;
  3137. font-weight: 600;
  3138. font-size: 1.3rem;
  3139. }
  3140. .section38 .bar {
  3141. font-size: 1.6rem;
  3142. }
  3143. .section38 a {
  3144. color: #777777;
  3145. padding: 0 15px;
  3146. }
  3147. .section38 a:hover {
  3148. color: #78ad42;
  3149. text-decoration: none;
  3150. }
  3151. .section_banner {
  3152. padding-top: 20px;
  3153. }
  3154. .section39 {
  3155. padding: 40px 0;
  3156. margin-bottom: 60px;
  3157. color: #666666;
  3158. background-color: #333333;
  3159. color: #fff;
  3160. }
  3161. .section39 .bar {
  3162. font-size: 1.6rem;
  3163. }
  3164. .section39 a {
  3165. color: #fff;
  3166. padding: 0 15px;
  3167. }
  3168. .section39 a:hover {
  3169. color: #78ad42;
  3170. text-decoration: none;
  3171. }
  3172. .section40 {
  3173. padding: 80px 0;
  3174. background-color: #f1f1f1;
  3175. }
  3176. .section40 h2 {
  3177. color: #333333;
  3178. font-weight: 600;
  3179. }
  3180. .section40 a {
  3181. color: #2abcf1;
  3182. font-weight: 600;
  3183. }
  3184. .section40 a:hover {
  3185. color: #78ad42;
  3186. text-decoration: none;
  3187. }
  3188. @media (min-width: 768px) {
  3189. .section40 .card {
  3190. padding-right: 100px;
  3191. padding-left: 100px;
  3192. }
  3193. .section40 .mx-md-4 {
  3194. margin-right: 1.5rem !important;
  3195. margin-left: 1.5rem !important;
  3196. }
  3197. }
  3198. .section41 {
  3199. padding: 40px 0;
  3200. }
  3201. .section41 table {
  3202. border-collapse: collapse;
  3203. }
  3204. .section41 td {
  3205. padding: 40px;
  3206. border: 0px;
  3207. border-bottom: 1px dashed #b3b3b3;
  3208. }
  3209. .section41 a {
  3210. color: #000;
  3211. }
  3212. .section41 a:hover {
  3213. color: #78ad42;
  3214. text-decoration: none;
  3215. }
  3216. .section42 {
  3217. padding: 30px 0;
  3218. }
  3219. .section42 table {
  3220. border-collapse: collapse;
  3221. }
  3222. .section42 td {
  3223. padding: 40px 40px 40px 0;
  3224. border: 0px;
  3225. border-bottom: 1px dashed #b3b3b3;
  3226. }
  3227. .section42 a:hover {
  3228. color: #78ad42;
  3229. text-decoration: none;
  3230. }
  3231. .section42 .back {
  3232. color: #666666;
  3233. }
  3234. .section43 {
  3235. color: #fff;
  3236. background-color: #333333;
  3237. padding: 40px;
  3238. height: 200px;
  3239. }
  3240. .section44 {
  3241. padding: 60px 0;
  3242. color: #4d4d4d;
  3243. }
  3244. .section44 h3 {
  3245. font-weight: 600;
  3246. }
  3247. .section44 .title {
  3248. color: #78ad42;
  3249. }
  3250. .section44 .detail {
  3251. color: #4d4d4d;
  3252. }
  3253. .section44 .detail div {
  3254. line-height: 40px;
  3255. }
  3256. .section44 .card {
  3257. padding: 20px;
  3258. margin-top: 40px;
  3259. border-color: #4d4d4d;
  3260. }
  3261. .section44 .description {
  3262. font-size: 1.1rem;
  3263. line-height: 40px;
  3264. }
  3265. @media (min-width: 992px) {
  3266. .section44 .description {
  3267. padding-bottom: 80px;
  3268. }
  3269. }
  3270. .section44 .spec {
  3271. font-size: 1.1rem;
  3272. margin-top: 80px;
  3273. }
  3274. .section44 .image {
  3275. margin-top: 80px;
  3276. }
  3277. .section44 a {
  3278. color: #4d4d4d;
  3279. }
  3280. .section44 a:hover {
  3281. color: #78ad42;
  3282. text-decoration: none;
  3283. }
  3284. .section44 .amp-carousel-button-prev {
  3285. display: none;
  3286. }
  3287. .section44 .amp-carousel-button-next {
  3288. display: none;
  3289. }
  3290. .section44 .carousel-preview>button {
  3291. border-width: 0px;
  3292. }
  3293. .section45 {
  3294. padding: 40px 0;
  3295. color: #666666;
  3296. background-color: #333333;
  3297. color: #fff;
  3298. }
  3299. .section45 .bar {
  3300. font-size: 1.6rem;
  3301. }
  3302. .section45 a {
  3303. color: #fff;
  3304. padding: 0 15px;
  3305. }
  3306. .section45 a:hover {
  3307. color: #78ad42;
  3308. text-decoration: none;
  3309. }
  3310. .section {
  3311. padding: 80px 0;
  3312. }
  3313. .section-title {
  3314. margin-bottom: 70px;
  3315. }
  3316. .section-title h2 {
  3317. text-transform: uppercase;
  3318. font-size: 28px;
  3319. font-weight: 600;
  3320. }
  3321. .section-title p {
  3322. color: #666;
  3323. }
  3324. amp-accordion .question {
  3325. padding: 15px;
  3326. font-weight: 600;
  3327. }
  3328. amp-accordion .fa-angle-down {
  3329. font-size: 24px;
  3330. padding-right: 10px;
  3331. }
  3332. amp-accordion div {
  3333. padding: 15px;
  3334. }
  3335. amp-accordion div .start {
  3336. padding-top: 20px;
  3337. }
  3338. .title-size {
  3339. font-size: 1.1rem;
  3340. padding-bottom: 5px;
  3341. }
  3342. .brand-color {
  3343. color: #78ad42;
  3344. }
  3345. .faq {
  3346. position: fixed;
  3347. bottom: 100px;
  3348. right: 15px;
  3349. }
  3350. .reservation {
  3351. position: fixed;
  3352. bottom: 25px;
  3353. right: 15px;
  3354. }
  3355. .reservation-href {
  3356. cursor: pointer;
  3357. }
  3358. .title-link a {
  3359. color: #4d4d4d;
  3360. }
  3361. .title-link a:hover {
  3362. color: #78ad42;
  3363. text-decoration: none;
  3364. }
  3365. .btn-light {
  3366. color: #000;
  3367. background-color: #fff;
  3368. border-color: #f8f9fa;
  3369. border-radius: 20px;
  3370. }
  3371. .btn-outline-white {
  3372. color: #fff;
  3373. border-color: #fff;
  3374. border-radius: 20px;
  3375. }
  3376. .btn-outline-white:hover {
  3377. color: #fff;
  3378. background-color: #212529;
  3379. border-color: #fff;
  3380. }
  3381. .background-image1 {
  3382. background-image: url("/img/home/1.webp");
  3383. background-repeat: no-repeat;
  3384. background-size: cover;
  3385. background-attachment: fixed;
  3386. background-position: center center;
  3387. padding: 110px 0;
  3388. position: relative;
  3389. color: #fff;
  3390. }
  3391. @media (max-width: 768px) {
  3392. .background-image1 {
  3393. background-attachment: scroll;
  3394. padding: 100px 0;
  3395. }
  3396. .background-image1 h1 {
  3397. font-size: 35px;
  3398. }
  3399. }
  3400. .background-image1 .block {
  3401. color: #e3e3e4;
  3402. }
  3403. .background-image1 .block h1 {
  3404. font-weight: 600;
  3405. line-height: 60px;
  3406. letter-spacing: 10px;
  3407. padding-bottom: 15px;
  3408. }
  3409. .background-image1 .block p {
  3410. color: #fff;
  3411. font-size: 12pt;
  3412. line-height: 25px;
  3413. font-weight: 500;
  3414. }
  3415. .background-image2 {
  3416. background-image: url("/img/home/4.webp");
  3417. background-repeat: no-repeat;
  3418. background-size: cover;
  3419. background-attachment: fixed;
  3420. background-position: center center;
  3421. padding: 110px 0;
  3422. position: relative;
  3423. color: #fff;
  3424. }
  3425. @media (max-width: 768px) {
  3426. .background-image2 {
  3427. background-attachment: scroll;
  3428. padding: 100px 0;
  3429. }
  3430. .background-image2 h1 {
  3431. font-size: 35px;
  3432. }
  3433. }
  3434. .background-image2 .block {
  3435. color: #e3e3e4;
  3436. }
  3437. .background-image2 .block h1 {
  3438. font-weight: 600;
  3439. line-height: 60px;
  3440. letter-spacing: 10px;
  3441. padding-bottom: 15px;
  3442. }
  3443. .background-image2 .block p {
  3444. color: #fff;
  3445. font-size: 12pt;
  3446. line-height: 25px;
  3447. font-weight: 500;
  3448. }
  3449. .background-image3 {
  3450. background-image: url("/img/home/10.webp");
  3451. background-repeat: no-repeat;
  3452. background-size: cover;
  3453. background-attachment: fixed;
  3454. background-position: center center;
  3455. padding: 110px 0;
  3456. position: relative;
  3457. color: #fff;
  3458. }
  3459. @media (max-width: 768px) {
  3460. .background-image3 {
  3461. background-attachment: scroll;
  3462. padding: 100px 0;
  3463. }
  3464. .background-image3 h1 {
  3465. font-size: 35px;
  3466. }
  3467. }
  3468. .background-image3 .block {
  3469. color: #e3e3e4;
  3470. }
  3471. .background-image3 .block h1 {
  3472. font-weight: 600;
  3473. line-height: 60px;
  3474. letter-spacing: 10px;
  3475. padding-bottom: 15px;
  3476. }
  3477. .background-image3 .block p {
  3478. color: #fff;
  3479. font-size: 12pt;
  3480. line-height: 25px;
  3481. font-weight: 500;
  3482. }
  3483. .background-image3 .card-text {
  3484. padding-bottom: 5px;
  3485. font-size: 0.8rem;
  3486. }
  3487. .background-image4 {
  3488. background-image: url("/img/home/21.webp");
  3489. background-repeat: no-repeat;
  3490. background-size: cover;
  3491. background-attachment: fixed;
  3492. background-position: center center;
  3493. padding: 110px 0;
  3494. position: relative;
  3495. color: #fff;
  3496. }
  3497. @media (max-width: 768px) {
  3498. .background-image4 {
  3499. background-attachment: scroll;
  3500. padding: 100px 0;
  3501. }
  3502. .background-image4 h1 {
  3503. font-size: 35px;
  3504. }
  3505. }
  3506. .background-image4 .block {
  3507. color: #e3e3e4;
  3508. }
  3509. .background-image4 .block h1 {
  3510. font-weight: 600;
  3511. line-height: 60px;
  3512. letter-spacing: 10px;
  3513. padding-bottom: 15px;
  3514. }
  3515. .background-image4 .block p {
  3516. color: #fff;
  3517. font-size: 12pt;
  3518. line-height: 25px;
  3519. font-weight: 500;
  3520. }
  3521. .background-image5 {
  3522. background-image: url("/img/home/10.webp");
  3523. background-repeat: no-repeat;
  3524. background-size: cover;
  3525. background-attachment: fixed;
  3526. background-position: center center;
  3527. padding: 110px 0;
  3528. position: relative;
  3529. color: #fff;
  3530. }
  3531. @media (max-width: 768px) {
  3532. .background-image5 {
  3533. background-attachment: scroll;
  3534. padding: 100px 0;
  3535. }
  3536. .background-image5 h1 {
  3537. font-size: 35px;
  3538. }
  3539. }
  3540. .background-image5 .block {
  3541. color: #e3e3e4;
  3542. }
  3543. .background-image5 .block h1 {
  3544. font-weight: 600;
  3545. line-height: 60px;
  3546. letter-spacing: 10px;
  3547. padding-bottom: 15px;
  3548. }
  3549. .background-image5 .block p {
  3550. color: #fff;
  3551. font-size: 12pt;
  3552. line-height: 25px;
  3553. font-weight: 500;
  3554. }
  3555. .background-image5 p {
  3556. font-size: 0.8rem;
  3557. color: #fff;
  3558. }
  3559. .background-image6 {
  3560. background-image: url("/img/about/2.webp");
  3561. background-repeat: no-repeat;
  3562. background-size: cover;
  3563. background-attachment: fixed;
  3564. background-position: center center;
  3565. padding: 110px 0;
  3566. position: relative;
  3567. color: #fff;
  3568. }
  3569. @media (max-width: 768px) {
  3570. .background-image6 {
  3571. background-attachment: scroll;
  3572. padding: 100px 0;
  3573. }
  3574. .background-image6 h1 {
  3575. font-size: 35px;
  3576. }
  3577. }
  3578. .background-image6 .block {
  3579. color: #e3e3e4;
  3580. }
  3581. .background-image6 .block h1 {
  3582. font-weight: 600;
  3583. line-height: 60px;
  3584. letter-spacing: 10px;
  3585. padding-bottom: 15px;
  3586. }
  3587. .background-image6 .block p {
  3588. color: #fff;
  3589. font-size: 12pt;
  3590. line-height: 25px;
  3591. font-weight: 500;
  3592. }
  3593. .background-image6 p {
  3594. font-size: 0.8rem;
  3595. color: #fff;
  3596. }
  3597. .background-image7 {
  3598. background-image: url("/img/solid_wood_furniture/17.webp");
  3599. background-repeat: no-repeat;
  3600. background-size: cover;
  3601. background-attachment: fixed;
  3602. background-position: center center;
  3603. padding: 110px 0;
  3604. position: relative;
  3605. color: #fff;
  3606. }
  3607. @media (max-width: 768px) {
  3608. .background-image7 {
  3609. background-attachment: scroll;
  3610. padding: 100px 0;
  3611. }
  3612. .background-image7 h1 {
  3613. font-size: 35px;
  3614. }
  3615. }
  3616. .background-image7 .block {
  3617. color: #e3e3e4;
  3618. }
  3619. .background-image7 .block h1 {
  3620. font-weight: 600;
  3621. line-height: 60px;
  3622. letter-spacing: 10px;
  3623. padding-bottom: 15px;
  3624. }
  3625. .background-image7 .block p {
  3626. color: #fff;
  3627. font-size: 12pt;
  3628. line-height: 25px;
  3629. font-weight: 500;
  3630. }
  3631. .page-title,
  3632. .page-title1,
  3633. .page-title2,
  3634. .page-title3,
  3635. .page-title4,
  3636. .page-title5,
  3637. .page-title6,
  3638. .page-title7 {
  3639. padding: 100px 0;
  3640. }
  3641. .page-title .block,
  3642. .page-title1 .block,
  3643. .page-title2 .block,
  3644. .page-title3 .block,
  3645. .page-title4 .block,
  3646. .page-title5 .block,
  3647. .page-title6 .block,
  3648. .page-title7 .block {
  3649. text-align: center;
  3650. }
  3651. .page-title .block h1,
  3652. .page-title1 .block h1,
  3653. .page-title2 .block h1,
  3654. .page-title3 .block h1,
  3655. .page-title4 .block h1,
  3656. .page-title5 .block h1,
  3657. .page-title6 .block h1,
  3658. .page-title7 .block h1 {
  3659. color: #fff;
  3660. font-weight: 200;
  3661. letter-spacing: 5px;
  3662. margin-top: 0;
  3663. text-transform: capitalize;
  3664. }
  3665. .page-title .block p,
  3666. .page-title1 .block p,
  3667. .page-title2 .block p,
  3668. .page-title3 .block p,
  3669. .page-title4 .block p,
  3670. .page-title5 .block p,
  3671. .page-title6 .block p,
  3672. .page-title7 .block p {
  3673. color: #fff;
  3674. }
  3675. .page-title1 {
  3676. background-image: url("/img/room_planner/1.webp");
  3677. background-repeat: no-repeat;
  3678. background-size: cover;
  3679. background-attachment: fixed;
  3680. background-position: center center;
  3681. padding: 110px 0;
  3682. position: relative;
  3683. color: #fff;
  3684. }
  3685. @media (max-width: 768px) {
  3686. .page-title1 {
  3687. background-attachment: scroll;
  3688. padding: 100px 0;
  3689. }
  3690. .page-title1 h1 {
  3691. font-size: 35px;
  3692. }
  3693. }
  3694. .page-title1 .block {
  3695. color: #e3e3e4;
  3696. }
  3697. .page-title1 .block h1 {
  3698. font-weight: 600;
  3699. line-height: 60px;
  3700. letter-spacing: 10px;
  3701. padding-bottom: 15px;
  3702. }
  3703. .page-title1 .block p {
  3704. color: #fff;
  3705. font-size: 12pt;
  3706. line-height: 25px;
  3707. font-weight: 500;
  3708. }
  3709. .page-title2 {
  3710. background-image: url("/img/store_north/banner.webp");
  3711. background-repeat: no-repeat;
  3712. background-size: cover;
  3713. background-attachment: fixed;
  3714. background-position: center center;
  3715. padding: 110px 0;
  3716. position: relative;
  3717. color: #fff;
  3718. }
  3719. @media (max-width: 768px) {
  3720. .page-title2 {
  3721. background-attachment: scroll;
  3722. padding: 100px 0;
  3723. }
  3724. .page-title2 h1 {
  3725. font-size: 35px;
  3726. }
  3727. }
  3728. .page-title2 .block {
  3729. color: #e3e3e4;
  3730. }
  3731. .page-title2 .block h1 {
  3732. font-weight: 600;
  3733. line-height: 60px;
  3734. letter-spacing: 10px;
  3735. padding-bottom: 15px;
  3736. }
  3737. .page-title2 .block p {
  3738. color: #fff;
  3739. font-size: 12pt;
  3740. line-height: 25px;
  3741. font-weight: 500;
  3742. }
  3743. .page-title3 {
  3744. background-image: url("/img/blog/banner.webp");
  3745. background-repeat: no-repeat;
  3746. background-size: cover;
  3747. background-attachment: fixed;
  3748. background-position: center center;
  3749. padding: 110px 0;
  3750. position: relative;
  3751. color: #fff;
  3752. }
  3753. @media (max-width: 768px) {
  3754. .page-title3 {
  3755. background-attachment: scroll;
  3756. padding: 100px 0;
  3757. }
  3758. .page-title3 h1 {
  3759. font-size: 35px;
  3760. }
  3761. }
  3762. .page-title3 .block {
  3763. color: #e3e3e4;
  3764. }
  3765. .page-title3 .block h1 {
  3766. font-weight: 600;
  3767. line-height: 60px;
  3768. letter-spacing: 10px;
  3769. padding-bottom: 15px;
  3770. }
  3771. .page-title3 .block p {
  3772. color: #fff;
  3773. font-size: 12pt;
  3774. line-height: 25px;
  3775. font-weight: 500;
  3776. }
  3777. .page-title4 {
  3778. background-image: url("/img/about/banner.webp");
  3779. background-repeat: no-repeat;
  3780. background-size: cover;
  3781. background-attachment: fixed;
  3782. background-position: center center;
  3783. padding: 110px 0;
  3784. position: relative;
  3785. color: #fff;
  3786. }
  3787. @media (max-width: 768px) {
  3788. .page-title4 {
  3789. background-attachment: scroll;
  3790. padding: 100px 0;
  3791. }
  3792. .page-title4 h1 {
  3793. font-size: 35px;
  3794. }
  3795. }
  3796. .page-title4 .block {
  3797. color: #e3e3e4;
  3798. }
  3799. .page-title4 .block h1 {
  3800. font-weight: 600;
  3801. line-height: 60px;
  3802. letter-spacing: 10px;
  3803. padding-bottom: 15px;
  3804. }
  3805. .page-title4 .block p {
  3806. color: #fff;
  3807. font-size: 12pt;
  3808. line-height: 25px;
  3809. font-weight: 500;
  3810. }
  3811. .page-title5 {
  3812. background-image: url("/img/solid_wood_furniture2/banner.webp");
  3813. background-repeat: no-repeat;
  3814. background-size: cover;
  3815. background-attachment: fixed;
  3816. background-position: center center;
  3817. padding: 110px 0;
  3818. position: relative;
  3819. color: #fff;
  3820. }
  3821. @media (max-width: 768px) {
  3822. .page-title5 {
  3823. background-attachment: scroll;
  3824. padding: 100px 0;
  3825. }
  3826. .page-title5 h1 {
  3827. font-size: 35px;
  3828. }
  3829. }
  3830. .page-title5 .block {
  3831. color: #e3e3e4;
  3832. }
  3833. .page-title5 .block h1 {
  3834. font-weight: 600;
  3835. line-height: 60px;
  3836. letter-spacing: 10px;
  3837. padding-bottom: 15px;
  3838. }
  3839. .page-title5 .block p {
  3840. color: #fff;
  3841. font-size: 12pt;
  3842. line-height: 25px;
  3843. font-weight: 500;
  3844. }
  3845. .page-title6 {
  3846. background-image: url("/img/contact/banner.webp");
  3847. background-repeat: no-repeat;
  3848. background-size: cover;
  3849. background-attachment: fixed;
  3850. background-position: center center;
  3851. padding: 110px 0;
  3852. position: relative;
  3853. color: #fff;
  3854. }
  3855. @media (max-width: 768px) {
  3856. .page-title6 {
  3857. background-attachment: scroll;
  3858. padding: 100px 0;
  3859. }
  3860. .page-title6 h1 {
  3861. font-size: 35px;
  3862. }
  3863. }
  3864. .page-title6 .block {
  3865. color: #e3e3e4;
  3866. }
  3867. .page-title6 .block h1 {
  3868. font-weight: 600;
  3869. line-height: 60px;
  3870. letter-spacing: 10px;
  3871. padding-bottom: 15px;
  3872. }
  3873. .page-title6 .block p {
  3874. color: #fff;
  3875. font-size: 12pt;
  3876. line-height: 25px;
  3877. font-weight: 500;
  3878. }
  3879. .page-title7 {
  3880. background-image: url("/img/news/banner.webp");
  3881. background-repeat: no-repeat;
  3882. background-size: cover;
  3883. background-attachment: fixed;
  3884. background-position: center center;
  3885. padding: 110px 0;
  3886. position: relative;
  3887. color: #fff;
  3888. }
  3889. @media (max-width: 768px) {
  3890. .page-title7 {
  3891. background-attachment: scroll;
  3892. padding: 100px 0;
  3893. }
  3894. .page-title7 h1 {
  3895. font-size: 35px;
  3896. }
  3897. }
  3898. .page-title7 .block {
  3899. color: #e3e3e4;
  3900. }
  3901. .page-title7 .block h1 {
  3902. font-weight: 600;
  3903. line-height: 60px;
  3904. letter-spacing: 10px;
  3905. padding-bottom: 15px;
  3906. }
  3907. .page-title7 .block p {
  3908. color: #fff;
  3909. font-size: 12pt;
  3910. line-height: 25px;
  3911. font-weight: 500;
  3912. }
  3913. .overly,
  3914. .page-title,
  3915. .page-title1,
  3916. .page-title2,
  3917. .page-title3,
  3918. .page-title4,
  3919. .page-title5,
  3920. .page-title6,
  3921. .page-title7 {
  3922. position: relative;
  3923. }
  3924. .overly:before,
  3925. .page-title:before,
  3926. .page-title1:before,
  3927. .page-title2:before,
  3928. .page-title3:before,
  3929. .page-title4:before,
  3930. .page-title5:before,
  3931. .page-title6:before,
  3932. .page-title7:before {
  3933. content: "";
  3934. background: rgba(0, 0, 0, 0.2);
  3935. position: absolute;
  3936. top: 0;
  3937. left: 0;
  3938. right: 0;
  3939. bottom: 0;
  3940. }
  3941. .link-collection {
  3942. color: #444444;
  3943. }
  3944. .btn-primary {
  3945. color: #fff;
  3946. background-color: #0d6efd;
  3947. border-color: #0d6efd;
  3948. }
  3949. .btn-primary:hover {
  3950. color: #fff;
  3951. background-color: #0b5ed7;
  3952. border-color: #0a58ca;
  3953. }
  3954. .btn-check:focus+.btn-primary,
  3955. .btn-primary:focus {
  3956. color: #fff;
  3957. background-color: #0b5ed7;
  3958. border-color: #0a58ca;
  3959. -webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
  3960. box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
  3961. }
  3962. .btn-check:checked+.btn-primary,
  3963. .btn-check:active+.btn-primary,
  3964. .btn-primary:active,
  3965. .btn-primary.active,
  3966. .show>.btn-primary.dropdown-toggle {
  3967. color: #fff;
  3968. background-color: #0a58ca;
  3969. border-color: #0a53be;
  3970. }
  3971. .btn-check:checked+.btn-primary:focus,
  3972. .btn-check:active+.btn-primary:focus,
  3973. .btn-primary:active:focus,
  3974. .btn-primary.active:focus,
  3975. .show>.btn-primary.dropdown-toggle:focus {
  3976. -webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
  3977. box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
  3978. }
  3979. .btn-primary:disabled,
  3980. .btn-primary.disabled {
  3981. color: #fff;
  3982. background-color: #0d6efd;
  3983. border-color: #0d6efd;
  3984. }
  3985. /*# sourceMappingURL=chuz.css.map */