style.css 113 KB

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