style-rtl.css 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875
  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.4
  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-right: 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-right: 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-right: 2px solid #caab57;
  731. margin-right: 0;
  732. padding: 0 1rem 0 0;
  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-left: 0.5rem;
  955. }
  956. .main-navigation .main-menu > li > a + svg {
  957. margin-left: 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-left: 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-left: 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-right: 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-left: 0;
  1010. }
  1011. .main-navigation .sub-menu {
  1012. background-color: #caab57;
  1013. color: #080808;
  1014. list-style: none;
  1015. padding-right: 0;
  1016. position: absolute;
  1017. opacity: 0;
  1018. right: -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. left: 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-left: 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) 1rem calc( .5 * 1rem) calc( 24px + 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: right;
  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-left: calc( .25 * 1rem);
  1091. }
  1092. .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu {
  1093. display: block;
  1094. right: 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. right: 0;
  1109. left: 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. right: 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. left: 0;
  1126. right: 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. right: 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. right: 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. right: 0;
  1180. left: 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. right: 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. left: 0;
  1201. right: 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. right: 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-right: 0;
  1270. /* Mobile position */
  1271. right: 0;
  1272. top: 0;
  1273. left: 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: right;
  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-right: 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-right: 0;
  1385. }
  1386. .footer-navigation .footer-menu li {
  1387. display: inline;
  1388. margin-left: 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-right: 1rem;
  1450. margin-right: 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-right: 0;
  1467. }
  1468. .pagination .nav-links > *.dots, .pagination .nav-links > *.next {
  1469. padding-left: 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: left;
  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. right: 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. float: left;
  1576. margin-right: 1rem;
  1577. }
  1578. @media only screen and (min-width: 768px) {
  1579. .alignleft {
  1580. margin-right: calc(2 * 1rem);
  1581. }
  1582. }
  1583. .alignright {
  1584. float: right;
  1585. margin-left: 1rem;
  1586. }
  1587. @media only screen and (min-width: 768px) {
  1588. .alignright {
  1589. margin-left: calc(2 * 1rem);
  1590. }
  1591. }
  1592. .aligncenter {
  1593. clear: both;
  1594. display: block;
  1595. margin-right: auto;
  1596. margin-left: auto;
  1597. }
  1598. /* Clearings */
  1599. .clear:before,
  1600. .clear:after,
  1601. .entry-content:before,
  1602. .entry-content:after,
  1603. .comment-content:before,
  1604. .comment-content:after,
  1605. .site-header:before,
  1606. .site-header:after,
  1607. .site-content:before,
  1608. .site-content:after,
  1609. .site-footer:before,
  1610. .site-footer:after {
  1611. content: "";
  1612. display: table;
  1613. table-layout: fixed;
  1614. }
  1615. .clear:after,
  1616. .entry-content:after,
  1617. .comment-content:after,
  1618. .site-header:after,
  1619. .site-content:after,
  1620. .site-footer:after {
  1621. clear: both;
  1622. }
  1623. /* Layout */
  1624. /** === Layout === */
  1625. #page {
  1626. width: 100%;
  1627. }
  1628. .site-content {
  1629. overflow: hidden;
  1630. }
  1631. /* Content */
  1632. /*--------------------------------------------------------------
  1633. ## Header
  1634. --------------------------------------------------------------*/
  1635. .site-header {
  1636. padding: 1rem;
  1637. }
  1638. .site-header.featured-image {
  1639. display: flex;
  1640. flex-direction: column;
  1641. justify-content: space-between;
  1642. min-height: 90vh;
  1643. }
  1644. .site-header.featured-image .site-branding-container {
  1645. margin-bottom: auto;
  1646. }
  1647. @media only screen and (min-width: 768px) {
  1648. .site-header {
  1649. margin: 0;
  1650. }
  1651. .site-header.featured-image {
  1652. min-height: 100vh;
  1653. margin-bottom: 3rem;
  1654. }
  1655. }
  1656. .site-branding {
  1657. display: flex;
  1658. flex-wrap: wrap;
  1659. align-items: flex-start;
  1660. justify-content: space-between;
  1661. color: #cccccc;
  1662. position: relative;
  1663. }
  1664. .site-logo {
  1665. margin-left: 0.5rem;
  1666. }
  1667. .site-logo .custom-logo-link {
  1668. box-sizing: content-box;
  1669. display: block;
  1670. line-height: 0;
  1671. overflow: hidden;
  1672. }
  1673. .site-logo .custom-logo-link .custom-logo {
  1674. max-height: 60px;
  1675. width: auto;
  1676. }
  1677. .site-title,
  1678. .wp-block-a8c-site-title,
  1679. .wp-block-a8c-site-title:focus {
  1680. color: #fff;
  1681. font-size: 1.125em !important;
  1682. font-weight: 600;
  1683. flex: 1 1 auto;
  1684. margin: 0;
  1685. }
  1686. .site-title a,
  1687. .wp-block-a8c-site-title a,
  1688. .wp-block-a8c-site-title:focus a {
  1689. color: #fff;
  1690. }
  1691. .site-title a:link, .site-title a:visited,
  1692. .wp-block-a8c-site-title a:link,
  1693. .wp-block-a8c-site-title a:visited,
  1694. .wp-block-a8c-site-title:focus a:link,
  1695. .wp-block-a8c-site-title:focus a:visited {
  1696. color: #fff;
  1697. }
  1698. .site-title a:hover,
  1699. .wp-block-a8c-site-title a:hover,
  1700. .wp-block-a8c-site-title:focus a:hover {
  1701. color: #c6c6c6;
  1702. }
  1703. .featured-image .site-title, .featured-image
  1704. .wp-block-a8c-site-title, .featured-image
  1705. .wp-block-a8c-site-title:focus {
  1706. margin: 0;
  1707. }
  1708. .site-description,
  1709. .wp-block-a8c-site-description,
  1710. .wp-block-a8c-site-description:focus {
  1711. flex: initial;
  1712. color: #fff;
  1713. font-size: 0.71111em;
  1714. font-weight: normal;
  1715. margin: 0.27rem 0 0;
  1716. }
  1717. @media only screen and (min-width: 768px) {
  1718. .site-description,
  1719. .wp-block-a8c-site-description,
  1720. .wp-block-a8c-site-description:focus {
  1721. text-align: left;
  1722. }
  1723. }
  1724. .site-header.featured-image {
  1725. /* Hide overflow for overflowing featured image */
  1726. overflow: hidden;
  1727. /* Need relative positioning to properly align layers. */
  1728. position: relative;
  1729. /* Add text shadow to text, to increase readability. */
  1730. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  1731. /* add focus state to social media icons */
  1732. /* Entry header */
  1733. /* Make sure important elements are above pseudo elements used for effects. */
  1734. /* Set up image filter layer positioning */
  1735. /* Background & Effects */
  1736. /* Shared background settings between pseudo elements. */
  1737. background-position: center;
  1738. background-repeat: no-repeat;
  1739. background-size: cover;
  1740. /* The intensity of each blend mode is controlled via layer opacity. */
  1741. /* Second layer: screen. */
  1742. /* Third layer: multiply. */
  1743. /* When image filters are inactive, a black overlay is added. */
  1744. /* Fourth layer: overlay. */
  1745. /* Fifth layer: readability overlay */
  1746. }
  1747. .site-header.featured-image .main-navigation a,
  1748. .site-header.featured-image .main-navigation .main-menu > li,
  1749. .site-header.featured-image .main-navigation a + svg,
  1750. .site-header.featured-image .social-navigation a,
  1751. .site-header.featured-image .site-title a,
  1752. .site-header.featured-image .site-featured-image a {
  1753. color: #fff;
  1754. transition: opacity 110ms ease-in-out;
  1755. }
  1756. .site-header.featured-image .main-navigation a:hover, .site-header.featured-image .main-navigation a:active,
  1757. .site-header.featured-image .main-navigation a:hover + svg,
  1758. .site-header.featured-image .main-navigation a:active + svg,
  1759. .site-header.featured-image .main-navigation .main-menu > li:hover,
  1760. .site-header.featured-image .main-navigation .main-menu > li:active,
  1761. .site-header.featured-image .main-navigation .main-menu > li:hover + svg,
  1762. .site-header.featured-image .main-navigation .main-menu > li:active + svg,
  1763. .site-header.featured-image .main-navigation a + svg:hover,
  1764. .site-header.featured-image .main-navigation a + svg:active,
  1765. .site-header.featured-image .main-navigation a + svg:hover + svg,
  1766. .site-header.featured-image .main-navigation a + svg:active + svg,
  1767. .site-header.featured-image .social-navigation a:hover,
  1768. .site-header.featured-image .social-navigation a:active,
  1769. .site-header.featured-image .social-navigation a:hover + svg,
  1770. .site-header.featured-image .social-navigation a:active + svg,
  1771. .site-header.featured-image .site-title a:hover,
  1772. .site-header.featured-image .site-title a:active,
  1773. .site-header.featured-image .site-title a:hover + svg,
  1774. .site-header.featured-image .site-title a:active + svg,
  1775. .site-header.featured-image .site-featured-image a:hover,
  1776. .site-header.featured-image .site-featured-image a:active,
  1777. .site-header.featured-image .site-featured-image a:hover + svg,
  1778. .site-header.featured-image .site-featured-image a:active + svg {
  1779. color: #cccccc;
  1780. opacity: 0.6;
  1781. }
  1782. .site-header.featured-image .main-navigation a:focus,
  1783. .site-header.featured-image .main-navigation a:focus + svg,
  1784. .site-header.featured-image .main-navigation .main-menu > li:focus,
  1785. .site-header.featured-image .main-navigation .main-menu > li:focus + svg,
  1786. .site-header.featured-image .main-navigation a + svg:focus,
  1787. .site-header.featured-image .main-navigation a + svg:focus + svg,
  1788. .site-header.featured-image .social-navigation a:focus,
  1789. .site-header.featured-image .social-navigation a:focus + svg,
  1790. .site-header.featured-image .site-title a:focus,
  1791. .site-header.featured-image .site-title a:focus + svg,
  1792. .site-header.featured-image .site-featured-image a:focus,
  1793. .site-header.featured-image .site-featured-image a:focus + svg {
  1794. color: #080808;
  1795. }
  1796. .site-header.featured-image .main-navigation .sub-menu a {
  1797. opacity: inherit;
  1798. }
  1799. .site-header.featured-image .social-navigation a:focus {
  1800. color: #080808;
  1801. opacity: 1;
  1802. border-bottom: 1px solid #080808;
  1803. }
  1804. .site-header.featured-image .social-navigation svg,
  1805. .site-header.featured-image .site-featured-image svg {
  1806. /* Use -webkit- only if supporting: Chrome < 54, iOS < 9.3, Android < 4.4.4 */
  1807. filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
  1808. }
  1809. .site-header.featured-image .site-featured-image {
  1810. /* First layer: grayscale. */
  1811. }
  1812. .site-header.featured-image .site-featured-image .post-thumbnail img {
  1813. height: auto;
  1814. right: 50%;
  1815. max-width: 1000%;
  1816. min-height: 100%;
  1817. min-width: 100vw;
  1818. position: absolute;
  1819. top: 50%;
  1820. transform: translateX(50%) translateY(-50%);
  1821. width: auto;
  1822. z-index: 1;
  1823. /* When image filters are active, make it grayscale to colorize it blue. */
  1824. }
  1825. @supports ((-o-object-fit: cover) or (object-fit: cover)) {
  1826. .site-header.featured-image .site-featured-image .post-thumbnail img {
  1827. height: 100%;
  1828. right: 0;
  1829. -o-object-fit: cover;
  1830. object-fit: cover;
  1831. top: 0;
  1832. transform: none;
  1833. width: 100%;
  1834. }
  1835. }
  1836. .image-filters-enabled .site-header.featured-image .site-featured-image .post-thumbnail img {
  1837. filter: grayscale(100%);
  1838. }
  1839. .site-header.featured-image .site-featured-image .entry-header {
  1840. margin-top: calc( 4 * 1rem);
  1841. margin-bottom: 0;
  1842. margin-right: 0;
  1843. margin-left: 0;
  1844. text-align: center;
  1845. /* Entry meta */
  1846. }
  1847. @media only screen and (min-width: 768px) {
  1848. .site-header.featured-image .site-featured-image .entry-header {
  1849. margin-right: calc(10% + 60px);
  1850. margin-left: calc(10% + 60px);
  1851. }
  1852. }
  1853. .site-header.featured-image .site-featured-image .entry-header .entry-title:before {
  1854. background: #080808;
  1855. }
  1856. .site-header.featured-image .site-featured-image .entry-header .entry-meta {
  1857. font-weight: 500;
  1858. text-align: center;
  1859. }
  1860. .site-header.featured-image .site-featured-image .entry-header .entry-meta > span {
  1861. margin-left: 1rem;
  1862. display: inline-block;
  1863. }
  1864. .site-header.featured-image .site-featured-image .entry-header .entry-meta > span:last-child {
  1865. margin-left: 0;
  1866. }
  1867. .site-header.featured-image .site-featured-image .entry-header .entry-meta a {
  1868. transition: color 110ms ease-in-out;
  1869. color: currentColor;
  1870. }
  1871. .site-header.featured-image .site-featured-image .entry-header .entry-meta a:hover {
  1872. text-decoration: none;
  1873. }
  1874. .site-header.featured-image .site-featured-image .entry-header .entry-meta .svg-icon {
  1875. position: relative;
  1876. display: inline-block;
  1877. vertical-align: middle;
  1878. margin-left: 0.5em;
  1879. }
  1880. .site-header.featured-image .site-featured-image .entry-header .entry-meta .discussion-avatar-list {
  1881. display: none;
  1882. }
  1883. @media only screen and (min-width: 768px) {
  1884. .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta {
  1885. display: flex;
  1886. position: relative;
  1887. }
  1888. .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-title {
  1889. padding-left: calc(1 * (100vw / 12) + 1rem);
  1890. }
  1891. .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta .comment-count {
  1892. position: absolute;
  1893. left: 0;
  1894. }
  1895. .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta .discussion-avatar-list {
  1896. display: block;
  1897. position: absolute;
  1898. bottom: 100%;
  1899. }
  1900. }
  1901. .site-header.featured-image .site-branding {
  1902. position: relative;
  1903. z-index: 10;
  1904. }
  1905. .site-header.featured-image .site-featured-image .entry-header {
  1906. position: relative;
  1907. z-index: 9;
  1908. }
  1909. .site-header.featured-image .site-branding-container:after,
  1910. .site-header.featured-image .site-featured-image:before,
  1911. .site-header.featured-image .site-featured-image:after, .site-header.featured-image:after {
  1912. display: block;
  1913. position: absolute;
  1914. top: 0;
  1915. right: 0;
  1916. content: "\020";
  1917. width: 100%;
  1918. height: 100%;
  1919. }
  1920. .image-filters-enabled .site-header.featured-image .site-featured-image:before {
  1921. background: #caab57;
  1922. mix-blend-mode: screen;
  1923. opacity: 0.1;
  1924. }
  1925. .site-header.featured-image .site-featured-image:after {
  1926. background: #000;
  1927. mix-blend-mode: multiply;
  1928. opacity: .7;
  1929. /* When image filters are active, a blue overlay is added. */
  1930. }
  1931. .image-filters-enabled .site-header.featured-image .site-featured-image:after {
  1932. background: #caab57;
  1933. opacity: .8;
  1934. z-index: 3;
  1935. /* Browsers supporting mix-blend-mode don't need opacity < 1 */
  1936. }
  1937. @supports (mix-blend-mode: multiply) {
  1938. .image-filters-enabled .site-header.featured-image .site-featured-image:after {
  1939. opacity: 1;
  1940. }
  1941. }
  1942. .image-filters-enabled .site-header.featured-image .site-branding-container:after {
  1943. background: rgba(0, 0, 0, 0.35);
  1944. mix-blend-mode: overlay;
  1945. opacity: 0.5;
  1946. z-index: 4;
  1947. /* Browsers supporting mix-blend-mode can have a light overlay */
  1948. }
  1949. @supports (mix-blend-mode: overlay) {
  1950. .image-filters-enabled .site-header.featured-image .site-branding-container:after {
  1951. background: rgba(8, 8, 8, 0.35);
  1952. }
  1953. }
  1954. .site-header.featured-image:after {
  1955. background: #000;
  1956. /**
  1957. * Add a transition to the readability overlay, to add a subtle
  1958. * but smooth effect when resizing the screen.
  1959. */
  1960. transition: opacity 1200ms ease-in-out;
  1961. opacity: 0.7;
  1962. z-index: 5;
  1963. /* When image filters are active, a blue overlay is added. */
  1964. }
  1965. .image-filters-enabled .site-header.featured-image:after {
  1966. background: #18150a;
  1967. opacity: 0.38;
  1968. }
  1969. @media only screen and (min-width: 768px) {
  1970. .image-filters-enabled .site-header.featured-image:after {
  1971. opacity: 0.18;
  1972. }
  1973. }
  1974. .site-header.featured-image ::selection {
  1975. background: rgba(8, 8, 8, 0.17);
  1976. }
  1977. /*--------------------------------------------------------------
  1978. ## Posts and pages
  1979. --------------------------------------------------------------*/
  1980. .sticky {
  1981. display: block;
  1982. }
  1983. .sticky-post {
  1984. background: #caab57;
  1985. color: #080808;
  1986. display: inline-block;
  1987. font-weight: bold;
  1988. line-height: 1;
  1989. padding: .25rem;
  1990. text-transform: uppercase;
  1991. }
  1992. .updated:not(.published) {
  1993. display: none;
  1994. }
  1995. .page-links {
  1996. clear: both;
  1997. margin: 0 0 calc(1.5 * 1rem);
  1998. }
  1999. .entry {
  2000. margin-top: calc(6 * 1rem);
  2001. }
  2002. .entry:first-of-type {
  2003. margin-top: 0;
  2004. }
  2005. .entry .entry-header {
  2006. margin: calc(3 * 1rem) 1rem 32px;
  2007. position: relative;
  2008. text-align: center;
  2009. }
  2010. @media only screen and (min-width: 768px) {
  2011. .entry .entry-header {
  2012. margin: calc(3 * 1rem) calc(10% + 60px) 32px;
  2013. }
  2014. }
  2015. .entry .entry-title {
  2016. margin: 0;
  2017. margin-bottom: 32px;
  2018. }
  2019. .entry .entry-title a {
  2020. color: inherit;
  2021. }
  2022. .entry .entry-title a:hover {
  2023. color: #c6c6c6;
  2024. }
  2025. .entry .entry-meta,
  2026. .entry .entry-footer {
  2027. color: #cccccc;
  2028. font-weight: 500;
  2029. text-align: center;
  2030. }
  2031. .entry .entry-meta > span,
  2032. .entry .entry-footer > span {
  2033. margin-left: 1rem;
  2034. display: inline-block;
  2035. }
  2036. .entry .entry-meta > span:last-child,
  2037. .entry .entry-footer > span:last-child {
  2038. margin-left: 0;
  2039. }
  2040. .entry .entry-meta a,
  2041. .entry .entry-footer a {
  2042. transition: color 110ms ease-in-out;
  2043. color: currentColor;
  2044. }
  2045. .entry .entry-meta a:hover,
  2046. .entry .entry-footer a:hover {
  2047. text-decoration: none;
  2048. color: #caab57;
  2049. }
  2050. .entry .entry-meta .svg-icon,
  2051. .entry .entry-footer .svg-icon {
  2052. position: relative;
  2053. display: inline-block;
  2054. vertical-align: middle;
  2055. margin-left: 0.5em;
  2056. }
  2057. .entry .entry-meta {
  2058. margin: 1rem 0;
  2059. }
  2060. .entry .entry-footer {
  2061. margin: calc(2 * 1rem) 1rem 1rem;
  2062. }
  2063. @media only screen and (min-width: 768px) {
  2064. .entry .entry-footer {
  2065. margin: 1rem auto calc(3 * 1rem);
  2066. max-width: calc(8 * (100vw / 12) - 28px);
  2067. }
  2068. }
  2069. @media only screen and (min-width: 1168px) {
  2070. .entry .entry-footer {
  2071. max-width: calc(6 * (100vw / 12) - 28px);
  2072. }
  2073. }
  2074. .entry .post-thumbnail {
  2075. margin: 1rem;
  2076. }
  2077. @media only screen and (min-width: 768px) {
  2078. .entry .post-thumbnail {
  2079. margin: 1rem calc(10% + 60px);
  2080. }
  2081. }
  2082. .entry .post-thumbnail:focus {
  2083. outline: none;
  2084. }
  2085. .entry .post-thumbnail .post-thumbnail-inner {
  2086. display: block;
  2087. }
  2088. .entry .post-thumbnail .post-thumbnail-inner img {
  2089. position: relative;
  2090. display: block;
  2091. width: 100%;
  2092. }
  2093. .image-filters-enabled .entry .post-thumbnail {
  2094. position: relative;
  2095. display: block;
  2096. }
  2097. .image-filters-enabled .entry .post-thumbnail .post-thumbnail-inner {
  2098. filter: grayscale(100%);
  2099. }
  2100. .image-filters-enabled .entry .post-thumbnail .post-thumbnail-inner:after {
  2101. background: rgba(0, 0, 0, 0.35);
  2102. content: "";
  2103. display: block;
  2104. height: 100%;
  2105. opacity: .5;
  2106. pointer-events: none;
  2107. position: absolute;
  2108. top: 0;
  2109. width: 100%;
  2110. z-index: 4;
  2111. }
  2112. @supports (mix-blend-mode: multiply) {
  2113. .image-filters-enabled .entry .post-thumbnail .post-thumbnail-inner:after {
  2114. display: none;
  2115. }
  2116. }
  2117. .image-filters-enabled .entry .post-thumbnail:before, .image-filters-enabled .entry .post-thumbnail:after {
  2118. position: absolute;
  2119. display: block;
  2120. width: 100%;
  2121. height: 100%;
  2122. top: 0;
  2123. right: 0;
  2124. content: "\020";
  2125. pointer-events: none;
  2126. }
  2127. .image-filters-enabled .entry .post-thumbnail:before {
  2128. background: #caab57;
  2129. mix-blend-mode: screen;
  2130. opacity: 0.1;
  2131. z-index: 2;
  2132. }
  2133. .image-filters-enabled .entry .post-thumbnail:after {
  2134. background: #caab57;
  2135. mix-blend-mode: multiply;
  2136. opacity: .8;
  2137. z-index: 3;
  2138. /* Browsers supporting mix-blend-mode don't need opacity < 1 */
  2139. }
  2140. @supports (mix-blend-mode: multiply) {
  2141. .image-filters-enabled .entry .post-thumbnail:after {
  2142. opacity: 1;
  2143. }
  2144. }
  2145. .entry .entry-content,
  2146. .entry .entry-summary {
  2147. max-width: calc(100% - (2 * 1rem));
  2148. margin: 0 1rem;
  2149. }
  2150. @media only screen and (min-width: 768px) {
  2151. .entry .entry-content,
  2152. .entry .entry-summary {
  2153. max-width: 80%;
  2154. margin: 0 10%;
  2155. padding: 0 60px;
  2156. }
  2157. }
  2158. .entry .entry-content p {
  2159. word-wrap: break-word;
  2160. }
  2161. .entry .entry-content .more-link {
  2162. transition: color 110ms ease-in-out;
  2163. display: inline;
  2164. color: inherit;
  2165. }
  2166. .entry .entry-content .more-link:after {
  2167. content: "←";
  2168. display: inline-block;
  2169. margin-right: 0.5em;
  2170. }
  2171. .entry .entry-content .more-link:hover {
  2172. color: #caab57;
  2173. text-decoration: none;
  2174. }
  2175. .entry .entry-content a {
  2176. text-decoration: underline;
  2177. }
  2178. .entry .entry-content a.button, .entry .entry-content a:hover {
  2179. text-decoration: none;
  2180. }
  2181. .entry .entry-content a.button {
  2182. display: inline-block;
  2183. }
  2184. .entry .entry-content a.button:hover {
  2185. background: #b59439;
  2186. color: #080808;
  2187. cursor: pointer;
  2188. }
  2189. .entry .entry-content > iframe[style] {
  2190. margin: 32px 0 !important;
  2191. max-width: 100% !important;
  2192. }
  2193. @media only screen and (min-width: 768px) {
  2194. .entry .entry-content > iframe[style] {
  2195. max-width: calc(8 * (100vw / 12) - 28px) !important;
  2196. }
  2197. }
  2198. @media only screen and (min-width: 1168px) {
  2199. .entry .entry-content > iframe[style] {
  2200. max-width: calc(6 * (100vw / 12) - 28px) !important;
  2201. }
  2202. }
  2203. .entry .entry-content .page-links a {
  2204. margin: calc(0.5 * 1rem);
  2205. text-decoration: none;
  2206. }
  2207. .entry .entry-content .wp-audio-shortcode {
  2208. max-width: calc(100vw - (2 * 1rem));
  2209. }
  2210. @media only screen and (min-width: 768px) {
  2211. .entry .entry-content .wp-audio-shortcode {
  2212. max-width: calc(8 * (100vw / 12) - 28px);
  2213. }
  2214. }
  2215. @media only screen and (min-width: 1168px) {
  2216. .entry .entry-content .wp-audio-shortcode {
  2217. max-width: calc(6 * (100vw / 12) - 28px);
  2218. }
  2219. }
  2220. /* Author description */
  2221. .author-bio {
  2222. margin: calc(2 * 1rem) auto 1rem;
  2223. }
  2224. @media only screen and (min-width: 768px) {
  2225. .author-bio {
  2226. max-width: calc(8 * (100vw / 12) - 28px);
  2227. }
  2228. }
  2229. @media only screen and (min-width: 1168px) {
  2230. .author-bio {
  2231. max-width: calc(6 * (100vw / 12) - 28px);
  2232. }
  2233. }
  2234. @media only screen and (min-width: 768px) {
  2235. .author-bio {
  2236. margin: calc(3 * 1rem) auto;
  2237. }
  2238. }
  2239. .author-bio .author-title {
  2240. display: inline;
  2241. }
  2242. .author-bio .author-description {
  2243. display: inline;
  2244. color: #cccccc;
  2245. font-size: 1.125em;
  2246. line-height: 1.2;
  2247. }
  2248. .author-bio .author-description .author-link {
  2249. display: inline-block;
  2250. }
  2251. .author-bio .author-description .author-link:hover {
  2252. color: #b59439;
  2253. text-decoration: none;
  2254. }
  2255. /*--------------------------------------------------------------
  2256. ## Comments
  2257. --------------------------------------------------------------*/
  2258. .comment-content a {
  2259. word-wrap: break-word;
  2260. }
  2261. .bypostauthor {
  2262. display: block;
  2263. }
  2264. .comments-area {
  2265. margin: calc(2 * 1rem) 1rem;
  2266. /* Add extra margin when the comments section is located immediately after the
  2267. * post itself (this happens on pages).
  2268. */
  2269. }
  2270. @media only screen and (min-width: 768px) {
  2271. .comments-area {
  2272. max-width: calc(8 * (100vw / 12) - 28px);
  2273. }
  2274. }
  2275. @media only screen and (min-width: 1168px) {
  2276. .comments-area {
  2277. max-width: calc(6 * (100vw / 12) - 28px);
  2278. }
  2279. }
  2280. @media only screen and (min-width: 768px) {
  2281. .comments-area {
  2282. margin: calc(3 * 1rem) auto;
  2283. }
  2284. }
  2285. .comments-area > * {
  2286. margin-top: calc(2 * 1rem);
  2287. margin-bottom: calc(2 * 1rem);
  2288. }
  2289. @media only screen and (min-width: 768px) {
  2290. .comments-area > * {
  2291. margin-top: calc(3 * 1rem);
  2292. margin-bottom: calc(3 * 1rem);
  2293. }
  2294. }
  2295. .entry + .comments-area {
  2296. margin-top: calc(3 * 1rem);
  2297. }
  2298. @media only screen and (min-width: 768px) {
  2299. .comments-area .comments-title-wrap {
  2300. align-items: baseline;
  2301. display: flex;
  2302. justify-content: space-between;
  2303. }
  2304. }
  2305. .comments-area .comments-title-wrap .comments-title {
  2306. margin: 0;
  2307. }
  2308. @media only screen and (min-width: 768px) {
  2309. .comments-area .comments-title-wrap .comments-title {
  2310. flex: 1 0 calc(3 * (100vw / 12));
  2311. }
  2312. }
  2313. @media only screen and (min-width: 768px) {
  2314. .comments-area .comments-title-wrap .discussion-meta {
  2315. flex: 0 0 calc(2 * (100vw / 12));
  2316. margin-right: 1rem;
  2317. }
  2318. }
  2319. #comment {
  2320. max-width: 100%;
  2321. box-sizing: border-box;
  2322. }
  2323. #respond {
  2324. position: relative;
  2325. }
  2326. #respond .comment-user-avatar {
  2327. margin: 1rem 0 -1rem;
  2328. }
  2329. #respond .comment .comment-form {
  2330. padding-right: 0;
  2331. }
  2332. #respond > small {
  2333. display: block;
  2334. font-size: 22px;
  2335. position: absolute;
  2336. right: calc(1rem + 100%);
  2337. top: calc(-3.5 * 1rem);
  2338. width: calc(100vw / 12);
  2339. }
  2340. #comments > .comments-title:last-child {
  2341. display: none;
  2342. }
  2343. .comment-form-flex {
  2344. display: flex;
  2345. flex-direction: column;
  2346. }
  2347. .comment-form-flex .comments-title {
  2348. display: none;
  2349. margin: 0;
  2350. order: 1;
  2351. }
  2352. .comment-form-flex #respond {
  2353. order: 2;
  2354. }
  2355. .comment-form-flex #respond + .comments-title {
  2356. display: block;
  2357. }
  2358. .comment-list {
  2359. list-style: none;
  2360. padding: 0;
  2361. }
  2362. .comment-list .children {
  2363. margin: 0;
  2364. padding: 0 1rem 0 0;
  2365. }
  2366. .comment-list > .comment:first-child {
  2367. margin-top: 0;
  2368. }
  2369. .comment-list .pingback .comment-body,
  2370. .comment-list .trackback .comment-body {
  2371. color: #cccccc;
  2372. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2373. font-size: 0.71111em;
  2374. font-weight: 500;
  2375. margin-top: 1rem;
  2376. margin-bottom: 1rem;
  2377. }
  2378. .comment-list .pingback .comment-body a:not(.comment-edit-link),
  2379. .comment-list .trackback .comment-body a:not(.comment-edit-link) {
  2380. font-weight: bold;
  2381. font-size: 19.55556px;
  2382. line-height: 1.5;
  2383. padding-left: 0.5rem;
  2384. display: block;
  2385. }
  2386. .comment-list .pingback .comment-body .comment-edit-link,
  2387. .comment-list .trackback .comment-body .comment-edit-link {
  2388. color: #cccccc;
  2389. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2390. font-weight: 500;
  2391. }
  2392. #respond + .comment-reply {
  2393. display: none;
  2394. }
  2395. .comment-reply .comment-reply-link {
  2396. display: inline-block;
  2397. }
  2398. .comment {
  2399. list-style: none;
  2400. position: relative;
  2401. }
  2402. @media only screen and (min-width: 768px) {
  2403. .comment {
  2404. padding-right: calc(.5 * (1rem + calc(100vw / 12 )));
  2405. }
  2406. .comment.depth-1,
  2407. .comment .children {
  2408. padding-right: 0;
  2409. }
  2410. .comment.depth-1 {
  2411. margin-right: calc(3.25 * 1rem);
  2412. }
  2413. }
  2414. .comment .comment-body {
  2415. margin: calc(2 * 1rem) 0 0;
  2416. }
  2417. .comment .comment-meta {
  2418. position: relative;
  2419. }
  2420. .comment .comment-author .avatar {
  2421. float: right;
  2422. margin-left: 1rem;
  2423. position: relative;
  2424. }
  2425. @media only screen and (min-width: 768px) {
  2426. .comment .comment-author .avatar {
  2427. float: inherit;
  2428. margin-left: inherit;
  2429. position: absolute;
  2430. top: 0;
  2431. left: calc(100% + 1rem);
  2432. }
  2433. }
  2434. .comment .comment-author .fn {
  2435. position: relative;
  2436. display: block;
  2437. }
  2438. .comment .comment-author .fn a {
  2439. color: inherit;
  2440. }
  2441. .comment .comment-author .fn a:hover {
  2442. color: #b59439;
  2443. }
  2444. .comment .comment-author .post-author-badge {
  2445. border-radius: 100%;
  2446. display: block;
  2447. height: 18px;
  2448. position: absolute;
  2449. background: #d4bb76;
  2450. left: calc(100% - 2.5rem);
  2451. top: -3px;
  2452. width: 18px;
  2453. }
  2454. @media only screen and (min-width: 768px) {
  2455. .comment .comment-author .post-author-badge {
  2456. left: calc(100% + 0.75rem);
  2457. }
  2458. }
  2459. .comment .comment-author .post-author-badge svg {
  2460. width: inherit;
  2461. height: inherit;
  2462. display: block;
  2463. fill: white;
  2464. transform: scale(0.875);
  2465. }
  2466. .comment .comment-metadata > a,
  2467. .comment .comment-metadata .comment-edit-link {
  2468. display: inline;
  2469. font-weight: 500;
  2470. color: #cccccc;
  2471. vertical-align: baseline;
  2472. }
  2473. .comment .comment-metadata > a time,
  2474. .comment .comment-metadata .comment-edit-link time {
  2475. vertical-align: baseline;
  2476. }
  2477. .comment .comment-metadata > a:hover,
  2478. .comment .comment-metadata .comment-edit-link:hover {
  2479. color: #b59439;
  2480. text-decoration: none;
  2481. }
  2482. .comment .comment-metadata > * {
  2483. display: inline-block;
  2484. }
  2485. .comment .comment-metadata .edit-link-sep {
  2486. color: #cccccc;
  2487. margin: 0 0.2em;
  2488. vertical-align: baseline;
  2489. }
  2490. .comment .comment-metadata .edit-link {
  2491. color: #cccccc;
  2492. }
  2493. .comment .comment-metadata .edit-link svg {
  2494. transform: scale(0.8);
  2495. vertical-align: baseline;
  2496. margin-left: 0.1em;
  2497. }
  2498. .comment .comment-metadata .comment-edit-link {
  2499. position: relative;
  2500. padding-right: 1rem;
  2501. margin-right: -1rem;
  2502. z-index: 1;
  2503. }
  2504. .comment .comment-metadata .comment-edit-link:hover {
  2505. color: #caab57;
  2506. }
  2507. .comment .comment-content {
  2508. margin: 1rem 0;
  2509. }
  2510. @media only screen and (min-width: 1168px) {
  2511. .comment .comment-content {
  2512. padding-left: 1rem;
  2513. }
  2514. }
  2515. .comment .comment-content > *:first-child {
  2516. margin-top: 0;
  2517. }
  2518. .comment .comment-content > *:last-child {
  2519. margin-bottom: 0;
  2520. }
  2521. .comment .comment-content blockquote {
  2522. margin-right: 0;
  2523. }
  2524. .comment .comment-content a {
  2525. text-decoration: underline;
  2526. }
  2527. .comment .comment-content a:hover {
  2528. text-decoration: none;
  2529. }
  2530. .comment-reply-link,
  2531. #cancel-comment-reply-link {
  2532. font-weight: 500;
  2533. }
  2534. .comment-reply-link:hover,
  2535. #cancel-comment-reply-link:hover {
  2536. color: #b59439;
  2537. }
  2538. .discussion-avatar-list {
  2539. content: "";
  2540. display: table;
  2541. table-layout: fixed;
  2542. margin: 0;
  2543. padding: 0;
  2544. }
  2545. .discussion-avatar-list li {
  2546. position: relative;
  2547. list-style: none;
  2548. margin: 0 0 0 -8px;
  2549. padding: 0;
  2550. float: right;
  2551. }
  2552. .discussion-avatar-list .comment-user-avatar img {
  2553. height: calc(1.5 * 1rem);
  2554. width: calc(1.5 * 1rem);
  2555. }
  2556. .discussion-meta .discussion-meta-info {
  2557. margin: 0;
  2558. }
  2559. .discussion-meta .discussion-meta-info .svg-icon {
  2560. vertical-align: middle;
  2561. fill: currentColor;
  2562. transform: scale(0.6) scaleX(-1) translateY(-0.1em);
  2563. margin-right: -0.25rem;
  2564. }
  2565. .comment-form .comment-notes,
  2566. .comment-form label {
  2567. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2568. font-size: 0.71111em;
  2569. color: #cccccc;
  2570. }
  2571. @media only screen and (min-width: 768px) {
  2572. .comment-form .comment-form-author:not(.comment-form-field),
  2573. .comment-form .comment-form-email:not(.comment-form-field) {
  2574. width: calc(50% - 0.5rem);
  2575. float: right;
  2576. }
  2577. }
  2578. @media only screen and (min-width: 768px) {
  2579. .comment-form .comment-form-email:not(.comment-form-field) {
  2580. margin-right: 1rem;
  2581. }
  2582. }
  2583. .comment-form input[name="author"],
  2584. .comment-form input[name="email"],
  2585. .comment-form input[name="url"] {
  2586. display: block;
  2587. width: 100%;
  2588. }
  2589. /*--------------------------------------------------------------
  2590. ## Archives
  2591. --------------------------------------------------------------*/
  2592. .archive .page-header,
  2593. .search .page-header,
  2594. .error404 .page-header {
  2595. margin: 1rem 1rem calc(3 * 1rem);
  2596. }
  2597. @media only screen and (min-width: 768px) {
  2598. .archive .page-header,
  2599. .search .page-header,
  2600. .error404 .page-header {
  2601. margin: 0 calc(10% + 60px) calc(10% + 60px);
  2602. }
  2603. }
  2604. .archive .page-header .page-title,
  2605. .search .page-header .page-title,
  2606. .error404 .page-header .page-title {
  2607. color: #cccccc;
  2608. display: inline;
  2609. letter-spacing: normal;
  2610. }
  2611. .archive .page-header .page-title:before,
  2612. .search .page-header .page-title:before,
  2613. .error404 .page-header .page-title:before {
  2614. display: none;
  2615. }
  2616. .archive .page-header .search-term,
  2617. .archive .page-header .page-description,
  2618. .search .page-header .search-term,
  2619. .search .page-header .page-description,
  2620. .error404 .page-header .search-term,
  2621. .error404 .page-header .page-description {
  2622. display: inherit;
  2623. clear: both;
  2624. }
  2625. .archive .page-header .search-term:after,
  2626. .archive .page-header .page-description:after,
  2627. .search .page-header .search-term:after,
  2628. .search .page-header .page-description:after,
  2629. .error404 .page-header .search-term:after,
  2630. .error404 .page-header .page-description:after {
  2631. content: ".";
  2632. font-weight: bold;
  2633. color: #cccccc;
  2634. }
  2635. .archive .page-header .page-description {
  2636. display: block;
  2637. color: #fff;
  2638. font-size: 1em;
  2639. }
  2640. @media only screen and (min-width: 768px) {
  2641. .hfeed .entry .entry-header {
  2642. margin-bottom: calc(3 * 1rem);
  2643. }
  2644. }
  2645. /* 404 & Not found */
  2646. .error-404.not-found .page-title,
  2647. .error-404.not-found .page-content,
  2648. .no-results.not-found .page-title,
  2649. .no-results.not-found .page-content {
  2650. margin: calc(3 * 1rem) 1rem;
  2651. }
  2652. @media only screen and (min-width: 768px) {
  2653. .error-404.not-found .page-title,
  2654. .error-404.not-found .page-content,
  2655. .no-results.not-found .page-title,
  2656. .no-results.not-found .page-content {
  2657. margin: calc(3 * 1rem) calc(10% + 60px) calc(1rem / 2);
  2658. }
  2659. }
  2660. .error-404.not-found .search-submit,
  2661. .no-results.not-found .search-submit {
  2662. vertical-align: middle;
  2663. margin: 1rem 0;
  2664. }
  2665. .error-404.not-found .search-field,
  2666. .no-results.not-found .search-field {
  2667. width: 100%;
  2668. }
  2669. /*--------------------------------------------------------------
  2670. ## Footer
  2671. --------------------------------------------------------------*/
  2672. /* Site footer */
  2673. #colophon .widget-area,
  2674. #colophon .site-info {
  2675. margin: calc(2 * 1rem) 1rem;
  2676. }
  2677. @media only screen and (min-width: 768px) {
  2678. #colophon .widget-area,
  2679. #colophon .site-info {
  2680. max-width: calc(8 * (100vw / 12) - 28px);
  2681. }
  2682. }
  2683. @media only screen and (min-width: 1168px) {
  2684. #colophon .widget-area,
  2685. #colophon .site-info {
  2686. max-width: calc(6 * (100vw / 12) - 28px);
  2687. }
  2688. }
  2689. @media only screen and (min-width: 768px) {
  2690. #colophon .widget-area,
  2691. #colophon .site-info {
  2692. margin: calc(1.5 * 1rem) auto;
  2693. }
  2694. }
  2695. #colophon .widget-column {
  2696. display: flex;
  2697. flex-wrap: wrap;
  2698. }
  2699. #colophon .widget-column .widget {
  2700. width: 100%;
  2701. }
  2702. @media only screen and (min-width: 1168px) {
  2703. #colophon .widget-column .widget {
  2704. margin-left: calc(3 * 1rem);
  2705. width: calc(50% - (3 * 1rem));
  2706. }
  2707. }
  2708. #colophon .site-info {
  2709. color: #cccccc;
  2710. font-size: 0.71111em;
  2711. }
  2712. #colophon .site-info a {
  2713. color: inherit;
  2714. }
  2715. #colophon .site-info a:hover {
  2716. text-decoration: none;
  2717. color: #caab57;
  2718. }
  2719. #colophon .site-info .imprint,
  2720. #colophon .site-info .privacy-policy-link {
  2721. margin-left: 1rem;
  2722. }
  2723. /* Widgets */
  2724. .widget {
  2725. margin: 0 0 1rem;
  2726. /* Make sure select elements fit in widgets. */
  2727. }
  2728. .widget select {
  2729. max-width: 100%;
  2730. }
  2731. .widget a {
  2732. color: #caab57;
  2733. }
  2734. .widget a:hover {
  2735. color: #b59439;
  2736. }
  2737. .widget_archive ul,
  2738. .widget_categories ul,
  2739. .widget_meta ul,
  2740. .widget_nav_menu ul,
  2741. .widget_pages ul,
  2742. .widget_recent_comments ul,
  2743. .widget_recent_entries ul,
  2744. .widget_rss ul {
  2745. padding: 0;
  2746. list-style: none;
  2747. }
  2748. .widget_archive ul li,
  2749. .widget_categories ul li,
  2750. .widget_meta ul li,
  2751. .widget_nav_menu ul li,
  2752. .widget_pages ul li,
  2753. .widget_recent_comments ul li,
  2754. .widget_recent_entries ul li,
  2755. .widget_rss ul li {
  2756. color: #cccccc;
  2757. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2758. font-size: 0.88889em;
  2759. font-weight: 400;
  2760. line-height: 1.2;
  2761. margin-top: 0.5rem;
  2762. margin-bottom: 0.5rem;
  2763. }
  2764. .widget_archive ul ul,
  2765. .widget_categories ul ul,
  2766. .widget_meta ul ul,
  2767. .widget_nav_menu ul ul,
  2768. .widget_pages ul ul,
  2769. .widget_recent_comments ul ul,
  2770. .widget_recent_entries ul ul,
  2771. .widget_rss ul ul {
  2772. counter-reset: submenu;
  2773. }
  2774. .widget_archive ul ul > li > a::before,
  2775. .widget_categories ul ul > li > a::before,
  2776. .widget_meta ul ul > li > a::before,
  2777. .widget_nav_menu ul ul > li > a::before,
  2778. .widget_pages ul ul > li > a::before,
  2779. .widget_recent_comments ul ul > li > a::before,
  2780. .widget_recent_entries ul ul > li > a::before,
  2781. .widget_rss ul ul > li > a::before {
  2782. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2783. font-weight: normal;
  2784. content: "– " counters(submenu, "– ", none);
  2785. counter-increment: submenu;
  2786. }
  2787. .widget_rss .rssSummary {
  2788. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2789. font-size: 0.88889em;
  2790. }
  2791. .widget_tag_cloud .tagcloud {
  2792. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  2793. font-weight: 700;
  2794. }
  2795. .widget_search .search-field {
  2796. width: 100%;
  2797. }
  2798. @media only screen and (min-width: 600px) {
  2799. .widget_search .search-field {
  2800. width: auto;
  2801. }
  2802. }
  2803. .widget_search .search-submit {
  2804. display: block;
  2805. margin-top: 1rem;
  2806. }
  2807. .widget_calendar .calendar_wrap {
  2808. text-align: center;
  2809. }
  2810. .widget_calendar .calendar_wrap table td,
  2811. .widget_calendar .calendar_wrap table th {
  2812. border: none;
  2813. }
  2814. .widget_calendar .calendar_wrap a {
  2815. text-decoration: underline;
  2816. }
  2817. /* Blocks */
  2818. /* !Block styles */
  2819. .entry .entry-content > *,
  2820. .entry .entry-summary > * {
  2821. margin: 32px 0;
  2822. max-width: 100%;
  2823. }
  2824. @media only screen and (min-width: 768px) {
  2825. .entry .entry-content > *,
  2826. .entry .entry-summary > * {
  2827. max-width: calc(8 * (100vw / 12) - 28px);
  2828. }
  2829. }
  2830. @media only screen and (min-width: 1168px) {
  2831. .entry .entry-content > *,
  2832. .entry .entry-summary > * {
  2833. max-width: calc(6 * (100vw / 12) - 28px);
  2834. }
  2835. }
  2836. @media only screen and (min-width: 768px) {
  2837. .entry .entry-content > *,
  2838. .entry .entry-summary > * {
  2839. margin: 32px auto;
  2840. }
  2841. }
  2842. .entry .entry-content > * > *:first-child,
  2843. .entry .entry-summary > * > *:first-child {
  2844. margin-top: 0;
  2845. }
  2846. .entry .entry-content > * > *:last-child,
  2847. .entry .entry-summary > * > *:last-child {
  2848. margin-bottom: 0;
  2849. }
  2850. .entry .entry-content > *.alignwide,
  2851. .entry .entry-summary > *.alignwide {
  2852. margin-right: auto;
  2853. margin-left: auto;
  2854. clear: both;
  2855. }
  2856. @media only screen and (min-width: 768px) {
  2857. .entry .entry-content > *.alignwide,
  2858. .entry .entry-summary > *.alignwide {
  2859. width: 100%;
  2860. max-width: 100%;
  2861. }
  2862. }
  2863. .entry .entry-content > *.alignfull,
  2864. .entry .entry-summary > *.alignfull {
  2865. position: relative;
  2866. right: -1rem;
  2867. width: calc( 100% + (2 * 1rem));
  2868. max-width: calc( 100% + (2 * 1rem));
  2869. clear: both;
  2870. }
  2871. @media only screen and (min-width: 768px) {
  2872. .entry .entry-content > *.alignfull,
  2873. .entry .entry-summary > *.alignfull {
  2874. margin-top: 32px;
  2875. margin-bottom: 32px;
  2876. right: calc( -12.5% - 75px);
  2877. width: calc( 125% + 150px);
  2878. max-width: calc( 125% + 150px);
  2879. }
  2880. }
  2881. .entry .entry-content > *.alignleft,
  2882. .entry .entry-summary > *.alignleft {
  2883. float: left;
  2884. max-width: calc(5 * (100vw / 12));
  2885. margin-top: 0;
  2886. margin-right: 0;
  2887. margin-right: 1rem;
  2888. }
  2889. @media only screen and (min-width: 768px) {
  2890. .entry .entry-content > *.alignleft,
  2891. .entry .entry-summary > *.alignleft {
  2892. max-width: calc(4 * (100vw / 12));
  2893. margin-right: calc(2 * 1rem);
  2894. }
  2895. }
  2896. .entry .entry-content > *.alignright,
  2897. .entry .entry-summary > *.alignright {
  2898. float: right;
  2899. max-width: calc(5 * (100vw / 12));
  2900. margin-top: 0;
  2901. margin-left: 0;
  2902. margin-left: 1rem;
  2903. }
  2904. @media only screen and (min-width: 768px) {
  2905. .entry .entry-content > *.alignright,
  2906. .entry .entry-summary > *.alignright {
  2907. max-width: calc(4 * (100vw / 12));
  2908. margin-left: 0;
  2909. margin-left: calc(2 * 1rem);
  2910. }
  2911. }
  2912. .entry .entry-content > *.aligncenter,
  2913. .entry .entry-summary > *.aligncenter {
  2914. margin-right: auto;
  2915. margin-left: auto;
  2916. }
  2917. @media only screen and (min-width: 768px) {
  2918. .entry .entry-content > *.aligncenter,
  2919. .entry .entry-summary > *.aligncenter {
  2920. max-width: calc(8 * (100vw / 12) - 28px);
  2921. }
  2922. }
  2923. @media only screen and (min-width: 1168px) {
  2924. .entry .entry-content > *.aligncenter,
  2925. .entry .entry-summary > *.aligncenter {
  2926. max-width: calc(6 * (100vw / 12) - 28px);
  2927. }
  2928. }
  2929. /*
  2930. * Make sure the first block has margin-top: 0
  2931. */
  2932. .entry:not(.has-post-thumbnail) .entry-content > :first-child {
  2933. margin-top: 0;
  2934. }
  2935. /*
  2936. * Unset nested content selector styles
  2937. * - Prevents layout styles from cascading too deeply
  2938. * - helps with plugin compatibility
  2939. */
  2940. .entry .entry-content .entry-content,
  2941. .entry .entry-content .entry-summary,
  2942. .entry .entry-content .entry,
  2943. .entry .entry-summary .entry-content,
  2944. .entry .entry-summary .entry-summary,
  2945. .entry .entry-summary .entry {
  2946. margin: inherit;
  2947. max-width: inherit;
  2948. padding: inherit;
  2949. }
  2950. @media only screen and (min-width: 768px) {
  2951. .entry .entry-content .entry-content,
  2952. .entry .entry-content .entry-summary,
  2953. .entry .entry-content .entry,
  2954. .entry .entry-summary .entry-content,
  2955. .entry .entry-summary .entry-summary,
  2956. .entry .entry-summary .entry {
  2957. margin: inherit;
  2958. max-width: inherit;
  2959. padding: inherit;
  2960. }
  2961. }
  2962. .entry .entry-content > h1,
  2963. .entry .entry-content > h2,
  2964. .entry .entry-content > h3,
  2965. .entry .entry-content > h4,
  2966. .entry .entry-content > h5,
  2967. .entry .entry-content > h6 {
  2968. margin-top: 32px;
  2969. margin-bottom: 32px;
  2970. text-align: center;
  2971. }
  2972. .entry .entry-content p.has-background {
  2973. padding: 20px 30px;
  2974. }
  2975. .entry .entry-content .wp-block-audio {
  2976. width: 100%;
  2977. }
  2978. .entry .entry-content .wp-block-audio audio {
  2979. width: 100%;
  2980. }
  2981. .entry .entry-content .wp-block-audio.alignleft audio,
  2982. .entry .entry-content .wp-block-audio.alignright audio {
  2983. max-width: 198px;
  2984. }
  2985. @media only screen and (min-width: 768px) {
  2986. .entry .entry-content .wp-block-audio.alignleft audio,
  2987. .entry .entry-content .wp-block-audio.alignright audio {
  2988. max-width: 384px;
  2989. }
  2990. }
  2991. @media only screen and (min-width: 1379px) {
  2992. .entry .entry-content .wp-block-audio.alignleft audio,
  2993. .entry .entry-content .wp-block-audio.alignright audio {
  2994. max-width: 385.44px;
  2995. }
  2996. }
  2997. .entry .entry-content .wp-block-video video {
  2998. width: 100%;
  2999. }
  3000. .entry .entry-content .wp-block-button .wp-block-button__link {
  3001. transition: background 150ms ease-in-out;
  3002. border: none;
  3003. font-size: 0.88889em;
  3004. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3005. font-weight: 600;
  3006. line-height: 1.2;
  3007. box-sizing: border-box;
  3008. font-size: 0.88889em;
  3009. text-decoration: none;
  3010. padding: 0.76rem 1rem;
  3011. outline: none;
  3012. outline: none;
  3013. }
  3014. .entry .entry-content .wp-block-button .wp-block-button__link:not(.has-background) {
  3015. background-color: #caab57;
  3016. }
  3017. .entry .entry-content .wp-block-button .wp-block-button__link:not(.has-text-color) {
  3018. color: #080808;
  3019. }
  3020. .entry .entry-content .wp-block-button .wp-block-button__link:hover {
  3021. color: #080808;
  3022. background: #b59439;
  3023. cursor: pointer;
  3024. }
  3025. .entry .entry-content .wp-block-button .wp-block-button__link:focus {
  3026. color: #080808;
  3027. background: #b59439;
  3028. outline: thin dotted;
  3029. outline-offset: -4px;
  3030. }
  3031. .entry .entry-content .wp-block-button:not(.is-style-squared) .wp-block-button__link {
  3032. border-radius: 5px;
  3033. }
  3034. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link,
  3035. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus,
  3036. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:active {
  3037. transition: all 150ms ease-in-out;
  3038. border-width: 2px;
  3039. border-style: solid;
  3040. }
  3041. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background),
  3042. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-background),
  3043. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-background) {
  3044. background: transparent;
  3045. }
  3046. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color),
  3047. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-text-color),
  3048. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-text-color) {
  3049. color: #caab57;
  3050. border-color: currentColor;
  3051. }
  3052. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  3053. color: #fff;
  3054. border-color: #b59439;
  3055. }
  3056. .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover:not(.has-background) {
  3057. color: #b59439;
  3058. }
  3059. .entry .entry-content .wp-block-archives,
  3060. .entry .entry-content .wp-block-categories,
  3061. .entry .entry-content .wp-block-latest-posts {
  3062. padding: 0;
  3063. list-style: none;
  3064. }
  3065. .entry .entry-content .wp-block-archives li,
  3066. .entry .entry-content .wp-block-categories li,
  3067. .entry .entry-content .wp-block-latest-posts li {
  3068. color: #cccccc;
  3069. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3070. font-size: calc(22px * 1.125);
  3071. line-height: 1.2;
  3072. padding-bottom: 0.75rem;
  3073. }
  3074. .entry .entry-content .wp-block-archives li.menu-item-has-children, .entry .entry-content .wp-block-archives li:last-child,
  3075. .entry .entry-content .wp-block-categories li.menu-item-has-children,
  3076. .entry .entry-content .wp-block-categories li:last-child,
  3077. .entry .entry-content .wp-block-latest-posts li.menu-item-has-children,
  3078. .entry .entry-content .wp-block-latest-posts li:last-child {
  3079. padding-bottom: 0;
  3080. }
  3081. .entry .entry-content .wp-block-archives li a,
  3082. .entry .entry-content .wp-block-categories li a,
  3083. .entry .entry-content .wp-block-latest-posts li a {
  3084. text-decoration: none;
  3085. }
  3086. .entry .entry-content .wp-block-archives.aligncenter,
  3087. .entry .entry-content .wp-block-categories.aligncenter {
  3088. text-align: center;
  3089. }
  3090. .entry .entry-content .wp-block-categories ul {
  3091. padding-top: 0.75rem;
  3092. }
  3093. .entry .entry-content .wp-block-categories li ul {
  3094. list-style: none;
  3095. padding-right: 0;
  3096. }
  3097. .entry .entry-content .wp-block-categories ul {
  3098. counter-reset: submenu;
  3099. }
  3100. .entry .entry-content .wp-block-categories ul > li > a::before {
  3101. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3102. font-weight: normal;
  3103. content: "– " counters(submenu, "– ", none);
  3104. counter-increment: submenu;
  3105. }
  3106. .entry .entry-content .wp-block-latest-posts.is-grid li {
  3107. border-top: 2px solid #333333;
  3108. padding-top: 1rem;
  3109. margin-bottom: 32px;
  3110. }
  3111. .entry .entry-content .wp-block-latest-posts.is-grid li a:after {
  3112. content: '';
  3113. }
  3114. .entry .entry-content .wp-block-latest-posts.is-grid li:last-child {
  3115. margin-bottom: auto;
  3116. }
  3117. .entry .entry-content .wp-block-latest-posts.is-grid li:last-child a:after {
  3118. content: '';
  3119. }
  3120. .entry .entry-content .wp-block-preformatted {
  3121. font-size: 0.71111em;
  3122. line-height: 1.8;
  3123. padding: 1rem;
  3124. }
  3125. .entry .entry-content .wp-block-verse {
  3126. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3127. font-size: 22px;
  3128. line-height: 1.8;
  3129. }
  3130. .entry .entry-content .has-drop-cap:not(:focus):first-letter {
  3131. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3132. font-size: 3.375em;
  3133. line-height: 1;
  3134. font-weight: bold;
  3135. margin: 0 0 0 0.25em;
  3136. }
  3137. .entry .entry-content .wp-block-pullquote {
  3138. border-color: transparent;
  3139. border-width: 2px;
  3140. padding: 1rem;
  3141. }
  3142. .entry .entry-content .wp-block-pullquote blockquote {
  3143. color: #fff;
  3144. border: none;
  3145. margin-top: calc(3 * 32px);
  3146. margin-bottom: calc(3.33 * 32px);
  3147. margin-left: 0;
  3148. padding-right: 0;
  3149. }
  3150. .entry .entry-content .wp-block-pullquote p {
  3151. font-size: 1.6875em;
  3152. font-style: italic;
  3153. line-height: 1.3;
  3154. margin-bottom: 0.5em;
  3155. margin-top: 0.5em;
  3156. }
  3157. .entry .entry-content .wp-block-pullquote p em {
  3158. font-style: normal;
  3159. }
  3160. @media only screen and (min-width: 768px) {
  3161. .entry .entry-content .wp-block-pullquote p {
  3162. font-size: 2.25em;
  3163. }
  3164. }
  3165. .entry .entry-content .wp-block-pullquote cite {
  3166. display: inline-block;
  3167. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3168. line-height: 1.6;
  3169. text-transform: none;
  3170. color: #cccccc;
  3171. /*
  3172. * This requires a rem-based font size calculation instead of our normal em-based one,
  3173. * because the cite tag sometimes gets wrapped in a p tag. This is equivalent to $font-size_xs.
  3174. */
  3175. font-size: calc(1rem / (1.25 * 1.125));
  3176. }
  3177. .entry .entry-content .wp-block-pullquote.alignleft, .entry .entry-content .wp-block-pullquote.alignright {
  3178. width: 100%;
  3179. padding: 0;
  3180. }
  3181. .entry .entry-content .wp-block-pullquote.alignleft blockquote, .entry .entry-content .wp-block-pullquote.alignright blockquote {
  3182. margin: 32px 0;
  3183. padding: 0;
  3184. text-align: right;
  3185. max-width: 100%;
  3186. }
  3187. .entry .entry-content .wp-block-pullquote.alignleft blockquote p:first-child, .entry .entry-content .wp-block-pullquote.alignright blockquote p:first-child {
  3188. margin-top: 0;
  3189. }
  3190. .entry .entry-content .wp-block-pullquote.is-style-solid-color {
  3191. background-color: #caab57;
  3192. padding-right: 0;
  3193. padding-left: 0;
  3194. }
  3195. @media only screen and (min-width: 768px) {
  3196. .entry .entry-content .wp-block-pullquote.is-style-solid-color {
  3197. padding-right: 10%;
  3198. padding-left: 10%;
  3199. }
  3200. }
  3201. .entry .entry-content .wp-block-pullquote.is-style-solid-color p {
  3202. font-size: 1.6875em;
  3203. line-height: 1.3;
  3204. margin-bottom: 0.5em;
  3205. margin-top: 0.5em;
  3206. }
  3207. @media only screen and (min-width: 768px) {
  3208. .entry .entry-content .wp-block-pullquote.is-style-solid-color p {
  3209. font-size: 2.25em;
  3210. }
  3211. }
  3212. .entry .entry-content .wp-block-pullquote.is-style-solid-color a {
  3213. color: #080808;
  3214. }
  3215. .entry .entry-content .wp-block-pullquote.is-style-solid-color cite {
  3216. color: inherit;
  3217. }
  3218. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
  3219. max-width: 100%;
  3220. color: #080808;
  3221. padding-right: 0;
  3222. margin-right: 1rem;
  3223. margin-left: 1rem;
  3224. }
  3225. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-text-color p,
  3226. .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 {
  3227. color: inherit;
  3228. }
  3229. @media only screen and (min-width: 768px) {
  3230. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
  3231. margin-right: 0;
  3232. margin-left: 0;
  3233. }
  3234. }
  3235. @media only screen and (min-width: 768px) {
  3236. .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignright, .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignleft {
  3237. padding: 1rem calc(2 * 1rem);
  3238. }
  3239. }
  3240. @media only screen and (min-width: 768px) {
  3241. .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignfull {
  3242. padding-right: calc(10% + 58px + (2 * 1rem));
  3243. padding-left: calc(10% + 58px + (2 * 1rem));
  3244. }
  3245. }
  3246. .entry .entry-content .wp-block-quote:not(.is-large), .entry .entry-content .wp-block-quote:not(.is-style-large) {
  3247. border-color: #caab57;
  3248. border-width: 2px;
  3249. padding-top: 0;
  3250. padding-bottom: 0;
  3251. }
  3252. .entry .entry-content .wp-block-quote p {
  3253. font-size: 1em;
  3254. font-style: normal;
  3255. line-height: 1.8;
  3256. }
  3257. .entry .entry-content .wp-block-quote cite {
  3258. color: #cccccc;
  3259. /*
  3260. * This requires a rem-based font size calculation instead of our normal em-based one,
  3261. * because the cite tag sometimes gets wrapped in a p tag. This is equivalent to $font-size_xs.
  3262. */
  3263. font-size: calc(1rem / (1.25 * 1.125));
  3264. }
  3265. .entry .entry-content .wp-block-quote.is-large, .entry .entry-content .wp-block-quote.is-style-large {
  3266. margin: 32px auto;
  3267. padding: 0;
  3268. border-right: none;
  3269. }
  3270. .entry .entry-content .wp-block-quote.is-large p, .entry .entry-content .wp-block-quote.is-style-large p {
  3271. font-size: 1.6875em;
  3272. line-height: 1.4;
  3273. font-style: italic;
  3274. }
  3275. .entry .entry-content .wp-block-quote.is-large cite,
  3276. .entry .entry-content .wp-block-quote.is-large footer, .entry .entry-content .wp-block-quote.is-style-large cite,
  3277. .entry .entry-content .wp-block-quote.is-style-large footer {
  3278. /*
  3279. * This requires a rem-based font size calculation instead of our normal em-based one,
  3280. * because the cite tag sometimes gets wrapped in a p tag. This is equivalent to $font-size_xs.
  3281. */
  3282. font-size: calc(1rem / (1.25 * 1.125));
  3283. }
  3284. @media only screen and (min-width: 768px) {
  3285. .entry .entry-content .wp-block-quote.is-large, .entry .entry-content .wp-block-quote.is-style-large {
  3286. margin: 32px auto;
  3287. padding: 1rem 0;
  3288. }
  3289. .entry .entry-content .wp-block-quote.is-large p, .entry .entry-content .wp-block-quote.is-style-large p {
  3290. font-size: 1.6875em;
  3291. }
  3292. }
  3293. .entry .entry-content .wp-block-image {
  3294. max-width: 100%;
  3295. }
  3296. .entry .entry-content .wp-block-image img {
  3297. display: block;
  3298. }
  3299. .entry .entry-content .wp-block-image.alignfull img {
  3300. width: 100vw;
  3301. max-width: calc( 100% + (2 * 1rem));
  3302. }
  3303. @media only screen and (min-width: 768px) {
  3304. .entry .entry-content .wp-block-image.alignfull img {
  3305. max-width: calc( 125% + 150px);
  3306. margin-right: auto;
  3307. margin-left: auto;
  3308. }
  3309. }
  3310. .entry .entry-content .wp-block-cover-image,
  3311. .entry .entry-content .wp-block-cover {
  3312. position: relative;
  3313. min-height: 430px;
  3314. padding: 1rem;
  3315. }
  3316. @media only screen and (min-width: 768px) {
  3317. .entry .entry-content .wp-block-cover-image,
  3318. .entry .entry-content .wp-block-cover {
  3319. padding: 1rem 10%;
  3320. min-height: 60vh;
  3321. }
  3322. }
  3323. .entry .entry-content .wp-block-cover-image .wp-block-cover__inner-container,
  3324. .entry .entry-content .wp-block-cover .wp-block-cover__inner-container {
  3325. padding: 0;
  3326. color: #fff;
  3327. width: 100%;
  3328. }
  3329. .entry .entry-content .wp-block-cover-image .wp-block-cover__inner-container a,
  3330. .entry .entry-content .wp-block-cover .wp-block-cover__inner-container a {
  3331. color: inherit;
  3332. }
  3333. @media only screen and (min-width: 768px) {
  3334. .entry .entry-content .wp-block-cover-image .wp-block-cover__inner-container,
  3335. .entry .entry-content .wp-block-cover .wp-block-cover__inner-container {
  3336. max-width: 100%;
  3337. margin-right: auto;
  3338. margin-left: auto;
  3339. }
  3340. }
  3341. .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,
  3342. .entry .entry-content .wp-block-cover h1,
  3343. .entry .entry-content .wp-block-cover h2,
  3344. .entry .entry-content .wp-block-cover h3,
  3345. .entry .entry-content .wp-block-cover h4,
  3346. .entry .entry-content .wp-block-cover h5,
  3347. .entry .entry-content .wp-block-cover h6 {
  3348. font-weight: 700;
  3349. }
  3350. .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,
  3351. .entry .entry-content .wp-block-cover h1.has-text-align-left,
  3352. .entry .entry-content .wp-block-cover h2.has-text-align-left,
  3353. .entry .entry-content .wp-block-cover h3.has-text-align-left,
  3354. .entry .entry-content .wp-block-cover h4.has-text-align-left,
  3355. .entry .entry-content .wp-block-cover h5.has-text-align-left,
  3356. .entry .entry-content .wp-block-cover h6.has-text-align-left {
  3357. text-align: right;
  3358. }
  3359. .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,
  3360. .entry .entry-content .wp-block-cover h1.has-text-align-center,
  3361. .entry .entry-content .wp-block-cover h2.has-text-align-center,
  3362. .entry .entry-content .wp-block-cover h3.has-text-align-center,
  3363. .entry .entry-content .wp-block-cover h4.has-text-align-center,
  3364. .entry .entry-content .wp-block-cover h5.has-text-align-center,
  3365. .entry .entry-content .wp-block-cover h6.has-text-align-center {
  3366. text-align: center;
  3367. }
  3368. .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,
  3369. .entry .entry-content .wp-block-cover h1.has-text-align-right,
  3370. .entry .entry-content .wp-block-cover h2.has-text-align-right,
  3371. .entry .entry-content .wp-block-cover h3.has-text-align-right,
  3372. .entry .entry-content .wp-block-cover h4.has-text-align-right,
  3373. .entry .entry-content .wp-block-cover h5.has-text-align-right,
  3374. .entry .entry-content .wp-block-cover h6.has-text-align-right {
  3375. text-align: left;
  3376. }
  3377. .entry .entry-content .wp-block-cover-image h1,
  3378. .entry .entry-content .wp-block-cover h1 {
  3379. font-size: 2.25em;
  3380. }
  3381. .entry .entry-content .wp-block-cover-image .wp-block-cover-image-text,
  3382. .entry .entry-content .wp-block-cover-image .wp-block-cover-text,
  3383. .entry .entry-content .wp-block-cover-image h2,
  3384. .entry .entry-content .wp-block-cover .wp-block-cover-image-text,
  3385. .entry .entry-content .wp-block-cover .wp-block-cover-text,
  3386. .entry .entry-content .wp-block-cover h2 {
  3387. font-size: 1.6875em;
  3388. font-weight: 700;
  3389. margin: 1rem 0;
  3390. max-width: inherit;
  3391. padding: 0;
  3392. text-align: inherit;
  3393. }
  3394. .entry .entry-content .wp-block-cover-image h3,
  3395. .entry .entry-content .wp-block-cover h3 {
  3396. font-size: 1.125em;
  3397. }
  3398. .entry .entry-content .wp-block-cover-image h4,
  3399. .entry .entry-content .wp-block-cover h4 {
  3400. font-size: 22px;
  3401. }
  3402. .entry .entry-content .wp-block-cover-image h5,
  3403. .entry .entry-content .wp-block-cover h5 {
  3404. font-size: 0.88889em;
  3405. }
  3406. .entry .entry-content .wp-block-cover-image h6,
  3407. .entry .entry-content .wp-block-cover h6 {
  3408. font-size: 0.71111em;
  3409. }
  3410. @media only screen and (min-width: 768px) {
  3411. .entry .entry-content .wp-block-cover-image h1,
  3412. .entry .entry-content .wp-block-cover h1 {
  3413. font-size: 2.8125em;
  3414. }
  3415. .entry .entry-content .wp-block-cover-image .wp-block-cover-image-text,
  3416. .entry .entry-content .wp-block-cover-image .wp-block-cover-text,
  3417. .entry .entry-content .wp-block-cover-image h2,
  3418. .entry .entry-content .wp-block-cover .wp-block-cover-image-text,
  3419. .entry .entry-content .wp-block-cover .wp-block-cover-text,
  3420. .entry .entry-content .wp-block-cover h2 {
  3421. font-size: 2.25em;
  3422. }
  3423. .entry .entry-content .wp-block-cover-image h3,
  3424. .entry .entry-content .wp-block-cover h3 {
  3425. font-size: 1.6875em;
  3426. }
  3427. .entry .entry-content .wp-block-cover-image h4,
  3428. .entry .entry-content .wp-block-cover h4 {
  3429. font-size: 1.125em;
  3430. }
  3431. .entry .entry-content .wp-block-cover-image h5,
  3432. .entry .entry-content .wp-block-cover h5 {
  3433. font-size: 22px;
  3434. }
  3435. .entry .entry-content .wp-block-cover-image h6,
  3436. .entry .entry-content .wp-block-cover h6 {
  3437. font-size: 0.88889em;
  3438. }
  3439. }
  3440. .entry .entry-content .wp-block-cover-image.alignleft, .entry .entry-content .wp-block-cover-image.alignright,
  3441. .entry .entry-content .wp-block-cover.alignleft,
  3442. .entry .entry-content .wp-block-cover.alignright {
  3443. width: 100%;
  3444. }
  3445. @media only screen and (min-width: 768px) {
  3446. .entry .entry-content .wp-block-cover-image.alignleft, .entry .entry-content .wp-block-cover-image.alignright,
  3447. .entry .entry-content .wp-block-cover.alignleft,
  3448. .entry .entry-content .wp-block-cover.alignright {
  3449. padding: 1rem calc(2 * 1rem);
  3450. }
  3451. }
  3452. @media only screen and (min-width: 768px) {
  3453. .entry .entry-content .wp-block-cover-image.alignwide .wp-block-cover__inner-container,
  3454. .entry .entry-content .wp-block-cover.alignwide .wp-block-cover__inner-container {
  3455. max-width: calc(8 * (100vw / 12) - 28px);
  3456. }
  3457. }
  3458. @media only screen and (min-width: 1168px) {
  3459. .entry .entry-content .wp-block-cover-image.alignwide .wp-block-cover__inner-container,
  3460. .entry .entry-content .wp-block-cover.alignwide .wp-block-cover__inner-container {
  3461. max-width: calc(6 * (100vw / 12) - 28px);
  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. padding: 0;
  3468. }
  3469. }
  3470. @media only screen and (min-width: 768px) {
  3471. .entry .entry-content .wp-block-cover-image.alignfull,
  3472. .entry .entry-content .wp-block-cover.alignfull {
  3473. padding-right: calc(10% + 58px + (2 * 1rem));
  3474. padding-left: calc(10% + 58px + (2 * 1rem));
  3475. }
  3476. .entry .entry-content .wp-block-cover-image.alignfull .wp-block-cover__inner-container,
  3477. .entry .entry-content .wp-block-cover.alignfull .wp-block-cover__inner-container {
  3478. padding: 0;
  3479. }
  3480. .entry .entry-content .wp-block-cover-image.alignfull .wp-block-cover-image-text,
  3481. .entry .entry-content .wp-block-cover-image.alignfull .wp-block-cover-text,
  3482. .entry .entry-content .wp-block-cover-image.alignfull h1,
  3483. .entry .entry-content .wp-block-cover.alignfull .wp-block-cover-image-text,
  3484. .entry .entry-content .wp-block-cover.alignfull .wp-block-cover-text,
  3485. .entry .entry-content .wp-block-cover.alignfull h1 {
  3486. font-size: 4.5em;
  3487. }
  3488. .entry .entry-content .wp-block-cover-image.alignfull h2,
  3489. .entry .entry-content .wp-block-cover.alignfull h2 {
  3490. font-size: 3.375em;
  3491. }
  3492. }
  3493. .entry .entry-content .wp-block-gallery {
  3494. list-style-type: none;
  3495. padding-right: 0;
  3496. }
  3497. .entry .entry-content .wp-block-gallery .blocks-gallery-image:last-child,
  3498. .entry .entry-content .wp-block-gallery .blocks-gallery-item:last-child {
  3499. margin-bottom: 16px;
  3500. }
  3501. .entry .entry-content .wp-block-gallery figcaption a {
  3502. color: #fff;
  3503. }
  3504. .entry .entry-content .wp-block-audio figcaption,
  3505. .entry .entry-content .wp-block-video figcaption,
  3506. .entry .entry-content .wp-block-image figcaption,
  3507. .entry .entry-content .wp-block-gallery .blocks-gallery-image figcaption,
  3508. .entry .entry-content .wp-block-gallery .blocks-gallery-item figcaption {
  3509. font-size: 0.71111em;
  3510. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3511. line-height: 1.6;
  3512. margin: 0;
  3513. padding: 0.5rem;
  3514. text-align: center;
  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. color: #cccccc;
  3520. }
  3521. .entry .entry-content .wp-block-separator,
  3522. .entry .entry-content hr {
  3523. background-color: #595959;
  3524. border: 0;
  3525. height: 2px;
  3526. margin-bottom: 32px;
  3527. margin-top: 32px;
  3528. max-width: 5em;
  3529. text-align: right;
  3530. }
  3531. .entry .entry-content .wp-block-separator.is-style-wide,
  3532. .entry .entry-content hr.is-style-wide {
  3533. max-width: 100%;
  3534. }
  3535. @media only screen and (min-width: 768px) {
  3536. .entry .entry-content .wp-block-separator.is-style-wide,
  3537. .entry .entry-content hr.is-style-wide {
  3538. max-width: calc(8 * (100vw / 12) - 28px);
  3539. }
  3540. }
  3541. @media only screen and (min-width: 1168px) {
  3542. .entry .entry-content .wp-block-separator.is-style-wide,
  3543. .entry .entry-content hr.is-style-wide {
  3544. max-width: calc(6 * (100vw / 12) - 28px);
  3545. }
  3546. }
  3547. .entry .entry-content .wp-block-separator.is-style-dots,
  3548. .entry .entry-content hr.is-style-dots {
  3549. max-width: 100%;
  3550. background-color: inherit;
  3551. border: inherit;
  3552. height: inherit;
  3553. text-align: center;
  3554. }
  3555. @media only screen and (min-width: 768px) {
  3556. .entry .entry-content .wp-block-separator.is-style-dots,
  3557. .entry .entry-content hr.is-style-dots {
  3558. max-width: calc(8 * (100vw / 12) - 28px);
  3559. }
  3560. }
  3561. @media only screen and (min-width: 1168px) {
  3562. .entry .entry-content .wp-block-separator.is-style-dots,
  3563. .entry .entry-content hr.is-style-dots {
  3564. max-width: calc(6 * (100vw / 12) - 28px);
  3565. }
  3566. }
  3567. .entry .entry-content .wp-block-separator.is-style-dots:before,
  3568. .entry .entry-content hr.is-style-dots:before {
  3569. color: #595959;
  3570. font-size: 1.6875em;
  3571. letter-spacing: 0.88889em;
  3572. padding-right: 0.88889em;
  3573. }
  3574. .entry .entry-content .wp-block-spacer.desktop-only {
  3575. display: none;
  3576. }
  3577. @media only screen and (min-width: 768px) {
  3578. .entry .entry-content .wp-block-spacer.desktop-only {
  3579. display: block;
  3580. }
  3581. }
  3582. .entry .entry-content .wp-block-embed-twitter {
  3583. word-break: break-word;
  3584. }
  3585. .entry .entry-content .wp-block-table th,
  3586. .entry .entry-content .wp-block-table td {
  3587. border-color: #cccccc;
  3588. }
  3589. .entry .entry-content .wp-block-file {
  3590. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3591. }
  3592. .entry .entry-content .wp-block-file .wp-block-file__button {
  3593. display: table;
  3594. transition: background 150ms ease-in-out;
  3595. border: none;
  3596. border-radius: 5px;
  3597. background: #caab57;
  3598. font-size: 22px;
  3599. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3600. font-weight: 600;
  3601. line-height: 1.2;
  3602. text-decoration: none;
  3603. padding: 0.75rem 1rem;
  3604. color: #080808;
  3605. margin-right: 0;
  3606. margin-top: calc(0.75 * 32px);
  3607. }
  3608. @media only screen and (min-width: 1168px) {
  3609. .entry .entry-content .wp-block-file .wp-block-file__button {
  3610. font-size: 22px;
  3611. padding: 0.875rem 1.5rem;
  3612. }
  3613. }
  3614. .entry .entry-content .wp-block-file .wp-block-file__button:hover {
  3615. background: #b59439;
  3616. cursor: pointer;
  3617. }
  3618. .entry .entry-content .wp-block-file .wp-block-file__button:focus {
  3619. background: #b59439;
  3620. outline: thin dotted;
  3621. outline-offset: -4px;
  3622. }
  3623. .entry .entry-content .wp-block-code {
  3624. border-radius: 0;
  3625. color: #fff;
  3626. }
  3627. .entry .entry-content .wp-block-code code {
  3628. font-size: 1.125em;
  3629. white-space: pre-wrap;
  3630. word-break: break-word;
  3631. }
  3632. .entry .entry-content .wp-block-media-text {
  3633. background: #1c1c1c;
  3634. }
  3635. .entry .entry-content .wp-block-media-text .wp-block-media-text__content > :first-child {
  3636. margin-top: 0.88889rem;
  3637. }
  3638. .entry .entry-content .wp-block-media-text .wp-block-media-text__content > :last-child {
  3639. margin-bottom: 0.88889rem;
  3640. }
  3641. .entry .entry-content .wp-block-media-text + .wp-block-media-text {
  3642. margin-top: -32px;
  3643. }
  3644. .entry .entry-content .wp-block-media-text.has-media-on-the-right.is-stacked-on-mobile .wp-block-media-text__media {
  3645. grid-row: 1;
  3646. }
  3647. .entry .entry-content .wp-block-media-text.has-media-on-the-right.is-stacked-on-mobile .wp-block-media-text__content {
  3648. grid-row: 2;
  3649. }
  3650. @media only screen and (min-width: 600px) {
  3651. .entry .entry-content .wp-block-media-text.has-media-on-the-right.is-stacked-on-mobile .wp-block-media-text__content {
  3652. grid-row: 1;
  3653. }
  3654. }
  3655. .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 {
  3656. text-align: right;
  3657. }
  3658. .entry .entry-content .wp-block-media-text .wp-block-media-text__content a,
  3659. .entry .entry-content .wp-block-media-text .wp-block-media-text__content a:hover {
  3660. color: inherit;
  3661. }
  3662. @media only screen and (min-width: 1168px) {
  3663. .entry .entry-content .wp-block-media-text .wp-block-media-text__content {
  3664. border-right: 2px solid rgba(255, 255, 255, 0.15);
  3665. margin-right: 7.5%;
  3666. margin-left: 7.5%;
  3667. padding-right: 1rem;
  3668. padding-left: 1rem;
  3669. }
  3670. }
  3671. .entry .entry-content .wp-block-media-text.alignfull.is-stacked-on-mobile .wp-block-media-text__content {
  3672. padding: 0 1rem;
  3673. }
  3674. @media only screen and (min-width: 600px) {
  3675. .entry .entry-content .wp-block-media-text.alignfull.is-stacked-on-mobile .wp-block-media-text__content {
  3676. padding: 0 8%;
  3677. }
  3678. }
  3679. @media only screen and (min-width: 1168px) {
  3680. .entry .entry-content .wp-block-media-text.alignfull.is-stacked-on-mobile .wp-block-media-text__content {
  3681. border-right: 2px solid rgba(255, 255, 255, 0.15);
  3682. margin-right: 7.5%;
  3683. margin-left: 7.5%;
  3684. padding-right: 1rem;
  3685. padding-left: 1rem;
  3686. }
  3687. }
  3688. @media only screen and (min-width: 768px) {
  3689. .entry .entry-content .wp-block-media-text.alignfull + .wp-block-media-text {
  3690. margin-top: -32px;
  3691. }
  3692. }
  3693. @media all and (-ms-high-contrast: none) {
  3694. .entry .entry-content .wp-block-media-text:after {
  3695. display: table;
  3696. content: "";
  3697. clear: both;
  3698. }
  3699. .entry .entry-content .wp-block-media-text figure {
  3700. float: right;
  3701. width: 50%;
  3702. }
  3703. .entry .entry-content .wp-block-media-text .wp-block-media-text__content {
  3704. float: left;
  3705. width: 50%;
  3706. }
  3707. .entry .entry-content .wp-block-media-text.has-media-on-the-right figure {
  3708. float: left;
  3709. }
  3710. .entry .entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  3711. float: right;
  3712. }
  3713. }
  3714. .entry .entry-content .wp-block-columns.alignfull {
  3715. padding-right: 1rem;
  3716. padding-left: 1rem;
  3717. }
  3718. @media only screen and (min-width: 782px) {
  3719. .entry .entry-content .wp-block-columns .wp-block-column {
  3720. margin-right: 0.5rem;
  3721. margin-left: 0.5rem;
  3722. }
  3723. .entry .entry-content .wp-block-columns .wp-block-column:first-child {
  3724. margin-right: 0;
  3725. }
  3726. .entry .entry-content .wp-block-columns .wp-block-column:last-child {
  3727. margin-left: 0;
  3728. }
  3729. .entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
  3730. margin-top: 0;
  3731. }
  3732. .entry .entry-content .wp-block-columns .wp-block-column > *:last-child {
  3733. margin-bottom: 0;
  3734. }
  3735. .entry .entry-content .wp-block-columns.alignfull {
  3736. padding-right: calc(2 * 1rem);
  3737. padding-left: calc(2 * 1rem);
  3738. }
  3739. }
  3740. .entry .entry-content .wp-block-latest-comments {
  3741. padding-right: 0;
  3742. }
  3743. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  3744. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3745. }
  3746. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date {
  3747. color: #cccccc;
  3748. font-weight: normal;
  3749. }
  3750. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment,
  3751. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-date,
  3752. .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  3753. font-size: inherit;
  3754. }
  3755. .entry .entry-content .wp-block-latest-comments.has-dates .wp-block-latest-comments__comment-date {
  3756. font-size: 0.71111em;
  3757. }
  3758. .entry .entry-content .has-small-font-size {
  3759. font-size: 0.88889em;
  3760. }
  3761. .entry .entry-content .has-normal-font-size {
  3762. font-size: 1.125em;
  3763. }
  3764. .entry .entry-content .has-large-font-size {
  3765. font-size: 1.6875em;
  3766. }
  3767. .entry .entry-content .has-huge-font-size {
  3768. font-size: 2.25em;
  3769. }
  3770. .entry .entry-content .has-primary-background-color,
  3771. .entry .entry-content .has-secondary-background-color,
  3772. .entry .entry-content .has-white-background-color,
  3773. .entry .entry-content .has-light-gray-background-color {
  3774. color: #080808;
  3775. }
  3776. .entry .entry-content .has-primary-background-color p,
  3777. .entry .entry-content .has-primary-background-color h1,
  3778. .entry .entry-content .has-primary-background-color h2,
  3779. .entry .entry-content .has-primary-background-color h3,
  3780. .entry .entry-content .has-primary-background-color h4,
  3781. .entry .entry-content .has-primary-background-color h5,
  3782. .entry .entry-content .has-primary-background-color h6,
  3783. .entry .entry-content .has-primary-background-color a,
  3784. .entry .entry-content .has-secondary-background-color p,
  3785. .entry .entry-content .has-secondary-background-color h1,
  3786. .entry .entry-content .has-secondary-background-color h2,
  3787. .entry .entry-content .has-secondary-background-color h3,
  3788. .entry .entry-content .has-secondary-background-color h4,
  3789. .entry .entry-content .has-secondary-background-color h5,
  3790. .entry .entry-content .has-secondary-background-color h6,
  3791. .entry .entry-content .has-secondary-background-color a,
  3792. .entry .entry-content .has-white-background-color p,
  3793. .entry .entry-content .has-white-background-color h1,
  3794. .entry .entry-content .has-white-background-color h2,
  3795. .entry .entry-content .has-white-background-color h3,
  3796. .entry .entry-content .has-white-background-color h4,
  3797. .entry .entry-content .has-white-background-color h5,
  3798. .entry .entry-content .has-white-background-color h6,
  3799. .entry .entry-content .has-white-background-color a,
  3800. .entry .entry-content .has-light-gray-background-color p,
  3801. .entry .entry-content .has-light-gray-background-color h1,
  3802. .entry .entry-content .has-light-gray-background-color h2,
  3803. .entry .entry-content .has-light-gray-background-color h3,
  3804. .entry .entry-content .has-light-gray-background-color h4,
  3805. .entry .entry-content .has-light-gray-background-color h5,
  3806. .entry .entry-content .has-light-gray-background-color h6,
  3807. .entry .entry-content .has-light-gray-background-color a {
  3808. color: #080808;
  3809. }
  3810. .entry .entry-content .has-dark-gray-background-color {
  3811. color: #fff;
  3812. }
  3813. .entry .entry-content .has-dark-gray-background-color p,
  3814. .entry .entry-content .has-dark-gray-background-color h1,
  3815. .entry .entry-content .has-dark-gray-background-color h2,
  3816. .entry .entry-content .has-dark-gray-background-color h3,
  3817. .entry .entry-content .has-dark-gray-background-color h4,
  3818. .entry .entry-content .has-dark-gray-background-color h5,
  3819. .entry .entry-content .has-dark-gray-background-color h6,
  3820. .entry .entry-content .has-dark-gray-background-color a {
  3821. color: #fff;
  3822. }
  3823. .entry .entry-content .has-primary-background-color,
  3824. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-primary-background-color {
  3825. background-color: #caab57;
  3826. }
  3827. .entry .entry-content .has-secondary-background-color,
  3828. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-secondary-background-color {
  3829. background-color: #b59439;
  3830. }
  3831. .entry .entry-content .has-dark-gray-background-color,
  3832. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-dark-gray-background-color {
  3833. background-color: #1c1c1c;
  3834. }
  3835. .entry .entry-content .has-light-gray-background-color,
  3836. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-light-gray-background-color {
  3837. background-color: #cccccc;
  3838. }
  3839. .entry .entry-content .has-white-background-color,
  3840. .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-white-background-color {
  3841. background-color: #FFF;
  3842. }
  3843. .entry .entry-content .has-primary-color,
  3844. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color,
  3845. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color p {
  3846. color: #caab57;
  3847. }
  3848. .entry .entry-content .has-secondary-color,
  3849. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color,
  3850. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color p {
  3851. color: #b59439;
  3852. }
  3853. .entry .entry-content .has-dark-gray-color,
  3854. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color,
  3855. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color p {
  3856. color: #1c1c1c;
  3857. }
  3858. .entry .entry-content .has-light-gray-color,
  3859. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color,
  3860. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color p {
  3861. color: #cccccc;
  3862. }
  3863. .entry .entry-content .has-white-color,
  3864. .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-white-color {
  3865. color: #FFF;
  3866. }
  3867. .entry .entry-content .a8c-posts-list-item__title a,
  3868. .entry .entry-content .a8c-posts-list-item__meta a {
  3869. text-decoration: none;
  3870. }
  3871. .entry .entry-content .a8c-posts-list__view-all {
  3872. text-decoration: none;
  3873. }
  3874. .entry .entry-content .a8c-posts-list-item__title a {
  3875. color: inherit;
  3876. }
  3877. .entry .entry-content .a8c-posts-list-item__title a:hover, .entry .entry-content .a8c-posts-list-item__title a:focus {
  3878. color: #c6c6c6;
  3879. }
  3880. .entry .entry-content .a8c-posts-list-item__meta a {
  3881. color: #cccccc;
  3882. }
  3883. .entry .entry-content .a8c-posts-list-item__meta a:hover, .entry .entry-content .a8c-posts-list-item__meta a:focus {
  3884. color: #caab57;
  3885. }
  3886. .entry .entry-content .a8c-posts-list-item__meta .a8c-posts-list-item__edit-link a {
  3887. color: #080808;
  3888. }
  3889. .entry .entry-content .a8c-posts-list {
  3890. text-align: center;
  3891. }
  3892. .entry .entry-content .a8c-posts-list__item:not(:first-child) {
  3893. margin-top: calc(6 * 1rem);
  3894. }
  3895. .entry .entry-content .a8c-posts-list-item__featured span {
  3896. background: #caab57;
  3897. color: #080808;
  3898. display: inline-block;
  3899. font-size: 0.59259em;
  3900. font-weight: bold;
  3901. line-height: 1;
  3902. padding: .25rem;
  3903. text-transform: uppercase;
  3904. z-index: 1;
  3905. }
  3906. .entry .entry-content .a8c-posts-list-item__post-thumbnail {
  3907. margin-bottom: 32px;
  3908. }
  3909. .entry .entry-content .a8c-posts-list-item__post-thumbnail img {
  3910. display: block;
  3911. }
  3912. .entry .entry-content .a8c-posts-list-item__title {
  3913. font-size: 1.6875em;
  3914. margin: 0;
  3915. }
  3916. @media only screen and (min-width: 768px) {
  3917. .entry .entry-content .a8c-posts-list-item__title {
  3918. font-size: 2.25em;
  3919. }
  3920. }
  3921. .entry .entry-content .a8c-posts-list-item__meta {
  3922. color: #cccccc;
  3923. font-size: 0.59259em;
  3924. }
  3925. .entry .entry-content .a8c-posts-list-item__author {
  3926. margin-left: calc(.5 * 1rem);
  3927. }
  3928. .entry .entry-content .a8c-posts-list-item__edit-link {
  3929. transition: background 150ms ease-in-out;
  3930. background: #caab57;
  3931. border-radius: 3px;
  3932. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3933. font-weight: 600;
  3934. padding: .05rem .4rem;
  3935. }
  3936. .entry .entry-content .a8c-posts-list-item__edit-link:hover, .entry .entry-content .a8c-posts-list-item__edit-link:focus {
  3937. background: #b59439;
  3938. cursor: pointer;
  3939. }
  3940. .entry .entry-content .a8c-posts-list-item__excerpt {
  3941. margin: 0 auto;
  3942. text-align: right;
  3943. }
  3944. @media only screen and (min-width: 768px) {
  3945. .entry .entry-content .a8c-posts-list-item__excerpt {
  3946. max-width: calc(8 * (100vw / 12) - 28px);
  3947. }
  3948. }
  3949. @media only screen and (min-width: 1168px) {
  3950. .entry .entry-content .a8c-posts-list-item__excerpt {
  3951. max-width: calc(6 * (100vw / 12) - 28px);
  3952. }
  3953. }
  3954. .entry .entry-content .a8c-posts-list-item__excerpt p {
  3955. margin: 32px 0;
  3956. }
  3957. .entry .entry-content .a8c-posts-list__view-all {
  3958. transition: background 150ms ease-in-out;
  3959. background: #caab57;
  3960. border: none;
  3961. border-radius: 5px;
  3962. box-sizing: border-box;
  3963. color: #080808;
  3964. display: inline-block;
  3965. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  3966. font-size: 0.88889em;
  3967. font-weight: 600;
  3968. line-height: 1.2;
  3969. margin-top: calc(6 * 1rem - 32px);
  3970. outline: none;
  3971. padding: 0.76rem 1rem;
  3972. vertical-align: bottom;
  3973. }
  3974. .entry .entry-content .a8c-posts-list__view-all:hover {
  3975. background: #b59439;
  3976. cursor: pointer;
  3977. }
  3978. .entry .entry-content .a8c-posts-list__view-all:visited {
  3979. color: #080808;
  3980. text-decoration: none;
  3981. }
  3982. .entry .entry-content .a8c-posts-list__view-all:focus {
  3983. background: #b59439;
  3984. outline: thin dotted;
  3985. outline-offset: -4px;
  3986. }
  3987. /* Site Builder */
  3988. /* !Site Builder styles */
  3989. .entry .entry-content .site-builder__header {
  3990. align-items: center;
  3991. color: #cccccc;
  3992. flex-wrap: wrap;
  3993. justify-content: space-between;
  3994. line-height: 1.25;
  3995. position: relative;
  3996. display: flex;
  3997. right: calc( -1rem + 1em);
  3998. width: calc( 100% + (2 * 1rem) - 2em);
  3999. max-width: calc( 100% + (2 * 1rem) + 2em);
  4000. }
  4001. @media only screen and (min-width: 768px) {
  4002. .entry .entry-content .site-builder__header {
  4003. right: calc( -12.5% - 75px + 1em);
  4004. width: calc( 125% + 150px - 2em);
  4005. max-width: calc( 125% + 150px + 2em);
  4006. }
  4007. }
  4008. .entry .entry-content .site-builder__title {
  4009. color: #fff;
  4010. flex: 1 1 auto;
  4011. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  4012. font-size: 1.125em;
  4013. font-weight: 600;
  4014. letter-spacing: 0;
  4015. line-height: 1.2;
  4016. margin: 0;
  4017. -webkit-font-smoothing: antialiased;
  4018. -moz-osx-font-smoothing: grayscale;
  4019. }
  4020. .entry .entry-content .site-builder__title a {
  4021. color: #fff;
  4022. text-decoration: none;
  4023. }
  4024. .entry .entry-content .site-builder__title a:link, .entry .entry-content .site-builder__title a:visited {
  4025. color: #fff;
  4026. }
  4027. .entry .entry-content .site-builder__title a:hover {
  4028. color: #c6c6c6;
  4029. }
  4030. .entry .entry-content .site-builder__description {
  4031. flex: initial;
  4032. color: #fff;
  4033. font-size: 0.71111em;
  4034. font-weight: normal;
  4035. margin: 0.27rem 0 0;
  4036. }
  4037. /* Media */
  4038. .page-content .wp-smiley,
  4039. .entry-content .wp-smiley,
  4040. .comment-content .wp-smiley {
  4041. border: none;
  4042. margin-bottom: 0;
  4043. margin-top: 0;
  4044. padding: 0;
  4045. }
  4046. embed,
  4047. iframe,
  4048. object {
  4049. max-width: 100%;
  4050. }
  4051. .custom-logo-link {
  4052. display: inline-block;
  4053. }
  4054. .avatar {
  4055. border-radius: 100%;
  4056. display: block;
  4057. height: calc(2.25 * 1rem);
  4058. min-height: inherit;
  4059. width: calc(2.25 * 1rem);
  4060. }
  4061. svg {
  4062. transition: fill 120ms ease-in-out;
  4063. fill: currentColor;
  4064. }
  4065. /*--------------------------------------------------------------
  4066. ## Captions
  4067. --------------------------------------------------------------*/
  4068. .wp-caption {
  4069. margin-bottom: calc(1.5 * 1rem);
  4070. }
  4071. @media only screen and (min-width: 768px) {
  4072. .wp-caption.aligncenter {
  4073. position: relative;
  4074. right: calc( calc(8 * (100vw / 12) - 28px) / 2);
  4075. transform: translateX(50%);
  4076. }
  4077. }
  4078. @media only screen and (min-width: 1168px) {
  4079. .wp-caption.aligncenter {
  4080. right: calc( calc(6 * (100vw / 12) - 28px) / 2);
  4081. }
  4082. }
  4083. .wp-caption img[class*="wp-image-"] {
  4084. display: block;
  4085. margin-right: auto;
  4086. margin-left: auto;
  4087. }
  4088. .wp-caption-text {
  4089. color: #cccccc;
  4090. font-size: 0.71111em;
  4091. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  4092. line-height: 1.6;
  4093. margin: 0;
  4094. padding: 0.5rem;
  4095. text-align: center;
  4096. }
  4097. /*--------------------------------------------------------------
  4098. ## Galleries
  4099. --------------------------------------------------------------*/
  4100. .gallery {
  4101. display: flex;
  4102. flex-flow: row wrap;
  4103. justify-content: center;
  4104. margin-bottom: calc(1.5 * 1rem);
  4105. }
  4106. .gallery-item {
  4107. display: inline-block;
  4108. margin-left: 16px;
  4109. margin-bottom: 16px;
  4110. text-align: center;
  4111. vertical-align: top;
  4112. width: 100%;
  4113. }
  4114. .gallery-columns-2 .gallery-item {
  4115. max-width: calc((100% - 16px * 1) / 2);
  4116. }
  4117. .gallery-columns-2 .gallery-item:nth-of-type(2n+2) {
  4118. margin-left: 0;
  4119. }
  4120. .gallery-columns-3 .gallery-item {
  4121. max-width: calc((100% - 16px * 2) / 3);
  4122. }
  4123. .gallery-columns-3 .gallery-item:nth-of-type(3n+3) {
  4124. margin-left: 0;
  4125. }
  4126. .gallery-columns-4 .gallery-item {
  4127. max-width: calc((100% - 16px * 3) / 4);
  4128. }
  4129. .gallery-columns-4 .gallery-item:nth-of-type(4n+4) {
  4130. margin-left: 0;
  4131. }
  4132. .gallery-columns-5 .gallery-item {
  4133. max-width: calc((100% - 16px * 4) / 5);
  4134. }
  4135. .gallery-columns-5 .gallery-item:nth-of-type(5n+5) {
  4136. margin-left: 0;
  4137. }
  4138. .gallery-columns-6 .gallery-item {
  4139. max-width: calc((100% - 16px * 5) / 6);
  4140. }
  4141. .gallery-columns-6 .gallery-item:nth-of-type(6n+6) {
  4142. margin-left: 0;
  4143. }
  4144. .gallery-columns-7 .gallery-item {
  4145. max-width: calc((100% - 16px * 6) / 7);
  4146. }
  4147. .gallery-columns-7 .gallery-item:nth-of-type(7n+7) {
  4148. margin-left: 0;
  4149. }
  4150. .gallery-columns-8 .gallery-item {
  4151. max-width: calc((100% - 16px * 7) / 8);
  4152. }
  4153. .gallery-columns-8 .gallery-item:nth-of-type(8n+8) {
  4154. margin-left: 0;
  4155. }
  4156. .gallery-columns-9 .gallery-item {
  4157. max-width: calc((100% - 16px * 8) / 9);
  4158. }
  4159. .gallery-columns-9 .gallery-item:nth-of-type(9n+9) {
  4160. margin-left: 0;
  4161. }
  4162. .gallery-item:last-of-type {
  4163. padding-left: 0;
  4164. }
  4165. .gallery-caption {
  4166. display: block;
  4167. font-size: 0.71111em;
  4168. font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  4169. line-height: 1.6;
  4170. margin: 0;
  4171. padding: 0.5rem;
  4172. }
  4173. .gallery-item > div > a {
  4174. display: block;
  4175. line-height: 0;
  4176. box-shadow: 0 0 0 0 transparent;
  4177. }
  4178. .gallery-item > div > a:focus {
  4179. box-shadow: 0 0 0 2px #caab57;
  4180. }