123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980 |
- @charset "UTF-8";
- /*
- Theme Name: Professional Business
- Theme URI: https://wordpress.com/theme/professional-business
- Author: Automattic
- Author URI: https://wordpress.com/
- Template: twentynineteen
- Description: Simple, yet sophisticated, with subtle, elegant typography, Professional Business conveys quality and integrity, which makes it especially good fit for accounting, law, and consultancy firms.
- Requires at least: WordPress 4.9.6
- Version: 1.5.11
- License: GNU General Public License v2 or later
- License URI: LICENSE
- Text Domain: professional-business
- Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
- Status: inactive
- This theme, like WordPress, is licensed under the GPL.
- Use it to make something cool, have fun, and share what you've learned with others.
- Twenty Nineteen is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
- Underscores is distributed under the terms of the GNU GPL v2 or later.
- Normalizing styles have been helped along thanks to the fine work of
- Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
- */
- /*--------------------------------------------------------------
- >>> TABLE OF CONTENTS:
- ----------------------------------------------------------------
- # Variables
- # Normalize
- # Typography
- ## Headings
- ## Copy
- # Elements
- ## Lists
- ## Tables
- # Forms
- ## Buttons
- ## Fields
- # Navigation
- ## Links
- ## Menus
- ## Next & Previous
- # Accessibility
- # Alignments
- # Clearings
- # Layout
- # Widgets
- # Content
- ## Archives
- ## Posts and pages
- ## Comments
- # Blocks
- # Media
- ## Captions
- ## Galleries
- --------------------------------------------------------------*/
- /* If we add the border using a regular CSS border, it won't look good on non-retina devices,
- * since its edges can look jagged due to lack of antialiasing. In this case, we are several
- * layers of box-shadow to add the border visually, which will render the border smoother. */
- /* Fallback for non-latin fonts */
- /* Calculates maximum width for post content */
- /* Nested sub-menu padding: 10 levels deep */
- /* Normalize */
- /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
- /* Document
- ========================================================================== */
- /**
- * 1. Correct the line height in all browsers.
- * 2. Prevent adjustments of font size after orientation changes in iOS.
- */
- html {
- line-height: 1.15;
- /* 1 */
- -webkit-text-size-adjust: 100%;
- /* 2 */
- }
- /* Sections
- ========================================================================== */
- /**
- * Remove the margin in all browsers.
- */
- body {
- margin: 0;
- }
- /**
- * Correct the font size and margin on `h1` elements within `section` and
- * `article` contexts in Chrome, Firefox, and Safari.
- */
- h1 {
- font-size: 2em;
- margin: 0.67em 0;
- }
- /* Grouping content
- ========================================================================== */
- /**
- * 1. Add the correct box sizing in Firefox.
- * 2. Show the overflow in Edge and IE.
- */
- hr {
- box-sizing: content-box;
- /* 1 */
- height: 0;
- /* 1 */
- overflow: visible;
- /* 2 */
- }
- /**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
- pre {
- font-family: monospace, monospace;
- /* 1 */
- font-size: 1em;
- /* 2 */
- }
- /* Text-level semantics
- ========================================================================== */
- /**
- * Remove the gray background on active links in IE 10.
- */
- a {
- background-color: transparent;
- }
- /**
- * 1. Remove the bottom border in Chrome 57-
- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
- */
- abbr[title] {
- border-bottom: none;
- /* 1 */
- text-decoration: underline;
- /* 2 */
- -webkit-text-decoration: underline dotted;
- text-decoration: underline dotted;
- /* 2 */
- }
- /**
- * Add the correct font weight in Chrome, Edge, and Safari.
- */
- b,
- strong {
- font-weight: bolder;
- }
- /**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
- code,
- kbd,
- samp {
- font-family: monospace, monospace;
- /* 1 */
- font-size: 1em;
- /* 2 */
- }
- /**
- * Add the correct font size in all browsers.
- */
- small {
- font-size: 80%;
- }
- /**
- * Prevent `sub` and `sup` elements from affecting the line height in
- * all browsers.
- */
- sub,
- sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
- }
- sub {
- bottom: -0.25em;
- }
- sup {
- top: -0.5em;
- }
- /* Embedded content
- ========================================================================== */
- /**
- * Remove the border on images inside links in IE 10.
- */
- img {
- border-style: none;
- }
- /* Forms
- ========================================================================== */
- /**
- * 1. Change the font styles in all browsers.
- * 2. Remove the margin in Firefox and Safari.
- */
- button,
- input,
- optgroup,
- select,
- textarea {
- font-family: inherit;
- /* 1 */
- font-size: 100%;
- /* 1 */
- line-height: 1.15;
- /* 1 */
- margin: 0;
- /* 2 */
- }
- /**
- * Show the overflow in IE.
- * 1. Show the overflow in Edge.
- */
- button,
- input {
- /* 1 */
- overflow: visible;
- }
- /**
- * Remove the inheritance of text transform in Edge, Firefox, and IE.
- * 1. Remove the inheritance of text transform in Firefox.
- */
- button,
- select {
- /* 1 */
- text-transform: none;
- }
- /**
- * Correct the inability to style clickable types in iOS and Safari.
- */
- button,
- [type="button"],
- [type="reset"],
- [type="submit"] {
- -webkit-appearance: button;
- }
- /**
- * Remove the inner border and padding in Firefox.
- */
- button::-moz-focus-inner,
- [type="button"]::-moz-focus-inner,
- [type="reset"]::-moz-focus-inner,
- [type="submit"]::-moz-focus-inner {
- border-style: none;
- padding: 0;
- }
- /**
- * Restore the focus styles unset by the previous rule.
- */
- button:-moz-focusring,
- [type="button"]:-moz-focusring,
- [type="reset"]:-moz-focusring,
- [type="submit"]:-moz-focusring {
- outline: 1px dotted ButtonText;
- }
- /**
- * Correct the padding in Firefox.
- */
- fieldset {
- padding: 0.35em 0.75em 0.625em;
- }
- /**
- * 1. Correct the text wrapping in Edge and IE.
- * 2. Correct the color inheritance from `fieldset` elements in IE.
- * 3. Remove the padding so developers are not caught out when they zero out
- * `fieldset` elements in all browsers.
- */
- legend {
- box-sizing: border-box;
- /* 1 */
- color: inherit;
- /* 2 */
- display: table;
- /* 1 */
- max-width: 100%;
- /* 1 */
- padding: 0;
- /* 3 */
- white-space: normal;
- /* 1 */
- }
- /**
- * Add the correct vertical alignment in Chrome, Firefox, and Opera.
- */
- progress {
- vertical-align: baseline;
- }
- /**
- * Remove the default vertical scrollbar in IE 10+.
- */
- textarea {
- overflow: auto;
- }
- /**
- * 1. Add the correct box sizing in IE 10.
- * 2. Remove the padding in IE 10.
- */
- [type="checkbox"],
- [type="radio"] {
- box-sizing: border-box;
- /* 1 */
- padding: 0;
- /* 2 */
- }
- /**
- * Correct the cursor style of increment and decrement buttons in Chrome.
- */
- [type="number"]::-webkit-inner-spin-button,
- [type="number"]::-webkit-outer-spin-button {
- height: auto;
- }
- /**
- * 1. Correct the odd appearance in Chrome and Safari.
- * 2. Correct the outline style in Safari.
- */
- [type="search"] {
- -webkit-appearance: textfield;
- /* 1 */
- outline-offset: -2px;
- /* 2 */
- }
- /**
- * Remove the inner padding in Chrome and Safari on macOS.
- */
- [type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- /**
- * 1. Correct the inability to style clickable types in iOS and Safari.
- * 2. Change font properties to `inherit` in Safari.
- */
- ::-webkit-file-upload-button {
- -webkit-appearance: button;
- /* 1 */
- font: inherit;
- /* 2 */
- }
- /* Interactive
- ========================================================================== */
- /*
- * Add the correct display in Edge, IE 10+, and Firefox.
- */
- details {
- display: block;
- }
- /*
- * Add the correct display in all browsers.
- */
- summary {
- display: list-item;
- }
- /* Misc
- ========================================================================== */
- /**
- * Add the correct display in IE 10+.
- */
- template {
- display: none;
- }
- /**
- * Add the correct display in IE 10.
- */
- [hidden] {
- display: none;
- }
- /* Typography */
- html {
- font-size: 22px;
- }
- body {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- color: #1e1e1e;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-weight: 400;
- font-size: 1em;
- line-height: 1.8;
- margin: 0;
- text-rendering: optimizeLegibility;
- }
- button,
- input,
- select,
- optgroup,
- textarea {
- color: #1e1e1e;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-weight: 400;
- line-height: 1.8;
- text-rendering: optimizeLegibility;
- }
- .author-description .author-link,
- .comment-metadata,
- .comment-reply-link,
- .comments-title,
- .comment-author .fn,
- .discussion-meta-info,
- .entry-meta,
- .entry-footer,
- .main-navigation,
- .no-comments,
- .not-found .page-title,
- .error-404 .page-title,
- .post-navigation .post-title,
- .page-links,
- .page-description,
- .pagination .nav-links,
- .sticky-post,
- .site-title,
- .site-title:focus,
- .site-info,
- #cancel-comment-reply-link,
- img:after,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- }
- .main-navigation,
- .page-description,
- .author-description .author-link,
- .not-found .page-title,
- .error-404 .page-title,
- .post-navigation .post-title,
- .pagination .nav-links,
- .comments-title,
- .comment-author .fn,
- .no-comments,
- .site-title,
- .site-title:focus,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-weight: 600;
- line-height: 1.2;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .page-title {
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- }
- .site-branding,
- .main-navigation ul.main-menu > li,
- .social-navigation,
- .author-description .author-bio,
- .nav-links {
- line-height: 1.25;
- }
- .entry-title,
- .not-found .page-title,
- .error-404 .page-title,
- .has-larger-font-size,
- h1 {
- font-size: 1.6875em;
- }
- @media only screen and (min-width: 768px) {
- .entry-title,
- .not-found .page-title,
- .error-404 .page-title,
- .has-larger-font-size,
- h1 {
- font-size: 2.25em;
- }
- }
- .wp-block-cover-image h2,
- .wp-block-cover h2,
- h2 {
- font-size: 1.125em;
- }
- @media only screen and (min-width: 768px) {
- .wp-block-cover-image h2,
- .wp-block-cover h2,
- h2 {
- font-size: 1.6875em;
- }
- }
- .has-regular-font-size,
- .has-large-font-size,
- h3 {
- font-size: 22px;
- }
- @media only screen and (min-width: 768px) {
- .has-regular-font-size,
- .has-large-font-size,
- h3 {
- font-size: 1.125em;
- }
- }
- .site-title,
- .site-title:focus,
- .site-description,
- .nav-links,
- .page-title,
- .page-description,
- .comment-author .fn,
- .no-comments,
- h2.author-title,
- p.author-bio,
- h4 {
- font-size: 0.88889em;
- }
- @media only screen and (min-width: 768px) {
- .site-title,
- .site-title:focus,
- .site-description,
- .nav-links,
- .page-title,
- .page-description,
- .comment-author .fn,
- .no-comments,
- h2.author-title,
- p.author-bio,
- h4 {
- font-size: 22px;
- }
- }
- .pagination .nav-links,
- .comment-content,
- h5 {
- font-size: 0.71111em;
- }
- @media only screen and (min-width: 768px) {
- .pagination .nav-links,
- .comment-content,
- h5 {
- font-size: 0.88889em;
- }
- }
- .entry-meta,
- .entry-footer,
- .discussion-meta-info,
- .site-description,
- .has-small-font-size,
- .comment-reply-link,
- .comment-metadata,
- .comment-notes,
- .sticky-post,
- #cancel-comment-reply-link,
- img:after,
- h6 {
- font-size: 0.59259em;
- }
- @media only screen and (min-width: 768px) {
- .entry-meta,
- .entry-footer,
- .discussion-meta-info,
- .site-description,
- .has-small-font-size,
- .comment-reply-link,
- .comment-metadata,
- .comment-notes,
- .sticky-post,
- #cancel-comment-reply-link,
- img:after,
- h6 {
- font-size: 0.71111em;
- }
- }
- .site-info {
- font-size: 0.71111em;
- }
- .page-title {
- font-weight: normal;
- }
- .page-description,
- .page-links a {
- font-weight: bold;
- }
- .page-id-3669 .entry .entry-header {
- display: none;
- }
- .post-navigation .post-title,
- .entry-title,
- .not-found .page-title,
- .error-404 .page-title,
- .comments-title,
- blockquote {
- -webkit-hyphens: auto;
- hyphens: auto;
- word-break: break-word;
- }
- /* Do not hyphenate entry title on tablet view and bigger. */
- @media only screen and (min-width: 768px) {
- .entry-title {
- -webkit-hyphens: none;
- hyphens: none;
- }
- }
- p {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- dfn,
- cite,
- em,
- i {
- font-style: italic;
- }
- blockquote cite {
- font-size: 0.71111em;
- font-style: normal;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- }
- pre {
- font-size: 0.88889em;
- font-family: "Courier 10 Pitch", Courier, monospace;
- line-height: 1.8;
- overflow: auto;
- }
- code,
- kbd,
- tt,
- var {
- font-size: 0.88889em;
- font-family: Menlo, monaco, Consolas, Lucida Console, monospace;
- }
- abbr, acronym {
- border-bottom: 1px dotted #666;
- cursor: help;
- }
- mark,
- ins {
- background: #fff9c0;
- text-decoration: none;
- }
- big {
- font-size: 125%;
- }
- a {
- text-decoration: none;
- }
- a:hover {
- text-decoration: none;
- }
- a:focus {
- text-decoration: underline;
- }
- /* Arabic */
- html[lang="ar"] .site *,
- html[lang="ary"] .site *,
- html[lang="azb"] .site *,
- html[lang="ckb"] .site *,
- html[lang="fa-IR"] .site *,
- html[lang="haz"] .site *,
- html[lang="ps"] .site * {
- font-family: Tahoma, Arial, sans-serif !important;
- }
- /* Cyrillic */
- html[lang="be"] .site *,
- html[lang="bg-BG"] .site *,
- html[lang="kk"] .site *,
- html[lang="mk-MK"] .site *,
- html[lang="mn"] .site *,
- html[lang="ru-RU"] .site *,
- html[lang="sah"] .site *,
- html[lang="sr-RS"] .site *,
- html[lang="tt-RU"] .site *,
- html[lang="uk"] .site * {
- font-family: 'Helvetica Neue', Helvetica, 'Segoe UI', Arial, sans-serif !important;
- }
- /* Chinese (Hong Kong) */
- html[lang="zh-HK"] .site * {
- font-family: -apple-system, BlinkMacSystemFont, 'PingFang HK', 'Helvetica Neue', "Microsoft YaHei New", STHeiti Light, sans-serif !important;
- }
- /* Chinese (Taiwan) */
- html[lang="zh-TW"] .site * {
- font-family: -apple-system, BlinkMacSystemFont, 'PingFang TC', 'Helvetica Neue', "Microsoft YaHei New", STHeiti Light, sans-serif !important;
- }
- /* Chinese (China) */
- html[lang="zh-CN"] .site * {
- font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', "Microsoft YaHei New", STHeiti Light, sans-serif !important;
- }
- /* Devanagari */
- html[lang="bn-BD"] .site *,
- html[lang="hi-IN"] .site *,
- html[lang="mr"] .site *,
- html[lang="ne-NP"] .site * {
- font-family: Arial, sans-serif !important;
- }
- /* Greek */
- html[lang="el"] .site * {
- font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
- }
- /* Gujarati */
- html[lang="gu"] .site * {
- font-family: Arial, sans-serif !important;
- }
- /* Hebrew */
- html[lang="he-IL"] .site * {
- font-family: 'Arial Hebrew', Arial, sans-serif !important;
- }
- /* Japanese */
- html[lang="ja"] .site * {
- font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", Meiryo, "Helvetica Neue", sans-serif !important;
- }
- /* Korean */
- html[lang="ko-KR"] .site * {
- font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', 'Nanum Gothic', Dotum, sans-serif !important;
- }
- /* Thai */
- html[lang="th"] .site * {
- font-family: 'Sukhumvit Set', 'Helvetica Neue', helvetica, arial, sans-serif !important;
- }
- /* Vietnamese */
- html[lang="vi"] .site * {
- font-family: 'Libre Franklin', sans-serif !important;
- }
- /* Elements */
- html {
- box-sizing: border-box;
- }
- ::selection {
- background-color: #bfdcea;
- }
- *,
- *:before,
- *:after {
- box-sizing: inherit;
- }
- body {
- background-color: #fff;
- }
- a {
- transition: color 110ms ease-in-out;
- color: #0073aa;
- }
- a:hover,
- a:active {
- color: #005177;
- outline: 0;
- text-decoration: none;
- }
- a:focus {
- outline: thin;
- outline-style: dotted;
- text-decoration: underline;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- clear: both;
- margin: 1rem 0;
- }
- hr {
- background-color: #767676;
- border: 0;
- height: 2px;
- }
- ul,
- ol {
- padding-right: 1rem;
- }
- ul {
- list-style: disc;
- }
- ul ul {
- list-style-type: circle;
- }
- ol {
- list-style: decimal;
- }
- li {
- line-height: 1.8;
- }
- li > ul,
- li > ol {
- padding-right: 2rem;
- }
- dt {
- font-weight: bold;
- }
- dd {
- margin: 0 1rem 1rem;
- }
- img {
- height: auto;
- max-width: 100%;
- position: relative;
- }
- figure {
- margin: 0;
- }
- blockquote {
- border-right: 2px solid #0073aa;
- margin-right: 0;
- padding: 0 1rem 0 0;
- }
- blockquote > p {
- margin: 0 0 1rem;
- }
- blockquote cite {
- color: #767676;
- }
- table {
- margin: 0 0 1rem;
- border-collapse: collapse;
- width: 100%;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- }
- table td,
- table th {
- padding: 0.5em;
- border: 1px solid #767676;
- word-break: break-all;
- }
- /* Forms */
- .button,
- button,
- input[type="button"],
- input[type="reset"],
- input[type="submit"] {
- transition: background 150ms ease-in-out;
- background: #0073aa;
- border: none;
- border-radius: 5px;
- box-sizing: border-box;
- color: #fff;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-size: 0.88889em;
- font-weight: 700;
- line-height: 1.2;
- outline: none;
- padding: 0.76rem 1rem 0.5rem;
- text-decoration: none;
- vertical-align: bottom;
- }
- .button:hover,
- button:hover,
- input[type="button"]:hover,
- input[type="reset"]:hover,
- input[type="submit"]:hover {
- background: #005177;
- cursor: pointer;
- }
- .button:visited,
- button:visited,
- input[type="button"]:visited,
- input[type="reset"]:visited,
- input[type="submit"]:visited {
- color: #fff;
- text-decoration: none;
- }
- .button:focus,
- button:focus,
- input[type="button"]:focus,
- input[type="reset"]:focus,
- input[type="submit"]:focus {
- background: #005177;
- outline: thin dotted;
- outline-offset: -4px;
- }
- input[type="text"],
- input[type="email"],
- input[type="url"],
- input[type="password"],
- input[type="search"],
- input[type="number"],
- input[type="tel"],
- input[type="range"],
- input[type="date"],
- input[type="month"],
- input[type="week"],
- input[type="time"],
- input[type="datetime"],
- input[type="datetime-local"],
- input[type="color"],
- textarea {
- -webkit-backface-visibility: hidden;
- background: #fff;
- border: solid 1px #ccc;
- box-sizing: border-box;
- outline: none;
- padding: 0.36rem 0.66rem;
- -webkit-appearance: none;
- outline-offset: 0;
- border-radius: 3px;
- }
- input[type="text"]:focus,
- input[type="email"]:focus,
- input[type="url"]:focus,
- input[type="password"]:focus,
- input[type="search"]:focus,
- input[type="number"]:focus,
- input[type="tel"]:focus,
- input[type="range"]:focus,
- input[type="date"]:focus,
- input[type="month"]:focus,
- input[type="week"]:focus,
- input[type="time"]:focus,
- input[type="datetime"]:focus,
- input[type="datetime-local"]:focus,
- input[type="color"]:focus,
- textarea:focus {
- border-color: #0073aa;
- outline: thin solid rgba(0, 115, 170, 0.15);
- outline-offset: -4px;
- }
- input[type="search"]::-webkit-search-decoration {
- display: none;
- }
- textarea {
- box-sizing: border-box;
- display: block;
- width: 100%;
- max-width: 100%;
- resize: vertical;
- }
- form p {
- margin: 1rem 0;
- }
- .contact-form label {
- font-weight: 600 !important;
- }
- .contact-form label span {
- color: #767676 !important;
- }
- /* Navigation */
- /*--------------------------------------------------------------
- ## Links
- --------------------------------------------------------------*/
- a {
- transition: color 110ms ease-in-out;
- color: #0073aa;
- }
- a:visited {
- color: #0073aa;
- }
- a:hover, a:active {
- color: #005177;
- outline: 0;
- text-decoration: none;
- }
- a:focus {
- outline: thin dotted;
- text-decoration: underline;
- }
- /*--------------------------------------------------------------
- ## Menus
- --------------------------------------------------------------*/
- /** === Main menu === */
- .main-navigation {
- display: block;
- margin-top: 0.25rem;
- width: 100%;
- /* Un-style buttons */
- /*
- * Sub-menu styles
- *
- * :focus-within needs its own selector so other similar
- * selectors don’t get ignored if a browser doesn’t recognize it
- */
- /**
- * Fade-in animation for top-level submenus
- */
- /**
- * Off-canvas touch device styles
- */
- }
- body.page .main-navigation {
- display: block;
- }
- .main-navigation > div {
- display: inline;
- }
- .main-navigation button {
- display: inline-block;
- border: none;
- padding: 0;
- margin: 0;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-weight: 700;
- line-height: 1.2;
- text-decoration: none;
- background: transparent;
- color: inherit;
- cursor: pointer;
- transition: background 250ms ease-in-out, transform 150ms ease;
- -webkit-appearance: none;
- -moz-appearance: none;
- }
- .main-navigation button:hover, .main-navigation button:focus {
- background: transparent;
- }
- .main-navigation button:focus {
- outline: 1px solid transparent;
- outline-offset: -4px;
- }
- .main-navigation button:active {
- transform: scale(0.99);
- }
- .main-navigation .main-menu {
- display: inline-block;
- margin: 0;
- padding: 0;
- }
- .main-navigation .main-menu > li {
- color: #0073aa;
- display: inline;
- position: relative;
- }
- .main-navigation .main-menu > li > a {
- font-weight: 600;
- color: #0073aa;
- margin-left: 0.5rem;
- }
- .main-navigation .main-menu > li > a + svg {
- margin-left: 0.5rem;
- }
- .main-navigation .main-menu > li > a:hover,
- .main-navigation .main-menu > li > a:hover + svg {
- color: #005177;
- }
- .main-navigation .main-menu > li.menu-item-has-children {
- display: inline-block;
- position: inherit;
- }
- @media only screen and (min-width: 768px) {
- .main-navigation .main-menu > li.menu-item-has-children {
- position: relative;
- }
- }
- .main-navigation .main-menu > li.menu-item-has-children > a {
- margin-left: 0.125rem;
- }
- .main-navigation .main-menu > li.menu-item-has-children > a:after,
- .main-navigation .main-menu > li.menu-item-has-children .menu-item-has-children > a:after {
- content: "";
- display: none;
- }
- .main-navigation .main-menu > li.menu-item-has-children .submenu-expand {
- display: inline-block;
- margin-left: 0.25rem;
- /* Priority+ Menu */
- }
- .main-navigation .main-menu > li.menu-item-has-children .submenu-expand.main-menu-more-toggle {
- position: relative;
- height: 24px;
- line-height: 1.2;
- width: 24px;
- padding: 0;
- margin-right: 0.5rem;
- }
- .main-navigation .main-menu > li.menu-item-has-children .submenu-expand.main-menu-more-toggle svg {
- height: 24px;
- width: 24px;
- top: -0.125rem;
- vertical-align: text-bottom;
- }
- .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 {
- display: none;
- }
- .main-navigation .main-menu > li.menu-item-has-children .submenu-expand svg {
- position: relative;
- top: 0.4rem;
- }
- .main-navigation .main-menu > li:last-child > a,
- .main-navigation .main-menu > li:last-child.menu-item-has-children .submenu-expand {
- margin-left: 0;
- }
- .main-navigation .sub-menu {
- background-color: #0073aa;
- color: #fff;
- list-style: none;
- padding-right: 0;
- position: absolute;
- opacity: 0;
- right: -9999px;
- z-index: 99999;
- }
- @media only screen and (min-width: 768px) {
- .main-navigation .sub-menu {
- width: auto;
- min-width: max-content;
- }
- }
- .main-navigation .sub-menu > li {
- display: block;
- float: none;
- position: relative;
- }
- .main-navigation .sub-menu > li.menu-item-has-children .submenu-expand {
- display: inline-block;
- position: absolute;
- width: calc( 24px + 1rem);
- left: 0;
- top: calc( .125 * 1rem);
- bottom: 0;
- color: white;
- line-height: 1;
- padding: calc( .5 * 1rem);
- }
- .main-navigation .sub-menu > li.menu-item-has-children .submenu-expand svg {
- top: 0;
- }
- .main-navigation .sub-menu > li.menu-item-has-children .submenu-expand {
- margin-left: 0;
- }
- @media only screen and (min-width: 768px) {
- .main-navigation .sub-menu > li.menu-item-has-children .menu-item-has-children > a:after {
- content: "\203a";
- }
- }
- .main-navigation .sub-menu > li > a,
- .main-navigation .sub-menu > li > .menu-item-link-return {
- color: #fff;
- display: block;
- line-height: 1.2;
- padding: calc( .5 * 1rem) 1rem calc( .5 * 1rem) calc( 24px + 1rem);
- white-space: nowrap;
- }
- .main-navigation .sub-menu > li > a:hover, .main-navigation .sub-menu > li > a:focus,
- .main-navigation .sub-menu > li > .menu-item-link-return:hover,
- .main-navigation .sub-menu > li > .menu-item-link-return:focus {
- background: #005177;
- }
- .main-navigation .sub-menu > li > a:hover:after, .main-navigation .sub-menu > li > a:focus:after,
- .main-navigation .sub-menu > li > .menu-item-link-return:hover:after,
- .main-navigation .sub-menu > li > .menu-item-link-return:focus:after {
- background: #005177;
- }
- .main-navigation .sub-menu > li > a:empty {
- display: none;
- }
- .main-navigation .sub-menu > li.mobile-parent-nav-menu-item {
- display: none;
- font-size: 0.88889em;
- font-weight: normal;
- }
- .main-navigation .sub-menu > li.mobile-parent-nav-menu-item svg {
- position: relative;
- top: 0.2rem;
- margin-left: calc( .25 * 1rem);
- }
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu {
- display: block;
- right: 0;
- margin-top: 0;
- opacity: 1;
- width: auto;
- min-width: 100%;
- /* Non-mobile position */
- /* Nested sub-menu dashes */
- }
- @media only screen and (min-width: 768px) {
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu {
- display: block;
- margin-top: 0;
- opacity: 1;
- position: absolute;
- right: 0;
- left: auto;
- top: auto;
- bottom: auto;
- height: auto;
- min-width: max-content;
- transform: none;
- }
- }
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu.hidden-links {
- right: 0;
- width: 100%;
- display: table;
- position: absolute;
- }
- @media only screen and (min-width: 768px) {
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu.hidden-links {
- left: 0;
- right: auto;
- display: block;
- width: max-content;
- }
- }
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu .submenu-expand {
- display: none;
- }
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu .sub-menu {
- display: block;
- margin-top: inherit;
- position: relative;
- width: 100%;
- right: 0;
- opacity: 1;
- /* Non-mobile position */
- }
- @media only screen and (min-width: 768px) {
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu .sub-menu {
- float: none;
- max-width: 100%;
- }
- }
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu .sub-menu {
- counter-reset: submenu;
- }
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus-within > .sub-menu .sub-menu > li > a::before {
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-weight: normal;
- content: "– " counters(submenu, "– ", none);
- counter-increment: submenu;
- }
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu,
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu,
- .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu {
- display: block;
- right: 0;
- margin-top: 0;
- opacity: 1;
- width: auto;
- min-width: 100%;
- /* Non-mobile position */
- /* Nested sub-menu dashes */
- }
- @media only screen and (min-width: 768px) {
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu,
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu,
- .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu {
- display: block;
- float: none;
- margin-top: 0;
- opacity: 1;
- position: absolute;
- right: 0;
- left: auto;
- top: auto;
- bottom: auto;
- height: auto;
- min-width: max-content;
- transform: none;
- }
- }
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu.hidden-links,
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu.hidden-links,
- .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu.hidden-links {
- right: 0;
- width: 100%;
- display: table;
- position: absolute;
- }
- @media only screen and (min-width: 768px) {
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu.hidden-links,
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu.hidden-links,
- .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu.hidden-links {
- left: 0;
- right: auto;
- display: table;
- width: max-content;
- }
- }
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu .submenu-expand,
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu .submenu-expand,
- .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu .submenu-expand {
- display: none;
- }
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu .sub-menu,
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu .sub-menu,
- .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu .sub-menu {
- display: block;
- margin-top: inherit;
- position: relative;
- width: 100%;
- right: 0;
- opacity: 1;
- /* Non-mobile position */
- }
- @media only screen and (min-width: 768px) {
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu .sub-menu,
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu .sub-menu,
- .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu .sub-menu {
- float: none;
- max-width: 100%;
- }
- }
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu .sub-menu,
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu .sub-menu,
- .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu .sub-menu {
- counter-reset: submenu;
- }
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):hover > .sub-menu .sub-menu > li > a::before,
- .main-navigation .main-menu .menu-item-has-children:not(.off-canvas):focus > .sub-menu .sub-menu > li > a::before,
- .main-navigation .main-menu .menu-item-has-children.is-focused:not(.off-canvas) > .sub-menu .sub-menu > li > a::before {
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-weight: normal;
- content: "– " counters(submenu, "– ", none);
- counter-increment: submenu;
- }
- .main-navigation .main-menu > .menu-item-has-children:not(.off-canvas):hover > .sub-menu {
- animation: fade_in 0.1s forwards;
- }
- .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu .submenu-expand .svg-icon {
- transform: rotate(-270deg);
- }
- .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu .sub-menu {
- opacity: 0;
- position: absolute;
- z-index: 0;
- transform: translateX(100%);
- }
- .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu li:hover,
- .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu li:focus,
- .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu li > a:hover,
- .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu li > a:focus {
- background-color: transparent;
- }
- .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu > li > a,
- .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu > li > .menu-item-link-return {
- white-space: inherit;
- }
- .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu.expanded-true {
- display: table;
- margin-top: 0;
- opacity: 1;
- padding-right: 0;
- /* Mobile position */
- right: 0;
- top: 0;
- left: 0;
- bottom: 0;
- position: fixed;
- z-index: 100000;
- /* Make sure appears above mobile admin bar */
- width: 100vw;
- height: 100vh;
- max-width: 100vw;
- transform: translateX(-100%);
- animation: slide_in_right 0.3s forwards;
- /* Prevent menu from being blocked by admin bar */
- }
- .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu.expanded-true > .mobile-parent-nav-menu-item {
- display: block;
- }
- .admin-bar .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu.expanded-true {
- top: 46px;
- height: calc( 100vh - 46px);
- /* WP core breakpoint */
- }
- .admin-bar .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu.expanded-true .sub-menu.expanded-true {
- top: 0;
- }
- @media only screen and (min-width: 782px) {
- .admin-bar .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu.expanded-true {
- top: 32px;
- height: calc( 100vh - 32px);
- }
- .admin-bar .main-navigation .main-menu .menu-item-has-children.off-canvas .sub-menu.expanded-true .sub-menu.expanded-true {
- top: 0;
- }
- }
- .main-navigation .main-menu-more:nth-child(n+3) {
- display: none;
- }
- /* Menu animation */
- @keyframes slide_in_right {
- 100% {
- transform: translateX(0%);
- }
- }
- @keyframes fade_in {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
- }
- /* Social menu */
- .social-navigation {
- margin-top: calc(1rem / 2);
- }
- .social-navigation ul.social-links-menu {
- content: "";
- display: table;
- table-layout: fixed;
- display: inline-block;
- margin: 0;
- padding: 0;
- }
- .social-navigation ul.social-links-menu li {
- display: inline-block;
- vertical-align: bottom;
- vertical-align: -webkit-baseline-middle;
- list-style: none;
- }
- .social-navigation ul.social-links-menu li:nth-child(n+2) {
- margin-right: 0.1em;
- }
- .social-navigation ul.social-links-menu li a {
- border-bottom: 1px solid transparent;
- display: block;
- color: #1e1e1e;
- margin-bottom: -1px;
- transition: opacity 110ms ease-in-out;
- }
- .social-navigation ul.social-links-menu li a:hover, .social-navigation ul.social-links-menu li a:active {
- color: #1e1e1e;
- opacity: 0.6;
- }
- .social-navigation ul.social-links-menu li a:focus {
- color: #1e1e1e;
- opacity: 1;
- border-bottom: 1px solid #1e1e1e;
- }
- .social-navigation ul.social-links-menu li a svg {
- display: block;
- width: 32px;
- height: 32px;
- }
- .social-navigation ul.social-links-menu li a svg#ui-icon-link {
- transform: rotate(45deg);
- }
- @media only screen and (min-width: 768px) {
- .site-title + .social-navigation,
- .site-description + .social-navigation {
- margin-top: calc(1rem / 5);
- }
- }
- /** === Footer menu === */
- .footer-navigation {
- display: inline;
- }
- .footer-navigation > div {
- display: inline;
- }
- .footer-navigation .footer-menu {
- display: inline;
- padding-right: 0;
- }
- .footer-navigation .footer-menu li {
- display: inline;
- margin-left: 1rem;
- }
- /*--------------------------------------------------------------
- ## Next / Previous
- --------------------------------------------------------------*/
- /* Next/Previous navigation */
- .post-navigation {
- margin: calc(3 * 1rem) 1rem 1rem;
- }
- @media only screen and (min-width: 768px) {
- .post-navigation {
- margin: calc(3 * 1rem) auto calc(1rem / 2);
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .post-navigation {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- .post-navigation .nav-links {
- max-width: 100%;
- display: flex;
- flex-direction: column;
- }
- @media only screen and (min-width: 768px) {
- .post-navigation .nav-links {
- flex-direction: row;
- }
- }
- .post-navigation .nav-links a .meta-nav {
- color: #1e1e1e;
- -webkit-user-select: none;
- user-select: none;
- }
- .post-navigation .nav-links a .meta-nav:before, .post-navigation .nav-links a .meta-nav:after {
- display: none;
- content: "—";
- width: 2em;
- color: #1e1e1e;
- height: 1em;
- }
- .post-navigation .nav-links a .post-title {
- -webkit-hyphens: auto;
- hyphens: auto;
- }
- .post-navigation .nav-links a:hover {
- color: #005177;
- }
- .post-navigation .nav-links .nav-previous {
- order: 2;
- }
- .post-navigation .nav-links .nav-previous + .nav-next {
- margin-bottom: 1rem;
- }
- .post-navigation .nav-links .nav-previous .meta-nav:before {
- display: inline;
- }
- @media only screen and (min-width: 768px) {
- .post-navigation .nav-links .nav-next {
- order: 2;
- padding-right: 1rem;
- margin-right: auto;
- }
- }
- .post-navigation .nav-links .nav-next .meta-nav:after {
- display: inline;
- }
- .pagination .nav-links {
- display: flex;
- flex-wrap: wrap;
- padding: 0 calc(.5 * 1rem);
- }
- .pagination .nav-links > * {
- padding: calc(.5 * 1rem);
- }
- .pagination .nav-links > *.dots, .pagination .nav-links > *.prev {
- padding-right: 0;
- }
- .pagination .nav-links > *.dots, .pagination .nav-links > *.next {
- padding-left: 0;
- }
- .pagination .nav-links a:focus {
- text-decoration: underline;
- outline-offset: -1px;
- }
- .pagination .nav-links a:focus.prev, .pagination .nav-links a:focus.next {
- text-decoration: none;
- }
- .pagination .nav-links a:focus.prev .nav-prev-text,
- .pagination .nav-links a:focus.prev .nav-next-text, .pagination .nav-links a:focus.next .nav-prev-text,
- .pagination .nav-links a:focus.next .nav-next-text {
- text-decoration: underline;
- }
- .pagination .nav-links .nav-next-text,
- .pagination .nav-links .nav-prev-text {
- display: none;
- }
- @media only screen and (min-width: 768px) {
- .pagination .nav-links {
- margin-right: calc(10% + 60px);
- padding: 0;
- }
- .pagination .nav-links .prev > *,
- .pagination .nav-links .next > * {
- display: inline-block;
- vertical-align: text-bottom;
- }
- .pagination .nav-links > * {
- padding: 1rem;
- }
- }
- .comment-navigation .nav-links {
- display: flex;
- flex-direction: row;
- }
- .comment-navigation .nav-previous,
- .comment-navigation .nav-next {
- min-width: 50%;
- width: 100%;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-weight: bold;
- }
- .comment-navigation .nav-previous .secondary-text,
- .comment-navigation .nav-next .secondary-text {
- display: none;
- }
- @media only screen and (min-width: 768px) {
- .comment-navigation .nav-previous .secondary-text,
- .comment-navigation .nav-next .secondary-text {
- display: inline;
- }
- }
- .comment-navigation .nav-previous svg,
- .comment-navigation .nav-next svg {
- vertical-align: middle;
- position: relative;
- margin: 0 -0.35em;
- top: -1px;
- }
- .comment-navigation .nav-next {
- text-align: left;
- }
- /* Accessibility */
- /* Text meant only for screen readers. */
- .screen-reader-text {
- border: 0;
- clip: rect(1px, 1px, 1px, 1px);
- -webkit-clip-path: inset(50%);
- clip-path: inset(50%);
- height: 1px;
- margin: -1px;
- overflow: hidden;
- padding: 0;
- position: absolute !important;
- width: 1px;
- word-wrap: normal !important;
- /* Many screen reader and browser combinations announce broken words as they would appear visually. */
- }
- .screen-reader-text:focus {
- background-color: #0d1b24;
- border-radius: 3px;
- box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
- clip: auto !important;
- -webkit-clip-path: none;
- clip-path: none;
- color: #21759b;
- display: block;
- font-size: 14px;
- font-size: 0.875rem;
- font-weight: bold;
- height: auto;
- right: 5px;
- line-height: normal;
- padding: 15px 23px 14px;
- text-decoration: none;
- top: 5px;
- width: auto;
- z-index: 100000;
- /* Above WP toolbar. */
- }
- /* Do not show the outline on the skip link target. */
- #content[tabindex="-1"]:focus {
- outline: 0;
- }
- /* Alignments */
- .alignleft {
- float: left;
- margin-right: 1rem;
- }
- @media only screen and (min-width: 768px) {
- .alignleft {
- margin-right: calc(2 * 1rem);
- }
- }
- .alignright {
- float: right;
- margin-left: 1rem;
- }
- @media only screen and (min-width: 768px) {
- .alignright {
- margin-left: calc(2 * 1rem);
- }
- }
- .aligncenter {
- clear: both;
- display: block;
- margin-right: auto;
- margin-left: auto;
- }
- /* Clearings */
- .clear:before,
- .clear:after,
- .entry-content:before,
- .entry-content:after,
- .comment-content:before,
- .comment-content:after,
- .site-header:before,
- .site-header:after,
- .site-content:before,
- .site-content:after,
- .site-footer:before,
- .site-footer:after {
- content: "";
- display: table;
- table-layout: fixed;
- }
- .clear:after,
- .entry-content:after,
- .comment-content:after,
- .site-header:after,
- .site-content:after,
- .site-footer:after {
- clear: both;
- }
- /* Layout */
- /** === Layout === */
- #page {
- width: 100%;
- }
- .site-content {
- overflow: hidden;
- }
- /* Content */
- /*--------------------------------------------------------------
- ## Header
- --------------------------------------------------------------*/
- .site-header {
- padding: 1rem;
- }
- .site-header.featured-image {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- min-height: 90vh;
- }
- .site-header.featured-image .site-branding-container {
- margin-bottom: auto;
- }
- @media only screen and (min-width: 768px) {
- .site-header {
- margin: 0;
- padding: 2rem 0;
- }
- .site-header.featured-image {
- min-height: 100vh;
- margin-bottom: 3rem;
- }
- }
- .site-branding {
- display: flex;
- flex-wrap: wrap;
- align-items: flex-start;
- justify-content: space-between;
- color: #767676;
- position: relative;
- }
- @media only screen and (min-width: 768px) {
- .site-branding {
- margin: 0 calc(10% + 60px);
- }
- }
- .site-logo {
- margin-left: 1rem;
- }
- .site-logo .custom-logo-link {
- box-sizing: content-box;
- display: block;
- overflow: hidden;
- }
- .site-logo .custom-logo-link .custom-logo {
- max-height: 60px;
- width: auto;
- }
- .site-title,
- .wp-block-a8c-site-title,
- .wp-block-a8c-site-title:focus {
- color: #1e1e1e;
- font-size: 1.125em;
- flex: 1 1 auto;
- margin: 0;
- }
- .site-title a,
- .wp-block-a8c-site-title a,
- .wp-block-a8c-site-title:focus a {
- color: #1e1e1e;
- }
- .site-title a:link, .site-title a:visited,
- .wp-block-a8c-site-title a:link,
- .wp-block-a8c-site-title a:visited,
- .wp-block-a8c-site-title:focus a:link,
- .wp-block-a8c-site-title:focus a:visited {
- color: #1e1e1e;
- }
- .site-title a:hover,
- .wp-block-a8c-site-title a:hover,
- .wp-block-a8c-site-title:focus a:hover {
- color: #4a4a4a;
- }
- .featured-image .site-title, .featured-image
- .wp-block-a8c-site-title, .featured-image
- .wp-block-a8c-site-title:focus {
- margin: 0;
- }
- /* Adjust Crimson Text font vertical alignment in Firefox */
- @-moz-document url-prefix() {
- .site-title,
- .wp-block-a8c-site-title,
- .wp-block-a8c-site-title:focus {
- padding-top: 8px;
- }
- }
- .site-description,
- .wp-block-a8c-site-description,
- .wp-block-a8c-site-description:focus {
- color: #1e1e1e;
- flex: initial;
- font-size: 0.71111em;
- font-weight: normal;
- margin: 7px 0 0;
- }
- @media only screen and (min-width: 768px) {
- .site-description,
- .wp-block-a8c-site-description,
- .wp-block-a8c-site-description:focus {
- text-align: left;
- }
- }
- .site-header.featured-image {
- /* Hide overflow for overflowing featured image */
- overflow: hidden;
- /* Need relative positioning to properly align layers. */
- position: relative;
- /* Add text shadow to text, to increase readability. */
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
- /* Set white text color when featured image is set. */
- /* add focus state to social media icons */
- /* Entry header */
- /* Make sure important elements are above pseudo elements used for effects. */
- /* Set up image filter layer positioning */
- /* Background & Effects */
- /* Shared background settings between pseudo elements. */
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- /* The intensity of each blend mode is controlled via layer opacity. */
- /* Second layer: screen. */
- /* Third layer: multiply. */
- /* When image filters are inactive, a black overlay is added. */
- /* Fourth layer: overlay. */
- /* Fifth layer: readability overlay */
- }
- .site-header.featured-image .site-branding .site-title,
- .site-header.featured-image .site-branding .site-description,
- .site-header.featured-image .main-navigation a:after,
- .site-header.featured-image .main-navigation .main-menu > li.menu-item-has-children:after,
- .site-header.featured-image .main-navigation li,
- .site-header.featured-image .social-navigation li,
- .site-header.featured-image .entry-meta,
- .site-header.featured-image .entry-title {
- color: #fff;
- }
- .site-header.featured-image .main-navigation a,
- .site-header.featured-image .main-navigation a + svg,
- .site-header.featured-image .social-navigation a,
- .site-header.featured-image .site-title a,
- .site-header.featured-image .site-featured-image a {
- color: #fff;
- transition: opacity 110ms ease-in-out;
- }
- .site-header.featured-image .main-navigation a:hover, .site-header.featured-image .main-navigation a:active,
- .site-header.featured-image .main-navigation a:hover + svg,
- .site-header.featured-image .main-navigation a:active + svg,
- .site-header.featured-image .main-navigation a + svg:hover,
- .site-header.featured-image .main-navigation a + svg:active,
- .site-header.featured-image .main-navigation a + svg:hover + svg,
- .site-header.featured-image .main-navigation a + svg:active + svg,
- .site-header.featured-image .social-navigation a:hover,
- .site-header.featured-image .social-navigation a:active,
- .site-header.featured-image .social-navigation a:hover + svg,
- .site-header.featured-image .social-navigation a:active + svg,
- .site-header.featured-image .site-title a:hover,
- .site-header.featured-image .site-title a:active,
- .site-header.featured-image .site-title a:hover + svg,
- .site-header.featured-image .site-title a:active + svg,
- .site-header.featured-image .site-featured-image a:hover,
- .site-header.featured-image .site-featured-image a:active,
- .site-header.featured-image .site-featured-image a:hover + svg,
- .site-header.featured-image .site-featured-image a:active + svg {
- color: #fff;
- opacity: 0.6;
- }
- .site-header.featured-image .main-navigation a:focus,
- .site-header.featured-image .main-navigation a:focus + svg,
- .site-header.featured-image .main-navigation a + svg:focus,
- .site-header.featured-image .main-navigation a + svg:focus + svg,
- .site-header.featured-image .social-navigation a:focus,
- .site-header.featured-image .social-navigation a:focus + svg,
- .site-header.featured-image .site-title a:focus,
- .site-header.featured-image .site-title a:focus + svg,
- .site-header.featured-image .site-featured-image a:focus,
- .site-header.featured-image .site-featured-image a:focus + svg {
- color: #fff;
- }
- .site-header.featured-image .social-navigation a:focus {
- color: #fff;
- opacity: 1;
- border-bottom: 1px solid #fff;
- }
- .site-header.featured-image .social-navigation svg,
- .site-header.featured-image .site-featured-image svg {
- /* Use -webkit- only if supporting: Chrome < 54, iOS < 9.3, Android < 4.4.4 */
- filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
- }
- .site-header.featured-image .site-featured-image {
- /* First layer: grayscale. */
- }
- .site-header.featured-image .site-featured-image .post-thumbnail img {
- height: auto;
- right: 50%;
- max-width: 1000%;
- min-height: 100%;
- min-width: 100vw;
- position: absolute;
- top: 50%;
- transform: translateX(50%) translateY(-50%);
- width: auto;
- z-index: 1;
- /* When image filters are active, make it grayscale to colorize it blue. */
- }
- @supports ((-o-object-fit: cover) or (object-fit: cover)) {
- .site-header.featured-image .site-featured-image .post-thumbnail img {
- height: 100%;
- right: 0;
- -o-object-fit: cover;
- object-fit: cover;
- top: 0;
- transform: none;
- width: 100%;
- }
- }
- .image-filters-enabled .site-header.featured-image .site-featured-image .post-thumbnail img {
- filter: grayscale(100%);
- }
- .site-header.featured-image .site-featured-image .entry-header {
- margin-top: calc( 4 * 1rem);
- margin-bottom: 0;
- margin-right: 0;
- margin-left: 0;
- /* Entry meta */
- }
- @media only screen and (min-width: 768px) {
- .site-header.featured-image .site-featured-image .entry-header {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .site-header.featured-image .site-featured-image .entry-header {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 768px) {
- .site-header.featured-image .site-featured-image .entry-header {
- margin-right: auto;
- margin-left: auto;
- }
- }
- .site-header.featured-image .site-featured-image .entry-header .entry-title:before {
- background: #fff;
- }
- .site-header.featured-image .site-featured-image .entry-header .entry-meta {
- font-weight: 500;
- }
- .site-header.featured-image .site-featured-image .entry-header .entry-meta > span {
- margin-left: 1rem;
- display: inline-block;
- }
- .site-header.featured-image .site-featured-image .entry-header .entry-meta > span:last-child {
- margin-left: 0;
- }
- .site-header.featured-image .site-featured-image .entry-header .entry-meta a {
- transition: color 110ms ease-in-out;
- color: currentColor;
- }
- .site-header.featured-image .site-featured-image .entry-header .entry-meta a:hover {
- text-decoration: none;
- }
- .site-header.featured-image .site-featured-image .entry-header .entry-meta .svg-icon {
- position: relative;
- display: inline-block;
- vertical-align: middle;
- margin-left: 0.5em;
- }
- .site-header.featured-image .site-featured-image .entry-header .entry-meta .discussion-avatar-list {
- display: none;
- }
- @media only screen and (min-width: 768px) {
- .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta {
- display: flex;
- position: relative;
- }
- .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-title {
- padding-left: calc(1 * (100vw / 12) + 1rem);
- }
- .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta .comment-count {
- position: absolute;
- left: 0;
- }
- .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta .discussion-avatar-list {
- display: block;
- position: absolute;
- bottom: 100%;
- }
- }
- .site-header.featured-image .site-branding {
- position: relative;
- z-index: 10;
- }
- .site-header.featured-image .site-featured-image .entry-header {
- position: relative;
- z-index: 9;
- }
- .site-header.featured-image .site-branding-container:after,
- .site-header.featured-image .site-featured-image:before,
- .site-header.featured-image .site-featured-image:after, .site-header.featured-image:after {
- display: block;
- position: absolute;
- top: 0;
- right: 0;
- content: "\020";
- width: 100%;
- height: 100%;
- }
- .image-filters-enabled .site-header.featured-image .site-featured-image:before {
- background: #0073aa;
- mix-blend-mode: screen;
- opacity: 0.1;
- }
- .site-header.featured-image .site-featured-image:after {
- background: #000;
- mix-blend-mode: multiply;
- opacity: .7;
- /* When image filters are active, a blue overlay is added. */
- }
- .image-filters-enabled .site-header.featured-image .site-featured-image:after {
- background: #0073aa;
- opacity: .8;
- z-index: 3;
- /* Browsers supporting mix-blend-mode don't need opacity < 1 */
- }
- @supports (mix-blend-mode: multiply) {
- .image-filters-enabled .site-header.featured-image .site-featured-image:after {
- opacity: 1;
- }
- }
- .image-filters-enabled .site-header.featured-image .site-branding-container:after {
- background: rgba(0, 0, 0, 0.35);
- mix-blend-mode: overlay;
- opacity: 0.5;
- z-index: 4;
- /* Browsers supporting mix-blend-mode can have a light overlay */
- }
- @supports (mix-blend-mode: overlay) {
- .image-filters-enabled .site-header.featured-image .site-branding-container:after {
- background: rgba(255, 255, 255, 0.35);
- }
- }
- .site-header.featured-image:after {
- background: #000;
- /**
- * Add a transition to the readability overlay, to add a subtle
- * but smooth effect when resizing the screen.
- */
- transition: opacity 1200ms ease-in-out;
- opacity: 0.7;
- z-index: 5;
- /* When image filters are active, a blue overlay is added. */
- }
- .image-filters-enabled .site-header.featured-image:after {
- background: #000e14;
- opacity: 0.38;
- }
- @media only screen and (min-width: 768px) {
- .image-filters-enabled .site-header.featured-image:after {
- opacity: 0.18;
- }
- }
- .site-header.featured-image ::selection {
- background: rgba(255, 255, 255, 0.17);
- }
- /*--------------------------------------------------------------
- ## Posts and pages
- --------------------------------------------------------------*/
- .sticky {
- display: block;
- }
- .sticky-post {
- background: #0073aa;
- color: #fff;
- display: inline-block;
- font-weight: bold;
- line-height: 1;
- padding: .25rem;
- z-index: 1;
- }
- .updated:not(.published) {
- display: none;
- }
- .page-links {
- clear: both;
- margin: 0 0 calc(1.5 * 1rem);
- }
- .entry {
- margin-top: calc(6 * 1rem);
- }
- .entry:first-of-type {
- margin-top: 0;
- }
- .entry .entry-header {
- margin: calc(3 * 1rem) 1rem 1rem;
- position: relative;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-header {
- margin: calc(3 * 1rem) auto 32px;
- }
- }
- @media only screen and (min-width: 768px) and (min-width: 768px) {
- .entry .entry-header {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 768px) and (min-width: 1168px) {
- .entry .entry-header {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .entry .entry-header {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- .entry .entry-title {
- margin: 0;
- margin-bottom: 32px;
- }
- .entry .entry-title a {
- color: inherit;
- }
- .entry .entry-title a:hover {
- color: #4a4a4a;
- }
- .entry .entry-meta,
- .entry .entry-footer {
- color: #767676;
- font-weight: 500;
- }
- .entry .entry-meta > span,
- .entry .entry-footer > span {
- margin-left: 1rem;
- display: inline-block;
- }
- .entry .entry-meta > span:last-child,
- .entry .entry-footer > span:last-child {
- margin-left: 0;
- }
- .entry .entry-meta a,
- .entry .entry-footer a {
- transition: color 110ms ease-in-out;
- color: currentColor;
- }
- .entry .entry-meta a:hover,
- .entry .entry-footer a:hover {
- text-decoration: none;
- color: #0073aa;
- }
- .entry .entry-meta .svg-icon,
- .entry .entry-footer .svg-icon {
- position: relative;
- display: inline-block;
- vertical-align: middle;
- margin-left: 0.5em;
- }
- .entry .entry-meta {
- margin: 1rem auto;
- }
- .entry .entry-footer {
- margin: calc(2 * 1rem) 1rem 1rem;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-footer {
- margin: 1rem auto calc(3 * 1rem);
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .entry .entry-footer {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- .entry .post-thumbnail {
- margin: 1rem;
- }
- @media only screen and (min-width: 768px) {
- .entry .post-thumbnail {
- margin: 1rem calc(10% + 60px);
- }
- }
- .entry .post-thumbnail:focus {
- outline: none;
- }
- .entry .post-thumbnail .post-thumbnail-inner {
- display: block;
- }
- .entry .post-thumbnail .post-thumbnail-inner img {
- position: relative;
- display: block;
- width: 100%;
- }
- .image-filters-enabled .entry .post-thumbnail {
- position: relative;
- display: block;
- }
- .image-filters-enabled .entry .post-thumbnail .post-thumbnail-inner {
- filter: grayscale(100%);
- }
- .image-filters-enabled .entry .post-thumbnail .post-thumbnail-inner:after {
- background: rgba(0, 0, 0, 0.35);
- content: "";
- display: block;
- height: 100%;
- opacity: .5;
- pointer-events: none;
- position: absolute;
- top: 0;
- width: 100%;
- z-index: 4;
- }
- @supports (mix-blend-mode: multiply) {
- .image-filters-enabled .entry .post-thumbnail .post-thumbnail-inner:after {
- display: none;
- }
- }
- .image-filters-enabled .entry .post-thumbnail:before, .image-filters-enabled .entry .post-thumbnail:after {
- position: absolute;
- display: block;
- width: 100%;
- height: 100%;
- top: 0;
- right: 0;
- content: "\020";
- pointer-events: none;
- }
- .image-filters-enabled .entry .post-thumbnail:before {
- background: #0073aa;
- mix-blend-mode: screen;
- opacity: 0.1;
- z-index: 2;
- }
- .image-filters-enabled .entry .post-thumbnail:after {
- background: #0073aa;
- mix-blend-mode: multiply;
- opacity: .8;
- z-index: 3;
- /* Browsers supporting mix-blend-mode don't need opacity < 1 */
- }
- @supports (mix-blend-mode: multiply) {
- .image-filters-enabled .entry .post-thumbnail:after {
- opacity: 1;
- }
- }
- .entry .entry-content,
- .entry .entry-summary {
- max-width: calc(100% - (2 * 1rem));
- margin: 0 1rem;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content,
- .entry .entry-summary {
- max-width: 80%;
- margin: 0 10%;
- padding: 0 60px;
- }
- }
- .entry .entry-content p {
- word-wrap: break-word;
- }
- .entry .entry-content .more-link {
- transition: color 110ms ease-in-out;
- display: inline;
- color: inherit;
- }
- .entry .entry-content .more-link:after {
- content: "←";
- margin-right: 0.5em;
- }
- .entry .entry-content .more-link:hover {
- color: #0073aa;
- text-decoration: none;
- }
- .entry .entry-content a {
- text-decoration: underline;
- }
- .entry .entry-content a.button, .entry .entry-content a:hover {
- text-decoration: none;
- }
- .entry .entry-content a.button {
- display: inline-block;
- }
- .entry .entry-content a.button:hover {
- background: #005177;
- color: #fff;
- cursor: pointer;
- }
- .entry .entry-content > iframe[style] {
- margin: 32px 0 !important;
- max-width: 100% !important;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content > iframe[style] {
- max-width: calc(8 * (100vw / 12) - 28px) !important;
- }
- }
- @media only screen and (min-width: 1168px) {
- .entry .entry-content > iframe[style] {
- max-width: calc(6 * (100vw / 12) - 28px) !important;
- }
- }
- .entry .entry-content .page-links a {
- margin: calc(0.5 * 1rem);
- text-decoration: none;
- }
- .entry .entry-content .wp-audio-shortcode {
- max-width: calc(100vw - (2 * 1rem));
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-audio-shortcode {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .entry .entry-content .wp-audio-shortcode {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- /* Author description */
- .author-bio {
- margin: calc(2 * 1rem) 1rem 1rem;
- }
- @media only screen and (min-width: 768px) {
- .author-bio {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .author-bio {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 768px) {
- .author-bio {
- margin: calc(3 * 1rem) calc(10% + 60px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .author-bio {
- margin: calc(3 * 1rem) auto;
- }
- }
- .author-bio .author-title {
- display: inline;
- }
- .author-bio .author-title:before {
- background: #767676;
- content: "\020";
- display: block;
- height: 2px;
- margin: 1rem 0;
- width: 1em;
- }
- .author-bio .author-description {
- display: inline;
- color: #767676;
- font-size: 1.125em;
- line-height: 1.2;
- }
- .author-bio .author-description .author-link {
- display: inline-block;
- }
- .author-bio .author-description .author-link:hover {
- color: #005177;
- text-decoration: none;
- }
- /*--------------------------------------------------------------
- ## Comments
- --------------------------------------------------------------*/
- .comment-content a {
- word-wrap: break-word;
- }
- .bypostauthor {
- display: block;
- }
- .comments-area {
- margin: calc(2 * 1rem) 1rem;
- /* Add extra margin when the comments section is located immediately after the
- * post itself (this happens on pages).
- */
- }
- @media only screen and (min-width: 768px) {
- .comments-area {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .comments-area {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 768px) {
- .comments-area {
- margin: calc(3 * 1rem) auto;
- }
- }
- .comments-area > * {
- margin-top: calc(2 * 1rem);
- margin-bottom: calc(2 * 1rem);
- }
- @media only screen and (min-width: 768px) {
- .comments-area > * {
- margin-top: calc(3 * 1rem);
- margin-bottom: calc(3 * 1rem);
- }
- }
- .entry + .comments-area {
- margin-top: calc(3 * 1rem);
- }
- @media only screen and (min-width: 768px) {
- .comments-area .comments-title-wrap {
- align-items: baseline;
- display: flex;
- justify-content: space-between;
- }
- }
- .comments-area .comments-title-wrap .comments-title {
- margin: 0;
- }
- @media only screen and (min-width: 768px) {
- .comments-area .comments-title-wrap .comments-title {
- flex: 1 0 calc(3 * (100vw / 12));
- }
- }
- @media only screen and (min-width: 768px) {
- .comments-area .comments-title-wrap .discussion-meta {
- flex: 0 0 calc(2 * (100vw / 12));
- margin-right: 1rem;
- }
- }
- #comment {
- max-width: 100%;
- box-sizing: border-box;
- }
- #respond {
- position: relative;
- }
- #respond .comment-user-avatar {
- margin: 1rem 0 -1rem;
- }
- #respond .comment .comment-form {
- padding-right: 0;
- }
- #respond > small {
- display: block;
- font-size: 22px;
- position: absolute;
- right: calc(1rem + 100%);
- top: calc(-3.5 * 1rem);
- width: calc(100vw / 12);
- }
- #comments > .comments-title:last-child {
- display: none;
- }
- .comment-form-flex {
- display: flex;
- flex-direction: column;
- }
- .comment-form-flex .comments-title {
- display: none;
- margin: 0;
- order: 1;
- }
- .comment-form-flex #respond {
- order: 2;
- }
- .comment-form-flex #respond + .comments-title {
- display: block;
- }
- .comment-list {
- list-style: none;
- padding: 0;
- }
- .comment-list .children {
- margin: 0;
- padding: 0 1rem 0 0;
- }
- .comment-list > .comment:first-child {
- margin-top: 0;
- }
- .comment-list .pingback .comment-body,
- .comment-list .trackback .comment-body {
- color: #767676;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-size: 0.71111em;
- font-weight: 500;
- margin-top: 1rem;
- margin-bottom: 1rem;
- }
- .comment-list .pingback .comment-body a:not(.comment-edit-link),
- .comment-list .trackback .comment-body a:not(.comment-edit-link) {
- font-weight: bold;
- font-size: 19.55556px;
- line-height: 1.5;
- padding-left: 0.5rem;
- display: block;
- }
- .comment-list .pingback .comment-body .comment-edit-link,
- .comment-list .trackback .comment-body .comment-edit-link {
- color: #767676;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-weight: 500;
- }
- #respond + .comment-reply {
- display: none;
- }
- .comment-reply .comment-reply-link {
- display: inline-block;
- }
- .comment {
- list-style: none;
- position: relative;
- }
- @media only screen and (min-width: 768px) {
- .comment {
- padding-right: calc(.5 * (1rem + calc(100vw / 12 )));
- }
- .comment.depth-1,
- .comment .children {
- padding-right: 0;
- }
- .comment.depth-1 {
- margin-right: calc(3.25 * 1rem);
- }
- }
- .comment .comment-body {
- margin: calc(2 * 1rem) 0 0;
- }
- .comment .comment-meta {
- position: relative;
- }
- .comment .comment-author .avatar {
- float: right;
- margin-left: 1rem;
- position: relative;
- }
- @media only screen and (min-width: 768px) {
- .comment .comment-author .avatar {
- float: inherit;
- margin-left: inherit;
- position: absolute;
- top: 0;
- left: calc(100% + 1rem);
- }
- }
- .comment .comment-author .fn {
- position: relative;
- display: block;
- }
- .comment .comment-author .fn a {
- color: inherit;
- }
- .comment .comment-author .fn a:hover {
- color: #005177;
- }
- .comment .comment-author .post-author-badge {
- border-radius: 100%;
- display: block;
- height: 18px;
- position: absolute;
- background: #008fd3;
- left: calc(100% - 2.5rem);
- top: -3px;
- width: 18px;
- }
- @media only screen and (min-width: 768px) {
- .comment .comment-author .post-author-badge {
- left: calc(100% + 0.75rem);
- }
- }
- .comment .comment-author .post-author-badge svg {
- width: inherit;
- height: inherit;
- display: block;
- fill: white;
- transform: scale(0.875);
- }
- .comment .comment-metadata > a,
- .comment .comment-metadata .comment-edit-link {
- display: inline;
- font-weight: 500;
- color: #767676;
- vertical-align: baseline;
- }
- .comment .comment-metadata > a time,
- .comment .comment-metadata .comment-edit-link time {
- vertical-align: baseline;
- }
- .comment .comment-metadata > a:hover,
- .comment .comment-metadata .comment-edit-link:hover {
- color: #005177;
- text-decoration: none;
- }
- .comment .comment-metadata > * {
- display: inline-block;
- }
- .comment .comment-metadata .edit-link-sep {
- color: #767676;
- margin: 0 0.2em;
- vertical-align: baseline;
- }
- .comment .comment-metadata .edit-link {
- color: #767676;
- }
- .comment .comment-metadata .edit-link svg {
- transform: scale(0.8);
- vertical-align: baseline;
- margin-left: 0.1em;
- }
- .comment .comment-metadata .comment-edit-link {
- position: relative;
- padding-right: 1rem;
- margin-right: -1rem;
- z-index: 1;
- }
- .comment .comment-metadata .comment-edit-link:hover {
- color: #0073aa;
- }
- .comment .comment-content {
- margin: 1rem 0;
- }
- @media only screen and (min-width: 1168px) {
- .comment .comment-content {
- padding-left: 1rem;
- }
- }
- .comment .comment-content > *:first-child {
- margin-top: 0;
- }
- .comment .comment-content > *:last-child {
- margin-bottom: 0;
- }
- .comment .comment-content blockquote {
- margin-right: 0;
- }
- .comment .comment-content a {
- text-decoration: underline;
- }
- .comment .comment-content a:hover {
- text-decoration: none;
- }
- .comment-reply-link,
- #cancel-comment-reply-link {
- font-weight: 500;
- }
- .comment-reply-link:hover,
- #cancel-comment-reply-link:hover {
- color: #005177;
- }
- .discussion-avatar-list {
- content: "";
- display: table;
- table-layout: fixed;
- margin: 0;
- padding: 0;
- }
- .discussion-avatar-list li {
- position: relative;
- list-style: none;
- margin: 0 0 0 -8px;
- padding: 0;
- float: right;
- }
- .discussion-avatar-list .comment-user-avatar img {
- height: calc(1.5 * 1rem);
- width: calc(1.5 * 1rem);
- }
- .discussion-meta .discussion-meta-info {
- margin: 0;
- }
- .discussion-meta .discussion-meta-info .svg-icon {
- vertical-align: middle;
- fill: currentColor;
- transform: scale(0.6) scaleX(-1) translateY(-0.1em);
- margin-right: -0.25rem;
- }
- .comment-form .comment-notes,
- .comment-form label {
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-size: 0.71111em;
- color: #767676;
- }
- @media only screen and (min-width: 768px) {
- .comment-form .comment-form-author:not(.comment-form-field),
- .comment-form .comment-form-email:not(.comment-form-field) {
- width: calc(50% - 0.5rem);
- float: right;
- }
- }
- @media only screen and (min-width: 768px) {
- .comment-form .comment-form-email:not(.comment-form-field) {
- margin-right: 1rem;
- }
- }
- .comment-form input[name="author"],
- .comment-form input[name="email"],
- .comment-form input[name="url"] {
- display: block;
- width: 100%;
- }
- /*--------------------------------------------------------------
- ## Archives
- --------------------------------------------------------------*/
- .archive .page-header,
- .search .page-header,
- .error404 .page-header {
- margin: 1rem 1rem calc(3 * 1rem);
- }
- @media only screen and (min-width: 768px) {
- .archive .page-header,
- .search .page-header,
- .error404 .page-header {
- margin: 0 calc(10% + 60px) calc(10% + 60px);
- }
- }
- .archive .page-header .page-title,
- .search .page-header .page-title,
- .error404 .page-header .page-title {
- color: #767676;
- display: inline;
- letter-spacing: normal;
- }
- .archive .page-header .page-title:before,
- .search .page-header .page-title:before,
- .error404 .page-header .page-title:before {
- display: none;
- }
- .archive .page-header .search-term,
- .archive .page-header .page-description,
- .search .page-header .search-term,
- .search .page-header .page-description,
- .error404 .page-header .search-term,
- .error404 .page-header .page-description {
- display: inherit;
- clear: both;
- }
- .archive .page-header .search-term:after,
- .archive .page-header .page-description:after,
- .search .page-header .search-term:after,
- .search .page-header .page-description:after,
- .error404 .page-header .search-term:after,
- .error404 .page-header .page-description:after {
- content: ".";
- font-weight: bold;
- color: #767676;
- }
- .archive .page-header .page-description {
- display: block;
- color: #1e1e1e;
- font-size: 1em;
- }
- @media only screen and (min-width: 768px) {
- .hfeed .entry .entry-header {
- margin: calc(3 * 1rem) auto calc(1rem / 2);
- }
- }
- /* 404 & Not found */
- .error-404.not-found .page-title,
- .error-404.not-found .page-content,
- .no-results.not-found .page-title,
- .no-results.not-found .page-content {
- margin: calc(3 * 1rem) 1rem;
- }
- @media only screen and (min-width: 768px) {
- .error-404.not-found .page-title,
- .error-404.not-found .page-content,
- .no-results.not-found .page-title,
- .no-results.not-found .page-content {
- margin: calc(3 * 1rem) calc(10% + 60px) calc(1rem / 2);
- }
- }
- .error-404.not-found .search-submit,
- .no-results.not-found .search-submit {
- vertical-align: middle;
- margin: 1rem 0;
- }
- .error-404.not-found .search-field,
- .no-results.not-found .search-field {
- width: 100%;
- }
- /*--------------------------------------------------------------
- ## Footer
- --------------------------------------------------------------*/
- /* Site footer */
- #colophon .widget-area,
- #colophon .site-info {
- margin: calc(2 * 1rem) 1rem;
- }
- @media only screen and (min-width: 768px) {
- #colophon .widget-area,
- #colophon .site-info {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- #colophon .widget-area,
- #colophon .site-info {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 768px) {
- #colophon .widget-area,
- #colophon .site-info {
- margin: calc(1.5 * 1rem) auto;
- }
- }
- #colophon .widget-column {
- display: flex;
- flex-wrap: wrap;
- }
- #colophon .widget-column .widget {
- width: 100%;
- }
- @media only screen and (min-width: 1168px) {
- #colophon .widget-column .widget {
- margin-left: calc(3 * 1rem);
- width: calc(50% - (3 * 1rem));
- }
- }
- #colophon .site-info {
- color: #767676;
- }
- #colophon .site-info a {
- color: inherit;
- }
- #colophon .site-info a:hover {
- text-decoration: none;
- color: #0073aa;
- }
- #colophon .site-info .imprint,
- #colophon .site-info .privacy-policy-link {
- margin-left: 1rem;
- }
- /* Widgets */
- .widget {
- margin: 0 0 1rem;
- /* Make sure select elements fit in widgets. */
- }
- .widget select {
- max-width: 100%;
- }
- .widget a {
- color: #0073aa;
- }
- .widget a:hover {
- color: #005177;
- }
- .widget_archive ul,
- .widget_categories ul,
- .widget_meta ul,
- .widget_nav_menu ul,
- .widget_pages ul,
- .widget_recent_comments ul,
- .widget_recent_entries ul,
- .widget_rss ul {
- padding: 0;
- list-style: none;
- }
- .widget_archive ul li,
- .widget_categories ul li,
- .widget_meta ul li,
- .widget_nav_menu ul li,
- .widget_pages ul li,
- .widget_recent_comments ul li,
- .widget_recent_entries ul li,
- .widget_rss ul li {
- color: #767676;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-size: calc(22px * 1.125);
- font-weight: 600;
- line-height: 1.2;
- margin-top: 0.5rem;
- margin-bottom: 0.5rem;
- }
- .widget_archive ul ul,
- .widget_categories ul ul,
- .widget_meta ul ul,
- .widget_nav_menu ul ul,
- .widget_pages ul ul,
- .widget_recent_comments ul ul,
- .widget_recent_entries ul ul,
- .widget_rss ul ul {
- counter-reset: submenu;
- }
- .widget_archive ul ul > li > a::before,
- .widget_categories ul ul > li > a::before,
- .widget_meta ul ul > li > a::before,
- .widget_nav_menu ul ul > li > a::before,
- .widget_pages ul ul > li > a::before,
- .widget_recent_comments ul ul > li > a::before,
- .widget_recent_entries ul ul > li > a::before,
- .widget_rss ul ul > li > a::before {
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-weight: normal;
- content: "– " counters(submenu, "– ", none);
- counter-increment: submenu;
- }
- .widget_tag_cloud .tagcloud {
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-weight: 600;
- }
- .widget_search .search-field {
- width: 100%;
- }
- @media only screen and (min-width: 600px) {
- .widget_search .search-field {
- width: auto;
- }
- }
- .widget_search .search-submit {
- display: block;
- margin-top: 1rem;
- }
- .widget_calendar .calendar_wrap {
- text-align: center;
- }
- .widget_calendar .calendar_wrap table td,
- .widget_calendar .calendar_wrap table th {
- border: none;
- }
- .widget_calendar .calendar_wrap a {
- text-decoration: underline;
- }
- /* Blocks */
- /* !Block styles */
- .entry .entry-content > *,
- .entry .entry-summary > * {
- margin: 32px 0;
- max-width: 100%;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content > *,
- .entry .entry-summary > * {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .entry .entry-content > *,
- .entry .entry-summary > * {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content > *,
- .entry .entry-summary > * {
- margin: 32px auto;
- }
- }
- .entry .entry-content > * > *:first-child,
- .entry .entry-summary > * > *:first-child {
- margin-top: 0;
- }
- .entry .entry-content > * > *:last-child,
- .entry .entry-summary > * > *:last-child {
- margin-bottom: 0;
- }
- .entry .entry-content > *.alignwide,
- .entry .entry-summary > *.alignwide {
- margin-right: auto;
- margin-left: auto;
- clear: both;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content > *.alignwide,
- .entry .entry-summary > *.alignwide {
- width: 100%;
- max-width: 100%;
- }
- }
- .entry .entry-content > *.alignfull,
- .entry .entry-summary > *.alignfull {
- position: relative;
- right: -1rem;
- width: calc( 100% + (2 * 1rem));
- max-width: calc( 100% + (2 * 1rem));
- clear: both;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content > *.alignfull,
- .entry .entry-summary > *.alignfull {
- margin-top: 32px;
- margin-bottom: 32px;
- right: calc( -12.5% - 75px);
- width: calc( 125% + 150px);
- max-width: calc( 125% + 150px);
- }
- }
- .entry .entry-content > *.alignleft,
- .entry .entry-summary > *.alignleft {
- float: left;
- max-width: calc(5 * (100vw / 12));
- margin-top: 0;
- margin-right: 0;
- margin-right: 1rem;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content > *.alignleft,
- .entry .entry-summary > *.alignleft {
- max-width: calc(4 * (100vw / 12));
- margin-right: calc(2 * 1rem);
- }
- }
- .entry .entry-content > *.alignright,
- .entry .entry-summary > *.alignright {
- float: right;
- max-width: calc(5 * (100vw / 12));
- margin-top: 0;
- margin-left: 0;
- margin-left: 1rem;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content > *.alignright,
- .entry .entry-summary > *.alignright {
- max-width: calc(4 * (100vw / 12));
- margin-left: 0;
- margin-left: calc(2 * 1rem);
- }
- }
- .entry .entry-content > *.aligncenter,
- .entry .entry-summary > *.aligncenter {
- margin-right: auto;
- margin-left: auto;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content > *.aligncenter,
- .entry .entry-summary > *.aligncenter {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .entry .entry-content > *.aligncenter,
- .entry .entry-summary > *.aligncenter {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- /*
- * Make sure the first block has margin-top: 0
- */
- .entry:not(.has-post-thumbnail) .entry-content > :first-child {
- margin-top: 0;
- }
- /*
- * Unset nested content selector styles
- * - Prevents layout styles from cascading too deeply
- * - helps with plugin compatibility
- */
- .entry .entry-content .entry-content,
- .entry .entry-content .entry-summary,
- .entry .entry-content .entry,
- .entry .entry-summary .entry-content,
- .entry .entry-summary .entry-summary,
- .entry .entry-summary .entry {
- margin: inherit;
- max-width: inherit;
- padding: inherit;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .entry-content,
- .entry .entry-content .entry-summary,
- .entry .entry-content .entry,
- .entry .entry-summary .entry-content,
- .entry .entry-summary .entry-summary,
- .entry .entry-summary .entry {
- margin: inherit;
- max-width: inherit;
- padding: inherit;
- }
- }
- .entry .entry-content p.has-background {
- padding: 20px 30px;
- }
- .entry .entry-content .wp-block-audio {
- width: 100%;
- }
- .entry .entry-content .wp-block-audio audio {
- width: 100%;
- }
- .entry .entry-content .wp-block-audio.alignleft audio,
- .entry .entry-content .wp-block-audio.alignright audio {
- max-width: 198px;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-audio.alignleft audio,
- .entry .entry-content .wp-block-audio.alignright audio {
- max-width: 384px;
- }
- }
- @media only screen and (min-width: 1379px) {
- .entry .entry-content .wp-block-audio.alignleft audio,
- .entry .entry-content .wp-block-audio.alignright audio {
- max-width: 385.44px;
- }
- }
- .entry .entry-content .wp-block-video video {
- width: 100%;
- }
- .entry .entry-content .wp-block-button .wp-block-button__link {
- transition: background 150ms ease-in-out;
- border: none;
- font-size: 0.88889em;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- line-height: 1.2;
- box-sizing: border-box;
- font-weight: bold;
- text-decoration: none;
- padding: 0.76rem 1rem;
- outline: none;
- outline: none;
- }
- .entry .entry-content .wp-block-button .wp-block-button__link:not(.has-background) {
- background-color: #0073aa;
- }
- .entry .entry-content .wp-block-button .wp-block-button__link:not(.has-text-color) {
- color: white;
- }
- .entry .entry-content .wp-block-button .wp-block-button__link:hover {
- color: white;
- background: #005177;
- cursor: pointer;
- }
- .entry .entry-content .wp-block-button .wp-block-button__link:focus {
- color: white;
- background: #005177;
- outline: thin dotted;
- outline-offset: -4px;
- }
- .entry .entry-content .wp-block-button:not(.is-style-squared) .wp-block-button__link {
- border-radius: 5px;
- }
- .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link,
- .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus,
- .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:active {
- transition: all 150ms ease-in-out;
- border-width: 2px;
- border-style: solid;
- }
- .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background),
- .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-background),
- .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-background) {
- background: transparent;
- }
- .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color),
- .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-text-color),
- .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-text-color) {
- color: #0073aa;
- border-color: currentColor;
- }
- .entry .entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
- color: white;
- border-color: #005177;
- }
- .entry .entry-content .wp-block-archives,
- .entry .entry-content .wp-block-categories,
- .entry .entry-content .wp-block-latest-posts {
- padding: 0;
- list-style: none;
- }
- .entry .entry-content .wp-block-archives li,
- .entry .entry-content .wp-block-categories li,
- .entry .entry-content .wp-block-latest-posts li {
- color: #767676;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-size: calc(22px * 1.125);
- font-weight: bold;
- line-height: 1.2;
- padding-bottom: 0.75rem;
- }
- .entry .entry-content .wp-block-archives li.menu-item-has-children, .entry .entry-content .wp-block-archives li:last-child,
- .entry .entry-content .wp-block-categories li.menu-item-has-children,
- .entry .entry-content .wp-block-categories li:last-child,
- .entry .entry-content .wp-block-latest-posts li.menu-item-has-children,
- .entry .entry-content .wp-block-latest-posts li:last-child {
- padding-bottom: 0;
- }
- .entry .entry-content .wp-block-archives li a,
- .entry .entry-content .wp-block-categories li a,
- .entry .entry-content .wp-block-latest-posts li a {
- text-decoration: none;
- }
- .entry .entry-content .wp-block-categories ul {
- padding-top: 0.75rem;
- }
- .entry .entry-content .wp-block-categories li ul {
- list-style: none;
- padding-right: 0;
- }
- .entry .entry-content .wp-block-categories ul {
- counter-reset: submenu;
- }
- .entry .entry-content .wp-block-categories ul > li > a::before {
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-weight: normal;
- content: "– " counters(submenu, "– ", none);
- counter-increment: submenu;
- }
- .entry .entry-content .wp-block-latest-posts.is-grid li {
- border-top: 2px solid #ccc;
- padding-top: 1rem;
- margin-bottom: 32px;
- }
- .entry .entry-content .wp-block-latest-posts.is-grid li a:after {
- content: '';
- }
- .entry .entry-content .wp-block-latest-posts.is-grid li:last-child {
- margin-bottom: auto;
- }
- .entry .entry-content .wp-block-latest-posts.is-grid li:last-child a:after {
- content: '';
- }
- .entry .entry-content .wp-block-preformatted {
- font-size: 0.71111em;
- line-height: 1.8;
- padding: 1rem;
- }
- .entry .entry-content .wp-block-verse {
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-size: 22px;
- line-height: 1.8;
- }
- .entry .entry-content .has-drop-cap:not(:focus):first-letter {
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-size: 5.7375em;
- line-height: 1;
- font-weight: normal;
- margin: 0 0 0 0.25em;
- }
- .entry .entry-content .wp-block-pullquote {
- border-color: transparent;
- border-width: 2px;
- padding: 1rem;
- }
- .entry .entry-content .wp-block-pullquote blockquote {
- color: #1e1e1e;
- border: none;
- margin-top: calc(3 * 32px);
- margin-bottom: calc(3.33 * 32px);
- margin-left: 0;
- }
- .entry .entry-content .wp-block-pullquote p {
- font-size: 1.6875em;
- font-style: italic;
- line-height: 1.3;
- margin-bottom: 0.5em;
- margin-top: 0.5em;
- }
- .entry .entry-content .wp-block-pullquote p em {
- font-style: normal;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-pullquote p {
- font-size: 2.25em;
- }
- }
- .entry .entry-content .wp-block-pullquote cite {
- display: inline-block;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- line-height: 1.6;
- text-transform: none;
- color: #767676;
- /*
- * This requires a rem-based font size calculation instead of our normal em-based one,
- * because the cite tag sometimes gets wrapped in a p tag. This is equivalent to $font-size_xs.
- */
- font-size: calc(1rem / (1.25 * 1.125));
- }
- .entry .entry-content .wp-block-pullquote.alignleft, .entry .entry-content .wp-block-pullquote.alignright {
- width: 100%;
- padding: 0;
- }
- .entry .entry-content .wp-block-pullquote.alignleft blockquote, .entry .entry-content .wp-block-pullquote.alignright blockquote {
- margin-right: 0;
- padding: 0;
- text-align: right;
- max-width: 100%;
- }
- .entry .entry-content .wp-block-pullquote.is-style-solid-color {
- background-color: #0073aa;
- padding-right: 0;
- padding-left: 0;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-pullquote.is-style-solid-color {
- padding-right: 10%;
- padding-left: 10%;
- }
- }
- .entry .entry-content .wp-block-pullquote.is-style-solid-color p {
- font-size: 1.6875em;
- line-height: 1.3;
- margin-bottom: 0.5em;
- margin-top: 0.5em;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-pullquote.is-style-solid-color p {
- font-size: 2.25em;
- }
- }
- .entry .entry-content .wp-block-pullquote.is-style-solid-color a {
- color: #fff;
- }
- .entry .entry-content .wp-block-pullquote.is-style-solid-color cite {
- color: inherit;
- }
- .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
- max-width: calc(100% - (2 * 1rem));
- color: #fff;
- padding-right: 0;
- margin-right: 1rem;
- }
- .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-text-color p,
- .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 {
- color: inherit;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
- margin-right: 0;
- margin-left: 0;
- }
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignfull {
- padding-right: calc(10% + 58px + (2 * 1rem));
- padding-left: calc(10% + 58px + (2 * 1rem));
- }
- }
- .entry .entry-content .wp-block-quote:not(.is-large), .entry .entry-content .wp-block-quote:not(.is-style-large) {
- border-color: #0073aa;
- border-width: 2px;
- padding-top: 0;
- padding-bottom: 0;
- }
- .entry .entry-content .wp-block-quote p {
- font-size: 1em;
- font-style: normal;
- line-height: 1.8;
- }
- .entry .entry-content .wp-block-quote cite {
- /*
- * This requires a rem-based font size calculation instead of our normal em-based one,
- * because the cite tag sometimes gets wrapped in a p tag. This is equivalent to $font-size_xs.
- */
- font-size: calc(1rem / (1.25 * 1.125));
- }
- .entry .entry-content .wp-block-quote.is-large, .entry .entry-content .wp-block-quote.is-style-large {
- margin: 1rem auto;
- padding: 0;
- border-right: none;
- }
- .entry .entry-content .wp-block-quote.is-large p, .entry .entry-content .wp-block-quote.is-style-large p {
- font-size: 1.6875em;
- line-height: 1.4;
- font-style: italic;
- }
- .entry .entry-content .wp-block-quote.is-large cite,
- .entry .entry-content .wp-block-quote.is-large footer, .entry .entry-content .wp-block-quote.is-style-large cite,
- .entry .entry-content .wp-block-quote.is-style-large footer {
- /*
- * This requires a rem-based font size calculation instead of our normal em-based one,
- * because the cite tag sometimes gets wrapped in a p tag. This is equivalent to $font-size_xs.
- */
- font-size: calc(1rem / (1.25 * 1.125));
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-quote.is-large, .entry .entry-content .wp-block-quote.is-style-large {
- margin: 32px auto;
- padding: 1rem 0;
- }
- .entry .entry-content .wp-block-quote.is-large p, .entry .entry-content .wp-block-quote.is-style-large p {
- font-size: 1.6875em;
- }
- }
- .entry .entry-content .wp-block-image img {
- display: block;
- }
- .entry .entry-content .wp-block-image.alignleft, .entry .entry-content .wp-block-image.alignright {
- max-width: 100%;
- }
- .entry .entry-content .wp-block-image.alignfull img {
- width: 100vw;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-image.alignfull img {
- margin-right: auto;
- margin-left: auto;
- }
- }
- .entry .entry-content .wp-block-cover-image,
- .entry .entry-content .wp-block-cover {
- position: relative;
- min-height: 345px;
- padding: 1rem;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-cover-image,
- .entry .entry-content .wp-block-cover {
- padding: 1rem 10%;
- min-height: 460px;
- }
- }
- .entry .entry-content .wp-block-cover-image + .wp-block-cover:not(.alignleft):not(.alignrights),
- .entry .entry-content .wp-block-cover-image + .wp-block-cover-image:not(.alignleft):not(.alignrights),
- .entry .entry-content .wp-block-cover + .wp-block-cover:not(.alignleft):not(.alignrights),
- .entry .entry-content .wp-block-cover + .wp-block-cover-image:not(.alignleft):not(.alignrights) {
- margin-top: 32px;
- }
- .entry .entry-content .wp-block-cover-image .wp-block-cover__inner-container,
- .entry .entry-content .wp-block-cover .wp-block-cover__inner-container {
- padding: 0;
- color: #fff;
- -webkit-hyphens: auto;
- hyphens: auto;
- }
- .entry .entry-content .wp-block-cover-image .wp-block-cover__inner-container a,
- .entry .entry-content .wp-block-cover .wp-block-cover__inner-container a {
- color: inherit;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-cover-image .wp-block-cover__inner-container,
- .entry .entry-content .wp-block-cover .wp-block-cover__inner-container {
- max-width: 100%;
- }
- }
- .entry .entry-content .wp-block-cover-image h1,
- .entry .entry-content .wp-block-cover-image h2,
- .entry .entry-content .wp-block-cover-image h3,
- .entry .entry-content .wp-block-cover-image h4,
- .entry .entry-content .wp-block-cover-image h5,
- .entry .entry-content .wp-block-cover-image h6,
- .entry .entry-content .wp-block-cover h1,
- .entry .entry-content .wp-block-cover h2,
- .entry .entry-content .wp-block-cover h3,
- .entry .entry-content .wp-block-cover h4,
- .entry .entry-content .wp-block-cover h5,
- .entry .entry-content .wp-block-cover h6 {
- font-weight: normal;
- }
- .entry .entry-content .wp-block-cover-image h1,
- .entry .entry-content .wp-block-cover h1 {
- font-size: 2.25em;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-cover-image h1,
- .entry .entry-content .wp-block-cover h1 {
- font-size: 2.8125em;
- }
- }
- .entry .entry-content .wp-block-cover-image .wp-block-cover-image-text,
- .entry .entry-content .wp-block-cover-image .wp-block-cover-text,
- .entry .entry-content .wp-block-cover-image h2,
- .entry .entry-content .wp-block-cover .wp-block-cover-image-text,
- .entry .entry-content .wp-block-cover .wp-block-cover-text,
- .entry .entry-content .wp-block-cover h2 {
- font-size: 1.6875em;
- margin: 1rem 0;
- max-width: inherit;
- padding: 0;
- text-align: inherit;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-cover-image .wp-block-cover-image-text,
- .entry .entry-content .wp-block-cover-image .wp-block-cover-text,
- .entry .entry-content .wp-block-cover-image h2,
- .entry .entry-content .wp-block-cover .wp-block-cover-image-text,
- .entry .entry-content .wp-block-cover .wp-block-cover-text,
- .entry .entry-content .wp-block-cover h2 {
- font-size: 2.25em;
- }
- }
- .entry .entry-content .wp-block-cover-image h2.has-text-align-left,
- .entry .entry-content .wp-block-cover h2.has-text-align-left {
- text-align: right;
- }
- .entry .entry-content .wp-block-cover-image h2.has-text-align-center,
- .entry .entry-content .wp-block-cover h2.has-text-align-center {
- text-align: center;
- }
- .entry .entry-content .wp-block-cover-image h2.has-text-align-right,
- .entry .entry-content .wp-block-cover h2.has-text-align-right {
- text-align: left;
- }
- .entry .entry-content .wp-block-cover-image h3,
- .entry .entry-content .wp-block-cover h3 {
- font-size: 1.125em;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-cover-image h3,
- .entry .entry-content .wp-block-cover h3 {
- font-size: 1.6875em;
- }
- }
- .entry .entry-content .wp-block-cover-image h4,
- .entry .entry-content .wp-block-cover h4 {
- font-size: 22px;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-cover-image h4,
- .entry .entry-content .wp-block-cover h4 {
- font-size: 1.125em;
- }
- }
- .entry .entry-content .wp-block-cover-image h5,
- .entry .entry-content .wp-block-cover h5 {
- font-size: 0.88889em;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-cover-image h5,
- .entry .entry-content .wp-block-cover h5 {
- font-size: 22px;
- }
- }
- .entry .entry-content .wp-block-cover-image h6,
- .entry .entry-content .wp-block-cover h6 {
- font-size: 0.71111em;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-cover-image h6,
- .entry .entry-content .wp-block-cover h6 {
- font-size: 0.88889em;
- }
- }
- .entry .entry-content .wp-block-cover-image.alignleft, .entry .entry-content .wp-block-cover-image.alignright,
- .entry .entry-content .wp-block-cover.alignleft,
- .entry .entry-content .wp-block-cover.alignright {
- width: 100%;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-cover-image.alignleft, .entry .entry-content .wp-block-cover-image.alignright,
- .entry .entry-content .wp-block-cover.alignleft,
- .entry .entry-content .wp-block-cover.alignright {
- padding: 1rem;
- }
- }
- .entry .entry-content .wp-block-cover-image.alignwide .wp-block-cover__inner-container,
- .entry .entry-content .wp-block-cover.alignwide .wp-block-cover__inner-container {
- width: 100%;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-cover-image.alignwide .wp-block-cover__inner-container,
- .entry .entry-content .wp-block-cover.alignwide .wp-block-cover__inner-container {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .entry .entry-content .wp-block-cover-image.alignwide .wp-block-cover__inner-container,
- .entry .entry-content .wp-block-cover.alignwide .wp-block-cover__inner-container {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- .entry .entry-content .wp-block-cover-image.alignfull .wp-block-cover__inner-container,
- .entry .entry-content .wp-block-cover.alignfull .wp-block-cover__inner-container {
- width: 100%;
- margin-right: auto;
- margin-left: auto;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-cover-image.alignfull,
- .entry .entry-content .wp-block-cover.alignfull {
- padding-right: calc(10% + 58px + (2 * 1rem));
- padding-left: calc(10% + 58px + (2 * 1rem));
- }
- }
- .entry .entry-content .wp-block-gallery {
- list-style-type: none;
- padding-right: 0;
- }
- .entry .entry-content .wp-block-gallery .blocks-gallery-image:last-child,
- .entry .entry-content .wp-block-gallery .blocks-gallery-item:last-child {
- margin-bottom: 16px;
- }
- .entry .entry-content .wp-block-audio figcaption,
- .entry .entry-content .wp-block-video figcaption,
- .entry .entry-content .wp-block-image figcaption,
- .entry .entry-content .wp-block-gallery .blocks-gallery-image figcaption,
- .entry .entry-content .wp-block-gallery .blocks-gallery-item figcaption {
- font-size: 0.71111em;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- line-height: 1.6;
- margin: 0;
- padding: 0.5rem;
- text-align: center;
- }
- .entry .entry-content .wp-block-separator,
- .entry .entry-content hr {
- background: #fff;
- border: 0;
- margin-bottom: 32px;
- margin-top: 32px;
- max-width: 100%;
- /* Remove duplicate rule-line when a separator
- * is followed by an H1, or H2 */
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-separator,
- .entry .entry-content hr {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .entry .entry-content .wp-block-separator,
- .entry .entry-content hr {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- .entry .entry-content .wp-block-separator:after,
- .entry .entry-content hr:after {
- background-color: #ececec;
- content: '';
- display: block;
- height: 2px;
- max-width: 3.25em;
- }
- .entry .entry-content .wp-block-separator.is-style-wide,
- .entry .entry-content hr.is-style-wide {
- background-color: #ececec;
- max-width: 100%;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-separator.is-style-wide,
- .entry .entry-content hr.is-style-wide {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .entry .entry-content .wp-block-separator.is-style-wide,
- .entry .entry-content hr.is-style-wide {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- .entry .entry-content .wp-block-separator.is-style-wide:after,
- .entry .entry-content hr.is-style-wide:after {
- display: none;
- }
- .entry .entry-content .wp-block-separator.is-style-dots,
- .entry .entry-content hr.is-style-dots {
- max-width: 100%;
- background-color: inherit;
- border: inherit;
- height: inherit;
- text-align: center;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-separator.is-style-dots,
- .entry .entry-content hr.is-style-dots {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .entry .entry-content .wp-block-separator.is-style-dots,
- .entry .entry-content hr.is-style-dots {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- .entry .entry-content .wp-block-separator.is-style-dots:before,
- .entry .entry-content hr.is-style-dots:before {
- color: #767676;
- font-size: 1.6875em;
- letter-spacing: 0.88889em;
- padding-right: 0.88889em;
- }
- .entry .entry-content .wp-block-separator.is-style-dots:after,
- .entry .entry-content hr.is-style-dots:after {
- display: none;
- }
- .entry .entry-content .wp-block-separator + h1:before,
- .entry .entry-content .wp-block-separator + h2:before,
- .entry .entry-content hr + h1:before,
- .entry .entry-content hr + h2:before {
- display: none;
- }
- .entry .entry-content .wp-block-spacer.desktop-only {
- display: none;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-spacer.desktop-only {
- display: block;
- }
- }
- .entry .entry-content .wp-block-embed-twitter {
- word-break: break-word;
- }
- .entry .entry-content .wp-block-table th,
- .entry .entry-content .wp-block-table td {
- border-color: #767676;
- }
- .entry .entry-content .wp-block-file {
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- }
- .entry .entry-content .wp-block-file .wp-block-file__button {
- display: table;
- transition: background 150ms ease-in-out;
- border: none;
- border-radius: 5px;
- background: #0073aa;
- font-size: 22px;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- line-height: 1.2;
- text-decoration: none;
- font-weight: bold;
- padding: 0.75rem 1rem;
- color: #fff;
- margin-right: 0;
- margin-top: calc(0.75 * 32px);
- }
- @media only screen and (min-width: 1168px) {
- .entry .entry-content .wp-block-file .wp-block-file__button {
- font-size: 22px;
- padding: 0.875rem 1.5rem;
- }
- }
- .entry .entry-content .wp-block-file .wp-block-file__button:hover {
- background: #005177;
- cursor: pointer;
- }
- .entry .entry-content .wp-block-file .wp-block-file__button:focus {
- background: #005177;
- outline: thin dotted;
- outline-offset: -4px;
- }
- .entry .entry-content .wp-block-code {
- border-radius: 0;
- }
- .entry .entry-content .wp-block-code code {
- font-size: 1.125em;
- white-space: pre-wrap;
- word-break: break-word;
- }
- .entry .entry-content .wp-block-media-text {
- background: #0d1b24;
- color: #fff;
- position: relative;
- }
- .entry .entry-content .wp-block-media-text.has-media-on-the-right.is-stacked-on-mobile .wp-block-media-text__media {
- grid-row: 1;
- }
- .entry .entry-content .wp-block-media-text.has-media-on-the-right.is-stacked-on-mobile .wp-block-media-text__content {
- grid-row: 2;
- }
- @media only screen and (min-width: 600px) {
- .entry .entry-content .wp-block-media-text.has-media-on-the-right.is-stacked-on-mobile .wp-block-media-text__content {
- grid-row: 1;
- }
- }
- .entry .entry-content .wp-block-media-text:before {
- content: '';
- position: absolute;
- top: 10px;
- left: 10px;
- bottom: 10px;
- right: 10px;
- border: 1px solid #fff;
- z-index: 1;
- }
- .entry .entry-content .wp-block-media-text .wp-block-media-text__content {
- margin-bottom: 10px;
- z-index: 2;
- }
- .entry .entry-content .wp-block-media-text .wp-block-media-text__content > :first-child {
- margin-top: 0.88889rem;
- }
- .entry .entry-content .wp-block-media-text .wp-block-media-text__content > :last-child {
- margin-bottom: 0.88889rem;
- }
- .entry .entry-content .wp-block-media-text .wp-block-media-text__content a,
- .entry .entry-content .wp-block-media-text .wp-block-media-text__content a:hover {
- color: inherit;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .wp-block-media-text .wp-block-media-text__content {
- padding-left: calc(8% + 10px);
- }
- .entry .entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
- padding-right: calc(8% + 10px);
- padding-left: 8%;
- }
- }
- @media all and (-ms-high-contrast: none) {
- .entry .entry-content .wp-block-media-text:after {
- display: table;
- content: "";
- clear: both;
- }
- .entry .entry-content .wp-block-media-text figure {
- float: right;
- width: 50%;
- }
- .entry .entry-content .wp-block-media-text .wp-block-media-text__content {
- float: left;
- width: 50%;
- }
- .entry .entry-content .wp-block-media-text.has-media-on-the-right figure {
- float: left;
- }
- .entry .entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
- float: right;
- }
- }
- .entry .entry-content .wp-block-columns.alignfull {
- padding-right: 1rem;
- padding-left: 1rem;
- }
- @media only screen and (min-width: 782px) {
- .entry .entry-content .wp-block-columns .wp-block-column {
- margin-right: 0.5rem;
- margin-left: 0.5rem;
- }
- .entry .entry-content .wp-block-columns .wp-block-column:first-child {
- margin-right: 0;
- }
- .entry .entry-content .wp-block-columns .wp-block-column:last-child {
- margin-left: 0;
- }
- .entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
- margin-top: 0;
- }
- .entry .entry-content .wp-block-columns .wp-block-column > *:last-child {
- margin-bottom: 0;
- }
- .entry .entry-content .wp-block-columns.alignfull {
- padding-right: calc( 2 * 1rem);
- padding-left: calc( 2 * 1rem);
- }
- }
- .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-weight: bold;
- }
- .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date {
- font-weight: normal;
- }
- .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment,
- .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-date,
- .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
- font-size: inherit;
- }
- .entry .entry-content .wp-block-latest-comments.has-dates .wp-block-latest-comments__comment-date {
- font-size: 0.71111em;
- }
- .entry .entry-content .has-small-font-size {
- font-size: 0.88889em;
- }
- .entry .entry-content .has-normal-font-size {
- font-size: 1.125em;
- }
- .entry .entry-content .has-large-font-size {
- font-size: 1.6875em;
- }
- .entry .entry-content .has-huge-font-size {
- font-size: 2.25em;
- }
- .entry .entry-content .has-primary-background-color,
- .entry .entry-content .has-secondary-background-color,
- .entry .entry-content .has-dark-gray-background-color,
- .entry .entry-content .has-light-gray-background-color {
- color: #fff;
- }
- .entry .entry-content .has-primary-background-color p,
- .entry .entry-content .has-primary-background-color h1,
- .entry .entry-content .has-primary-background-color h2,
- .entry .entry-content .has-primary-background-color h3,
- .entry .entry-content .has-primary-background-color h4,
- .entry .entry-content .has-primary-background-color h5,
- .entry .entry-content .has-primary-background-color h6,
- .entry .entry-content .has-primary-background-color a,
- .entry .entry-content .has-secondary-background-color p,
- .entry .entry-content .has-secondary-background-color h1,
- .entry .entry-content .has-secondary-background-color h2,
- .entry .entry-content .has-secondary-background-color h3,
- .entry .entry-content .has-secondary-background-color h4,
- .entry .entry-content .has-secondary-background-color h5,
- .entry .entry-content .has-secondary-background-color h6,
- .entry .entry-content .has-secondary-background-color a,
- .entry .entry-content .has-dark-gray-background-color p,
- .entry .entry-content .has-dark-gray-background-color h1,
- .entry .entry-content .has-dark-gray-background-color h2,
- .entry .entry-content .has-dark-gray-background-color h3,
- .entry .entry-content .has-dark-gray-background-color h4,
- .entry .entry-content .has-dark-gray-background-color h5,
- .entry .entry-content .has-dark-gray-background-color h6,
- .entry .entry-content .has-dark-gray-background-color a,
- .entry .entry-content .has-light-gray-background-color p,
- .entry .entry-content .has-light-gray-background-color h1,
- .entry .entry-content .has-light-gray-background-color h2,
- .entry .entry-content .has-light-gray-background-color h3,
- .entry .entry-content .has-light-gray-background-color h4,
- .entry .entry-content .has-light-gray-background-color h5,
- .entry .entry-content .has-light-gray-background-color h6,
- .entry .entry-content .has-light-gray-background-color a {
- color: #fff;
- }
- .entry .entry-content .has-white-background-color {
- color: #1e1e1e;
- }
- .entry .entry-content .has-white-background-color p,
- .entry .entry-content .has-white-background-color h1,
- .entry .entry-content .has-white-background-color h2,
- .entry .entry-content .has-white-background-color h3,
- .entry .entry-content .has-white-background-color h4,
- .entry .entry-content .has-white-background-color h5,
- .entry .entry-content .has-white-background-color h6,
- .entry .entry-content .has-white-background-color a {
- color: #1e1e1e;
- }
- .entry .entry-content .has-primary-background-color,
- .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-primary-background-color {
- background-color: #0073aa;
- }
- .entry .entry-content .has-secondary-background-color,
- .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-secondary-background-color {
- background-color: #005177;
- }
- .entry .entry-content .has-dark-gray-background-color,
- .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-dark-gray-background-color {
- background-color: #1e1e1e;
- }
- .entry .entry-content .has-light-gray-background-color,
- .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-light-gray-background-color {
- background-color: #767676;
- }
- .entry .entry-content .has-white-background-color,
- .entry .entry-content .wp-block-pullquote.is-style-solid-color.has-white-background-color {
- background-color: #FFF;
- }
- .entry .entry-content .has-primary-color,
- .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-primary-color p {
- color: #0073aa;
- }
- .entry .entry-content .has-secondary-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-secondary-color p {
- color: #005177;
- }
- .entry .entry-content .has-dark-gray-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-dark-gray-color p {
- color: #1e1e1e;
- }
- .entry .entry-content .has-light-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-light-gray-color p {
- color: #767676;
- }
- .entry .entry-content .has-white-color,
- .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-white-color {
- color: #FFF;
- }
- .entry .entry-content .a8c-posts-list-item__title a,
- .entry .entry-content .a8c-posts-list-item__meta a {
- text-decoration: none;
- }
- .entry .entry-content .a8c-posts-list__view-all {
- text-decoration: none;
- }
- .entry .entry-content .a8c-posts-list-item__title a {
- color: inherit;
- }
- .entry .entry-content .a8c-posts-list-item__title a:hover, .entry .entry-content .a8c-posts-list-item__title a:focus {
- color: #4a4a4a;
- }
- .entry .entry-content .a8c-posts-list-item__meta a {
- color: #767676;
- }
- .entry .entry-content .a8c-posts-list-item__meta a:hover, .entry .entry-content .a8c-posts-list-item__meta a:focus {
- color: #0073aa;
- }
- .entry .entry-content .a8c-posts-list-item__meta .a8c-posts-list-item__edit-link a {
- color: #fff;
- }
- .entry .entry-content .a8c-posts-list__item:not(:first-child) {
- margin-top: calc(6 * 1rem);
- }
- .entry .entry-content .a8c-posts-list-item__featured {
- margin: 0 auto;
- }
- .entry .entry-content .a8c-posts-list-item__featured span {
- background: #0073aa;
- color: #fff;
- display: inline-block;
- font-size: 0.88889em;
- font-weight: 600;
- line-height: 1;
- padding: .1rem .25rem .25rem;
- z-index: 1;
- }
- @media only screen and (min-width: 768px) and (min-width: 768px) {
- .entry .entry-content .a8c-posts-list-item__featured {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 768px) and (min-width: 1168px) {
- .entry .entry-content .a8c-posts-list-item__featured {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- .entry .entry-content .a8c-posts-list-item__post-thumbnail {
- margin-bottom: 32px;
- }
- .entry .entry-content .a8c-posts-list-item__post-thumbnail img {
- display: block;
- }
- .entry .entry-content .a8c-posts-list-item__title {
- font-size: 1.6875em;
- margin: 0 auto;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .a8c-posts-list-item__title {
- font-size: 2.25em;
- }
- }
- @media only screen and (min-width: 768px) and (min-width: 768px) {
- .entry .entry-content .a8c-posts-list-item__title {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 768px) and (min-width: 1168px) {
- .entry .entry-content .a8c-posts-list-item__title {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- .entry .entry-content .a8c-posts-list-item__meta {
- color: #767676;
- font-size: 0.88889em;
- margin: 0 auto;
- }
- @media only screen and (min-width: 768px) and (min-width: 768px) {
- .entry .entry-content .a8c-posts-list-item__meta {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 768px) and (min-width: 1168px) {
- .entry .entry-content .a8c-posts-list-item__meta {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- .entry .entry-content .a8c-posts-list-item__author {
- margin-left: calc(.5 * 1rem);
- }
- .entry .entry-content .a8c-posts-list-item__edit-link {
- transition: background 150ms ease-in-out;
- background: #0073aa;
- border-radius: 3px;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-weight: 600;
- padding: 0 .4rem .1rem;
- }
- .entry .entry-content .a8c-posts-list-item__edit-link:hover, .entry .entry-content .a8c-posts-list-item__edit-link:focus {
- background: #005177;
- cursor: pointer;
- }
- .entry .entry-content .a8c-posts-list-item__excerpt {
- margin: 0 auto;
- }
- @media only screen and (min-width: 768px) {
- .entry .entry-content .a8c-posts-list-item__excerpt {
- max-width: calc(8 * (100vw / 12) - 28px);
- }
- }
- @media only screen and (min-width: 1168px) {
- .entry .entry-content .a8c-posts-list-item__excerpt {
- max-width: calc(6 * (100vw / 12) - 28px);
- }
- }
- .entry .entry-content .a8c-posts-list-item__excerpt p {
- margin: 32px 0;
- }
- .entry .entry-content .a8c-posts-list__view-all {
- transition: background 150ms ease-in-out;
- background: #0073aa;
- border: none;
- border-radius: 5px;
- box-sizing: border-box;
- color: #fff;
- display: inline-block;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-size: 0.88889em;
- font-weight: 700;
- line-height: 1.2;
- margin-top: calc(6 * 1rem - 32px);
- outline: none;
- padding: 0.76rem 1rem 0.5rem;
- vertical-align: bottom;
- }
- .entry .entry-content .a8c-posts-list__view-all:hover {
- background: #005177;
- cursor: pointer;
- }
- .entry .entry-content .a8c-posts-list__view-all:visited {
- color: #fff;
- text-decoration: none;
- }
- .entry .entry-content .a8c-posts-list__view-all:focus {
- background: #005177;
- outline: thin dotted;
- outline-offset: -4px;
- }
- /* Site Builder */
- /* !Site Builder styles */
- .entry .entry-content {
- /* Adjust Crimson Text font vertical alignment in Firefox */
- }
- .entry .entry-content .site-builder__header {
- align-items: center;
- color: #767676;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- max-width: 100%;
- position: relative;
- }
- .entry .entry-content .site-builder__title {
- color: #1e1e1e;
- flex: 1 1 auto;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- font-size: 1.125em;
- font-weight: 600;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- line-height: 1.2;
- margin: 0;
- }
- .entry .entry-content .site-builder__title a {
- color: #1e1e1e;
- text-decoration: none;
- }
- .entry .entry-content .site-builder__title a:link, .entry .entry-content .site-builder__title a:visited {
- color: #1e1e1e;
- }
- .entry .entry-content .site-builder__title a:hover {
- color: #4a4a4a;
- }
- @-moz-document url-prefix() {
- .entry .entry-content .site-builder__title {
- padding-top: 8px;
- }
- }
- .entry .entry-content .site-builder__description {
- color: #1e1e1e;
- flex: initial;
- font-size: 0.71111em;
- font-weight: normal;
- margin: 7px 0 0;
- }
- /* Media */
- .page-content .wp-smiley,
- .entry-content .wp-smiley,
- .comment-content .wp-smiley {
- border: none;
- margin-bottom: 0;
- margin-top: 0;
- padding: 0;
- }
- embed,
- iframe,
- object {
- max-width: 100%;
- }
- .custom-logo-link {
- display: inline-block;
- }
- .avatar {
- border-radius: 100%;
- display: block;
- height: calc(2.25 * 1rem);
- min-height: inherit;
- width: calc(2.25 * 1rem);
- }
- svg {
- transition: fill 120ms ease-in-out;
- fill: currentColor;
- }
- /*--------------------------------------------------------------
- ## Captions
- --------------------------------------------------------------*/
- .wp-caption {
- margin-bottom: calc(1.5 * 1rem);
- }
- @media only screen and (min-width: 768px) {
- .wp-caption.aligncenter {
- position: relative;
- right: calc( calc(8 * (100vw / 12) - 28px) / 2);
- transform: translateX(50%);
- }
- }
- @media only screen and (min-width: 1168px) {
- .wp-caption.aligncenter {
- right: calc( calc(6 * (100vw / 12) - 28px) / 2);
- }
- }
- .wp-caption img[class*="wp-image-"] {
- display: block;
- margin-right: auto;
- margin-left: auto;
- }
- .wp-caption-text {
- color: #767676;
- font-size: 0.71111em;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- line-height: 1.6;
- margin: 0;
- padding: 0.5rem;
- text-align: center;
- }
- /*--------------------------------------------------------------
- ## Galleries
- --------------------------------------------------------------*/
- .gallery {
- display: flex;
- flex-flow: row wrap;
- justify-content: center;
- margin-bottom: calc(1.5 * 1rem);
- }
- .gallery-item {
- display: inline-block;
- margin-left: 16px;
- margin-bottom: 16px;
- text-align: center;
- vertical-align: top;
- width: 100%;
- }
- .gallery-columns-2 .gallery-item {
- max-width: calc((100% - 16px * 1) / 2);
- }
- .gallery-columns-2 .gallery-item:nth-of-type(2n+2) {
- margin-left: 0;
- }
- .gallery-columns-3 .gallery-item {
- max-width: calc((100% - 16px * 2) / 3);
- }
- .gallery-columns-3 .gallery-item:nth-of-type(3n+3) {
- margin-left: 0;
- }
- .gallery-columns-4 .gallery-item {
- max-width: calc((100% - 16px * 3) / 4);
- }
- .gallery-columns-4 .gallery-item:nth-of-type(4n+4) {
- margin-left: 0;
- }
- .gallery-columns-5 .gallery-item {
- max-width: calc((100% - 16px * 4) / 5);
- }
- .gallery-columns-5 .gallery-item:nth-of-type(5n+5) {
- margin-left: 0;
- }
- .gallery-columns-6 .gallery-item {
- max-width: calc((100% - 16px * 5) / 6);
- }
- .gallery-columns-6 .gallery-item:nth-of-type(6n+6) {
- margin-left: 0;
- }
- .gallery-columns-7 .gallery-item {
- max-width: calc((100% - 16px * 6) / 7);
- }
- .gallery-columns-7 .gallery-item:nth-of-type(7n+7) {
- margin-left: 0;
- }
- .gallery-columns-8 .gallery-item {
- max-width: calc((100% - 16px * 7) / 8);
- }
- .gallery-columns-8 .gallery-item:nth-of-type(8n+8) {
- margin-left: 0;
- }
- .gallery-columns-9 .gallery-item {
- max-width: calc((100% - 16px * 8) / 9);
- }
- .gallery-columns-9 .gallery-item:nth-of-type(9n+9) {
- margin-left: 0;
- }
- .gallery-item:last-of-type {
- padding-left: 0;
- }
- .gallery-caption {
- display: block;
- font-size: 0.71111em;
- font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
- line-height: 1.6;
- margin: 0;
- padding: 0.5rem;
- }
- .gallery-item > div > a {
- display: block;
- line-height: 0;
- box-shadow: 0 0 0 0 transparent;
- }
- .gallery-item > div > a:focus {
- box-shadow: 0 0 0 2px #0073aa;
- }
|