style.css 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887
  1. @charset "UTF-8";
  2. /*
  3. Theme Name: Sophisticated Business
  4. Theme URI: https://wordpress.com/theme/sophisticated-business
  5. Author: Automattic
  6. Author URI: https://automattic.com/
  7. Template: twentynineteen
  8. Description: Your classy establishment needs an equally classy website to showcase your delicious food and special concoctions! With its bold typography and chic color scheme, Sophisticated Business exudes the same cool, intimate atmosphere as an upscale bar, lounge, or pub.
  9. Requires at least: WordPress 4.9.6
  10. Version: 1.5.8
  11. License: GNU General Public License v2 or later
  12. License URI: LICENSE
  13. Text Domain: sophisticated-business
  14. Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready
  15. Status: inactive
  16. This theme, like WordPress, is licensed under the GPL.
  17. Use it to make something cool, have fun, and share what you've learned with others.
  18. Twenty Nineteen is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
  19. Underscores is distributed under the terms of the GNU GPL v2 or later.
  20. Normalizing styles have been helped along thanks to the fine work of
  21. Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
  22. */
  23. /*--------------------------------------------------------------
  24. >>> TABLE OF CONTENTS:
  25. ----------------------------------------------------------------
  26. # Variables
  27. # Normalize
  28. # Typography
  29. ## Headings
  30. ## Copy
  31. # Elements
  32. ## Lists
  33. ## Tables
  34. # Forms
  35. ## Buttons
  36. ## Fields
  37. # Navigation
  38. ## Links
  39. ## Menus
  40. ## Next & Previous
  41. # Accessibility
  42. # Alignments
  43. # Clearings
  44. # Layout
  45. # Widgets
  46. # Content
  47. ## Archives
  48. ## Posts and pages
  49. ## Comments
  50. # Blocks
  51. # Media
  52. ## Captions
  53. ## Galleries
  54. --------------------------------------------------------------*/
  55. /* If we add the border using a regular CSS border, it won't look good on non-retina devices,
  56. * since its edges can look jagged due to lack of antialiasing. In this case, we are several
  57. * layers of box-shadow to add the border visually, which will render the border smoother. */
  58. /* Fallback for non-latin fonts */
  59. /* Calculates maximum width for post content */
  60. /* Nested sub-menu padding: 10 levels deep */
  61. /* Normalize */
  62. /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
  63. /* Document
  64. ========================================================================== */
  65. /**
  66. * 1. Correct the line height in all browsers.
  67. * 2. Prevent adjustments of font size after orientation changes in iOS.
  68. */
  69. html {
  70. line-height: 1.15;
  71. /* 1 */
  72. -webkit-text-size-adjust: 100%;
  73. /* 2 */
  74. }
  75. /* Sections
  76. ========================================================================== */
  77. /**
  78. * Remove the margin in all browsers.
  79. */
  80. body {
  81. margin: 0;
  82. }
  83. /**
  84. * Correct the font size and margin on `h1` elements within `section` and
  85. * `article` contexts in Chrome, Firefox, and Safari.
  86. */
  87. h1 {
  88. font-size: 2em;
  89. margin: 0.67em 0;
  90. }
  91. /* Grouping content
  92. ========================================================================== */
  93. /**
  94. * 1. Add the correct box sizing in Firefox.
  95. * 2. Show the overflow in Edge and IE.
  96. */
  97. hr {
  98. box-sizing: content-box;
  99. /* 1 */
  100. height: 0;
  101. /* 1 */
  102. overflow: visible;
  103. /* 2 */
  104. }
  105. /**
  106. * 1. Correct the inheritance and scaling of font size in all browsers.
  107. * 2. Correct the odd `em` font sizing in all browsers.
  108. */
  109. pre {
  110. font-family: monospace, monospace;
  111. /* 1 */
  112. font-size: 1em;
  113. /* 2 */
  114. }
  115. /* Text-level semantics
  116. ========================================================================== */
  117. /**
  118. * Remove the gray background on active links in IE 10.
  119. */
  120. a {
  121. background-color: transparent;
  122. }
  123. /**
  124. * 1. Remove the bottom border in Chrome 57-
  125. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  126. */
  127. abbr[title] {
  128. border-bottom: none;
  129. /* 1 */
  130. text-decoration: underline;
  131. /* 2 */
  132. -webkit-text-decoration: underline dotted;
  133. text-decoration: underline dotted;
  134. /* 2 */
  135. }
  136. /**
  137. * Add the correct font weight in Chrome, Edge, and Safari.
  138. */
  139. b,
  140. strong {
  141. font-weight: bolder;
  142. }
  143. /**
  144. * 1. Correct the inheritance and scaling of font size in all browsers.
  145. * 2. Correct the odd `em` font sizing in all browsers.
  146. */
  147. code,
  148. kbd,
  149. samp {
  150. font-family: monospace, monospace;
  151. /* 1 */
  152. font-size: 1em;
  153. /* 2 */
  154. }
  155. /**
  156. * Add the correct font size in all browsers.
  157. */
  158. small {
  159. font-size: 80%;
  160. }
  161. /**
  162. * Prevent `sub` and `sup` elements from affecting the line height in
  163. * all browsers.
  164. */
  165. sub,
  166. sup {
  167. font-size: 75%;
  168. line-height: 0;
  169. position: relative;
  170. vertical-align: baseline;
  171. }
  172. sub {
  173. bottom: -0.25em;
  174. }
  175. sup {
  176. top: -0.5em;
  177. }
  178. /* Embedded content
  179. ========================================================================== */
  180. /**
  181. * Remove the border on images inside links in IE 10.
  182. */
  183. img {
  184. border-style: none;
  185. }
  186. /* Forms
  187. ========================================================================== */
  188. /**
  189. * 1. Change the font styles in all browsers.
  190. * 2. Remove the margin in Firefox and Safari.
  191. */
  192. button,
  193. input,
  194. optgroup,
  195. select,
  196. textarea {
  197. font-family: inherit;
  198. /* 1 */
  199. font-size: 100%;
  200. /* 1 */
  201. line-height: 1.15;
  202. /* 1 */
  203. margin: 0;
  204. /* 2 */
  205. }
  206. /**
  207. * Show the overflow in IE.
  208. * 1. Show the overflow in Edge.
  209. */
  210. button,
  211. input {
  212. /* 1 */
  213. overflow: visible;
  214. }
  215. /**
  216. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  217. * 1. Remove the inheritance of text transform in Firefox.
  218. */
  219. button,
  220. select {
  221. /* 1 */
  222. text-transform: none;
  223. }
  224. /**
  225. * Correct the inability to style clickable types in iOS and Safari.
  226. */
  227. button,
  228. [type="button"],
  229. [type="reset"],
  230. [type="submit"] {
  231. -webkit-appearance: button;
  232. }
  233. /**
  234. * Remove the inner border and padding in Firefox.
  235. */
  236. button::-moz-focus-inner,
  237. [type="button"]::-moz-focus-inner,
  238. [type="reset"]::-moz-focus-inner,
  239. [type="submit"]::-moz-focus-inner {
  240. border-style: none;
  241. padding: 0;
  242. }
  243. /**
  244. * Restore the focus styles unset by the previous rule.
  245. */
  246. button:-moz-focusring,
  247. [type="button"]:-moz-focusring,
  248. [type="reset"]:-moz-focusring,
  249. [type="submit"]:-moz-focusring {
  250. outline: 1px dotted ButtonText;
  251. }
  252. /**
  253. * Correct the padding in Firefox.
  254. */
  255. fieldset {
  256. padding: 0.35em 0.75em 0.625em;
  257. }
  258. /**
  259. * 1. Correct the text wrapping in Edge and IE.
  260. * 2. Correct the color inheritance from `fieldset` elements in IE.
  261. * 3. Remove the padding so developers are not caught out when they zero out
  262. * `fieldset` elements in all browsers.
  263. */
  264. legend {
  265. box-sizing: border-box;
  266. /* 1 */
  267. color: inherit;
  268. /* 2 */
  269. display: table;
  270. /* 1 */
  271. max-width: 100%;
  272. /* 1 */
  273. padding: 0;
  274. /* 3 */
  275. white-space: normal;
  276. /* 1 */
  277. }
  278. /**
  279. * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  280. */
  281. progress {
  282. vertical-align: baseline;
  283. }
  284. /**
  285. * Remove the default vertical scrollbar in IE 10+.
  286. */
  287. textarea {
  288. overflow: auto;
  289. }
  290. /**
  291. * 1. Add the correct box sizing in IE 10.
  292. * 2. Remove the padding in IE 10.
  293. */
  294. [type="checkbox"],
  295. [type="radio"] {
  296. box-sizing: border-box;
  297. /* 1 */
  298. padding: 0;
  299. /* 2 */
  300. }
  301. /**
  302. * Correct the cursor style of increment and decrement buttons in Chrome.
  303. */
  304. [type="number"]::-webkit-inner-spin-button,
  305. [type="number"]::-webkit-outer-spin-button {
  306. height: auto;
  307. }
  308. /**
  309. * 1. Correct the odd appearance in Chrome and Safari.
  310. * 2. Correct the outline style in Safari.
  311. */
  312. [type="search"] {
  313. -webkit-appearance: textfield;
  314. /* 1 */
  315. outline-offset: -2px;
  316. /* 2 */
  317. }
  318. /**
  319. * Remove the inner padding in Chrome and Safari on macOS.
  320. */
  321. [type="search"]::-webkit-search-decoration {
  322. -webkit-appearance: none;
  323. }
  324. /**
  325. * 1. Correct the inability to style clickable types in iOS and Safari.
  326. * 2. Change font properties to `inherit` in Safari.
  327. */
  328. ::-webkit-file-upload-button {
  329. -webkit-appearance: button;
  330. /* 1 */
  331. font: inherit;
  332. /* 2 */
  333. }
  334. /* Interactive
  335. ========================================================================== */
  336. /*
  337. * Add the correct display in Edge, IE 10+, and Firefox.
  338. */
  339. details {
  340. display: block;
  341. }
  342. /*
  343. * Add the correct display in all browsers.
  344. */
  345. summary {
  346. display: list-item;
  347. }
  348. /* Misc
  349. ========================================================================== */
  350. /**
  351. * Add the correct display in IE 10+.
  352. */
  353. template {
  354. display: none;
  355. }
  356. /**
  357. * Add the correct display in IE 10.
  358. */
  359. [hidden] {
  360. display: none;
  361. }
  362. /* Typography */
  363. html {
  364. font-size: 22px;
  365. }
  366. body {
  367. -webkit-font-smoothing: antialiased;
  368. -moz-osx-font-smoothing: grayscale;
  369. color: #fff;
  370. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  371. font-weight: 400;
  372. font-size: 1em;
  373. line-height: 1.8;
  374. margin: 0;
  375. text-rendering: optimizeLegibility;
  376. }
  377. button,
  378. input,
  379. select,
  380. optgroup,
  381. textarea {
  382. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  383. font-weight: 400;
  384. line-height: 1.8;
  385. text-rendering: optimizeLegibility;
  386. }
  387. .author-description .author-link,
  388. .comment-metadata,
  389. .comment-reply-link,
  390. .comments-title,
  391. .comment-author .fn,
  392. .discussion-meta-info,
  393. .entry-meta,
  394. .entry-footer,
  395. .main-navigation,
  396. .no-comments,
  397. .not-found .page-title,
  398. .error-404 .page-title,
  399. .post-navigation .post-title,
  400. .page-links,
  401. .page-description,
  402. .pagination .nav-links,
  403. .sticky-post,
  404. .site-title,
  405. .wp-block-a8c-site-title,
  406. .wp-block-a8c-site-title:focus,
  407. .site-info,
  408. #cancel-comment-reply-link,
  409. img:after,
  410. h1,
  411. h2,
  412. h3,
  413. h4,
  414. h5,
  415. h6 {
  416. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  417. }
  418. .page-description,
  419. .author-description .author-link,
  420. .not-found .page-title,
  421. .error-404 .page-title,
  422. .post-navigation .post-title,
  423. .pagination .nav-links,
  424. .comments-title,
  425. .comment-author .fn,
  426. .no-comments,
  427. .site-title,
  428. .wp-block-a8c-site-title,
  429. .wp-block-a8c-site-title:focus,
  430. h1,
  431. h2,
  432. h3,
  433. h4,
  434. h5,
  435. h6 {
  436. font-weight: 600;
  437. letter-spacing: 0;
  438. line-height: 1.2;
  439. -webkit-font-smoothing: antialiased;
  440. -moz-osx-font-smoothing: grayscale;
  441. }
  442. .page-title {
  443. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  444. }
  445. .site-branding,
  446. .main-navigation ul.main-menu > li,
  447. .social-navigation,
  448. .author-description .author-bio,
  449. .nav-links {
  450. line-height: 1.25;
  451. }
  452. .entry-title {
  453. font-size: 1.6875em;
  454. }
  455. @media only screen and (min-width: 768px) {
  456. .entry-title {
  457. font-size: 2.25em;
  458. }
  459. }
  460. h1 {
  461. font-size: 1.6875em;
  462. }
  463. .not-found .page-title,
  464. .error-404 .page-title,
  465. .has-larger-font-size,
  466. h2 {
  467. font-size: 1.125em;
  468. }
  469. .has-regular-font-size,
  470. .has-large-font-size,
  471. .comments-title,
  472. h3 {
  473. font-size: 22px;
  474. }
  475. .site-title,
  476. .wp-block-a8c-site-title,
  477. .wp-block-a8c-site-title:focus,
  478. .site-description,
  479. .nav-links,
  480. .page-title,
  481. .page-description,
  482. .comment-author .fn,
  483. .no-comments,
  484. p.author-bio,
  485. h4 {
  486. font-size: 0.88889em;
  487. }
  488. .main-navigation,
  489. .pagination .nav-links,
  490. .comment-content,
  491. h5 {
  492. font-size: 0.71111em;
  493. }
  494. .entry-meta,
  495. .entry-footer,
  496. .discussion-meta-info,
  497. .site-info,
  498. .has-small-font-size,
  499. .comment-reply-link,
  500. .comment-metadata,
  501. .comment-notes,
  502. .sticky-post,
  503. #cancel-comment-reply-link,
  504. img:after,
  505. h6 {
  506. font-size: 0.59259em;
  507. }
  508. .page-title {
  509. font-weight: normal;
  510. }
  511. .page-description,
  512. .page-links a {
  513. font-weight: normal;
  514. }
  515. .post-navigation .post-title,
  516. .entry-title,
  517. .not-found .page-title,
  518. .error-404 .page-title,
  519. .comments-title,
  520. blockquote {
  521. -webkit-hyphens: auto;
  522. hyphens: auto;
  523. word-break: break-word;
  524. }
  525. /* Do not hyphenate entry title on tablet view and bigger. */
  526. @media only screen and (min-width: 768px) {
  527. .entry-title {
  528. -webkit-hyphens: none;
  529. hyphens: none;
  530. }
  531. }
  532. p {
  533. -webkit-font-smoothing: antialiased;
  534. -moz-osx-font-smoothing: grayscale;
  535. }
  536. dfn,
  537. cite,
  538. em,
  539. i {
  540. font-style: italic;
  541. }
  542. blockquote cite {
  543. font-size: 0.71111em;
  544. font-style: normal;
  545. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  546. }
  547. pre {
  548. font-size: 0.88889em;
  549. font-family: "Courier 10 Pitch", Courier, monospace;
  550. line-height: 1.8;
  551. overflow: auto;
  552. }
  553. code,
  554. kbd,
  555. tt,
  556. var {
  557. font-size: 0.88889em;
  558. font-family: Menlo, monaco, Consolas, Lucida Console, monospace;
  559. }
  560. abbr, acronym {
  561. border-bottom: 1px dotted #666;
  562. cursor: help;
  563. }
  564. mark,
  565. ins {
  566. background: #444;
  567. text-decoration: none;
  568. }
  569. big {
  570. font-size: 125%;
  571. }
  572. a {
  573. text-decoration: none;
  574. }
  575. a:hover {
  576. text-decoration: none;
  577. }
  578. a:focus {
  579. text-decoration: underline;
  580. }
  581. /* Arabic */
  582. html[lang="ar"] .site *,
  583. html[lang="ary"] .site *,
  584. html[lang="azb"] .site *,
  585. html[lang="ckb"] .site *,
  586. html[lang="fa-IR"] .site *,
  587. html[lang="haz"] .site *,
  588. html[lang="ps"] .site * {
  589. font-family: Tahoma, Arial, sans-serif !important;
  590. }
  591. /* Cyrillic */
  592. html[lang="be"] .site *,
  593. html[lang="bg-BG"] .site *,
  594. html[lang="kk"] .site *,
  595. html[lang="mk-MK"] .site *,
  596. html[lang="mn"] .site *,
  597. html[lang="ru-RU"] .site *,
  598. html[lang="sah"] .site *,
  599. html[lang="sr-RS"] .site *,
  600. html[lang="tt-RU"] .site *,
  601. html[lang="uk"] .site * {
  602. font-family: 'Helvetica Neue', Helvetica, 'Segoe UI', Arial, sans-serif !important;
  603. }
  604. /* Chinese (Hong Kong) */
  605. html[lang="zh-HK"] .site * {
  606. font-family: -apple-system, BlinkMacSystemFont, 'PingFang HK', 'Helvetica Neue', "Microsoft YaHei New", STHeiti Light, sans-serif !important;
  607. }
  608. /* Chinese (Taiwan) */
  609. html[lang="zh-TW"] .site * {
  610. font-family: -apple-system, BlinkMacSystemFont, 'PingFang TC', 'Helvetica Neue', "Microsoft YaHei New", STHeiti Light, sans-serif !important;
  611. }
  612. /* Chinese (China) */
  613. html[lang="zh-CN"] .site * {
  614. font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', "Microsoft YaHei New", STHeiti Light, sans-serif !important;
  615. }
  616. /* Devanagari */
  617. html[lang="bn-BD"] .site *,
  618. html[lang="hi-IN"] .site *,
  619. html[lang="mr"] .site *,
  620. html[lang="ne-NP"] .site * {
  621. font-family: Arial, sans-serif !important;
  622. }
  623. /* Greek */
  624. html[lang="el"] .site * {
  625. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  626. }
  627. /* Gujarati */
  628. html[lang="gu"] .site * {
  629. font-family: Arial, sans-serif !important;
  630. }
  631. /* Hebrew */
  632. html[lang="he-IL"] .site * {
  633. font-family: 'Arial Hebrew', Arial, sans-serif !important;
  634. }
  635. /* Japanese */
  636. html[lang="ja"] .site * {
  637. font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", Meiryo, "Helvetica Neue", sans-serif !important;
  638. }
  639. /* Korean */
  640. html[lang="ko-KR"] .site * {
  641. font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', 'Nanum Gothic', Dotum, sans-serif !important;
  642. }
  643. /* Thai */
  644. html[lang="th"] .site * {
  645. font-family: 'Sukhumvit Set', 'Helvetica Neue', helvetica, arial, sans-serif !important;
  646. }
  647. /* Vietnamese */
  648. html[lang="vi"] .site * {
  649. font-family: 'Libre Franklin', sans-serif !important;
  650. }
  651. /* Elements */
  652. html {
  653. box-sizing: border-box;
  654. }
  655. ::selection {
  656. background-color: #39311c;
  657. }
  658. *,
  659. *:before,
  660. *:after {
  661. box-sizing: inherit;
  662. }
  663. body {
  664. background-color: #080808;
  665. }
  666. a {
  667. transition: color 110ms ease-in-out;
  668. color: #caab57;
  669. }
  670. a:hover,
  671. a:active {
  672. color: #b59439;
  673. outline: 0;
  674. text-decoration: none;
  675. }
  676. a:focus {
  677. outline: thin;
  678. outline-style: dotted;
  679. text-decoration: underline;
  680. }
  681. h1,
  682. h2,
  683. h3,
  684. h4,
  685. h5,
  686. h6 {
  687. clear: both;
  688. margin: 1rem 0;
  689. }
  690. hr {
  691. background-color: #cccccc;
  692. border: 0;
  693. height: 2px;
  694. }
  695. ul,
  696. ol {
  697. padding-left: 1rem;
  698. }
  699. ul {
  700. list-style: disc;
  701. }
  702. ul ul {
  703. list-style-type: circle;
  704. }
  705. ol {
  706. list-style: decimal;
  707. }
  708. li {
  709. line-height: 1.8;
  710. }
  711. li > ul,
  712. li > ol {
  713. padding-left: 2rem;
  714. }
  715. dt {
  716. font-weight: bold;
  717. }
  718. dd {
  719. margin: 0 1rem 1rem;
  720. }
  721. img {
  722. height: auto;
  723. max-width: 100%;
  724. position: relative;
  725. }
  726. figure {
  727. margin: 0;
  728. }
  729. blockquote {
  730. border-left: 2px solid #caab57;
  731. margin-left: 0;
  732. padding: 0 0 0 1rem;
  733. }
  734. blockquote > p {
  735. margin: 0 0 1rem;
  736. }
  737. blockquote cite {
  738. color: #cccccc;
  739. }
  740. table {
  741. margin: 0 0 1rem;
  742. border-collapse: collapse;
  743. width: 100%;
  744. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  745. }
  746. table td,
  747. table th {
  748. padding: 0.5em;
  749. border: 1px solid #cccccc;
  750. word-break: break-all;
  751. }
  752. /* Forms */
  753. .button,
  754. button,
  755. input[type="button"],
  756. input[type="reset"],
  757. input[type="submit"] {
  758. transition: background 150ms ease-in-out;
  759. background: #caab57;
  760. border: none;
  761. border-radius: 5px;
  762. box-sizing: border-box;
  763. color: #080808;
  764. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  765. font-size: 0.88889em;
  766. font-weight: 600;
  767. line-height: 1.2;
  768. outline: none;
  769. padding: 0.76rem 1rem;
  770. text-decoration: none;
  771. vertical-align: bottom;
  772. }
  773. .button:hover,
  774. button:hover,
  775. input[type="button"]:hover,
  776. input[type="reset"]:hover,
  777. input[type="submit"]:hover {
  778. background: #b59439;
  779. cursor: pointer;
  780. }
  781. .button:visited,
  782. button:visited,
  783. input[type="button"]:visited,
  784. input[type="reset"]:visited,
  785. input[type="submit"]:visited {
  786. color: #080808;
  787. text-decoration: none;
  788. }
  789. .button:focus,
  790. button:focus,
  791. input[type="button"]:focus,
  792. input[type="reset"]:focus,
  793. input[type="submit"]:focus {
  794. background: #b59439;
  795. outline: thin dotted;
  796. outline-offset: -4px;
  797. }
  798. input[type="text"],
  799. input[type="email"],
  800. input[type="url"],
  801. input[type="password"],
  802. input[type="search"],
  803. input[type="number"],
  804. input[type="tel"],
  805. input[type="range"],
  806. input[type="date"],
  807. input[type="month"],
  808. input[type="week"],
  809. input[type="time"],
  810. input[type="datetime"],
  811. input[type="datetime-local"],
  812. input[type="color"],
  813. textarea {
  814. -webkit-backface-visibility: hidden;
  815. background: #fff;
  816. border: solid 1px #333333;
  817. box-sizing: border-box;
  818. color: #666;
  819. outline: none;
  820. padding: 0.36rem 0.66rem;
  821. -webkit-appearance: none;
  822. outline-offset: 0;
  823. border-radius: 3px;
  824. }
  825. input[type="text"]:focus,
  826. input[type="email"]:focus,
  827. input[type="url"]:focus,
  828. input[type="password"]:focus,
  829. input[type="search"]:focus,
  830. input[type="number"]:focus,
  831. input[type="tel"]:focus,
  832. input[type="range"]:focus,
  833. input[type="date"]:focus,
  834. input[type="month"]:focus,
  835. input[type="week"]:focus,
  836. input[type="time"]:focus,
  837. input[type="datetime"]:focus,
  838. input[type="datetime-local"]:focus,
  839. input[type="color"]:focus,
  840. textarea:focus {
  841. border-color: #caab57;
  842. outline: thin solid rgba(202, 171, 87, 0.15);
  843. outline-offset: -4px;
  844. }
  845. input[type="search"]::-webkit-search-decoration {
  846. display: none;
  847. }
  848. textarea {
  849. box-sizing: border-box;
  850. display: block;
  851. width: 100%;
  852. max-width: 100%;
  853. resize: vertical;
  854. }
  855. form p {
  856. margin: 1rem 0;
  857. }
  858. label {
  859. font-weight: 600;
  860. }
  861. .contact-form label {
  862. font-weight: 600 !important;
  863. }
  864. .contact-form label span {
  865. color: #fff !important;
  866. }
  867. /* Navigation */
  868. /*--------------------------------------------------------------
  869. ## Links
  870. --------------------------------------------------------------*/
  871. a {
  872. transition: color 110ms ease-in-out;
  873. color: #caab57;
  874. }
  875. a:visited {
  876. color: #caab57;
  877. }
  878. a:hover, a:active {
  879. color: #b59439;
  880. outline: 0;
  881. text-decoration: none;
  882. }
  883. a:focus {
  884. outline: thin dotted;
  885. text-decoration: underline;
  886. }
  887. /*--------------------------------------------------------------
  888. ## Menus
  889. --------------------------------------------------------------*/
  890. /** === Main menu === */
  891. .main-navigation {
  892. display: block;
  893. margin-top: 0.25rem;
  894. width: 100%;
  895. /* Un-style buttons */
  896. /*
  897. * Sub-menu styles
  898. *
  899. * :focus-within needs its own selector so other similar
  900. * selectors don’t get ignored if a browser doesn’t recognize it
  901. */
  902. /**
  903. * Fade-in animation for top-level submenus
  904. */
  905. /**
  906. * Off-canvas touch device styles
  907. */
  908. }
  909. body.page .main-navigation {
  910. display: block;
  911. }
  912. .main-navigation > div {
  913. display: inline;
  914. }
  915. .main-navigation button {
  916. display: inline-block;
  917. border: none;
  918. padding: 0;
  919. margin: 0;
  920. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  921. font-weight: 700;
  922. line-height: 1.2;
  923. text-decoration: none;
  924. background: transparent;
  925. color: inherit;
  926. cursor: pointer;
  927. transition: background 250ms ease-in-out, transform 150ms ease;
  928. -webkit-appearance: none;
  929. -moz-appearance: none;
  930. }
  931. .main-navigation button:hover, .main-navigation button:focus {
  932. background: transparent;
  933. }
  934. .main-navigation button:focus {
  935. outline: 1px solid transparent;
  936. outline-offset: -4px;
  937. }
  938. .main-navigation button:active {
  939. transform: scale(0.99);
  940. }
  941. .main-navigation .main-menu {
  942. display: inline-block;
  943. margin: 0;
  944. padding: 0;
  945. }
  946. .main-navigation .main-menu > li {
  947. color: #caab57;
  948. display: inline;
  949. position: relative;
  950. }
  951. .main-navigation .main-menu > li > a {
  952. font-weight: 600;
  953. color: #caab57;
  954. margin-right: 0.5rem;
  955. }
  956. .main-navigation .main-menu > li > a + svg {
  957. margin-right: 0.5rem;
  958. }
  959. .main-navigation .main-menu > li > a:hover,
  960. .main-navigation .main-menu > li > a:hover + svg {
  961. color: #b59439;
  962. }
  963. .main-navigation .main-menu > li.menu-item-has-children {
  964. display: inline-block;
  965. position: inherit;
  966. }
  967. @media only screen and (min-width: 768px) {
  968. .main-navigation .main-menu > li.menu-item-has-children {
  969. position: relative;
  970. }
  971. }
  972. .main-navigation .main-menu > li.menu-item-has-children > a {
  973. margin-right: 0.125rem;
  974. }
  975. .main-navigation .main-menu > li.menu-item-has-children > a:after,
  976. .main-navigation .main-menu > li.menu-item-has-children .menu-item-has-children > a:after {
  977. content: "";
  978. display: none;
  979. }
  980. .main-navigation .main-menu > li.menu-item-has-children .submenu-expand {
  981. display: inline-block;
  982. margin-right: 0.25rem;
  983. /* Priority+ Menu */
  984. }
  985. .main-navigation .main-menu > li.menu-item-has-children .submenu-expand.main-menu-more-toggle {
  986. position: relative;
  987. height: 24px;
  988. line-height: 1.2;
  989. width: 24px;
  990. padding: 0;
  991. margin-left: 0.5rem;
  992. top: 6px;
  993. }
  994. .main-navigation .main-menu > li.menu-item-has-children .submenu-expand.main-menu-more-toggle svg {
  995. height: 24px;
  996. width: 24px;
  997. top: -0.125rem;
  998. vertical-align: text-bottom;
  999. }
  1000. .wp-customizer-unloading .main-navigation .main-menu > li.menu-item-has-children .submenu-expand, .main-navigation .main-menu > li.menu-item-has-children .submenu-expand.is-empty {
  1001. display: none;
  1002. }
  1003. .main-navigation .main-menu > li.menu-item-has-children .submenu-expand svg {
  1004. position: relative;
  1005. top: 0.2rem;
  1006. }
  1007. .main-navigation .main-menu > li:last-child > a,
  1008. .main-navigation .main-menu > li:last-child.menu-item-has-children .submenu-expand {
  1009. margin-right: 0;
  1010. }
  1011. .main-navigation .sub-menu {
  1012. background-color: #caab57;
  1013. color: #080808;
  1014. list-style: none;
  1015. padding-left: 0;
  1016. position: absolute;
  1017. opacity: 0;
  1018. left: -9999px;
  1019. z-index: 99999;
  1020. }
  1021. @media only screen and (min-width: 768px) {
  1022. .main-navigation .sub-menu {
  1023. width: auto;
  1024. min-width: max-content;
  1025. }
  1026. }
  1027. .main-navigation .sub-menu > li {
  1028. display: block;
  1029. float: none;
  1030. position: relative;
  1031. }
  1032. .main-navigation .sub-menu > li.menu-item-has-children .submenu-expand {
  1033. display: inline-block;
  1034. position: absolute;
  1035. width: calc( 24px + 1rem);
  1036. right: 0;
  1037. top: calc( .125 * 1rem);
  1038. bottom: 0;
  1039. color: white;
  1040. line-height: 1;
  1041. padding: calc( .5 * 1rem);
  1042. }
  1043. .main-navigation .sub-menu > li.menu-item-has-children .submenu-expand svg {
  1044. top: 0;
  1045. }
  1046. .main-navigation .sub-menu > li.menu-item-has-children .submenu-expand {
  1047. margin-right: 0;
  1048. }
  1049. @media only screen and (min-width: 768px) {
  1050. .main-navigation .sub-menu > li.menu-item-has-children .menu-item-has-children > a:after {
  1051. content: "\203a";
  1052. }
  1053. }
  1054. .main-navigation .sub-menu > li > a,
  1055. .main-navigation .sub-menu > li > .menu-item-link-return {
  1056. color: #080808;
  1057. display: block;
  1058. line-height: 1.2;
  1059. text-shadow: none;
  1060. padding: calc( .5 * 1rem) calc( 24px + 1rem) calc( .5 * 1rem) 1rem;
  1061. white-space: nowrap;
  1062. }
  1063. .main-navigation .sub-menu > li > a:hover, .main-navigation .sub-menu > li > a:focus,
  1064. .main-navigation .sub-menu > li > .menu-item-link-return:hover,
  1065. .main-navigation .sub-menu > li > .menu-item-link-return:focus {
  1066. background: #b59439;
  1067. }
  1068. .main-navigation .sub-menu > li > a:hover:after, .main-navigation .sub-menu > li > a:focus:after,
  1069. .main-navigation .sub-menu > li > .menu-item-link-return:hover:after,
  1070. .main-navigation .sub-menu > li > .menu-item-link-return:focus:after {
  1071. background: #b59439;
  1072. }
  1073. .main-navigation .sub-menu > li > .menu-item-link-return {
  1074. width: 100%;
  1075. font-size: 22px;
  1076. font-weight: normal;
  1077. text-align: left;
  1078. }
  1079. .main-navigation .sub-menu > li > a:empty {
  1080. display: none;
  1081. }
  1082. .main-navigation .sub-menu > li.mobile-parent-nav-menu-item {
  1083. display: none;
  1084. font-size: 0.88889em;
  1085. font-weight: normal;
  1086. }
  1087. .main-navigation .sub-menu > li.mobile-parent-nav-menu-item svg {
  1088. position: relative;
  1089. top: 0.2rem;
  1090. margin-right: calc( .25 * 1rem);
  1091. }
  1092. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu {
  1093. display: block;
  1094. left: 0;
  1095. margin-top: 0;
  1096. opacity: 1;
  1097. width: auto;
  1098. min-width: 100%;
  1099. /* Non-mobile position */
  1100. /* Nested sub-menu dashes */
  1101. }
  1102. @media only screen and (min-width: 768px) {
  1103. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu {
  1104. display: block;
  1105. margin-top: 0;
  1106. opacity: 1;
  1107. position: absolute;
  1108. left: 0;
  1109. right: auto;
  1110. top: auto;
  1111. bottom: auto;
  1112. height: auto;
  1113. min-width: max-content;
  1114. transform: none;
  1115. }
  1116. }
  1117. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu.hidden-links {
  1118. left: 0;
  1119. width: 100%;
  1120. display: table;
  1121. position: absolute;
  1122. }
  1123. @media only screen and (min-width: 768px) {
  1124. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu.hidden-links {
  1125. right: 0;
  1126. left: auto;
  1127. display: block;
  1128. width: max-content;
  1129. }
  1130. }
  1131. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu .submenu-expand {
  1132. display: none;
  1133. }
  1134. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu .sub-menu {
  1135. display: block;
  1136. margin-top: inherit;
  1137. position: relative;
  1138. width: 100%;
  1139. left: 0;
  1140. opacity: 1;
  1141. /* Non-mobile position */
  1142. }
  1143. @media only screen and (min-width: 768px) {
  1144. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu .sub-menu {
  1145. float: none;
  1146. max-width: 100%;
  1147. }
  1148. }
  1149. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu .sub-menu {
  1150. counter-reset: submenu;
  1151. }
  1152. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu .sub-menu > li > a::before {
  1153. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1154. font-weight: normal;
  1155. content: "– " counters(submenu, "– ", none);
  1156. counter-increment: submenu;
  1157. }
  1158. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu,
  1159. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu,
  1160. .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu {
  1161. display: block;
  1162. left: 0;
  1163. margin-top: 0;
  1164. opacity: 1;
  1165. width: auto;
  1166. min-width: 100%;
  1167. /* Non-mobile position */
  1168. /* Nested sub-menu dashes */
  1169. }
  1170. @media only screen and (min-width: 768px) {
  1171. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu,
  1172. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu,
  1173. .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu {
  1174. display: block;
  1175. float: none;
  1176. margin-top: 0;
  1177. opacity: 1;
  1178. position: absolute;
  1179. left: 0;
  1180. right: auto;
  1181. top: auto;
  1182. bottom: auto;
  1183. height: auto;
  1184. min-width: max-content;
  1185. transform: none;
  1186. }
  1187. }
  1188. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu.hidden-links,
  1189. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu.hidden-links,
  1190. .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu.hidden-links {
  1191. left: 0;
  1192. width: 100%;
  1193. display: table;
  1194. position: absolute;
  1195. }
  1196. @media only screen and (min-width: 768px) {
  1197. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu.hidden-links,
  1198. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu.hidden-links,
  1199. .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu.hidden-links {
  1200. right: 0;
  1201. left: auto;
  1202. display: table;
  1203. width: max-content;
  1204. }
  1205. }
  1206. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu .submenu-expand,
  1207. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu .submenu-expand,
  1208. .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu .submenu-expand {
  1209. display: none;
  1210. }
  1211. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu .sub-menu,
  1212. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu .sub-menu,
  1213. .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu .sub-menu {
  1214. display: block;
  1215. margin-top: inherit;
  1216. position: relative;
  1217. width: 100%;
  1218. left: 0;
  1219. opacity: 1;
  1220. /* Non-mobile position */
  1221. }
  1222. @media only screen and (min-width: 768px) {
  1223. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu .sub-menu,
  1224. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu .sub-menu,
  1225. .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu .sub-menu {
  1226. float: none;
  1227. max-width: 100%;
  1228. }
  1229. }
  1230. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu .sub-menu,
  1231. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu .sub-menu,
  1232. .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu .sub-menu {
  1233. counter-reset: submenu;
  1234. }
  1235. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu .sub-menu > li > a::before,
  1236. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu .sub-menu > li > a::before,
  1237. .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu .sub-menu > li > a::before {
  1238. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1239. font-weight: normal;
  1240. content: "– " counters(submenu, "– ", none);
  1241. counter-increment: submenu;
  1242. }
  1243. .main-navigation .main-menu > .menu-item-has-children:not(.off-canvas):hover > .sub-menu {
  1244. animation: fade_in 0.1s forwards;
  1245. }
  1246. .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu .submenu-expand .svg-icon {
  1247. transform: rotate(270deg);
  1248. }
  1249. .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu .sub-menu {
  1250. opacity: 0;
  1251. position: absolute;
  1252. z-index: 0;
  1253. transform: translateX(-100%);
  1254. }
  1255. .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu li:hover,
  1256. .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu li:focus,
  1257. .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu li > a:hover,
  1258. .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu li > a:focus {
  1259. background-color: transparent;
  1260. }
  1261. .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu > li > a,
  1262. .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu > li > .menu-item-link-return {
  1263. white-space: inherit;
  1264. }
  1265. .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu.expanded-true {
  1266. display: table;
  1267. margin-top: 0;
  1268. opacity: 1;
  1269. padding-left: 0;
  1270. /* Mobile position */
  1271. left: 0;
  1272. top: 0;
  1273. right: 0;
  1274. bottom: 0;
  1275. position: fixed;
  1276. z-index: 100000;
  1277. /* Make sure appears above mobile admin bar */
  1278. width: 100vw;
  1279. height: 100vh;
  1280. max-width: 100vw;
  1281. transform: translateX(100%);
  1282. animation: slide_in_right 0.3s forwards;
  1283. /* Prevent menu from being blocked by admin bar */
  1284. }
  1285. .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu.expanded-true > .mobile-parent-nav-menu-item {
  1286. display: block;
  1287. }
  1288. .admin-bar .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu.expanded-true {
  1289. top: 46px;
  1290. height: calc( 100vh - 46px);
  1291. /* WP core breakpoint */
  1292. }
  1293. .admin-bar .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu.expanded-true .sub-menu.expanded-true {
  1294. top: 0;
  1295. }
  1296. @media only screen and (min-width: 782px) {
  1297. .admin-bar .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu.expanded-true {
  1298. top: 32px;
  1299. height: calc( 100vh - 32px);
  1300. }
  1301. .admin-bar .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu.expanded-true .sub-menu.expanded-true {
  1302. top: 0;
  1303. }
  1304. }
  1305. .main-navigation .main-menu-more:nth-child(n+3) {
  1306. display: none;
  1307. }
  1308. /* Menu animation */
  1309. @keyframes slide_in_right {
  1310. 100% {
  1311. transform: translateX(0%);
  1312. }
  1313. }
  1314. @keyframes fade_in {
  1315. from {
  1316. opacity: 0;
  1317. }
  1318. to {
  1319. opacity: 1;
  1320. }
  1321. }
  1322. /* Social menu */
  1323. .social-navigation {
  1324. margin-top: calc(1rem / 2);
  1325. text-align: left;
  1326. }
  1327. .social-navigation ul.social-links-menu {
  1328. content: "";
  1329. display: table;
  1330. table-layout: fixed;
  1331. display: inline-block;
  1332. margin: 0;
  1333. padding: 0;
  1334. }
  1335. .social-navigation ul.social-links-menu li {
  1336. display: inline-block;
  1337. vertical-align: bottom;
  1338. vertical-align: -webkit-baseline-middle;
  1339. list-style: none;
  1340. }
  1341. .social-navigation ul.social-links-menu li:nth-child(n+2) {
  1342. margin-left: 0.1em;
  1343. }
  1344. .social-navigation ul.social-links-menu li a {
  1345. border-bottom: 1px solid transparent;
  1346. display: block;
  1347. color: #fff;
  1348. margin-bottom: -1px;
  1349. transition: opacity 110ms ease-in-out;
  1350. }
  1351. .social-navigation ul.social-links-menu li a:hover, .social-navigation ul.social-links-menu li a:active {
  1352. color: #fff;
  1353. opacity: 0.6;
  1354. }
  1355. .social-navigation ul.social-links-menu li a:focus {
  1356. color: #fff;
  1357. opacity: 1;
  1358. border-bottom: 1px solid #fff;
  1359. }
  1360. .social-navigation ul.social-links-menu li a svg {
  1361. display: block;
  1362. width: 32px;
  1363. height: 32px;
  1364. transform: translateZ(0);
  1365. }
  1366. .social-navigation ul.social-links-menu li a svg#ui-icon-link {
  1367. transform: rotate(-45deg);
  1368. }
  1369. @media only screen and (min-width: 768px) {
  1370. .site-title + .social-navigation,
  1371. .site-description + .social-navigation {
  1372. margin-top: calc(1rem / 5);
  1373. }
  1374. }
  1375. /** === Footer menu === */
  1376. .footer-navigation {
  1377. display: inline;
  1378. }
  1379. .footer-navigation > div {
  1380. display: inline;
  1381. }
  1382. .footer-navigation .footer-menu {
  1383. display: inline;
  1384. padding-left: 0;
  1385. }
  1386. .footer-navigation .footer-menu li {
  1387. display: inline;
  1388. margin-right: 1rem;
  1389. }
  1390. /*--------------------------------------------------------------
  1391. ## Next / Previous
  1392. --------------------------------------------------------------*/
  1393. /* Next/Previous navigation */
  1394. .post-navigation {
  1395. margin: calc(3 * 1rem) 1rem 1rem;
  1396. }
  1397. @media only screen and (min-width: 768px) {
  1398. .post-navigation {
  1399. margin: calc(3 * 1rem) auto calc(1rem / 2);
  1400. max-width: calc(8 * (100vw / 12) - 28px);
  1401. }
  1402. }
  1403. @media only screen and (min-width: 1168px) {
  1404. .post-navigation {
  1405. max-width: calc(6 * (100vw / 12) - 28px);
  1406. }
  1407. }
  1408. .post-navigation .nav-links {
  1409. max-width: 100%;
  1410. display: flex;
  1411. flex-direction: column;
  1412. }
  1413. @media only screen and (min-width: 768px) {
  1414. .post-navigation .nav-links {
  1415. flex-direction: row;
  1416. }
  1417. }
  1418. .post-navigation .nav-links a .meta-nav {
  1419. color: #fff;
  1420. -webkit-user-select: none;
  1421. user-select: none;
  1422. }
  1423. .post-navigation .nav-links a .meta-nav:before, .post-navigation .nav-links a .meta-nav:after {
  1424. display: none;
  1425. content: "—";
  1426. width: 2em;
  1427. color: #fff;
  1428. height: 1em;
  1429. }
  1430. .post-navigation .nav-links a .post-title {
  1431. -webkit-hyphens: auto;
  1432. hyphens: auto;
  1433. }
  1434. .post-navigation .nav-links a:hover {
  1435. color: #b59439;
  1436. }
  1437. .post-navigation .nav-links .nav-previous {
  1438. order: 2;
  1439. }
  1440. .post-navigation .nav-links .nav-previous + .nav-next {
  1441. margin-bottom: 1rem;
  1442. }
  1443. .post-navigation .nav-links .nav-previous .meta-nav:before {
  1444. display: inline;
  1445. }
  1446. @media only screen and (min-width: 768px) {
  1447. .post-navigation .nav-links .nav-next {
  1448. order: 2;
  1449. padding-left: 1rem;
  1450. margin-left: auto;
  1451. }
  1452. }
  1453. .post-navigation .nav-links .nav-next .meta-nav:after {
  1454. display: inline;
  1455. }
  1456. .pagination .nav-links {
  1457. display: flex;
  1458. flex-wrap: wrap;
  1459. justify-content: center;
  1460. padding: 0 calc(.5 * 1rem);
  1461. }
  1462. .pagination .nav-links > * {
  1463. padding: calc(.5 * 1rem);
  1464. }
  1465. .pagination .nav-links > *.dots, .pagination .nav-links > *.prev {
  1466. padding-left: 0;
  1467. }
  1468. .pagination .nav-links > *.dots, .pagination .nav-links > *.next {
  1469. padding-right: 0;
  1470. }
  1471. .pagination .nav-links a:focus {
  1472. text-decoration: underline;
  1473. outline-offset: -1px;
  1474. }
  1475. .pagination .nav-links a:focus.prev, .pagination .nav-links a:focus.next {
  1476. text-decoration: none;
  1477. }
  1478. .pagination .nav-links a:focus.prev .nav-prev-text,
  1479. .pagination .nav-links a:focus.prev .nav-next-text, .pagination .nav-links a:focus.next .nav-prev-text,
  1480. .pagination .nav-links a:focus.next .nav-next-text {
  1481. text-decoration: underline;
  1482. }
  1483. .pagination .nav-links .nav-next-text,
  1484. .pagination .nav-links .nav-prev-text {
  1485. display: none;
  1486. }
  1487. @media only screen and (min-width: 768px) {
  1488. .pagination .nav-links {
  1489. padding: 0;
  1490. }
  1491. .pagination .nav-links .prev > *,
  1492. .pagination .nav-links .next > * {
  1493. display: inline-block;
  1494. vertical-align: text-bottom;
  1495. }
  1496. .pagination .nav-links > * {
  1497. padding: 1rem;
  1498. }
  1499. }
  1500. .comment-navigation .nav-links {
  1501. display: flex;
  1502. flex-direction: row;
  1503. }
  1504. .comment-navigation .nav-previous,
  1505. .comment-navigation .nav-next {
  1506. min-width: 50%;
  1507. width: 100%;
  1508. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1509. font-weight: bold;
  1510. }
  1511. .comment-navigation .nav-previous .secondary-text,
  1512. .comment-navigation .nav-next .secondary-text {
  1513. display: none;
  1514. }
  1515. @media only screen and (min-width: 768px) {
  1516. .comment-navigation .nav-previous .secondary-text,
  1517. .comment-navigation .nav-next .secondary-text {
  1518. display: inline;
  1519. }
  1520. }
  1521. .comment-navigation .nav-previous svg,
  1522. .comment-navigation .nav-next svg {
  1523. vertical-align: middle;
  1524. position: relative;
  1525. margin: 0 -0.35em;
  1526. top: -1px;
  1527. }
  1528. .comment-navigation .nav-next {
  1529. text-align: right;
  1530. }
  1531. /* Accessibility */
  1532. /* Text meant only for screen readers. */
  1533. .screen-reader-text {
  1534. border: 0;
  1535. clip: rect(1px, 1px, 1px, 1px);
  1536. -webkit-clip-path: inset(50%);
  1537. clip-path: inset(50%);
  1538. height: 1px;
  1539. margin: -1px;
  1540. overflow: hidden;
  1541. padding: 0;
  1542. position: absolute !important;
  1543. width: 1px;
  1544. word-wrap: normal !important;
  1545. /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  1546. }
  1547. .screen-reader-text:focus {
  1548. background-color: #1c1c1c;
  1549. border-radius: 3px;
  1550. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  1551. clip: auto !important;
  1552. -webkit-clip-path: none;
  1553. clip-path: none;
  1554. color: #21759b;
  1555. display: block;
  1556. font-size: 14px;
  1557. font-size: 0.875rem;
  1558. font-weight: bold;
  1559. height: auto;
  1560. left: 5px;
  1561. line-height: normal;
  1562. padding: 15px 23px 14px;
  1563. text-decoration: none;
  1564. top: 5px;
  1565. width: auto;
  1566. z-index: 100000;
  1567. /* Above WP toolbar. */
  1568. }
  1569. /* Do not show the outline on the skip link target. */
  1570. #content[tabindex="-1"]:focus {
  1571. outline: 0;
  1572. }
  1573. /* Alignments */
  1574. .alignleft {
  1575. /*rtl:ignore*/
  1576. float: left;
  1577. /*rtl:ignore*/
  1578. margin-right: 1rem;
  1579. }
  1580. @media only screen and (min-width: 768px) {
  1581. .alignleft {
  1582. /*rtl:ignore*/
  1583. margin-right: calc(2 * 1rem);
  1584. }
  1585. }
  1586. .alignright {
  1587. /*rtl:ignore*/
  1588. float: right;
  1589. /*rtl:ignore*/
  1590. margin-left: 1rem;
  1591. }
  1592. @media only screen and (min-width: 768px) {
  1593. .alignright {
  1594. /*rtl:ignore*/
  1595. margin-left: calc(2 * 1rem);
  1596. }
  1597. }
  1598. .aligncenter {
  1599. clear: both;
  1600. display: block;
  1601. margin-left: auto;
  1602. margin-right: auto;
  1603. }
  1604. /* Clearings */
  1605. .clear:before,
  1606. .clear:after,
  1607. .entry-content:before,
  1608. .entry-content:after,
  1609. .comment-content:before,
  1610. .comment-content:after,
  1611. .site-header:before,
  1612. .site-header:after,
  1613. .site-content:before,
  1614. .site-content:after,
  1615. .site-footer:before,
  1616. .site-footer:after {
  1617. content: "";
  1618. display: table;
  1619. table-layout: fixed;
  1620. }
  1621. .clear:after,
  1622. .entry-content:after,
  1623. .comment-content:after,
  1624. .site-header:after,
  1625. .site-content:after,
  1626. .site-footer:after {
  1627. clear: both;
  1628. }
  1629. /* Layout */
  1630. /** === Layout === */
  1631. #page {
  1632. width: 100%;
  1633. }
  1634. .site-content {
  1635. overflow: hidden;
  1636. }
  1637. /* Content */
  1638. /*--------------------------------------------------------------
  1639. ## Header
  1640. --------------------------------------------------------------*/
  1641. .site-header {
  1642. padding: 1rem;
  1643. }
  1644. .site-header.featured-image {
  1645. display: flex;
  1646. flex-direction: column;
  1647. justify-content: space-between;
  1648. min-height: 90vh;
  1649. }
  1650. .site-header.featured-image .site-branding-container {
  1651. margin-bottom: auto;
  1652. }
  1653. @media only screen and (min-width: 768px) {
  1654. .site-header {
  1655. margin: 0;
  1656. }
  1657. .site-header.featured-image {
  1658. min-height: 100vh;
  1659. margin-bottom: 3rem;
  1660. }
  1661. }
  1662. .site-branding {
  1663. display: flex;
  1664. flex-wrap: wrap;
  1665. align-items: flex-start;
  1666. justify-content: space-between;
  1667. color: #cccccc;
  1668. position: relative;
  1669. }
  1670. .site-logo {
  1671. margin-right: 0.5rem;
  1672. }
  1673. .site-logo .custom-logo-link {
  1674. box-sizing: content-box;
  1675. display: block;
  1676. line-height: 0;
  1677. overflow: hidden;
  1678. }
  1679. .site-logo .custom-logo-link .custom-logo {
  1680. max-height: 60px;
  1681. width: auto;
  1682. }
  1683. .site-title,
  1684. .wp-block-a8c-site-title,
  1685. .wp-block-a8c-site-title:focus {
  1686. color: #fff;
  1687. font-size: 1.125em !important;
  1688. font-weight: 600;
  1689. flex: 1 1 auto;
  1690. margin: 0;
  1691. }
  1692. .site-title a,
  1693. .wp-block-a8c-site-title a,
  1694. .wp-block-a8c-site-title:focus a {
  1695. color: #fff;
  1696. }
  1697. .site-title a:link, .site-title a:visited,
  1698. .wp-block-a8c-site-title a:link,
  1699. .wp-block-a8c-site-title a:visited,
  1700. .wp-block-a8c-site-title:focus a:link,
  1701. .wp-block-a8c-site-title:focus a:visited {
  1702. color: #fff;
  1703. }
  1704. .site-title a:hover,
  1705. .wp-block-a8c-site-title a:hover,
  1706. .wp-block-a8c-site-title:focus a:hover {
  1707. color: #c6c6c6;
  1708. }
  1709. .featured-image .site-title, .featured-image
  1710. .wp-block-a8c-site-title, .featured-image
  1711. .wp-block-a8c-site-title:focus {
  1712. margin: 0;
  1713. }
  1714. .site-description,
  1715. .wp-block-a8c-site-description,
  1716. .wp-block-a8c-site-description:focus {
  1717. flex: initial;
  1718. color: #fff;
  1719. font-size: 0.71111em;
  1720. font-weight: normal;
  1721. margin: 0.27rem 0 0;
  1722. }
  1723. @media only screen and (min-width: 768px) {
  1724. .site-description,
  1725. .wp-block-a8c-site-description,
  1726. .wp-block-a8c-site-description:focus {
  1727. text-align: right;
  1728. }
  1729. }
  1730. .site-header.featured-image {
  1731. /* Hide overflow for overflowing featured image */
  1732. overflow: hidden;
  1733. /* Need relative positioning to properly align layers. */
  1734. position: relative;
  1735. /* Add text shadow to text, to increase readability. */
  1736. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  1737. /* add focus state to social media icons */
  1738. /* Entry header */
  1739. /* Make sure important elements are above pseudo elements used for effects. */
  1740. /* Set up image filter layer positioning */
  1741. /* Background & Effects */
  1742. /* Shared background settings between pseudo elements. */
  1743. background-position: center;
  1744. background-repeat: no-repeat;
  1745. background-size: cover;
  1746. /* The intensity of each blend mode is controlled via layer opacity. */
  1747. /* Second layer: screen. */
  1748. /* Third layer: multiply. */
  1749. /* When image filters are inactive, a black overlay is added. */
  1750. /* Fourth layer: overlay. */
  1751. /* Fifth layer: readability overlay */
  1752. }
  1753. .site-header.featured-image .main-navigation a,
  1754. .site-header.featured-image .main-navigation .main-menu > li,
  1755. .site-header.featured-image .main-navigation a + svg,
  1756. .site-header.featured-image .social-navigation a,
  1757. .site-header.featured-image .site-title a,
  1758. .site-header.featured-image .site-featured-image a {
  1759. color: #fff;
  1760. transition: opacity 110ms ease-in-out;
  1761. }
  1762. .site-header.featured-image .main-navigation a:hover, .site-header.featured-image .main-navigation a:active,
  1763. .site-header.featured-image .main-navigation a:hover + svg,
  1764. .site-header.featured-image .main-navigation a:active + svg,
  1765. .site-header.featured-image .main-navigation .main-menu > li:hover,
  1766. .site-header.featured-image .main-navigation .main-menu > li:active,
  1767. .site-header.featured-image .main-navigation .main-menu > li:hover + svg,
  1768. .site-header.featured-image .main-navigation .main-menu > li:active + svg,
  1769. .site-header.featured-image .main-navigation a + svg:hover,
  1770. .site-header.featured-image .main-navigation a + svg:active,
  1771. .site-header.featured-image .main-navigation a + svg:hover + svg,
  1772. .site-header.featured-image .main-navigation a + svg:active + svg,
  1773. .site-header.featured-image .social-navigation a:hover,
  1774. .site-header.featured-image .social-navigation a:active,
  1775. .site-header.featured-image .social-navigation a:hover + svg,
  1776. .site-header.featured-image .social-navigation a:active + svg,
  1777. .site-header.featured-image .site-title a:hover,
  1778. .site-header.featured-image .site-title a:active,
  1779. .site-header.featured-image .site-title a:hover + svg,
  1780. .site-header.featured-image .site-title a:active + svg,
  1781. .site-header.featured-image .site-featured-image a:hover,
  1782. .site-header.featured-image .site-featured-image a:active,
  1783. .site-header.featured-image .site-featured-image a:hover + svg,
  1784. .site-header.featured-image .site-featured-image a:active + svg {
  1785. color: #cccccc;
  1786. opacity: 0.6;
  1787. }
  1788. .site-header.featured-image .main-navigation a:focus,
  1789. .site-header.featured-image .main-navigation a:focus + svg,
  1790. .site-header.featured-image .main-navigation .main-menu > li:focus,
  1791. .site-header.featured-image .main-navigation .main-menu > li:focus + svg,
  1792. .site-header.featured-image .main-navigation a + svg:focus,
  1793. .site-header.featured-image .main-navigation a + svg:focus + svg,
  1794. .site-header.featured-image .social-navigation a:focus,
  1795. .site-header.featured-image .social-navigation a:focus + svg,
  1796. .site-header.featured-image .site-title a:focus,
  1797. .site-header.featured-image .site-title a:focus + svg,
  1798. .site-header.featured-image .site-featured-image a:focus,
  1799. .site-header.featured-image .site-featured-image a:focus + svg {
  1800. color: #080808;
  1801. }
  1802. .site-header.featured-image .main-navigation .sub-menu a {
  1803. opacity: inherit;
  1804. }
  1805. .site-header.featured-image .social-navigation a:focus {
  1806. color: #080808;
  1807. opacity: 1;
  1808. border-bottom: 1px solid #080808;
  1809. }
  1810. .site-header.featured-image .social-navigation svg,
  1811. .site-header.featured-image .site-featured-image svg {
  1812. /* Use -webkit- only if supporting: Chrome < 54, iOS < 9.3, Android < 4.4.4 */
  1813. filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
  1814. }
  1815. .site-header.featured-image .site-featured-image {
  1816. /* First layer: grayscale. */
  1817. }
  1818. .site-header.featured-image .site-featured-image .post-thumbnail img {
  1819. height: auto;
  1820. left: 50%;
  1821. max-width: 1000%;
  1822. min-height: 100%;
  1823. min-width: 100vw;
  1824. position: absolute;
  1825. top: 50%;
  1826. transform: translateX(-50%) translateY(-50%);
  1827. width: auto;
  1828. z-index: 1;
  1829. /* When image filters are active, make it grayscale to colorize it blue. */
  1830. }
  1831. @supports ((-o-object-fit: cover) or (object-fit: cover)) {
  1832. .site-header.featured-image .site-featured-image .post-thumbnail img {
  1833. height: 100%;
  1834. left: 0;
  1835. -o-object-fit: cover;
  1836. object-fit: cover;
  1837. top: 0;
  1838. transform: none;
  1839. width: 100%;
  1840. }
  1841. }
  1842. .image-filters-enabled .site-header.featured-image .site-featured-image .post-thumbnail img {
  1843. filter: grayscale(100%);
  1844. }
  1845. .site-header.featured-image .site-featured-image .entry-header {
  1846. margin-top: calc( 4 * 1rem);
  1847. margin-bottom: 0;
  1848. margin-left: 0;
  1849. margin-right: 0;
  1850. text-align: center;
  1851. /* Entry meta */
  1852. }
  1853. @media only screen and (min-width: 768px) {
  1854. .site-header.featured-image .site-featured-image .entry-header {
  1855. margin-left: calc(10% + 60px);
  1856. margin-right: calc(10% + 60px);
  1857. }
  1858. }
  1859. .site-header.featured-image .site-featured-image .entry-header .entry-title:before {
  1860. background: #080808;
  1861. }
  1862. .site-header.featured-image .site-featured-image .entry-header .entry-meta {
  1863. font-weight: 500;
  1864. text-align: center;
  1865. }
  1866. .site-header.featured-image .site-featured-image .entry-header .entry-meta > span {
  1867. margin-right: 1rem;
  1868. display: inline-block;
  1869. }
  1870. .site-header.featured-image .site-featured-image .entry-header .entry-meta > span:last-child {
  1871. margin-right: 0;
  1872. }
  1873. .site-header.featured-image .site-featured-image .entry-header .entry-meta a {
  1874. transition: color 110ms ease-in-out;
  1875. color: currentColor;
  1876. }
  1877. .site-header.featured-image .site-featured-image .entry-header .entry-meta a:hover {
  1878. text-decoration: none;
  1879. }
  1880. .site-header.featured-image .site-featured-image .entry-header .entry-meta .svg-icon {
  1881. position: relative;
  1882. display: inline-block;
  1883. vertical-align: middle;
  1884. margin-right: 0.5em;
  1885. }
  1886. .site-header.featured-image .site-featured-image .entry-header .entry-meta .discussion-avatar-list {
  1887. display: none;
  1888. }
  1889. @media only screen and (min-width: 768px) {
  1890. .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta {
  1891. display: flex;
  1892. position: relative;
  1893. }
  1894. .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-title {
  1895. padding-right: calc(1 * (100vw / 12) + 1rem);
  1896. }
  1897. .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta .comment-count {
  1898. position: absolute;
  1899. right: 0;
  1900. }
  1901. .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta .discussion-avatar-list {
  1902. display: block;
  1903. position: absolute;
  1904. bottom: 100%;
  1905. }
  1906. }
  1907. .site-header.featured-image .site-branding {
  1908. position: relative;
  1909. z-index: 10;
  1910. }
  1911. .site-header.featured-image .site-featured-image .entry-header {
  1912. position: relative;
  1913. z-index: 9;
  1914. }
  1915. .site-header.featured-image .site-branding-container:after,
  1916. .site-header.featured-image .site-featured-image:before,
  1917. .site-header.featured-image .site-featured-image:after, .site-header.featured-image:after {
  1918. display: block;
  1919. position: absolute;
  1920. top: 0;
  1921. left: 0;
  1922. content: "\020";
  1923. width: 100%;
  1924. height: 100%;
  1925. }
  1926. .image-filters-enabled .site-header.featured-image .site-featured-image:before {
  1927. background: #caab57;
  1928. mix-blend-mode: screen;
  1929. opacity: 0.1;
  1930. }
  1931. .site-header.featured-image .site-featured-image:after {
  1932. background: #000;
  1933. mix-blend-mode: multiply;
  1934. opacity: .7;
  1935. /* When image filters are active, a blue overlay is added. */
  1936. }
  1937. .image-filters-enabled .site-header.featured-image .site-featured-image:after {
  1938. background: #caab57;
  1939. opacity: .8;
  1940. z-index: 3;
  1941. /* Browsers supporting mix-blend-mode don't need opacity < 1 */
  1942. }
  1943. @supports (mix-blend-mode: multiply) {
  1944. .image-filters-enabled .site-header.featured-image .site-featured-image:after {
  1945. opacity: 1;
  1946. }
  1947. }
  1948. .image-filters-enabled .site-header.featured-image .site-branding-container:after {
  1949. background: rgba(0, 0, 0, 0.35);
  1950. mix-blend-mode: overlay;
  1951. opacity: 0.5;
  1952. z-index: 4;
  1953. /* Browsers supporting mix-blend-mode can have a light overlay */
  1954. }
  1955. @supports (mix-blend-mode: overlay) {
  1956. .image-filters-enabled .site-header.featured-image .site-branding-container:after {
  1957. background: rgba(8, 8, 8, 0.35);
  1958. }
  1959. }
  1960. .site-header.featured-image:after {
  1961. background: #000;
  1962. /**
  1963. * Add a transition to the readability overlay, to add a subtle
  1964. * but smooth effect when resizing the screen.
  1965. */
  1966. transition: opacity 1200ms ease-in-out;
  1967. opacity: 0.7;
  1968. z-index: 5;
  1969. /* When image filters are active, a blue overlay is added. */
  1970. }
  1971. .image-filters-enabled .site-header.featured-image:after {
  1972. background: #18150a;
  1973. opacity: 0.38;
  1974. }
  1975. @media only screen and (min-width: 768px) {
  1976. .image-filters-enabled .site-header.featured-image:after {
  1977. opacity: 0.18;
  1978. }
  1979. }
  1980. .site-header.featured-image ::selection {
  1981. background: rgba(8, 8, 8, 0.17);
  1982. }
  1983. /*--------------------------------------------------------------
  1984. ## Posts and pages
  1985. --------------------------------------------------------------*/
  1986. .sticky {
  1987. display: block;
  1988. }
  1989. .sticky-post {
  1990. background: #caab57;
  1991. color: #080808;
  1992. display: inline-block;
  1993. font-weight: bold;
  1994. line-height: 1;
  1995. padding: .25rem;
  1996. text-transform: uppercase;
  1997. }
  1998. .updated:not(.published) {
  1999. display: none;
  2000. }
  2001. .page-links {
  2002. clear: both;
  2003. margin: 0 0 calc(1.5 * 1rem);
  2004. }
  2005. .entry {
  2006. margin-top: calc(6 * 1rem);
  2007. }
  2008. .entry:first-of-type {
  2009. margin-top: 0;
  2010. }
  2011. .entry .entry-header {
  2012. margin: calc(3 * 1rem) 1rem 32px;
  2013. position: relative;
  2014. text-align: center;
  2015. }
  2016. @media only screen and (min-width: 768px) {
  2017. .entry .entry-header {
  2018. margin: calc(3 * 1rem) calc(10% + 60px) 32px;
  2019. }
  2020. }
  2021. .entry .entry-title {
  2022. margin: 0;
  2023. margin-bottom: 32px;
  2024. }
  2025. .entry .entry-title a {
  2026. color: inherit;
  2027. }
  2028. .entry .entry-title a:hover {
  2029. color: #c6c6c6;
  2030. }
  2031. .entry .entry-meta,
  2032. .entry .entry-footer {
  2033. color: #cccccc;
  2034. font-weight: 500;
  2035. text-align: center;
  2036. }
  2037. .entry .entry-meta > span,
  2038. .entry .entry-footer > span {
  2039. margin-right: 1rem;
  2040. display: inline-block;
  2041. }
  2042. .entry .entry-meta > span:last-child,
  2043. .entry .entry-footer > span:last-child {
  2044. margin-right: 0;
  2045. }
  2046. .entry .entry-meta a,
  2047. .entry .entry-footer a {
  2048. transition: color 110ms ease-in-out;
  2049. color: currentColor;
  2050. }
  2051. .entry .entry-meta a:hover,
  2052. .entry .entry-footer a:hover {
  2053. text-decoration: none;
  2054. color: #caab57;
  2055. }
  2056. .entry .entry-meta .svg-icon,
  2057. .entry .entry-footer .svg-icon {
  2058. position: relative;
  2059. display: inline-block;
  2060. vertical-align: middle;
  2061. margin-right: 0.5em;
  2062. }
  2063. .entry .entry-meta {
  2064. margin: 1rem 0;
  2065. }
  2066. .entry .entry-footer {
  2067. margin: calc(2 * 1rem) 1rem 1rem;
  2068. }
  2069. @media only screen and (min-width: 768px) {
  2070. .entry .entry-footer {
  2071. margin: 1rem auto calc(3 * 1rem);
  2072. max-width: calc(8 * (100vw / 12) - 28px);
  2073. }
  2074. }
  2075. @media only screen and (min-width: 1168px) {
  2076. .entry .entry-footer {
  2077. max-width: calc(6 * (100vw / 12) - 28px);
  2078. }
  2079. }
  2080. .entry .post-thumbnail {
  2081. margin: 1rem;
  2082. }
  2083. @media only screen and (min-width: 768px) {
  2084. .entry .post-thumbnail {
  2085. margin: 1rem calc(10% + 60px);
  2086. }
  2087. }
  2088. .entry .post-thumbnail:focus {
  2089. outline: none;
  2090. }
  2091. .entry .post-thumbnail .post-thumbnail-inner {
  2092. display: block;
  2093. }
  2094. .entry .post-thumbnail .post-thumbnail-inner img {
  2095. position: relative;
  2096. display: block;
  2097. width: 100%;
  2098. }
  2099. .image-filters-enabled .entry .post-thumbnail {
  2100. position: relative;
  2101. display: block;
  2102. }
  2103. .image-filters-enabled .entry .post-thumbnail .post-thumbnail-inner {
  2104. filter: grayscale(100%);
  2105. }
  2106. .image-filters-enabled .entry .post-thumbnail .post-thumbnail-inner:after {
  2107. background: rgba(0, 0, 0, 0.35);
  2108. content: "";
  2109. display: block;
  2110. height: 100%;
  2111. opacity: .5;
  2112. pointer-events: none;
  2113. position: absolute;
  2114. top: 0;
  2115. width: 100%;
  2116. z-index: 4;
  2117. }
  2118. @supports (mix-blend-mode: multiply) {
  2119. .image-filters-enabled .entry .post-thumbnail .post-thumbnail-inner:after {
  2120. display: none;
  2121. }
  2122. }
  2123. .image-filters-enabled .entry .post-thumbnail:before, .image-filters-enabled .entry .post-thumbnail:after {
  2124. position: absolute;
  2125. display: block;
  2126. width: 100%;
  2127. height: 100%;
  2128. top: 0;
  2129. left: 0;
  2130. content: "\020";
  2131. pointer-events: none;
  2132. }
  2133. .image-filters-enabled .entry .post-thumbnail:before {
  2134. background: #caab57;
  2135. mix-blend-mode: screen;
  2136. opacity: 0.1;
  2137. z-index: 2;
  2138. }
  2139. .image-filters-enabled .entry .post-thumbnail:after {
  2140. background: #caab57;
  2141. mix-blend-mode: multiply;
  2142. opacity: .8;
  2143. z-index: 3;
  2144. /* Browsers supporting mix-blend-mode don't need opacity < 1 */
  2145. }
  2146. @supports (mix-blend-mode: multiply) {
  2147. .image-filters-enabled .entry .post-thumbnail:after {
  2148. opacity: 1;
  2149. }
  2150. }
  2151. .entry .entry-content,
  2152. .entry .entry-summary {
  2153. max-width: calc(100% - (2 * 1rem));
  2154. margin: 0 1rem;
  2155. }
  2156. @media only screen and (min-width: 768px) {
  2157. .entry .entry-content,
  2158. .entry .entry-summary {
  2159. max-width: 80%;
  2160. margin: 0 10%;
  2161. padding: 0 60px;
  2162. }
  2163. }
  2164. .entry .entry-content p {
  2165. word-wrap: break-word;
  2166. }
  2167. .entry .entry-content .more-link {
  2168. transition: color 110ms ease-in-out;
  2169. display: inline;
  2170. color: inherit;
  2171. }
  2172. .entry .entry-content .more-link:after {
  2173. content: "→" /*rtl:"←"*/;
  2174. display: inline-block;
  2175. margin-left: 0.5em;
  2176. }
  2177. .entry .entry-content .more-link:hover {
  2178. color: #caab57;
  2179. text-decoration: none;
  2180. }
  2181. .entry .entry-content a {
  2182. text-decoration: underline;
  2183. }
  2184. .entry .entry-content a.button, .entry .entry-content a:hover {
  2185. text-decoration: none;
  2186. }
  2187. .entry .entry-content a.button {
  2188. display: inline-block;
  2189. }
  2190. .entry .entry-content a.button:hover {
  2191. background: #b59439;
  2192. color: #080808;
  2193. cursor: pointer;
  2194. }
  2195. .entry .entry-content > iframe[style] {
  2196. margin: 32px 0 !important;
  2197. max-width: 100% !important;
  2198. }
  2199. @media only screen and (min-width: 768px) {
  2200. .entry .entry-content > iframe[style] {
  2201. max-width: calc(8 * (100vw / 12) - 28px) !important;
  2202. }
  2203. }
  2204. @media only screen and (min-width: 1168px) {
  2205. .entry .entry-content > iframe[style] {
  2206. max-width: calc(6 * (100vw / 12) - 28px) !important;
  2207. }
  2208. }
  2209. .entry .entry-content .page-links a {
  2210. margin: calc(0.5 * 1rem);
  2211. text-decoration: none;
  2212. }
  2213. .entry .entry-content .wp-audio-shortcode {
  2214. max-width: calc(100vw - (2 * 1rem));
  2215. }
  2216. @media only screen and (min-width: 768px) {
  2217. .entry .entry-content .wp-audio-shortcode {
  2218. max-width: calc(8 * (100vw / 12) - 28px);
  2219. }
  2220. }
  2221. @media only screen and (min-width: 1168px) {
  2222. .entry .entry-content .wp-audio-shortcode {
  2223. max-width: calc(6 * (100vw / 12) - 28px);
  2224. }
  2225. }
  2226. /* Author description */
  2227. .author-bio {
  2228. margin: calc(2 * 1rem) auto 1rem;
  2229. }
  2230. @media only screen and (min-width: 768px) {
  2231. .author-bio {
  2232. max-width: calc(8 * (100vw / 12) - 28px);
  2233. }
  2234. }
  2235. @media only screen and (min-width: 1168px) {
  2236. .author-bio {
  2237. max-width: calc(6 * (100vw / 12) - 28px);
  2238. }
  2239. }
  2240. @media only screen and (min-width: 768px) {
  2241. .author-bio {
  2242. margin: calc(3 * 1rem) auto;
  2243. }
  2244. }
  2245. .author-bio .author-title {
  2246. display: inline;
  2247. }
  2248. .author-bio .author-description {
  2249. display: inline;
  2250. color: #cccccc;
  2251. font-size: 1.125em;
  2252. line-height: 1.2;
  2253. }
  2254. .author-bio .author-description .author-link {
  2255. display: inline-block;
  2256. }
  2257. .author-bio .author-description .author-link:hover {
  2258. color: #b59439;
  2259. text-decoration: none;
  2260. }
  2261. /*--------------------------------------------------------------
  2262. ## Comments
  2263. --------------------------------------------------------------*/
  2264. .comment-content a {
  2265. word-wrap: break-word;
  2266. }
  2267. .bypostauthor {
  2268. display: block;
  2269. }
  2270. .comments-area {
  2271. margin: calc(2 * 1rem) 1rem;
  2272. /* Add extra margin when the comments section is located immediately after the
  2273. * post itself (this happens on pages).
  2274. */
  2275. }
  2276. @media only screen and (min-width: 768px) {
  2277. .comments-area {
  2278. max-width: calc(8 * (100vw / 12) - 28px);
  2279. }
  2280. }
  2281. @media only screen and (min-width: 1168px) {
  2282. .comments-area {
  2283. max-width: calc(6 * (100vw / 12) - 28px);
  2284. }
  2285. }
  2286. @media only screen and (min-width: 768px) {
  2287. .comments-area {
  2288. margin: calc(3 * 1rem) auto;
  2289. }
  2290. }
  2291. .comments-area > * {
  2292. margin-top: calc(2 * 1rem);
  2293. margin-bottom: calc(2 * 1rem);
  2294. }
  2295. @media only screen and (min-width: 768px) {
  2296. .comments-area > * {
  2297. margin-top: calc(3 * 1rem);
  2298. margin-bottom: calc(3 * 1rem);
  2299. }
  2300. }
  2301. .entry + .comments-area {
  2302. margin-top: calc(3 * 1rem);
  2303. }
  2304. @media only screen and (min-width: 768px) {
  2305. .comments-area .comments-title-wrap {
  2306. align-items: baseline;
  2307. display: flex;
  2308. justify-content: space-between;
  2309. }
  2310. }
  2311. .comments-area .comments-title-wrap .comments-title {
  2312. margin: 0;
  2313. }
  2314. @media only screen and (min-width: 768px) {
  2315. .comments-area .comments-title-wrap .comments-title {
  2316. flex: 1 0 calc(3 * (100vw / 12));
  2317. }
  2318. }
  2319. @media only screen and (min-width: 768px) {
  2320. .comments-area .comments-title-wrap .discussion-meta {
  2321. flex: 0 0 calc(2 * (100vw / 12));
  2322. margin-left: 1rem;
  2323. }
  2324. }
  2325. #comment {
  2326. max-width: 100%;
  2327. box-sizing: border-box;
  2328. }
  2329. #respond {
  2330. position: relative;
  2331. }
  2332. #respond .comment-user-avatar {
  2333. margin: 1rem 0 -1rem;
  2334. }
  2335. #respond .comment .comment-form {
  2336. padding-left: 0;
  2337. }
  2338. #respond > small {
  2339. display: block;
  2340. font-size: 22px;
  2341. position: absolute;
  2342. left: calc(1rem + 100%);
  2343. top: calc(-3.5 * 1rem);
  2344. width: calc(100vw / 12);
  2345. }
  2346. #comments > .comments-title:last-child {
  2347. display: none;
  2348. }
  2349. .comment-form-flex {
  2350. display: flex;
  2351. flex-direction: column;
  2352. }
  2353. .comment-form-flex .comments-title {
  2354. display: none;
  2355. margin: 0;
  2356. order: 1;
  2357. }
  2358. .comment-form-flex #respond {
  2359. order: 2;
  2360. }
  2361. .comment-form-flex #respond + .comments-title {
  2362. display: block;
  2363. }
  2364. .comment-list {
  2365. list-style: none;
  2366. padding: 0;
  2367. }
  2368. .comment-list .children {
  2369. margin: 0;
  2370. padding: 0 0 0 1rem;
  2371. }
  2372. .comment-list > .comment:first-child {
  2373. margin-top: 0;
  2374. }
  2375. .comment-list .pingback .comment-body,
  2376. .comment-list .trackback .comment-body {
  2377. color: #cccccc;
  2378. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2379. font-size: 0.71111em;
  2380. font-weight: 500;
  2381. margin-top: 1rem;
  2382. margin-bottom: 1rem;
  2383. }
  2384. .comment-list .pingback .comment-body a:not(.comment-edit-link),
  2385. .comment-list .trackback .comment-body a:not(.comment-edit-link) {
  2386. font-weight: bold;
  2387. font-size: 19.55556px;
  2388. line-height: 1.5;
  2389. padding-right: 0.5rem;
  2390. display: block;
  2391. }
  2392. .comment-list .pingback .comment-body .comment-edit-link,
  2393. .comment-list .trackback .comment-body .comment-edit-link {
  2394. color: #cccccc;
  2395. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2396. font-weight: 500;
  2397. }
  2398. #respond + .comment-reply {
  2399. display: none;
  2400. }
  2401. .comment-reply .comment-reply-link {
  2402. display: inline-block;
  2403. }
  2404. .comment {
  2405. list-style: none;
  2406. position: relative;
  2407. }
  2408. @media only screen and (min-width: 768px) {
  2409. .comment {
  2410. padding-left: calc(.5 * (1rem + calc(100vw / 12 )));
  2411. }
  2412. .comment.depth-1,
  2413. .comment .children {
  2414. padding-left: 0;
  2415. }
  2416. .comment.depth-1 {
  2417. margin-left: calc(3.25 * 1rem);
  2418. }
  2419. }
  2420. .comment .comment-body {
  2421. margin: calc(2 * 1rem) 0 0;
  2422. }
  2423. .comment .comment-meta {
  2424. position: relative;
  2425. }
  2426. .comment .comment-author .avatar {
  2427. float: left;
  2428. margin-right: 1rem;
  2429. position: relative;
  2430. }
  2431. @media only screen and (min-width: 768px) {
  2432. .comment .comment-author .avatar {
  2433. float: inherit;
  2434. margin-right: inherit;
  2435. position: absolute;
  2436. top: 0;
  2437. right: calc(100% + 1rem);
  2438. }
  2439. }
  2440. .comment .comment-author .fn {
  2441. position: relative;
  2442. display: block;
  2443. }
  2444. .comment .comment-author .fn a {
  2445. color: inherit;
  2446. }
  2447. .comment .comment-author .fn a:hover {
  2448. color: #b59439;
  2449. }
  2450. .comment .comment-author .post-author-badge {
  2451. border-radius: 100%;
  2452. display: block;
  2453. height: 18px;
  2454. position: absolute;
  2455. background: #d4bb76;
  2456. right: calc(100% - 2.5rem);
  2457. top: -3px;
  2458. width: 18px;
  2459. }
  2460. @media only screen and (min-width: 768px) {
  2461. .comment .comment-author .post-author-badge {
  2462. right: calc(100% + 0.75rem);
  2463. }
  2464. }
  2465. .comment .comment-author .post-author-badge svg {
  2466. width: inherit;
  2467. height: inherit;
  2468. display: block;
  2469. fill: white;
  2470. transform: scale(0.875);
  2471. }
  2472. .comment .comment-metadata > a,
  2473. .comment .comment-metadata .comment-edit-link {
  2474. display: inline;
  2475. font-weight: 500;
  2476. color: #cccccc;
  2477. vertical-align: baseline;
  2478. }
  2479. .comment .comment-metadata > a time,
  2480. .comment .comment-metadata .comment-edit-link time {
  2481. vertical-align: baseline;
  2482. }
  2483. .comment .comment-metadata > a:hover,
  2484. .comment .comment-metadata .comment-edit-link:hover {
  2485. color: #b59439;
  2486. text-decoration: none;
  2487. }
  2488. .comment .comment-metadata > * {
  2489. display: inline-block;
  2490. }
  2491. .comment .comment-metadata .edit-link-sep {
  2492. color: #cccccc;
  2493. margin: 0 0.2em;
  2494. vertical-align: baseline;
  2495. }
  2496. .comment .comment-metadata .edit-link {
  2497. color: #cccccc;
  2498. }
  2499. .comment .comment-metadata .edit-link svg {
  2500. transform: scale(0.8);
  2501. vertical-align: baseline;
  2502. margin-right: 0.1em;
  2503. }
  2504. .comment .comment-metadata .comment-edit-link {
  2505. position: relative;
  2506. padding-left: 1rem;
  2507. margin-left: -1rem;
  2508. z-index: 1;
  2509. }
  2510. .comment .comment-metadata .comment-edit-link:hover {
  2511. color: #caab57;
  2512. }
  2513. .comment .comment-content {
  2514. margin: 1rem 0;
  2515. }
  2516. @media only screen and (min-width: 1168px) {
  2517. .comment .comment-content {
  2518. padding-right: 1rem;
  2519. }
  2520. }
  2521. .comment .comment-content > *:first-child {
  2522. margin-top: 0;
  2523. }
  2524. .comment .comment-content > *:last-child {
  2525. margin-bottom: 0;
  2526. }
  2527. .comment .comment-content blockquote {
  2528. margin-left: 0;
  2529. }
  2530. .comment .comment-content a {
  2531. text-decoration: underline;
  2532. }
  2533. .comment .comment-content a:hover {
  2534. text-decoration: none;
  2535. }
  2536. .comment-reply-link,
  2537. #cancel-comment-reply-link {
  2538. font-weight: 500;
  2539. }
  2540. .comment-reply-link:hover,
  2541. #cancel-comment-reply-link:hover {
  2542. color: #b59439;
  2543. }
  2544. .discussion-avatar-list {
  2545. content: "";
  2546. display: table;
  2547. table-layout: fixed;
  2548. margin: 0;
  2549. padding: 0;
  2550. }
  2551. .discussion-avatar-list li {
  2552. position: relative;
  2553. list-style: none;
  2554. margin: 0 -8px 0 0;
  2555. padding: 0;
  2556. float: left;
  2557. }
  2558. .discussion-avatar-list .comment-user-avatar img {
  2559. height: calc(1.5 * 1rem);
  2560. width: calc(1.5 * 1rem);
  2561. }
  2562. .discussion-meta .discussion-meta-info {
  2563. margin: 0;
  2564. }
  2565. .discussion-meta .discussion-meta-info .svg-icon {
  2566. vertical-align: middle;
  2567. fill: currentColor;
  2568. transform: scale(0.6) scaleX(-1) translateY(-0.1em);
  2569. margin-left: -0.25rem;
  2570. }
  2571. .comment-form .comment-notes,
  2572. .comment-form label {
  2573. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2574. font-size: 0.71111em;
  2575. color: #cccccc;
  2576. }
  2577. @media only screen and (min-width: 768px) {
  2578. .comment-form .comment-form-author:not(.comment-form-field),
  2579. .comment-form .comment-form-email:not(.comment-form-field) {
  2580. width: calc(50% - 0.5rem);
  2581. float: left;
  2582. }
  2583. }
  2584. @media only screen and (min-width: 768px) {
  2585. .comment-form .comment-form-email:not(.comment-form-field) {
  2586. margin-left: 1rem;
  2587. }
  2588. }
  2589. .comment-form input[name="author"],
  2590. .comment-form input[name="email"],
  2591. .comment-form input[name="url"] {
  2592. display: block;
  2593. width: 100%;
  2594. }
  2595. /*--------------------------------------------------------------
  2596. ## Archives
  2597. --------------------------------------------------------------*/
  2598. .archive .page-header,
  2599. .search .page-header,
  2600. .error404 .page-header {
  2601. margin: 1rem 1rem calc(3 * 1rem);
  2602. }
  2603. @media only screen and (min-width: 768px) {
  2604. .archive .page-header,
  2605. .search .page-header,
  2606. .error404 .page-header {
  2607. margin: 0 calc(10% + 60px) calc(10% + 60px);
  2608. }
  2609. }
  2610. .archive .page-header .page-title,
  2611. .search .page-header .page-title,
  2612. .error404 .page-header .page-title {
  2613. color: #cccccc;
  2614. display: inline;
  2615. letter-spacing: normal;
  2616. }
  2617. .archive .page-header .page-title:before,
  2618. .search .page-header .page-title:before,
  2619. .error404 .page-header .page-title:before {
  2620. display: none;
  2621. }
  2622. .archive .page-header .search-term,
  2623. .archive .page-header .page-description,
  2624. .search .page-header .search-term,
  2625. .search .page-header .page-description,
  2626. .error404 .page-header .search-term,
  2627. .error404 .page-header .page-description {
  2628. display: inherit;
  2629. clear: both;
  2630. }
  2631. .archive .page-header .search-term:after,
  2632. .archive .page-header .page-description:after,
  2633. .search .page-header .search-term:after,
  2634. .search .page-header .page-description:after,
  2635. .error404 .page-header .search-term:after,
  2636. .error404 .page-header .page-description:after {
  2637. content: ".";
  2638. font-weight: bold;
  2639. color: #cccccc;
  2640. }
  2641. .archive .page-header .page-description {
  2642. display: block;
  2643. color: #fff;
  2644. font-size: 1em;
  2645. }
  2646. @media only screen and (min-width: 768px) {
  2647. .hfeed .entry .entry-header {
  2648. margin-bottom: calc(3 * 1rem);
  2649. }
  2650. }
  2651. /* 404 & Not found */
  2652. .error-404.not-found .page-title,
  2653. .error-404.not-found .page-content,
  2654. .no-results.not-found .page-title,
  2655. .no-results.not-found .page-content {
  2656. margin: calc(3 * 1rem) 1rem;
  2657. }
  2658. @media only screen and (min-width: 768px) {
  2659. .error-404.not-found .page-title,
  2660. .error-404.not-found .page-content,
  2661. .no-results.not-found .page-title,
  2662. .no-results.not-found .page-content {
  2663. margin: calc(3 * 1rem) calc(10% + 60px) calc(1rem / 2);
  2664. }
  2665. }
  2666. .error-404.not-found .search-submit,
  2667. .no-results.not-found .search-submit {
  2668. vertical-align: middle;
  2669. margin: 1rem 0;
  2670. }
  2671. .error-404.not-found .search-field,
  2672. .no-results.not-found .search-field {
  2673. width: 100%;
  2674. }
  2675. /*--------------------------------------------------------------
  2676. ## Footer
  2677. --------------------------------------------------------------*/
  2678. /* Site footer */
  2679. #colophon .widget-area,
  2680. #colophon .site-info {
  2681. margin: calc(2 * 1rem) 1rem;
  2682. }
  2683. @media only screen and (min-width: 768px) {
  2684. #colophon .widget-area,
  2685. #colophon .site-info {
  2686. max-width: calc(8 * (100vw / 12) - 28px);
  2687. }
  2688. }
  2689. @media only screen and (min-width: 1168px) {
  2690. #colophon .widget-area,
  2691. #colophon .site-info {
  2692. max-width: calc(6 * (100vw / 12) - 28px);
  2693. }
  2694. }
  2695. @media only screen and (min-width: 768px) {
  2696. #colophon .widget-area,
  2697. #colophon .site-info {
  2698. margin: calc(1.5 * 1rem) auto;
  2699. }
  2700. }
  2701. #colophon .widget-column {
  2702. display: flex;
  2703. flex-wrap: wrap;
  2704. }
  2705. #colophon .widget-column .widget {
  2706. width: 100%;
  2707. }
  2708. @media only screen and (min-width: 1168px) {
  2709. #colophon .widget-column .widget {
  2710. margin-right: calc(3 * 1rem);
  2711. width: calc(50% - (3 * 1rem));
  2712. }
  2713. }
  2714. #colophon .site-info {
  2715. color: #cccccc;
  2716. font-size: 0.71111em;
  2717. }
  2718. #colophon .site-info a {
  2719. color: inherit;
  2720. }
  2721. #colophon .site-info a:hover {
  2722. text-decoration: none;
  2723. color: #caab57;
  2724. }
  2725. #colophon .site-info .imprint,
  2726. #colophon .site-info .privacy-policy-link {
  2727. margin-right: 1rem;
  2728. }
  2729. /* Widgets */
  2730. .widget {
  2731. margin: 0 0 1rem;
  2732. /* Make sure select elements fit in widgets. */
  2733. }
  2734. .widget select {
  2735. max-width: 100%;
  2736. }
  2737. .widget a {
  2738. color: #caab57;
  2739. }
  2740. .widget a:hover {
  2741. color: #b59439;
  2742. }
  2743. .widget_archive ul,
  2744. .widget_categories ul,
  2745. .widget_meta ul,
  2746. .widget_nav_menu ul,
  2747. .widget_pages ul,
  2748. .widget_recent_comments ul,
  2749. .widget_recent_entries ul,
  2750. .widget_rss ul {
  2751. padding: 0;
  2752. list-style: none;
  2753. }
  2754. .widget_archive ul li,
  2755. .widget_categories ul li,
  2756. .widget_meta ul li,
  2757. .widget_nav_menu ul li,
  2758. .widget_pages ul li,
  2759. .widget_recent_comments ul li,
  2760. .widget_recent_entries ul li,
  2761. .widget_rss ul li {
  2762. color: #cccccc;
  2763. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2764. font-size: 0.88889em;
  2765. font-weight: 400;
  2766. line-height: 1.2;
  2767. margin-top: 0.5rem;
  2768. margin-bottom: 0.5rem;
  2769. }
  2770. .widget_archive ul ul,
  2771. .widget_categories ul ul,
  2772. .widget_meta ul ul,
  2773. .widget_nav_menu ul ul,
  2774. .widget_pages ul ul,
  2775. .widget_recent_comments ul ul,
  2776. .widget_recent_entries ul ul,
  2777. .widget_rss ul ul {
  2778. counter-reset: submenu;
  2779. }
  2780. .widget_archive ul ul > li > a::before,
  2781. .widget_categories ul ul > li > a::before,
  2782. .widget_meta ul ul > li > a::before,
  2783. .widget_nav_menu ul ul > li > a::before,
  2784. .widget_pages ul ul > li > a::before,
  2785. .widget_recent_comments ul ul > li > a::before,
  2786. .widget_recent_entries ul ul > li > a::before,
  2787. .widget_rss ul ul > li > a::before {
  2788. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2789. font-weight: normal;
  2790. content: "– " counters(submenu, "– ", none);
  2791. counter-increment: submenu;
  2792. }
  2793. .widget_rss .rssSummary {
  2794. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2795. font-size: 0.88889em;
  2796. }
  2797. .widget_tag_cloud .tagcloud {
  2798. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2799. font-weight: 700;
  2800. }
  2801. .widget_search .search-field {
  2802. width: 100%;
  2803. }
  2804. @media only screen and (min-width: 600px) {
  2805. .widget_search .search-field {
  2806. width: auto;
  2807. }
  2808. }
  2809. .widget_search .search-submit {
  2810. display: block;
  2811. margin-top: 1rem;
  2812. }
  2813. .widget_calendar .calendar_wrap {
  2814. text-align: center;
  2815. }
  2816. .widget_calendar .calendar_wrap table td,
  2817. .widget_calendar .calendar_wrap table th {
  2818. border: none;
  2819. }
  2820. .widget_calendar .calendar_wrap a {
  2821. text-decoration: underline;
  2822. }
  2823. /* Blocks */
  2824. /* !Block styles */
  2825. .entry .entry-content > *,
  2826. .entry .entry-summary > * {
  2827. margin: 32px 0;
  2828. max-width: 100%;
  2829. }
  2830. @media only screen and (min-width: 768px) {
  2831. .entry .entry-content > *,
  2832. .entry .entry-summary > * {
  2833. max-width: calc(8 * (100vw / 12) - 28px);
  2834. }
  2835. }
  2836. @media only screen and (min-width: 1168px) {
  2837. .entry .entry-content > *,
  2838. .entry .entry-summary > * {
  2839. max-width: calc(6 * (100vw / 12) - 28px);
  2840. }
  2841. }
  2842. @media only screen and (min-width: 768px) {
  2843. .entry .entry-content > *,
  2844. .entry .entry-summary > * {
  2845. margin: 32px auto;
  2846. }
  2847. }
  2848. .entry .entry-content > * > *:first-child,
  2849. .entry .entry-summary > * > *:first-child {
  2850. margin-top: 0;
  2851. }
  2852. .entry .entry-content > * > *:last-child,
  2853. .entry .entry-summary > * > *:last-child {
  2854. margin-bottom: 0;
  2855. }
  2856. .entry .entry-content > *.alignwide,
  2857. .entry .entry-summary > *.alignwide {
  2858. margin-left: auto;
  2859. margin-right: auto;
  2860. clear: both;
  2861. }
  2862. @media only screen and (min-width: 768px) {
  2863. .entry .entry-content > *.alignwide,
  2864. .entry .entry-summary > *.alignwide {
  2865. width: 100%;
  2866. max-width: 100%;
  2867. }
  2868. }
  2869. .entry .entry-content > *.alignfull,
  2870. .entry .entry-summary > *.alignfull {
  2871. position: relative;
  2872. left: -1rem;
  2873. width: calc( 100% + (2 * 1rem));
  2874. max-width: calc( 100% + (2 * 1rem));
  2875. clear: both;
  2876. }
  2877. @media only screen and (min-width: 768px) {
  2878. .entry .entry-content > *.alignfull,
  2879. .entry .entry-summary > *.alignfull {
  2880. margin-top: 32px;
  2881. margin-bottom: 32px;
  2882. left: calc( -12.5% - 75px);
  2883. width: calc( 125% + 150px);
  2884. max-width: calc( 125% + 150px);
  2885. }
  2886. }
  2887. .entry .entry-content > *.alignleft,
  2888. .entry .entry-summary > *.alignleft {
  2889. /*rtl:ignore*/
  2890. float: left;
  2891. max-width: calc(5 * (100vw / 12));
  2892. margin-top: 0;
  2893. margin-left: 0;
  2894. /*rtl:ignore*/
  2895. margin-right: 1rem;
  2896. }
  2897. @media only screen and (min-width: 768px) {
  2898. .entry .entry-content > *.alignleft,
  2899. .entry .entry-summary > *.alignleft {
  2900. max-width: calc(4 * (100vw / 12));
  2901. /*rtl:ignore*/
  2902. margin-right: calc(2 * 1rem);
  2903. }
  2904. }
  2905. .entry .entry-content > *.alignright,
  2906. .entry .entry-summary > *.alignright {
  2907. /*rtl:ignore*/
  2908. float: right;
  2909. max-width: calc(5 * (100vw / 12));
  2910. margin-top: 0;
  2911. margin-right: 0;
  2912. /*rtl:ignore*/
  2913. margin-left: 1rem;
  2914. }
  2915. @media only screen and (min-width: 768px) {
  2916. .entry .entry-content > *.alignright,
  2917. .entry .entry-summary > *.alignright {
  2918. max-width: calc(4 * (100vw / 12));
  2919. margin-right: 0;
  2920. /*rtl:ignore*/
  2921. margin-left: calc(2 * 1rem);
  2922. }
  2923. }
  2924. .entry .entry-content > *.aligncenter,
  2925. .entry .entry-summary > *.aligncenter {
  2926. margin-left: auto;
  2927. margin-right: auto;
  2928. }
  2929. @media only screen and (min-width: 768px) {
  2930. .entry .entry-content > *.aligncenter,
  2931. .entry .entry-summary > *.aligncenter {
  2932. max-width: calc(8 * (100vw / 12) - 28px);
  2933. }
  2934. }
  2935. @media only screen and (min-width: 1168px) {
  2936. .entry .entry-content > *.aligncenter,
  2937. .entry .entry-summary > *.aligncenter {
  2938. max-width: calc(6 * (100vw / 12) - 28px);
  2939. }
  2940. }
  2941. /*
  2942. * Make sure the first block has margin-top: 0
  2943. */
  2944. .entry:not(.has-post-thumbnail) .entry-content > :first-child {
  2945. margin-top: 0;
  2946. }
  2947. /*
  2948. * Unset nested content selector styles
  2949. * - Prevents layout styles from cascading too deeply
  2950. * - helps with plugin compatibility
  2951. */
  2952. .entry .entry-content .entry-content,
  2953. .entry .entry-content .entry-summary,
  2954. .entry .entry-content .entry,
  2955. .entry .entry-summary .entry-content,
  2956. .entry .entry-summary .entry-summary,
  2957. .entry .entry-summary .entry {
  2958. margin: inherit;
  2959. max-width: inherit;
  2960. padding: inherit;
  2961. }
  2962. @media only screen and (min-width: 768px) {
  2963. .entry .entry-content .entry-content,
  2964. .entry .entry-content .entry-summary,
  2965. .entry .entry-content .entry,
  2966. .entry .entry-summary .entry-content,
  2967. .entry .entry-summary .entry-summary,
  2968. .entry .entry-summary .entry {
  2969. margin: inherit;
  2970. max-width: inherit;
  2971. padding: inherit;
  2972. }
  2973. }
  2974. .entry .entry-content > h1,
  2975. .entry .entry-content > h2,
  2976. .entry .entry-content > h3,
  2977. .entry .entry-content > h4,
  2978. .entry .entry-content > h5,
  2979. .entry .entry-content > h6 {
  2980. margin-top: 32px;
  2981. margin-bottom: 32px;
  2982. text-align: center;
  2983. }
  2984. .entry .entry-content p.has-background {
  2985. padding: 20px 30px;
  2986. }
  2987. .entry .entry-content .wp-block-audio {
  2988. width: 100%;
  2989. }
  2990. .entry .entry-content .wp-block-audio audio {
  2991. width: 100%;
  2992. }
  2993. .entry .entry-content .wp-block-audio.alignleft audio,
  2994. .entry .entry-content .wp-block-audio.alignright audio {
  2995. max-width: 198px;
  2996. }
  2997. @media only screen and (min-width: 768px) {
  2998. .entry .entry-content .wp-block-audio.alignleft audio,
  2999. .entry .entry-content .wp-block-audio.alignright audio {
  3000. max-width: 384px;
  3001. }
  3002. }
  3003. @media only screen and (min-width: 1379px) {
  3004. .entry .entry-content .wp-block-audio.alignleft audio,
  3005. .entry .entry-content .wp-block-audio.alignright audio {
  3006. max-width: 385.44px;
  3007. }
  3008. }
  3009. .entry .entry-content .wp-block-video video {
  3010. width: 100%;
  3011. }
  3012. .entry .entry-content .wp-block-button .wp-block-button__link {
  3013. transition: background 150ms ease-in-out;
  3014. border: none;
  3015. font-size: 0.88889em;
  3016. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3017. font-weight: 600;
  3018. line-height: 1.2;
  3019. box-sizing: border-box;
  3020. font-size: 0.88889em;
  3021. text-decoration: none;
  3022. padding: 0.76rem 1rem;
  3023. outline: none;
  3024. outline: none;
  3025. }
  3026. .entry .entry-content .wp-block-button .wp-block-button__link:not(.has-background) {
  3027. background-color: #caab57;
  3028. }
  3029. .entry .entry-content .wp-block-button .wp-block-button__link:not(.has-text-color) {
  3030. color: #080808;
  3031. }
  3032. .entry .entry-content .wp-block-button .wp-block-button__link:hover {
  3033. color: #080808;
  3034. background: #b59439;
  3035. cursor: pointer;
  3036. }
  3037. .entry .entry-content .wp-block-button .wp-block-button__link:focus {
  3038. color: #080808;
  3039. background: #b59439;
  3040. outline: thin dotted;
  3041. outline-offset: -4px;
  3042. }
  3043. .entry .entry-content .wp-block-button:not(.is-style-squared) .wp-block-button__link {
  3044. border-radius: 5px;
  3045. }
  3046. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link,
  3047. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus,
  3048. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:active {
  3049. transition: all 150ms ease-in-out;
  3050. border-width: 2px;
  3051. border-style: solid;
  3052. }
  3053. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background),
  3054. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-background),
  3055. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-background) {
  3056. background: transparent;
  3057. }
  3058. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color),
  3059. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-text-color),
  3060. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-text-color) {
  3061. color: #caab57;
  3062. border-color: currentColor;
  3063. }
  3064. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  3065. color: #fff;
  3066. border-color: #b59439;
  3067. }
  3068. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover:not(.has-background) {
  3069. color: #b59439;
  3070. }
  3071. .entry .entry-content .wp-block-archives,
  3072. .entry .entry-content .wp-block-categories,
  3073. .entry .entry-content .wp-block-latest-posts {
  3074. padding: 0;
  3075. list-style: none;
  3076. }
  3077. .entry .entry-content .wp-block-archives li,
  3078. .entry .entry-content .wp-block-categories li,
  3079. .entry .entry-content .wp-block-latest-posts li {
  3080. color: #cccccc;
  3081. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3082. font-size: calc(22px * 1.125);
  3083. line-height: 1.2;
  3084. padding-bottom: 0.75rem;
  3085. }
  3086. .entry .entry-content .wp-block-archives li.menu-item-has-children, .entry .entry-content .wp-block-archives li:last-child,
  3087. .entry .entry-content .wp-block-categories li.menu-item-has-children,
  3088. .entry .entry-content .wp-block-categories li:last-child,
  3089. .entry .entry-content .wp-block-latest-posts li.menu-item-has-children,
  3090. .entry .entry-content .wp-block-latest-posts li:last-child {
  3091. padding-bottom: 0;
  3092. }
  3093. .entry .entry-content .wp-block-archives li a,
  3094. .entry .entry-content .wp-block-categories li a,
  3095. .entry .entry-content .wp-block-latest-posts li a {
  3096. text-decoration: none;
  3097. }
  3098. .entry .entry-content .wp-block-archives.aligncenter,
  3099. .entry .entry-content .wp-block-categories.aligncenter {
  3100. text-align: center;
  3101. }
  3102. .entry .entry-content .wp-block-categories ul {
  3103. padding-top: 0.75rem;
  3104. }
  3105. .entry .entry-content .wp-block-categories li ul {
  3106. list-style: none;
  3107. padding-left: 0;
  3108. }
  3109. .entry .entry-content .wp-block-categories ul {
  3110. counter-reset: submenu;
  3111. }
  3112. .entry .entry-content .wp-block-categories ul > li > a::before {
  3113. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3114. font-weight: normal;
  3115. content: "– " counters(submenu, "– ", none);
  3116. counter-increment: submenu;
  3117. }
  3118. .entry .entry-content .wp-block-latest-posts.is-grid li {
  3119. border-top: 2px solid #333333;
  3120. padding-top: 1rem;
  3121. margin-bottom: 32px;
  3122. }
  3123. .entry .entry-content .wp-block-latest-posts.is-grid li a:after {
  3124. content: '';
  3125. }
  3126. .entry .entry-content .wp-block-latest-posts.is-grid li:last-child {
  3127. margin-bottom: auto;
  3128. }
  3129. .entry .entry-content .wp-block-latest-posts.is-grid li:last-child a:after {
  3130. content: '';
  3131. }
  3132. .entry .entry-content .wp-block-preformatted {
  3133. font-size: 0.71111em;
  3134. line-height: 1.8;
  3135. padding: 1rem;
  3136. }
  3137. .entry .entry-content .wp-block-verse {
  3138. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3139. font-size: 22px;
  3140. line-height: 1.8;
  3141. }
  3142. .entry .entry-content .has-drop-cap:not(:focus):first-letter {
  3143. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3144. font-size: 3.375em;
  3145. line-height: 1;
  3146. font-weight: bold;
  3147. margin: 0 0.25em 0 0;
  3148. }
  3149. .entry .entry-content .wp-block-pullquote {
  3150. border-color: transparent;
  3151. border-width: 2px;
  3152. padding: 1rem;
  3153. }
  3154. .entry .entry-content .wp-block-pullquote blockquote {
  3155. color: #fff;
  3156. border: none;
  3157. margin-top: calc(3 * 32px);
  3158. margin-bottom: calc(3.33 * 32px);
  3159. margin-right: 0;
  3160. padding-left: 0;
  3161. }
  3162. .entry .entry-content .wp-block-pullquote p {
  3163. font-size: 1.6875em;
  3164. font-style: italic;
  3165. line-height: 1.3;
  3166. margin-bottom: 0.5em;
  3167. margin-top: 0.5em;
  3168. }
  3169. .entry .entry-content .wp-block-pullquote p em {
  3170. font-style: normal;
  3171. }
  3172. @media only screen and (min-width: 768px) {
  3173. .entry .entry-content .wp-block-pullquote p {
  3174. font-size: 2.25em;
  3175. }
  3176. }
  3177. .entry .entry-content .wp-block-pullquote cite {
  3178. display: inline-block;
  3179. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3180. line-height: 1.6;
  3181. text-transform: none;
  3182. color: #cccccc;
  3183. /*
  3184. * This requires a rem-based font size calculation instead of our normal em-based one,
  3185. * because the cite tag sometimes gets wrapped in a p tag. This is equivalent to $font-size_xs.
  3186. */
  3187. font-size: calc(1rem / (1.25 * 1.125));
  3188. }
  3189. .entry .entry-content .wp-block-pullquote.alignleft, .entry .entry-content .wp-block-pullquote.alignright {
  3190. width: 100%;
  3191. padding: 0;
  3192. }
  3193. .entry .entry-content .wp-block-pullquote.alignleft blockquote, .entry .entry-content .wp-block-pullquote.alignright blockquote {
  3194. margin: 32px 0;
  3195. padding: 0;
  3196. text-align: left;
  3197. max-width: 100%;
  3198. }
  3199. .entry .entry-content .wp-block-pullquote.alignleft blockquote p:first-child, .entry .entry-content .wp-block-pullquote.alignright blockquote p:first-child {
  3200. margin-top: 0;
  3201. }
  3202. .entry .entry-content .wp-block-pullquote.is-style-solid-color {
  3203. background-color: #caab57;
  3204. padding-left: 0;
  3205. padding-right: 0;
  3206. }
  3207. @media only screen and (min-width: 768px) {
  3208. .entry .entry-content .wp-block-pullquote.is-style-solid-color {
  3209. padding-left: 10%;
  3210. padding-right: 10%;
  3211. }
  3212. }
  3213. .entry .entry-content .wp-block-pullquote.is-style-solid-color p {
  3214. font-size: 1.6875em;
  3215. line-height: 1.3;
  3216. margin-bottom: 0.5em;
  3217. margin-top: 0.5em;
  3218. }
  3219. @media only screen and (min-width: 768px) {
  3220. .entry .entry-content .wp-block-pullquote.is-style-solid-color p {
  3221. font-size: 2.25em;
  3222. }
  3223. }
  3224. .entry .entry-content .wp-block-pullquote.is-style-solid-color a {
  3225. color: #080808;
  3226. }
  3227. .entry .entry-content .wp-block-pullquote.is-style-solid-color cite {
  3228. color: inherit;
  3229. }
  3230. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
  3231. max-width: 100%;
  3232. color: #080808;
  3233. padding-left: 0;
  3234. margin-left: 1rem;
  3235. margin-right: 1rem;
  3236. }
  3237. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-text-color p,
  3238. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-text-color a, .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color, .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color, .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color, .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color, .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-white-color {
  3239. color: inherit;
  3240. }
  3241. @media only screen and (min-width: 768px) {
  3242. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
  3243. margin-left: 0;
  3244. margin-right: 0;
  3245. }
  3246. }
  3247. @media only screen and (min-width: 768px) {
  3248. .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignright, .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignleft {
  3249. padding: 1rem calc(2 * 1rem);
  3250. }
  3251. }
  3252. @media only screen and (min-width: 768px) {
  3253. .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignfull {
  3254. padding-left: calc(10% + 58px + (2 * 1rem));
  3255. padding-right: calc(10% + 58px + (2 * 1rem));
  3256. }
  3257. }
  3258. .entry .entry-content .wp-block-quote:not(.is-large), .entry .entry-content .wp-block-quote:not(.is-style-large) {
  3259. border-color: #caab57;
  3260. border-width: 2px;
  3261. padding-top: 0;
  3262. padding-bottom: 0;
  3263. }
  3264. .entry .entry-content .wp-block-quote p {
  3265. font-size: 1em;
  3266. font-style: normal;
  3267. line-height: 1.8;
  3268. }
  3269. .entry .entry-content .wp-block-quote cite {
  3270. color: #cccccc;
  3271. /*
  3272. * This requires a rem-based font size calculation instead of our normal em-based one,
  3273. * because the cite tag sometimes gets wrapped in a p tag. This is equivalent to $font-size_xs.
  3274. */
  3275. font-size: calc(1rem / (1.25 * 1.125));
  3276. }
  3277. .entry .entry-content .wp-block-quote.is-large, .entry .entry-content .wp-block-quote.is-style-large {
  3278. margin: 32px auto;
  3279. padding: 0;
  3280. border-left: none;
  3281. }
  3282. .entry .entry-content .wp-block-quote.is-large p, .entry .entry-content .wp-block-quote.is-style-large p {
  3283. font-size: 1.6875em;
  3284. line-height: 1.4;
  3285. font-style: italic;
  3286. }
  3287. .entry .entry-content .wp-block-quote.is-large cite,
  3288. .entry .entry-content .wp-block-quote.is-large footer, .entry .entry-content .wp-block-quote.is-style-large cite,
  3289. .entry .entry-content .wp-block-quote.is-style-large footer {
  3290. /*
  3291. * This requires a rem-based font size calculation instead of our normal em-based one,
  3292. * because the cite tag sometimes gets wrapped in a p tag. This is equivalent to $font-size_xs.
  3293. */
  3294. font-size: calc(1rem / (1.25 * 1.125));
  3295. }
  3296. @media only screen and (min-width: 768px) {
  3297. .entry .entry-content .wp-block-quote.is-large, .entry .entry-content .wp-block-quote.is-style-large {
  3298. margin: 32px auto;
  3299. padding: 1rem 0;
  3300. }
  3301. .entry .entry-content .wp-block-quote.is-large p, .entry .entry-content .wp-block-quote.is-style-large p {
  3302. font-size: 1.6875em;
  3303. }
  3304. }
  3305. .entry .entry-content .wp-block-image {
  3306. max-width: 100%;
  3307. }
  3308. .entry .entry-content .wp-block-image img {
  3309. display: block;
  3310. }
  3311. .entry .entry-content .wp-block-image.alignfull img {
  3312. width: 100vw;
  3313. max-width: calc( 100% + (2 * 1rem));
  3314. }
  3315. @media only screen and (min-width: 768px) {
  3316. .entry .entry-content .wp-block-image.alignfull img {
  3317. max-width: calc( 125% + 150px);
  3318. margin-left: auto;
  3319. margin-right: auto;
  3320. }
  3321. }
  3322. .entry .entry-content .wp-block-cover-image,
  3323. .entry .entry-content .wp-block-cover {
  3324. position: relative;
  3325. min-height: 430px;
  3326. padding: 1rem;
  3327. }
  3328. @media only screen and (min-width: 768px) {
  3329. .entry .entry-content .wp-block-cover-image,
  3330. .entry .entry-content .wp-block-cover {
  3331. padding: 1rem 10%;
  3332. min-height: 60vh;
  3333. }
  3334. }
  3335. .entry .entry-content .wp-block-cover-image .wp-block-cover__inner-container,
  3336. .entry .entry-content .wp-block-cover .wp-block-cover__inner-container {
  3337. padding: 0;
  3338. color: #fff;
  3339. width: 100%;
  3340. }
  3341. .entry .entry-content .wp-block-cover-image .wp-block-cover__inner-container a,
  3342. .entry .entry-content .wp-block-cover .wp-block-cover__inner-container a {
  3343. color: inherit;
  3344. }
  3345. @media only screen and (min-width: 768px) {
  3346. .entry .entry-content .wp-block-cover-image .wp-block-cover__inner-container,
  3347. .entry .entry-content .wp-block-cover .wp-block-cover__inner-container {
  3348. max-width: 100%;
  3349. margin-left: auto;
  3350. margin-right: auto;
  3351. }
  3352. }
  3353. .entry .entry-content .wp-block-cover-image h1, .entry .entry-content .wp-block-cover-image h2, .entry .entry-content .wp-block-cover-image h3, .entry .entry-content .wp-block-cover-image h4, .entry .entry-content .wp-block-cover-image h5, .entry .entry-content .wp-block-cover-image h6,
  3354. .entry .entry-content .wp-block-cover h1,
  3355. .entry .entry-content .wp-block-cover h2,
  3356. .entry .entry-content .wp-block-cover h3,
  3357. .entry .entry-content .wp-block-cover h4,
  3358. .entry .entry-content .wp-block-cover h5,
  3359. .entry .entry-content .wp-block-cover h6 {
  3360. font-weight: 700;
  3361. }
  3362. .entry .entry-content .wp-block-cover-image h1.has-text-align-left, .entry .entry-content .wp-block-cover-image h2.has-text-align-left, .entry .entry-content .wp-block-cover-image h3.has-text-align-left, .entry .entry-content .wp-block-cover-image h4.has-text-align-left, .entry .entry-content .wp-block-cover-image h5.has-text-align-left, .entry .entry-content .wp-block-cover-image h6.has-text-align-left,
  3363. .entry .entry-content .wp-block-cover h1.has-text-align-left,
  3364. .entry .entry-content .wp-block-cover h2.has-text-align-left,
  3365. .entry .entry-content .wp-block-cover h3.has-text-align-left,
  3366. .entry .entry-content .wp-block-cover h4.has-text-align-left,
  3367. .entry .entry-content .wp-block-cover h5.has-text-align-left,
  3368. .entry .entry-content .wp-block-cover h6.has-text-align-left {
  3369. text-align: left;
  3370. }
  3371. .entry .entry-content .wp-block-cover-image h1.has-text-align-center, .entry .entry-content .wp-block-cover-image h2.has-text-align-center, .entry .entry-content .wp-block-cover-image h3.has-text-align-center, .entry .entry-content .wp-block-cover-image h4.has-text-align-center, .entry .entry-content .wp-block-cover-image h5.has-text-align-center, .entry .entry-content .wp-block-cover-image h6.has-text-align-center,
  3372. .entry .entry-content .wp-block-cover h1.has-text-align-center,
  3373. .entry .entry-content .wp-block-cover h2.has-text-align-center,
  3374. .entry .entry-content .wp-block-cover h3.has-text-align-center,
  3375. .entry .entry-content .wp-block-cover h4.has-text-align-center,
  3376. .entry .entry-content .wp-block-cover h5.has-text-align-center,
  3377. .entry .entry-content .wp-block-cover h6.has-text-align-center {
  3378. text-align: center;
  3379. }
  3380. .entry .entry-content .wp-block-cover-image h1.has-text-align-right, .entry .entry-content .wp-block-cover-image h2.has-text-align-right, .entry .entry-content .wp-block-cover-image h3.has-text-align-right, .entry .entry-content .wp-block-cover-image h4.has-text-align-right, .entry .entry-content .wp-block-cover-image h5.has-text-align-right, .entry .entry-content .wp-block-cover-image h6.has-text-align-right,
  3381. .entry .entry-content .wp-block-cover h1.has-text-align-right,
  3382. .entry .entry-content .wp-block-cover h2.has-text-align-right,
  3383. .entry .entry-content .wp-block-cover h3.has-text-align-right,
  3384. .entry .entry-content .wp-block-cover h4.has-text-align-right,
  3385. .entry .entry-content .wp-block-cover h5.has-text-align-right,
  3386. .entry .entry-content .wp-block-cover h6.has-text-align-right {
  3387. text-align: right;
  3388. }
  3389. .entry .entry-content .wp-block-cover-image h1,
  3390. .entry .entry-content .wp-block-cover h1 {
  3391. font-size: 2.25em;
  3392. }
  3393. .entry .entry-content .wp-block-cover-image .wp-block-cover-image-text,
  3394. .entry .entry-content .wp-block-cover-image .wp-block-cover-text,
  3395. .entry .entry-content .wp-block-cover-image h2,
  3396. .entry .entry-content .wp-block-cover .wp-block-cover-image-text,
  3397. .entry .entry-content .wp-block-cover .wp-block-cover-text,
  3398. .entry .entry-content .wp-block-cover h2 {
  3399. font-size: 1.6875em;
  3400. font-weight: 700;
  3401. margin: 1rem 0;
  3402. max-width: inherit;
  3403. padding: 0;
  3404. text-align: inherit;
  3405. }
  3406. .entry .entry-content .wp-block-cover-image h3,
  3407. .entry .entry-content .wp-block-cover h3 {
  3408. font-size: 1.125em;
  3409. }
  3410. .entry .entry-content .wp-block-cover-image h4,
  3411. .entry .entry-content .wp-block-cover h4 {
  3412. font-size: 22px;
  3413. }
  3414. .entry .entry-content .wp-block-cover-image h5,
  3415. .entry .entry-content .wp-block-cover h5 {
  3416. font-size: 0.88889em;
  3417. }
  3418. .entry .entry-content .wp-block-cover-image h6,
  3419. .entry .entry-content .wp-block-cover h6 {
  3420. font-size: 0.71111em;
  3421. }
  3422. @media only screen and (min-width: 768px) {
  3423. .entry .entry-content .wp-block-cover-image h1,
  3424. .entry .entry-content .wp-block-cover h1 {
  3425. font-size: 2.8125em;
  3426. }
  3427. .entry .entry-content .wp-block-cover-image .wp-block-cover-image-text,
  3428. .entry .entry-content .wp-block-cover-image .wp-block-cover-text,
  3429. .entry .entry-content .wp-block-cover-image h2,
  3430. .entry .entry-content .wp-block-cover .wp-block-cover-image-text,
  3431. .entry .entry-content .wp-block-cover .wp-block-cover-text,
  3432. .entry .entry-content .wp-block-cover h2 {
  3433. font-size: 2.25em;
  3434. }
  3435. .entry .entry-content .wp-block-cover-image h3,
  3436. .entry .entry-content .wp-block-cover h3 {
  3437. font-size: 1.6875em;
  3438. }
  3439. .entry .entry-content .wp-block-cover-image h4,
  3440. .entry .entry-content .wp-block-cover h4 {
  3441. font-size: 1.125em;
  3442. }
  3443. .entry .entry-content .wp-block-cover-image h5,
  3444. .entry .entry-content .wp-block-cover h5 {
  3445. font-size: 22px;
  3446. }
  3447. .entry .entry-content .wp-block-cover-image h6,
  3448. .entry .entry-content .wp-block-cover h6 {
  3449. font-size: 0.88889em;
  3450. }
  3451. }
  3452. .entry .entry-content .wp-block-cover-image.alignleft, .entry .entry-content .wp-block-cover-image.alignright,
  3453. .entry .entry-content .wp-block-cover.alignleft,
  3454. .entry .entry-content .wp-block-cover.alignright {
  3455. width: 100%;
  3456. }
  3457. @media only screen and (min-width: 768px) {
  3458. .entry .entry-content .wp-block-cover-image.alignleft, .entry .entry-content .wp-block-cover-image.alignright,
  3459. .entry .entry-content .wp-block-cover.alignleft,
  3460. .entry .entry-content .wp-block-cover.alignright {
  3461. padding: 1rem calc(2 * 1rem);
  3462. }
  3463. }
  3464. @media only screen and (min-width: 768px) {
  3465. .entry .entry-content .wp-block-cover-image.alignwide .wp-block-cover__inner-container,
  3466. .entry .entry-content .wp-block-cover.alignwide .wp-block-cover__inner-container {
  3467. max-width: calc(8 * (100vw / 12) - 28px);
  3468. }
  3469. }
  3470. @media only screen and (min-width: 1168px) {
  3471. .entry .entry-content .wp-block-cover-image.alignwide .wp-block-cover__inner-container,
  3472. .entry .entry-content .wp-block-cover.alignwide .wp-block-cover__inner-container {
  3473. max-width: calc(6 * (100vw / 12) - 28px);
  3474. }
  3475. }
  3476. @media only screen and (min-width: 768px) {
  3477. .entry .entry-content .wp-block-cover-image.alignwide .wp-block-cover__inner-container,
  3478. .entry .entry-content .wp-block-cover.alignwide .wp-block-cover__inner-container {
  3479. padding: 0;
  3480. }
  3481. }
  3482. @media only screen and (min-width: 768px) {
  3483. .entry .entry-content .wp-block-cover-image.alignfull,
  3484. .entry .entry-content .wp-block-cover.alignfull {
  3485. padding-left: calc(10% + 58px + (2 * 1rem));
  3486. padding-right: calc(10% + 58px + (2 * 1rem));
  3487. }
  3488. .entry .entry-content .wp-block-cover-image.alignfull .wp-block-cover__inner-container,
  3489. .entry .entry-content .wp-block-cover.alignfull .wp-block-cover__inner-container {
  3490. padding: 0;
  3491. }
  3492. .entry .entry-content .wp-block-cover-image.alignfull .wp-block-cover-image-text,
  3493. .entry .entry-content .wp-block-cover-image.alignfull .wp-block-cover-text,
  3494. .entry .entry-content .wp-block-cover-image.alignfull h1,
  3495. .entry .entry-content .wp-block-cover.alignfull .wp-block-cover-image-text,
  3496. .entry .entry-content .wp-block-cover.alignfull .wp-block-cover-text,
  3497. .entry .entry-content .wp-block-cover.alignfull h1 {
  3498. font-size: 4.5em;
  3499. }
  3500. .entry .entry-content .wp-block-cover-image.alignfull h2,
  3501. .entry .entry-content .wp-block-cover.alignfull h2 {
  3502. font-size: 3.375em;
  3503. }
  3504. }
  3505. .entry .entry-content .wp-block-gallery {
  3506. list-style-type: none;
  3507. padding-left: 0;
  3508. }
  3509. .entry .entry-content .wp-block-gallery .blocks-gallery-image:last-child,
  3510. .entry .entry-content .wp-block-gallery .blocks-gallery-item:last-child {
  3511. margin-bottom: 16px;
  3512. }
  3513. .entry .entry-content .wp-block-gallery figcaption a {
  3514. color: #fff;
  3515. }
  3516. .entry .entry-content .wp-block-audio figcaption,
  3517. .entry .entry-content .wp-block-video figcaption,
  3518. .entry .entry-content .wp-block-image figcaption,
  3519. .entry .entry-content .wp-block-gallery .blocks-gallery-image figcaption,
  3520. .entry .entry-content .wp-block-gallery .blocks-gallery-item figcaption {
  3521. font-size: 0.71111em;
  3522. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3523. line-height: 1.6;
  3524. margin: 0;
  3525. padding: 0.5rem;
  3526. text-align: center;
  3527. }
  3528. .entry .entry-content .wp-block-audio figcaption,
  3529. .entry .entry-content .wp-block-video figcaption,
  3530. .entry .entry-content .wp-block-image figcaption {
  3531. color: #cccccc;
  3532. }
  3533. .entry .entry-content .wp-block-separator,
  3534. .entry .entry-content hr {
  3535. background-color: #595959;
  3536. border: 0;
  3537. height: 2px;
  3538. margin-bottom: 32px;
  3539. margin-top: 32px;
  3540. max-width: 5em;
  3541. text-align: left;
  3542. }
  3543. .entry .entry-content .wp-block-separator.is-style-wide,
  3544. .entry .entry-content hr.is-style-wide {
  3545. max-width: 100%;
  3546. }
  3547. @media only screen and (min-width: 768px) {
  3548. .entry .entry-content .wp-block-separator.is-style-wide,
  3549. .entry .entry-content hr.is-style-wide {
  3550. max-width: calc(8 * (100vw / 12) - 28px);
  3551. }
  3552. }
  3553. @media only screen and (min-width: 1168px) {
  3554. .entry .entry-content .wp-block-separator.is-style-wide,
  3555. .entry .entry-content hr.is-style-wide {
  3556. max-width: calc(6 * (100vw / 12) - 28px);
  3557. }
  3558. }
  3559. .entry .entry-content .wp-block-separator.is-style-dots,
  3560. .entry .entry-content hr.is-style-dots {
  3561. max-width: 100%;
  3562. background-color: inherit;
  3563. border: inherit;
  3564. height: inherit;
  3565. text-align: center;
  3566. }
  3567. @media only screen and (min-width: 768px) {
  3568. .entry .entry-content .wp-block-separator.is-style-dots,
  3569. .entry .entry-content hr.is-style-dots {
  3570. max-width: calc(8 * (100vw / 12) - 28px);
  3571. }
  3572. }
  3573. @media only screen and (min-width: 1168px) {
  3574. .entry .entry-content .wp-block-separator.is-style-dots,
  3575. .entry .entry-content hr.is-style-dots {
  3576. max-width: calc(6 * (100vw / 12) - 28px);
  3577. }
  3578. }
  3579. .entry .entry-content .wp-block-separator.is-style-dots:before,
  3580. .entry .entry-content hr.is-style-dots:before {
  3581. color: #595959;
  3582. font-size: 1.6875em;
  3583. letter-spacing: 0.88889em;
  3584. padding-left: 0.88889em;
  3585. }
  3586. .entry .entry-content .wp-block-spacer.desktop-only {
  3587. display: none;
  3588. }
  3589. @media only screen and (min-width: 768px) {
  3590. .entry .entry-content .wp-block-spacer.desktop-only {
  3591. display: block;
  3592. }
  3593. }
  3594. .entry .entry-content .wp-block-embed-twitter {
  3595. word-break: break-word;
  3596. }
  3597. .entry .entry-content .wp-block-table th,
  3598. .entry .entry-content .wp-block-table td {
  3599. border-color: #cccccc;
  3600. }
  3601. .entry .entry-content .wp-block-file {
  3602. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3603. }
  3604. .entry .entry-content .wp-block-file .wp-block-file__button {
  3605. display: table;
  3606. transition: background 150ms ease-in-out;
  3607. border: none;
  3608. border-radius: 5px;
  3609. background: #caab57;
  3610. font-size: 22px;
  3611. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3612. font-weight: 600;
  3613. line-height: 1.2;
  3614. text-decoration: none;
  3615. padding: 0.75rem 1rem;
  3616. color: #080808;
  3617. margin-left: 0;
  3618. margin-top: calc(0.75 * 32px);
  3619. }
  3620. @media only screen and (min-width: 1168px) {
  3621. .entry .entry-content .wp-block-file .wp-block-file__button {
  3622. font-size: 22px;
  3623. padding: 0.875rem 1.5rem;
  3624. }
  3625. }
  3626. .entry .entry-content .wp-block-file .wp-block-file__button:hover {
  3627. background: #b59439;
  3628. cursor: pointer;
  3629. }
  3630. .entry .entry-content .wp-block-file .wp-block-file__button:focus {
  3631. background: #b59439;
  3632. outline: thin dotted;
  3633. outline-offset: -4px;
  3634. }
  3635. .entry .entry-content .wp-block-code {
  3636. border-radius: 0;
  3637. color: #fff;
  3638. }
  3639. .entry .entry-content .wp-block-code code {
  3640. font-size: 1.125em;
  3641. white-space: pre-wrap;
  3642. word-break: break-word;
  3643. }
  3644. .entry .entry-content .wp-block-media-text {
  3645. background: #1c1c1c;
  3646. }
  3647. .entry .entry-content .wp-block-media-text .wp-block-media-text__content > :first-child {
  3648. margin-top: 0.88889rem;
  3649. }
  3650. .entry .entry-content .wp-block-media-text .wp-block-media-text__content > :last-child {
  3651. margin-bottom: 0.88889rem;
  3652. }
  3653. .entry .entry-content .wp-block-media-text + .wp-block-media-text {
  3654. margin-top: -32px;
  3655. }
  3656. .entry .entry-content .wp-block-media-text.has-media-on-the-right.is-stacked-on-mobile .wp-block-media-text__media {
  3657. grid-row: 1;
  3658. }
  3659. .entry .entry-content .wp-block-media-text.has-media-on-the-right.is-stacked-on-mobile .wp-block-media-text__content {
  3660. grid-row: 2;
  3661. }
  3662. @media only screen and (min-width: 600px) {
  3663. .entry .entry-content .wp-block-media-text.has-media-on-the-right.is-stacked-on-mobile .wp-block-media-text__content {
  3664. grid-row: 1;
  3665. }
  3666. }
  3667. .entry .entry-content .wp-block-media-text .wp-block-media-text__content h1, .entry .entry-content .wp-block-media-text .wp-block-media-text__content h2, .entry .entry-content .wp-block-media-text .wp-block-media-text__content h3, .entry .entry-content .wp-block-media-text .wp-block-media-text__content h4, .entry .entry-content .wp-block-media-text .wp-block-media-text__content h5, .entry .entry-content .wp-block-media-text .wp-block-media-text__content h6 {
  3668. text-align: left;
  3669. }
  3670. .entry .entry-content .wp-block-media-text .wp-block-media-text__content a,
  3671. .entry .entry-content .wp-block-media-text .wp-block-media-text__content a:hover {
  3672. color: inherit;
  3673. }
  3674. @media only screen and (min-width: 1168px) {
  3675. .entry .entry-content .wp-block-media-text .wp-block-media-text__content {
  3676. border-left: 2px solid rgba(255, 255, 255, 0.15);
  3677. margin-left: 7.5%;
  3678. margin-right: 7.5%;
  3679. padding-left: 1rem;
  3680. padding-right: 1rem;
  3681. }
  3682. }
  3683. .entry .entry-content .wp-block-media-text.alignfull.is-stacked-on-mobile .wp-block-media-text__content {
  3684. padding: 0 1rem;
  3685. }
  3686. @media only screen and (min-width: 600px) {
  3687. .entry .entry-content .wp-block-media-text.alignfull.is-stacked-on-mobile .wp-block-media-text__content {
  3688. padding: 0 8%;
  3689. }
  3690. }
  3691. @media only screen and (min-width: 1168px) {
  3692. .entry .entry-content .wp-block-media-text.alignfull.is-stacked-on-mobile .wp-block-media-text__content {
  3693. border-left: 2px solid rgba(255, 255, 255, 0.15);
  3694. margin-left: 7.5%;
  3695. margin-right: 7.5%;
  3696. padding-left: 1rem;
  3697. padding-right: 1rem;
  3698. }
  3699. }
  3700. @media only screen and (min-width: 768px) {
  3701. .entry .entry-content .wp-block-media-text.alignfull + .wp-block-media-text {
  3702. margin-top: -32px;
  3703. }
  3704. }
  3705. @media all and (-ms-high-contrast: none) {
  3706. .entry .entry-content .wp-block-media-text:after {
  3707. display: table;
  3708. content: "";
  3709. clear: both;
  3710. }
  3711. .entry .entry-content .wp-block-media-text figure {
  3712. float: left;
  3713. width: 50%;
  3714. }
  3715. .entry .entry-content .wp-block-media-text .wp-block-media-text__content {
  3716. float: right;
  3717. width: 50%;
  3718. }
  3719. .entry .entry-content .wp-block-media-text.has-media-on-the-right figure {
  3720. float: right;
  3721. }
  3722. .entry .entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  3723. float: left;
  3724. }
  3725. }
  3726. .entry .entry-content .wp-block-columns.alignfull {
  3727. padding-left: 1rem;
  3728. padding-right: 1rem;
  3729. }
  3730. @media only screen and (min-width: 782px) {
  3731. .entry .entry-content .wp-block-columns .wp-block-column {
  3732. margin-left: 0.5rem;
  3733. margin-right: 0.5rem;
  3734. }
  3735. .entry .entry-content .wp-block-columns .wp-block-column:first-child {
  3736. margin-left: 0;
  3737. }
  3738. .entry .entry-content .wp-block-columns .wp-block-column:last-child {
  3739. margin-right: 0;
  3740. }
  3741. .entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
  3742. margin-top: 0;
  3743. }
  3744. .entry .entry-content .wp-block-columns .wp-block-column > *:last-child {
  3745. margin-bottom: 0;
  3746. }
  3747. .entry .entry-content .wp-block-columns.alignfull {
  3748. padding-left: calc(2 * 1rem);
  3749. padding-right: calc(2 * 1rem);
  3750. }
  3751. }
  3752. .entry .entry-content .wp-block-latest-comments {
  3753. padding-left: 0;
  3754. }
  3755. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  3756. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3757. }
  3758. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date {
  3759. color: #cccccc;
  3760. font-weight: normal;
  3761. }
  3762. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment,
  3763. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-date,
  3764. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  3765. font-size: inherit;
  3766. }
  3767. .entry .entry-content .wp-block-latest-comments.has-dates .wp-block-latest-comments__comment-date {
  3768. font-size: 0.71111em;
  3769. }
  3770. .entry .entry-content .has-small-font-size {
  3771. font-size: 0.88889em;
  3772. }
  3773. .entry .entry-content .has-normal-font-size {
  3774. font-size: 1.125em;
  3775. }
  3776. .entry .entry-content .has-large-font-size {
  3777. font-size: 1.6875em;
  3778. }
  3779. .entry .entry-content .has-huge-font-size {
  3780. font-size: 2.25em;
  3781. }
  3782. .entry .entry-content .has-primary-background-color,
  3783. .entry .entry-content .has-secondary-background-color,
  3784. .entry .entry-content .has-white-background-color,
  3785. .entry .entry-content .has-light-gray-background-color {
  3786. color: #080808;
  3787. }
  3788. .entry .entry-content .has-primary-background-color p,
  3789. .entry .entry-content .has-primary-background-color h1,
  3790. .entry .entry-content .has-primary-background-color h2,
  3791. .entry .entry-content .has-primary-background-color h3,
  3792. .entry .entry-content .has-primary-background-color h4,
  3793. .entry .entry-content .has-primary-background-color h5,
  3794. .entry .entry-content .has-primary-background-color h6,
  3795. .entry .entry-content .has-primary-background-color a,
  3796. .entry .entry-content .has-secondary-background-color p,
  3797. .entry .entry-content .has-secondary-background-color h1,
  3798. .entry .entry-content .has-secondary-background-color h2,
  3799. .entry .entry-content .has-secondary-background-color h3,
  3800. .entry .entry-content .has-secondary-background-color h4,
  3801. .entry .entry-content .has-secondary-background-color h5,
  3802. .entry .entry-content .has-secondary-background-color h6,
  3803. .entry .entry-content .has-secondary-background-color a,
  3804. .entry .entry-content .has-white-background-color p,
  3805. .entry .entry-content .has-white-background-color h1,
  3806. .entry .entry-content .has-white-background-color h2,
  3807. .entry .entry-content .has-white-background-color h3,
  3808. .entry .entry-content .has-white-background-color h4,
  3809. .entry .entry-content .has-white-background-color h5,
  3810. .entry .entry-content .has-white-background-color h6,
  3811. .entry .entry-content .has-white-background-color a,
  3812. .entry .entry-content .has-light-gray-background-color p,
  3813. .entry .entry-content .has-light-gray-background-color h1,
  3814. .entry .entry-content .has-light-gray-background-color h2,
  3815. .entry .entry-content .has-light-gray-background-color h3,
  3816. .entry .entry-content .has-light-gray-background-color h4,
  3817. .entry .entry-content .has-light-gray-background-color h5,
  3818. .entry .entry-content .has-light-gray-background-color h6,
  3819. .entry .entry-content .has-light-gray-background-color a {
  3820. color: #080808;
  3821. }
  3822. .entry .entry-content .has-dark-gray-background-color {
  3823. color: #fff;
  3824. }
  3825. .entry .entry-content .has-dark-gray-background-color p,
  3826. .entry .entry-content .has-dark-gray-background-color h1,
  3827. .entry .entry-content .has-dark-gray-background-color h2,
  3828. .entry .entry-content .has-dark-gray-background-color h3,
  3829. .entry .entry-content .has-dark-gray-background-color h4,
  3830. .entry .entry-content .has-dark-gray-background-color h5,
  3831. .entry .entry-content .has-dark-gray-background-color h6,
  3832. .entry .entry-content .has-dark-gray-background-color a {
  3833. color: #fff;
  3834. }
  3835. .entry .entry-content .has-primary-background-color,
  3836. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-primary-background-color {
  3837. background-color: #caab57;
  3838. }
  3839. .entry .entry-content .has-secondary-background-color,
  3840. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-secondary-background-color {
  3841. background-color: #b59439;
  3842. }
  3843. .entry .entry-content .has-dark-gray-background-color,
  3844. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-dark-gray-background-color {
  3845. background-color: #1c1c1c;
  3846. }
  3847. .entry .entry-content .has-light-gray-background-color,
  3848. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-light-gray-background-color {
  3849. background-color: #cccccc;
  3850. }
  3851. .entry .entry-content .has-white-background-color,
  3852. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-white-background-color {
  3853. background-color: #FFF;
  3854. }
  3855. .entry .entry-content .has-primary-color,
  3856. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color,
  3857. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color p {
  3858. color: #caab57;
  3859. }
  3860. .entry .entry-content .has-secondary-color,
  3861. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color,
  3862. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color p {
  3863. color: #b59439;
  3864. }
  3865. .entry .entry-content .has-dark-gray-color,
  3866. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color,
  3867. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color p {
  3868. color: #1c1c1c;
  3869. }
  3870. .entry .entry-content .has-light-gray-color,
  3871. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color,
  3872. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color p {
  3873. color: #cccccc;
  3874. }
  3875. .entry .entry-content .has-white-color,
  3876. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-white-color {
  3877. color: #FFF;
  3878. }
  3879. .entry .entry-content .a8c-posts-list-item__title a,
  3880. .entry .entry-content .a8c-posts-list-item__meta a {
  3881. text-decoration: none;
  3882. }
  3883. .entry .entry-content .a8c-posts-list__view-all {
  3884. text-decoration: none;
  3885. }
  3886. .entry .entry-content .a8c-posts-list-item__title a {
  3887. color: inherit;
  3888. }
  3889. .entry .entry-content .a8c-posts-list-item__title a:hover, .entry .entry-content .a8c-posts-list-item__title a:focus {
  3890. color: #c6c6c6;
  3891. }
  3892. .entry .entry-content .a8c-posts-list-item__meta a {
  3893. color: #cccccc;
  3894. }
  3895. .entry .entry-content .a8c-posts-list-item__meta a:hover, .entry .entry-content .a8c-posts-list-item__meta a:focus {
  3896. color: #caab57;
  3897. }
  3898. .entry .entry-content .a8c-posts-list-item__meta .a8c-posts-list-item__edit-link a {
  3899. color: #080808;
  3900. }
  3901. .entry .entry-content .a8c-posts-list {
  3902. text-align: center;
  3903. }
  3904. .entry .entry-content .a8c-posts-list__item:not(:first-child) {
  3905. margin-top: calc(6 * 1rem);
  3906. }
  3907. .entry .entry-content .a8c-posts-list-item__featured span {
  3908. background: #caab57;
  3909. color: #080808;
  3910. display: inline-block;
  3911. font-size: 0.59259em;
  3912. font-weight: bold;
  3913. line-height: 1;
  3914. padding: .25rem;
  3915. text-transform: uppercase;
  3916. z-index: 1;
  3917. }
  3918. .entry .entry-content .a8c-posts-list-item__post-thumbnail {
  3919. margin-bottom: 32px;
  3920. }
  3921. .entry .entry-content .a8c-posts-list-item__post-thumbnail img {
  3922. display: block;
  3923. }
  3924. .entry .entry-content .a8c-posts-list-item__title {
  3925. font-size: 1.6875em;
  3926. margin: 0;
  3927. }
  3928. @media only screen and (min-width: 768px) {
  3929. .entry .entry-content .a8c-posts-list-item__title {
  3930. font-size: 2.25em;
  3931. }
  3932. }
  3933. .entry .entry-content .a8c-posts-list-item__meta {
  3934. color: #cccccc;
  3935. font-size: 0.59259em;
  3936. }
  3937. .entry .entry-content .a8c-posts-list-item__author {
  3938. margin-right: calc(.5 * 1rem);
  3939. }
  3940. .entry .entry-content .a8c-posts-list-item__edit-link {
  3941. transition: background 150ms ease-in-out;
  3942. background: #caab57;
  3943. border-radius: 3px;
  3944. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3945. font-weight: 600;
  3946. padding: .05rem .4rem;
  3947. }
  3948. .entry .entry-content .a8c-posts-list-item__edit-link:hover, .entry .entry-content .a8c-posts-list-item__edit-link:focus {
  3949. background: #b59439;
  3950. cursor: pointer;
  3951. }
  3952. .entry .entry-content .a8c-posts-list-item__excerpt {
  3953. margin: 0 auto;
  3954. text-align: left;
  3955. }
  3956. @media only screen and (min-width: 768px) {
  3957. .entry .entry-content .a8c-posts-list-item__excerpt {
  3958. max-width: calc(8 * (100vw / 12) - 28px);
  3959. }
  3960. }
  3961. @media only screen and (min-width: 1168px) {
  3962. .entry .entry-content .a8c-posts-list-item__excerpt {
  3963. max-width: calc(6 * (100vw / 12) - 28px);
  3964. }
  3965. }
  3966. .entry .entry-content .a8c-posts-list-item__excerpt p {
  3967. margin: 32px 0;
  3968. }
  3969. .entry .entry-content .a8c-posts-list__view-all {
  3970. transition: background 150ms ease-in-out;
  3971. background: #caab57;
  3972. border: none;
  3973. border-radius: 5px;
  3974. box-sizing: border-box;
  3975. color: #080808;
  3976. display: inline-block;
  3977. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3978. font-size: 0.88889em;
  3979. font-weight: 600;
  3980. line-height: 1.2;
  3981. margin-top: calc(6 * 1rem - 32px);
  3982. outline: none;
  3983. padding: 0.76rem 1rem;
  3984. vertical-align: bottom;
  3985. }
  3986. .entry .entry-content .a8c-posts-list__view-all:hover {
  3987. background: #b59439;
  3988. cursor: pointer;
  3989. }
  3990. .entry .entry-content .a8c-posts-list__view-all:visited {
  3991. color: #080808;
  3992. text-decoration: none;
  3993. }
  3994. .entry .entry-content .a8c-posts-list__view-all:focus {
  3995. background: #b59439;
  3996. outline: thin dotted;
  3997. outline-offset: -4px;
  3998. }
  3999. /* Site Builder */
  4000. /* !Site Builder styles */
  4001. .entry .entry-content .site-builder__header {
  4002. align-items: center;
  4003. color: #cccccc;
  4004. flex-wrap: wrap;
  4005. justify-content: space-between;
  4006. line-height: 1.25;
  4007. position: relative;
  4008. display: flex;
  4009. left: calc( -1rem + 1em);
  4010. width: calc( 100% + (2 * 1rem) - 2em);
  4011. max-width: calc( 100% + (2 * 1rem) + 2em);
  4012. }
  4013. @media only screen and (min-width: 768px) {
  4014. .entry .entry-content .site-builder__header {
  4015. left: calc( -12.5% - 75px + 1em);
  4016. width: calc( 125% + 150px - 2em);
  4017. max-width: calc( 125% + 150px + 2em);
  4018. }
  4019. }
  4020. .entry .entry-content .site-builder__title {
  4021. color: #fff;
  4022. flex: 1 1 auto;
  4023. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  4024. font-size: 1.125em;
  4025. font-weight: 600;
  4026. letter-spacing: 0;
  4027. line-height: 1.2;
  4028. margin: 0;
  4029. -webkit-font-smoothing: antialiased;
  4030. -moz-osx-font-smoothing: grayscale;
  4031. }
  4032. .entry .entry-content .site-builder__title a {
  4033. color: #fff;
  4034. text-decoration: none;
  4035. }
  4036. .entry .entry-content .site-builder__title a:link, .entry .entry-content .site-builder__title a:visited {
  4037. color: #fff;
  4038. }
  4039. .entry .entry-content .site-builder__title a:hover {
  4040. color: #c6c6c6;
  4041. }
  4042. .entry .entry-content .site-builder__description {
  4043. flex: initial;
  4044. color: #fff;
  4045. font-size: 0.71111em;
  4046. font-weight: normal;
  4047. margin: 0.27rem 0 0;
  4048. }
  4049. /* Media */
  4050. .page-content .wp-smiley,
  4051. .entry-content .wp-smiley,
  4052. .comment-content .wp-smiley {
  4053. border: none;
  4054. margin-bottom: 0;
  4055. margin-top: 0;
  4056. padding: 0;
  4057. }
  4058. embed,
  4059. iframe,
  4060. object {
  4061. max-width: 100%;
  4062. }
  4063. .custom-logo-link {
  4064. display: inline-block;
  4065. }
  4066. .avatar {
  4067. border-radius: 100%;
  4068. display: block;
  4069. height: calc(2.25 * 1rem);
  4070. min-height: inherit;
  4071. width: calc(2.25 * 1rem);
  4072. }
  4073. svg {
  4074. transition: fill 120ms ease-in-out;
  4075. fill: currentColor;
  4076. }
  4077. /*--------------------------------------------------------------
  4078. ## Captions
  4079. --------------------------------------------------------------*/
  4080. .wp-caption {
  4081. margin-bottom: calc(1.5 * 1rem);
  4082. }
  4083. @media only screen and (min-width: 768px) {
  4084. .wp-caption.aligncenter {
  4085. position: relative;
  4086. left: calc( calc(8 * (100vw / 12) - 28px) / 2);
  4087. transform: translateX(-50%);
  4088. }
  4089. }
  4090. @media only screen and (min-width: 1168px) {
  4091. .wp-caption.aligncenter {
  4092. left: calc( calc(6 * (100vw / 12) - 28px) / 2);
  4093. }
  4094. }
  4095. .wp-caption img[class*="wp-image-"] {
  4096. display: block;
  4097. margin-left: auto;
  4098. margin-right: auto;
  4099. }
  4100. .wp-caption-text {
  4101. color: #cccccc;
  4102. font-size: 0.71111em;
  4103. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  4104. line-height: 1.6;
  4105. margin: 0;
  4106. padding: 0.5rem;
  4107. text-align: center;
  4108. }
  4109. /*--------------------------------------------------------------
  4110. ## Galleries
  4111. --------------------------------------------------------------*/
  4112. .gallery {
  4113. display: flex;
  4114. flex-flow: row wrap;
  4115. justify-content: center;
  4116. margin-bottom: calc(1.5 * 1rem);
  4117. }
  4118. .gallery-item {
  4119. display: inline-block;
  4120. margin-right: 16px;
  4121. margin-bottom: 16px;
  4122. text-align: center;
  4123. vertical-align: top;
  4124. width: 100%;
  4125. }
  4126. .gallery-columns-2 .gallery-item {
  4127. max-width: calc((100% - 16px * 1) / 2);
  4128. }
  4129. .gallery-columns-2 .gallery-item:nth-of-type(2n+2) {
  4130. margin-right: 0;
  4131. }
  4132. .gallery-columns-3 .gallery-item {
  4133. max-width: calc((100% - 16px * 2) / 3);
  4134. }
  4135. .gallery-columns-3 .gallery-item:nth-of-type(3n+3) {
  4136. margin-right: 0;
  4137. }
  4138. .gallery-columns-4 .gallery-item {
  4139. max-width: calc((100% - 16px * 3) / 4);
  4140. }
  4141. .gallery-columns-4 .gallery-item:nth-of-type(4n+4) {
  4142. margin-right: 0;
  4143. }
  4144. .gallery-columns-5 .gallery-item {
  4145. max-width: calc((100% - 16px * 4) / 5);
  4146. }
  4147. .gallery-columns-5 .gallery-item:nth-of-type(5n+5) {
  4148. margin-right: 0;
  4149. }
  4150. .gallery-columns-6 .gallery-item {
  4151. max-width: calc((100% - 16px * 5) / 6);
  4152. }
  4153. .gallery-columns-6 .gallery-item:nth-of-type(6n+6) {
  4154. margin-right: 0;
  4155. }
  4156. .gallery-columns-7 .gallery-item {
  4157. max-width: calc((100% - 16px * 6) / 7);
  4158. }
  4159. .gallery-columns-7 .gallery-item:nth-of-type(7n+7) {
  4160. margin-right: 0;
  4161. }
  4162. .gallery-columns-8 .gallery-item {
  4163. max-width: calc((100% - 16px * 7) / 8);
  4164. }
  4165. .gallery-columns-8 .gallery-item:nth-of-type(8n+8) {
  4166. margin-right: 0;
  4167. }
  4168. .gallery-columns-9 .gallery-item {
  4169. max-width: calc((100% - 16px * 8) / 9);
  4170. }
  4171. .gallery-columns-9 .gallery-item:nth-of-type(9n+9) {
  4172. margin-right: 0;
  4173. }
  4174. .gallery-item:last-of-type {
  4175. padding-right: 0;
  4176. }
  4177. .gallery-caption {
  4178. display: block;
  4179. font-size: 0.71111em;
  4180. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  4181. line-height: 1.6;
  4182. margin: 0;
  4183. padding: 0.5rem;
  4184. }
  4185. .gallery-item > div > a {
  4186. display: block;
  4187. line-height: 0;
  4188. box-shadow: 0 0 0 0 transparent;
  4189. }
  4190. .gallery-item > div > a:focus {
  4191. box-shadow: 0 0 0 2px #caab57;
  4192. }