style-rtl.css 114 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214
  1. /*
  2. Theme Name: Twenty Twenty
  3. Text Domain: twentytwenty
  4. Version: 1.0
  5. Requires at least: 4.7
  6. Requires PHP: 5.2.4
  7. Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
  8. Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
  9. Author: the WordPress team
  10. Author URI: https://wordpress.org/
  11. Theme URI: https://wordpress.org/themes/twentytwenty/
  12. License: GNU General Public License v2 or later
  13. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  14. All files, unless otherwise stated, are released under the GNU General Public
  15. License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)
  16. This theme, like WordPress, is licensed under the GPL.
  17. Use it to make something cool, have fun, and share what you've learned
  18. with others.
  19. */
  20. /*--------------------------------------------------------------
  21. >>> TABLE OF CONTENTS:
  22. ----------------------------------------------------------------
  23. 0. CSS Reset
  24. 1. Document Setup
  25. 2. Element Base
  26. 3. Helper Classes
  27. 4. Site Header
  28. 5. Menu Modal
  29. 6. Search Modal
  30. 7. Page Templates
  31. a. Template: Cover Template
  32. c. Template: Full Width
  33. 8. Post: Archive
  34. 9. Post: Single
  35. 10. Blocks
  36. 11. Entry Content
  37. 12. Comments
  38. 13. Site Pagination
  39. 14. Error 404
  40. 15. Widgets
  41. 16. Site Footer
  42. 17. Media Queries
  43. ----------------------------------------------------------------------------- */
  44. /* -------------------------------------------------------------------------- */
  45. /* 0. CSS Reset
  46. /* -------------------------------------------------------------------------- */
  47. html,
  48. body {
  49. border: none;
  50. margin: 0;
  51. padding: 0;
  52. }
  53. h1,
  54. h2,
  55. h3,
  56. h4,
  57. h5,
  58. h6,
  59. p,
  60. blockquote,
  61. address,
  62. big,
  63. cite,
  64. code,
  65. em,
  66. font,
  67. img,
  68. small,
  69. strike,
  70. sub,
  71. sup,
  72. li,
  73. ol,
  74. ul,
  75. fieldset,
  76. form,
  77. label,
  78. legend,
  79. button,
  80. table,
  81. caption,
  82. tr,
  83. th,
  84. td {
  85. border: none;
  86. font-size: inherit;
  87. line-height: inherit;
  88. margin: 0;
  89. padding: 0;
  90. text-align: inherit;
  91. }
  92. blockquote::before,
  93. blockquote::after {
  94. content: "";
  95. }
  96. /* -------------------------------------------------------------------------- */
  97. /* 1. Document Setup
  98. /* -------------------------------------------------------------------------- */
  99. html {
  100. font-size: 62.5%; /* 1rem = 10px */
  101. }
  102. body {
  103. background: #f5efe0;
  104. box-sizing: border-box;
  105. color: #000;
  106. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  107. font-size: 1.8rem;
  108. letter-spacing: -0.015em;
  109. text-align: right;
  110. }
  111. @supports ( font-variation-settings: normal ) {
  112. body {
  113. font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  114. }
  115. }
  116. *,
  117. *::before,
  118. *::after {
  119. box-sizing: inherit;
  120. -webkit-font-smoothing: antialiased;
  121. word-break: break-word;
  122. word-wrap: break-word;
  123. }
  124. #site-content {
  125. overflow: hidden;
  126. }
  127. /* Clearing ---------------------------------- */
  128. .group::after,
  129. .entry-content::after {
  130. clear: both;
  131. content: "";
  132. display: block;
  133. }
  134. /* Base Transitions -------------------------- */
  135. a,
  136. path {
  137. transition: all 0.15s linear;
  138. }
  139. /* Screen Reader Text ------------------------ */
  140. .screen-reader-text {
  141. border: 0;
  142. clip: rect(1px, 1px, 1px, 1px);
  143. -webkit-clip-path: inset(50%);
  144. clip-path: inset(50%);
  145. height: 1px;
  146. margin: -1px;
  147. overflow: hidden;
  148. padding: 0;
  149. position: absolute !important;
  150. width: 1px;
  151. word-wrap: normal !important;
  152. word-break: normal;
  153. }
  154. .screen-reader-text:focus {
  155. background-color: #f1f1f1;
  156. border-radius: 3px;
  157. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  158. clip: auto !important;
  159. -webkit-clip-path: none;
  160. clip-path: none;
  161. color: #21759b;
  162. display: block;
  163. font-size: 14px;
  164. font-size: 0.875rem;
  165. font-weight: 700;
  166. height: auto;
  167. left: 5px;
  168. line-height: normal;
  169. padding: 15px 23px 14px;
  170. text-decoration: none;
  171. top: 5px;
  172. width: auto;
  173. z-index: 100000;
  174. }
  175. /* Skip Link --------------------------------- */
  176. .skip-link {
  177. right: -9999rem;
  178. top: 2.5rem;
  179. z-index: 999999999;
  180. text-decoration: underline;
  181. }
  182. .skip-link:focus {
  183. display: block;
  184. right: 6px;
  185. top: 7px;
  186. font-size: 14px;
  187. font-weight: 600;
  188. text-decoration: none;
  189. line-height: normal;
  190. padding: 15px 23px 14px;
  191. z-index: 100000;
  192. left: auto;
  193. }
  194. /* Fonts ------------------------------------- */
  195. /*
  196. * Chrome renders extra-wide   characters for the Hoefler Text font.
  197. * This results in a jumping cursor when typing in both the classic editor and
  198. * block editor. The following font-face override fixes the issue by manually
  199. * inserting a custom font that includes just a Hoefler Text space replacement
  200. * for that character instead.
  201. */
  202. @font-face {
  203. font-family: NonBreakingSpaceOverride;
  204. src: url(data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAAAMoAA0AAAAACDQAAALTAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACCahEICjx3CywAATYCJANUBCAFhiEHgWwbXQfILgpsY+rQRRARwyAs6uL7pxzYhxEE+32b3aeHmifR6tklkS9hiZA0ewkqGRJE+H7/+6378ASViK/PGeavqJyOzsceKi1s3BCiQsiOdn1r/RBgIJYEgCUhbm/8/8/h4saPssnTNkkiWUBrTRtjmQSajw3Ui3pZ3LYDPD+XG2C3JA/yKAS8/rU5eNfuGqRf4eNNgV4YAlIIgxglEkWe6FYpq10+wi3g+/nUgvgPFczNrz/RsTgVm/zfbPuHZlsuQECxuyqBcQwKFBjFgKO8AqP4bAN9tFJtnM9xPcbNjeXS/x1wY/xU52f5W/X1+9cnH4YwKIaoRRAkUkj/YlAAeF/624foiIDBgBmgQBeGAyhBljUPZUm/l2dTvmpqcBDUOHdbPZWd8JsBAsGr4w8/EDn82/bUPx4eh0YNrQTBuHO2FjQEAGBwK0DeI37DpQVqdERS4gZBhpeUhWCfLFz7J99aEBgsJCHvUGAdAPp4IADDCAPCEFMGpMZ9AQpTfQtQGhLbGVBZFV8BaqNyP68oTZgHNj3M8kBPfXTTC9t90UuzYhy9ciH0grVlOcqyCytisvbsERsEYztiznR0WCrmTksJwbSNK6fd1Rvr25I9oLvctUoEbNOmXJbqgYgPXEHJ82IUsrCnpkxh23F1rfZ2zcRnJYoXtauB3VTFkFXQg3uoZYD5qE0kdjDtoDoF1h2bulGmev5HbYhbrjtohQSRI4aNOkffIcT+d3v6atpaYh3JvPoQsztCcqvaBkppDSPcQ3bw3KaCBo1f5CJWTZEgW3LjLofYg51MaVezrx8xZitYbQ9KYeoRaqQdVLwSEfrKXLK1otCWOKNdR/YwYAfon5Yk8O2MJfSD10dPGA5PIJJQMkah0ugMJiv6x4Dm7LEa8xnrRGGGLAg4sAlbsA07sAt76DOsXKO3hIjtIlpnnFrt1qW4kh6NhS83P/6HB/fl1SMAAA==) format("woff2"), url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAUQAA0AAAAACDQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAE9AAAABwAAAAchf5yU0dERUYAAATYAAAAHAAAAB4AJwAbT1MvMgAAAaAAAABJAAAAYJAcgU5jbWFwAAACIAAAAF4AAAFqUUxBZ2dhc3AAAATQAAAACAAAAAgAAAAQZ2x5ZgAAApAAAAAyAAAAPL0n8y9oZWFkAAABMAAAADAAAAA2Fi93Z2hoZWEAAAFgAAAAHQAAACQOSgWaaG10eAAAAewAAAAzAAAAVC7TAQBsb2NhAAACgAAAABAAAAAsAOQBAm1heHAAAAGAAAAAHQAAACAAWQALbmFtZQAAAsQAAAF6AAADIYvD/Adwb3N0AAAEQAAAAI4AAADsapk2o3jaY2BkYGAA4ov5mwzj+W2+MnCzXwCKMNzgCBSB0LfbQDQ7AxuI4mBgAlEAFKQIRHjaY2BkYGD3+NvCwMDBAALsDAyMDKhAFAA3+wH3AAAAeNpjYGRgYBBl4GBgYgABEMnIABJzAPMZAAVmAGUAAAB42mNgZlJhnMDAysDCKsKygYGBYRqEZtrDYMT4D8gHSmEHjgUFOQwODAqqf9g9/rYwMLB7MNUAhRlBcsxBrMlASoGBEQAj8QtyAAAAeNrjYGBkAAGmWQwMjO8gmBnIZ2NA0ExAzNjAAFYJVn0ASBsD6VAIDZb7AtELAgANIgb9AHjaY2BgYGaAYBkGRgYQSAHyGMF8FgYPIM3HwMHAxMDGoMCwQIFLQV8hXvXP//9AcRCfAcb///h/ygPW+w/vb7olBjUHCTCyMcAFGZmABBO6AogThgZgIUsXAEDcEzcAAHjaY2BgECMCyoEgACZaAed42mNgYmRgYGBnYGNgYAZSDJqMgorCgoqCjECRXwwNrCAKSP5mAAFGBiRgyAAAi/YFBQAAeNqtkc1OwkAUhU/5M25cEhcsZick0AwlBJq6MWwgJkAgYV/KAA2lJeUn+hY+gktXvpKv4dLTMqKycGHsTZNv7px7z50ZAFd4hYHjdw1Ls4EiHjVncIFnzVnc4F1zDkWjrzmPW+NNcwGlzIRKI3fJlUyrEjZQxb3mDH2fNGfRx4vmHKqG0JzHg6E0F9DOlFBGBxUI1GEzLNT4S0aLuTtsGAEUuYcQHkyg3KmIum1bNUvKlrjbbAIleqHHnS4iSudpQcySMYtdFiXlAxzSbAwfMxK6kZoHKhbjjespMTioOPZnzI+4ucCeTVyKMVKLfeAS6vSWaTinuZwzyy/Dc7vaed+6KaV0kukdPUk6yOcctZPvvxxqksq2lEW8RvHjMEO2FCl/zy6p3NEm0R9OFSafJdldc4QVeyaaObMBO0/5cCaa6d9Ggyubxire+lEojscdjoWUR1xGOy8KD8mG2ZLO2l2paDc3A39qmU2z2W5YNv5+u79e6QfGJY/hAAB42m3NywrCMBQE0DupWp/1AYI7/6DEaLQu66Mrd35BKUWKJSlFv1+rue4cGM7shgR981qSon+ZNwUJ8iDgoYU2OvDRRQ99DDDECAHGmGCKmf80hZSx/Kik/LliFbtmN6xmt+yOjdg9GztV4tROnRwX/Bsaaw51nt4Lc7tWaZYHp/MlzKx51LZs5htNri+2AAAAAQAB//8AD3jaY2BkYGDgAWIxIGZiYARCESBmAfMYAAR6AEMAAAABAAAAANXtRbgAAAAA2AhRFAAAAADYCNuG) format("woff");
  205. }
  206. /* ----------------------------------------------
  207. Inter variable font. Usage:
  208. @supports (font-variation-settings: normal) {
  209. html { font-family: 'Inter var', sans-serif; }
  210. }
  211. ---------------------------------------------- */
  212. @font-face {
  213. font-family: "Inter var";
  214. font-weight: 100 900; /* stylelint-disable-line font-weight-notation */
  215. font-style: normal;
  216. font-display: swap;
  217. src: url(./assets/fonts/inter/Inter-upright-var.woff2) format("woff2");
  218. }
  219. @font-face {
  220. font-family: "Inter var";
  221. font-weight: 100 900; /* stylelint-disable-line font-weight-notation */
  222. font-style: italic;
  223. font-display: swap;
  224. src: url(./assets/fonts/inter/Inter-italic-var.woff2) format("woff2");
  225. }
  226. /* Accessibility Settings -------------------- */
  227. @media ( prefers-reduced-motion: reduce ) {
  228. * {
  229. animation-duration: 0s !important;
  230. transition-duration: 0s !important;
  231. }
  232. }
  233. /* -------------------------------------------------------------------------- */
  234. /* 2. Element Base
  235. /* ---------------------------------------------*---------------------------- */
  236. main {
  237. display: block;
  238. }
  239. h1,
  240. h2,
  241. h3,
  242. h4,
  243. h5,
  244. h6,
  245. .faux-heading {
  246. font-feature-settings: "lnum";
  247. font-variant-numeric: lining-nums;
  248. font-weight: 700;
  249. letter-spacing: -0.0415625em;
  250. line-height: 1.25;
  251. margin: 3.5rem 0 2rem;
  252. }
  253. h1,
  254. .heading-size-1 {
  255. font-size: 3.6rem;
  256. font-weight: 800;
  257. line-height: 1.138888889;
  258. }
  259. h2,
  260. .heading-size-2 {
  261. font-size: 3.2rem;
  262. }
  263. h3,
  264. .heading-size-3 {
  265. font-size: 2.8rem;
  266. }
  267. h4,
  268. .heading-size-4 {
  269. font-size: 2.4rem;
  270. }
  271. h5,
  272. .heading-size-5 {
  273. font-size: 2.1rem;
  274. }
  275. h6,
  276. .heading-size-6 {
  277. font-size: 1.6rem;
  278. letter-spacing: 0.03125em;
  279. text-transform: uppercase;
  280. }
  281. p {
  282. line-height: 1.5;
  283. margin: 0 0 1em 0;
  284. }
  285. em,
  286. i,
  287. q,
  288. dfn {
  289. font-style: italic;
  290. }
  291. em em,
  292. em i,
  293. i em,
  294. i i,
  295. cite em,
  296. cite i {
  297. font-weight: bolder;
  298. }
  299. big {
  300. font-size: 1.2em;
  301. }
  302. small {
  303. font-size: 0.75em;
  304. }
  305. b,
  306. strong {
  307. font-weight: 700;
  308. }
  309. ins {
  310. text-decoration: underline;
  311. }
  312. sub,
  313. sup {
  314. font-size: 75%;
  315. line-height: 0;
  316. position: relative;
  317. vertical-align: baseline;
  318. }
  319. sup {
  320. top: -0.5em;
  321. }
  322. sub {
  323. bottom: -0.25em;
  324. }
  325. abbr,
  326. acronym {
  327. cursor: help;
  328. }
  329. address {
  330. line-height: 1.5;
  331. margin: 0 0 2rem 0;
  332. }
  333. hr {
  334. border-style: solid;
  335. border-width: 0.1rem 0 0 0;
  336. border-color: #dcd7ca;
  337. margin: 4rem 0;
  338. }
  339. .entry-content hr,
  340. hr.styled-separator {
  341. background: linear-gradient(to right, currentColor calc(50% - 16px), transparent calc(50% - 16px), transparent calc(50% + 16px), currentColor calc(50% + 16px));
  342. background-color: transparent !important;
  343. border: none;
  344. height: 0.1rem;
  345. overflow: visible;
  346. position: relative;
  347. }
  348. .entry-content hr:not(.has-background),
  349. hr.styled-separator {
  350. color: #6d6d6d;
  351. }
  352. .entry-content hr::before,
  353. .entry-content hr::after,
  354. hr.styled-separator::before,
  355. hr.styled-separator::after {
  356. background: currentColor;
  357. content: "";
  358. display: block;
  359. height: 1.6rem;
  360. position: absolute;
  361. top: calc(50% - 0.8rem);
  362. transform: rotate(-22.5deg);
  363. width: 0.1rem;
  364. }
  365. .entry-content hr::before,
  366. hr.styled-separator::before {
  367. right: calc(50% - 0.5rem);
  368. }
  369. .entry-content hr::after,
  370. hr.styled-separator::after {
  371. left: calc(50% - 0.5rem);
  372. }
  373. a {
  374. color: #cd2653;
  375. text-decoration: underline;
  376. }
  377. a:hover,
  378. a:focus {
  379. text-decoration: none;
  380. }
  381. /* Lists ------------------------------------- */
  382. ul,
  383. ol {
  384. margin: 0 3rem 3rem 0;
  385. }
  386. ul {
  387. list-style: disc;
  388. }
  389. ul ul {
  390. list-style: circle;
  391. }
  392. ul ul ul {
  393. list-style: square;
  394. }
  395. ol {
  396. list-style: decimal;
  397. }
  398. ol ol {
  399. list-style: lower-alpha;
  400. }
  401. ol ol ol {
  402. list-style: lower-roman;
  403. }
  404. li {
  405. line-height: 1.5;
  406. margin: 0.5rem 2rem 0 0;
  407. }
  408. li > ul,
  409. li > ol {
  410. margin: 1rem 2rem 0 0;
  411. }
  412. .reset-list-style,
  413. .reset-list-style ul,
  414. .reset-list-style ol {
  415. list-style: none;
  416. margin: 0;
  417. }
  418. .reset-list-style li {
  419. margin: 0;
  420. }
  421. dt,
  422. dd {
  423. line-height: 1.5;
  424. }
  425. dt {
  426. font-weight: 700;
  427. }
  428. dt + dd {
  429. margin-top: 0.5rem;
  430. }
  431. dd + dt {
  432. margin-top: 1.5rem;
  433. }
  434. /* Quotes ------------------------------------ */
  435. blockquote {
  436. border-color: #cd2653;
  437. border-style: solid;
  438. border-width: 0 0 0 0.2rem;
  439. color: inherit;
  440. font-size: 1em;
  441. margin: 4rem 0;
  442. padding: 0.5rem 0 0.5rem 2rem;
  443. }
  444. cite {
  445. color: #6d6d6d;
  446. font-size: 1.4rem;
  447. font-style: normal;
  448. font-weight: 600;
  449. line-height: 1.25;
  450. }
  451. blockquote cite {
  452. display: block;
  453. margin: 2rem 0 0 0;
  454. }
  455. blockquote p:last-child {
  456. margin: 0;
  457. }
  458. /* Code -------------------------------------- */
  459. code,
  460. kbd,
  461. pre,
  462. samp {
  463. font-family: monospace;
  464. font-size: 0.9em;
  465. padding: 0.4rem 0.6rem;
  466. }
  467. code,
  468. kbd,
  469. samp {
  470. background: rgba(0, 0, 0, 0.075);
  471. border-radius: 0.2rem;
  472. }
  473. pre {
  474. border: 0.1rem solid #dcd7ca;
  475. line-height: 1.5;
  476. margin: 4rem 0;
  477. overflow: auto;
  478. padding: 3rem 2rem;
  479. text-align: right;
  480. }
  481. pre code {
  482. background: transparent;
  483. padding: 0;
  484. }
  485. /* Media ------------------------------------- */
  486. figure {
  487. display: block;
  488. margin: 0;
  489. }
  490. iframe {
  491. display: block;
  492. max-width: 100%;
  493. }
  494. video {
  495. display: block;
  496. }
  497. svg,
  498. img,
  499. embed,
  500. object {
  501. display: block;
  502. height: auto;
  503. max-width: 100%;
  504. }
  505. figcaption,
  506. .wp-caption-text {
  507. color: #6d6d6d;
  508. display: block;
  509. font-size: 1.5rem;
  510. font-weight: 500;
  511. line-height: 1.2;
  512. margin-top: 1.5rem;
  513. }
  514. figcaption a,
  515. .wp-caption-text a {
  516. color: inherit;
  517. }
  518. /* GALLERIES */
  519. .gallery {
  520. display: flex;
  521. flex-wrap: wrap;
  522. margin: 3em -0.8em 3em 0;
  523. width: calc(100% + 1.6em);
  524. }
  525. .gallery-item {
  526. margin: 0.8em 0;
  527. padding: 0 0.8em;
  528. width: 100%;
  529. }
  530. .gallery-caption {
  531. display: block;
  532. margin-top: 0.8em;
  533. }
  534. /* Inputs ------------------------------------ */
  535. fieldset {
  536. border: 0.2rem solid #dcd7ca;
  537. padding: 2rem;
  538. }
  539. legend {
  540. font-size: 0.85em;
  541. font-weight: 700;
  542. padding: 0 1rem;
  543. }
  544. label {
  545. display: block;
  546. font-size: 1.6rem;
  547. font-weight: 400;
  548. margin: 0 0 0.5rem 0;
  549. }
  550. label.inline,
  551. input[type="checkbox"] + label {
  552. display: inline;
  553. font-weight: 400;
  554. margin-right: 0.5rem;
  555. }
  556. input,
  557. textarea,
  558. button,
  559. .button,
  560. .faux-button,
  561. .wp-block-button__link,
  562. .wp-block-file__button {
  563. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  564. line-height: 1;
  565. }
  566. @supports ( font-variation-settings: normal ) {
  567. input,
  568. textarea,
  569. button,
  570. .button,
  571. .faux-button,
  572. .faux-button.more-link,
  573. .wp-block-button__link,
  574. .wp-block-file__button {
  575. font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  576. }
  577. }
  578. input,
  579. textarea {
  580. border-color: #dcd7ca;
  581. color: #000;
  582. }
  583. code,
  584. input[type="url"],
  585. input[type="email"],
  586. input[type="tel"] {
  587. direction: ltr;
  588. }
  589. input[type="text"],
  590. input[type="password"],
  591. input[type="email"],
  592. input[type="url"],
  593. input[type="date"],
  594. input[type="month"],
  595. input[type="time"],
  596. input[type="datetime"],
  597. input[type="datetime-local"],
  598. input[type="week"],
  599. input[type="number"],
  600. input[type="search"],
  601. input[type="tel"],
  602. input[type="color"],
  603. textarea {
  604. -webkit-appearance: none;
  605. -moz-appearance: none;
  606. background: #fff;
  607. border-radius: 0;
  608. border-style: solid;
  609. border-width: 0.1rem;
  610. box-shadow: none;
  611. display: block;
  612. font-size: 1.6rem;
  613. letter-spacing: -0.015em;
  614. margin: 0;
  615. max-width: 100%;
  616. padding: 1.5rem 1.8rem;
  617. width: 100%;
  618. }
  619. select {
  620. font-size: 1em;
  621. }
  622. textarea {
  623. height: 12rem;
  624. line-height: 1.5;
  625. width: 100%;
  626. }
  627. input::-webkit-input-placeholder {
  628. line-height: normal;
  629. }
  630. input:-ms-input-placeholder {
  631. line-height: normal;
  632. }
  633. input::-moz-placeholder {
  634. line-height: normal;
  635. }
  636. input[type="search"]::-webkit-search-decoration,
  637. input[type="search"]::-webkit-search-cancel-button,
  638. input[type="search"]::-webkit-search-results-button,
  639. input[type="search"]::-webkit-search-results-decoration {
  640. display: none;
  641. }
  642. button,
  643. .button,
  644. .faux-button,
  645. .wp-block-button__link,
  646. .wp-block-file .wp-block-file__button,
  647. input[type="button"],
  648. input[type="reset"],
  649. input[type="submit"] {
  650. -webkit-appearance: none;
  651. -moz-appearance: none;
  652. background: #cd2653;
  653. border: none;
  654. border-radius: 0;
  655. color: #fff;
  656. cursor: pointer;
  657. display: inline-block;
  658. font-size: 1.5rem;
  659. font-weight: 600;
  660. letter-spacing: 0.0333em;
  661. line-height: 1.25;
  662. margin: 0;
  663. opacity: 1;
  664. padding: 1.1em 1.44em;
  665. text-align: center;
  666. text-decoration: none;
  667. text-transform: uppercase;
  668. transition: opacity 0.15s linear;
  669. }
  670. button:focus,
  671. button:hover,
  672. .button:focus,
  673. .button:hover,
  674. .faux-button:focus,
  675. .faux-button:hover,
  676. .wp-block-button .wp-block-button__link:focus,
  677. .wp-block-button .wp-block-button__link:hover,
  678. .wp-block-file .wp-block-file__button:focus,
  679. .wp-block-file .wp-block-file__button:hover,
  680. input[type="button"]:focus,
  681. input[type="button"]:hover,
  682. input[type="reset"]:focus,
  683. input[type="reset"]:hover,
  684. input[type="submit"]:focus,
  685. input[type="submit"]:hover {
  686. text-decoration: underline;
  687. }
  688. input[type="text"]:focus,
  689. input[type="email"]:focus,
  690. input[type="url"]:focus,
  691. input[type="password"]:focus,
  692. input[type="number"]:focus,
  693. input[type="tel"]:focus,
  694. input[type="range"]:focus,
  695. input[type="date"]:focus,
  696. input[type="month"]:focus,
  697. input[type="week"]:focus,
  698. input[type="time"]:focus,
  699. input[type="datetime"]:focus,
  700. input[type="datetime-local"]:focus,
  701. input[type="color"]:focus,
  702. textarea:focus {
  703. border-color: currentColor;
  704. }
  705. input[type="search"]:focus {
  706. outline: thin dotted;
  707. outline-offset: -4px;
  708. }
  709. /* Tables ------------------------------------ */
  710. table {
  711. border: 0.1rem solid #dcd7ca;
  712. border-collapse: collapse;
  713. border-spacing: 0;
  714. empty-cells: show;
  715. font-size: 1.6rem;
  716. margin: 4rem 0;
  717. max-width: 100%;
  718. overflow: hidden;
  719. width: 100%;
  720. }
  721. .alignleft > table {
  722. margin: 0;
  723. }
  724. .alignright > table {
  725. margin: 0;
  726. }
  727. th,
  728. td {
  729. border: 0.1rem solid #dcd7ca;
  730. line-height: 1.4;
  731. margin: 0;
  732. overflow: visible;
  733. padding: 0.5em;
  734. }
  735. caption {
  736. background: #dcd7ca;
  737. font-weight: 600;
  738. padding: 0.5em;
  739. text-align: center;
  740. }
  741. thead {
  742. vertical-align: bottom;
  743. white-space: nowrap;
  744. }
  745. th {
  746. font-weight: 700;
  747. }
  748. /* -------------------------------------------------------------------------- */
  749. /* 3. Helper Classes
  750. /* -------------------------------------------------------------------------- */
  751. /* Layout ------------------------------------ */
  752. .no-margin {
  753. margin: 0;
  754. }
  755. .no-padding {
  756. padding: 0;
  757. }
  758. .screen-height {
  759. min-height: 100vh;
  760. }
  761. .admin-bar .screen-height {
  762. min-height: calc(100vh - 32px);
  763. }
  764. @media (max-width: 782px) {
  765. .admin-bar .screen-height {
  766. min-height: calc(100vh - 46px);
  767. }
  768. }
  769. .screen-width {
  770. position: relative;
  771. right: calc(50% - 50vw);
  772. width: 100vw;
  773. }
  774. /* Sections ---------------------------------- */
  775. section {
  776. padding: 5rem 0;
  777. width: 100%;
  778. }
  779. .section-inner {
  780. margin-right: auto;
  781. margin-left: auto;
  782. max-width: 120rem;
  783. width: calc(100% - 4rem);
  784. }
  785. .section-inner.max-percentage {
  786. width: 100%;
  787. }
  788. .section-inner.thin {
  789. max-width: 58rem;
  790. }
  791. .section-inner.small {
  792. max-width: 80rem;
  793. }
  794. .section-inner.medium {
  795. max-width: 100rem;
  796. }
  797. .section-inner.no-margin {
  798. margin: 0;
  799. }
  800. /* Toggles ----------------------------------- */
  801. .toggle {
  802. -moz-appearance: none;
  803. -webkit-appearance: none;
  804. color: inherit;
  805. cursor: pointer;
  806. font-family: inherit;
  807. position: relative;
  808. -webkit-touch-callout: none;
  809. -webkit-user-select: none;
  810. -khtml-user-select: none;
  811. -moz-user-select: none;
  812. -ms-user-select: none;
  813. text-align: inherit;
  814. user-select: none;
  815. }
  816. button.toggle {
  817. background: none;
  818. border: none;
  819. box-shadow: none;
  820. border-radius: 0;
  821. font-size: inherit;
  822. font-weight: 400;
  823. letter-spacing: inherit;
  824. padding: 0;
  825. text-transform: none;
  826. }
  827. /* Hiding and Showing ------------------------ */
  828. .js .show-js {
  829. display: block !important;
  830. }
  831. .js .hide-js {
  832. display: none !important;
  833. }
  834. .no-js .show-no-js {
  835. display: block !important;
  836. }
  837. .no-js .hide-no-js {
  838. display: none !important;
  839. }
  840. /* Typography -------------------------------- */
  841. .font-size-xl {
  842. font-size: 1.25em;
  843. }
  844. .font-size-xs {
  845. font-size: 0.8em;
  846. }
  847. .no-select {
  848. -webkit-touch-callout: none;
  849. -webkit-user-select: none;
  850. -moz-user-select: none;
  851. -ms-user-select: none;
  852. user-select: none;
  853. }
  854. /* Colors ------------------------------------ */
  855. /* COLOR */
  856. .color-accent,
  857. .color-accent-hover:focus,
  858. .color-accent-hover:hover {
  859. color: #cd2653;
  860. }
  861. /* BACKGROUND COLOR */
  862. .bg-accent,
  863. .bg-accent-hover:focus,
  864. .bg-accent-hover:hover {
  865. background-color: #cd2653;
  866. }
  867. /* BORDER COLOR */
  868. .border-color-accent,
  869. .border-color-accent-hover:focus,
  870. .border-color-accent-hover:hover {
  871. border-color: #cd2653;
  872. }
  873. /* FILL COLOR */
  874. .fill-children-accent,
  875. .fill-children-accent * {
  876. fill: #cd2653;
  877. }
  878. .fill-children-current-color,
  879. .fill-children-current-color * {
  880. fill: currentColor;
  881. }
  882. /* Opacity ----------------------------------- */
  883. .opacity-0 {
  884. opacity: 0;
  885. }
  886. .opacity-5 {
  887. opacity: 0.05;
  888. }
  889. .opacity-10 {
  890. opacity: 0.1;
  891. }
  892. .opacity-15 {
  893. opacity: 0.15;
  894. }
  895. .opacity-20 {
  896. opacity: 0.2;
  897. }
  898. .opacity-25 {
  899. opacity: 0.25;
  900. }
  901. .opacity-30 {
  902. opacity: 0.3;
  903. }
  904. .opacity-35 {
  905. opacity: 0.35;
  906. }
  907. .opacity-40 {
  908. opacity: 0.4;
  909. }
  910. .opacity-45 {
  911. opacity: 0.45;
  912. }
  913. .opacity-50 {
  914. opacity: 0.5;
  915. }
  916. .opacity-55 {
  917. opacity: 0.55;
  918. }
  919. .opacity-60 {
  920. opacity: 0.6;
  921. }
  922. .opacity-65 {
  923. opacity: 0.65;
  924. }
  925. .opacity-70 {
  926. opacity: 0.7;
  927. }
  928. .opacity-75 {
  929. opacity: 0.75;
  930. }
  931. .opacity-80 {
  932. opacity: 0.8;
  933. }
  934. .opacity-85 {
  935. opacity: 0.85;
  936. }
  937. .opacity-90 {
  938. opacity: 0.9;
  939. }
  940. .blend-mode-exclusion {
  941. mix-blend-mode: exclusion;
  942. }
  943. .blend-mode-hue {
  944. mix-blend-mode: hue;
  945. }
  946. .blend-mode-saturation {
  947. mix-blend-mode: saturation;
  948. }
  949. .blend-mode-color {
  950. mix-blend-mode: color;
  951. }
  952. .blend-mode-luminosity {
  953. mix-blend-mode: luminosity;
  954. }
  955. /* Image Classes ----------------------------- */
  956. .bg-image {
  957. background-position: center;
  958. background-repeat: no-repeat;
  959. background-size: cover;
  960. }
  961. .bg-attachment-fixed {
  962. background-attachment: fixed;
  963. }
  964. @supports ( -webkit-overflow-scrolling: touch ) {
  965. .bg-attachment-fixed {
  966. background-attachment: scroll;
  967. }
  968. }
  969. @media ( prefers-reduced-motion: reduce ) {
  970. .bg-attachment-fixed {
  971. background-attachment: scroll;
  972. }
  973. }
  974. .wp-block-image.is-resized {
  975. margin-right: auto;
  976. margin-left: auto;
  977. }
  978. /* Search Form ------------------------------- */
  979. .search-form {
  980. align-items: stretch;
  981. display: flex;
  982. flex-wrap: nowrap;
  983. margin: 0 -0.8rem -0.8rem 0;
  984. }
  985. .search-form .search-field,
  986. .search-form .search-submit {
  987. margin: 0 0.8rem 0.8rem 0;
  988. }
  989. .search-form label {
  990. align-items: stretch;
  991. display: flex;
  992. font-size: inherit;
  993. margin: 0;
  994. width: 100%;
  995. }
  996. .search-form .search-field {
  997. width: 100%;
  998. }
  999. .search-form .search-submit {
  1000. flex-shrink: 0;
  1001. }
  1002. .search-form .search-submit:focus,
  1003. .search-form .search-submit:hover {
  1004. text-decoration: none;
  1005. }
  1006. /* Social Icons ------------------------------ */
  1007. ul.social-icons {
  1008. display: flex;
  1009. flex-wrap: wrap;
  1010. margin: -0.9rem -0.9rem 0 0;
  1011. width: calc(100% + 0.9rem);
  1012. }
  1013. ul.social-icons li {
  1014. margin: 0.9rem 0.9rem 0 0;
  1015. }
  1016. .social-icons a {
  1017. align-items: center;
  1018. background: #cd2653;
  1019. border-radius: 50%;
  1020. color: #fff;
  1021. display: flex;
  1022. height: 4.4rem;
  1023. justify-content: center;
  1024. padding: 0;
  1025. text-decoration: none;
  1026. transition: transform 0.15s ease-in-out;
  1027. width: 4.4rem;
  1028. }
  1029. .social-icons a:focus,
  1030. .social-icons a:hover {
  1031. transform: scale(1.1);
  1032. text-decoration: none;
  1033. }
  1034. /* Cover Modals ------------------------------ */
  1035. .cover-modal {
  1036. display: none;
  1037. -ms-overflow-style: none;
  1038. overflow: -moz-scrollbars-none;
  1039. }
  1040. .cover-modal::-webkit-scrollbar {
  1041. display: none !important;
  1042. }
  1043. .cover-modal.show-modal {
  1044. display: block;
  1045. cursor: pointer;
  1046. }
  1047. .cover-modal.show-modal > * {
  1048. cursor: default;
  1049. }
  1050. /* -------------------------------------------------------------------------- */
  1051. /* 4. Site Header
  1052. /* -------------------------------------------------------------------------- */
  1053. #site-header {
  1054. background: #fff;
  1055. position: relative;
  1056. }
  1057. .header-inner {
  1058. max-width: 168rem;
  1059. padding: 3.15rem 0;
  1060. z-index: 100;
  1061. }
  1062. /* Header Titles ----------------------------- */
  1063. .header-titles-wrapper {
  1064. align-items: center;
  1065. display: flex;
  1066. justify-content: center;
  1067. padding: 0 4rem;
  1068. text-align: center;
  1069. }
  1070. body:not(.enable-search-modal) .header-titles-wrapper {
  1071. justify-content: flex-start;
  1072. padding-right: 0;
  1073. text-align: right;
  1074. }
  1075. .site-title,
  1076. .site-logo,
  1077. .site-description {
  1078. margin: 0;
  1079. }
  1080. .site-title {
  1081. font-size: 2.1rem;
  1082. font-weight: 600;
  1083. line-height: 1;
  1084. }
  1085. .site-title a {
  1086. color: inherit;
  1087. display: block;
  1088. text-decoration: none;
  1089. }
  1090. .site-title a:hover,
  1091. .site-title a:focus {
  1092. text-decoration: underline;
  1093. }
  1094. .site-description {
  1095. margin-top: 1rem;
  1096. color: #6d6d6d;
  1097. font-size: 1.8rem;
  1098. font-weight: 500;
  1099. display: none;
  1100. letter-spacing: -0.0311em;
  1101. transition: all 0.15s linear;
  1102. }
  1103. .site-logo a,
  1104. .site-logo img {
  1105. display: block;
  1106. }
  1107. .header-titles .site-logo .site-logo {
  1108. margin: 0;
  1109. }
  1110. .site-logo img {
  1111. max-height: 6rem;
  1112. margin: 0 auto;
  1113. width: auto;
  1114. }
  1115. body:not(.enable-search-modal) .site-logo img {
  1116. margin: 0;
  1117. }
  1118. /* Overlay Header ---------------------------- */
  1119. .overlay-header #site-header {
  1120. background: transparent;
  1121. margin: 0;
  1122. position: absolute;
  1123. right: 0;
  1124. left: 0;
  1125. top: 0;
  1126. z-index: 2;
  1127. }
  1128. .overlay-header .header-inner {
  1129. color: #fff;
  1130. }
  1131. .overlay-header .site-description,
  1132. .overlay-header .toggle {
  1133. color: inherit;
  1134. }
  1135. .overlay-header .header-inner .toggle-wrapper::before {
  1136. background-color: currentColor;
  1137. opacity: 0.25;
  1138. }
  1139. .admin-bar.overlay-header #site-header {
  1140. top: 32px;
  1141. }
  1142. @media (max-width: 782px) {
  1143. .admin-bar.overlay-header #site-header {
  1144. top: 46px;
  1145. }
  1146. }
  1147. /* Header Navigation ------------------------- */
  1148. .header-navigation-wrapper {
  1149. display: none;
  1150. }
  1151. /* Header Toggles ---------------------------- */
  1152. .header-toggles {
  1153. display: none;
  1154. }
  1155. .header-inner .toggle {
  1156. align-items: center;
  1157. display: flex;
  1158. overflow: visible;
  1159. padding: 0 2rem;
  1160. }
  1161. .header-inner .toggle svg {
  1162. display: block;
  1163. position: relative;
  1164. z-index: 1;
  1165. }
  1166. .header-inner .toggle path {
  1167. fill: currentColor;
  1168. }
  1169. .toggle-inner {
  1170. display: flex;
  1171. justify-content: center;
  1172. height: 2.3rem;
  1173. position: relative;
  1174. }
  1175. .toggle-icon {
  1176. display: block;
  1177. overflow: hidden;
  1178. }
  1179. .toggle-inner .toggle-text {
  1180. color: #6d6d6d;
  1181. font-size: 1rem;
  1182. font-weight: 600;
  1183. position: absolute;
  1184. top: calc(100% + 0.5rem);
  1185. width: auto;
  1186. white-space: nowrap;
  1187. word-break: break-all;
  1188. }
  1189. .overlay-header .toggle-text {
  1190. color: inherit;
  1191. }
  1192. .header-inner .toggle:focus .toggle-text,
  1193. .header-inner .toggle:hover .toggle-text {
  1194. text-decoration: underline;
  1195. }
  1196. /* Search Toggle ----------------------------- */
  1197. .search-toggle {
  1198. position: absolute;
  1199. bottom: 0;
  1200. right: 0;
  1201. top: 0;
  1202. }
  1203. .search-toggle .toggle-icon,
  1204. .search-toggle svg {
  1205. height: 2.5rem;
  1206. max-width: 2.3rem;
  1207. width: 2.3rem;
  1208. }
  1209. /* Navigation Toggle ------------------------- */
  1210. .nav-toggle {
  1211. position: absolute;
  1212. bottom: 0;
  1213. left: 0;
  1214. top: 0;
  1215. width: 6.6rem;
  1216. }
  1217. .nav-toggle .toggle-icon,
  1218. .nav-toggle svg {
  1219. height: 0.8rem;
  1220. width: 2.6rem;
  1221. }
  1222. .nav-toggle .toggle-inner {
  1223. padding-top: 0.8rem;
  1224. }
  1225. /* Primary Menu ---------------------------- */
  1226. .primary-menu-wrapper {
  1227. display: none;
  1228. }
  1229. ul.primary-menu {
  1230. display: flex;
  1231. font-size: 1.8rem;
  1232. font-weight: 500;
  1233. letter-spacing: -0.0277em;
  1234. flex-wrap: wrap;
  1235. justify-content: flex-end;
  1236. margin: -0.8rem -1.6rem 0 0;
  1237. }
  1238. .primary-menu .icon {
  1239. display: block;
  1240. height: 0.7rem;
  1241. position: absolute;
  1242. pointer-events: none;
  1243. transform: rotate(45deg);
  1244. width: 1.3rem;
  1245. }
  1246. .primary-menu .icon::before,
  1247. .primary-menu .icon::after {
  1248. content: "";
  1249. display: block;
  1250. background-color: currentColor;
  1251. position: absolute;
  1252. bottom: calc(50% - 0.1rem);
  1253. right: 0;
  1254. }
  1255. .primary-menu .icon::before {
  1256. height: 0.9rem;
  1257. width: 0.2rem;
  1258. }
  1259. .primary-menu .icon::after {
  1260. height: 0.2rem;
  1261. width: 0.9rem;
  1262. }
  1263. .primary-menu li {
  1264. font-size: inherit;
  1265. line-height: 1.25;
  1266. position: relative;
  1267. }
  1268. .primary-menu > li {
  1269. margin: 0.8rem 1.6rem 0 0;
  1270. }
  1271. .primary-menu > li.menu-item-has-children > a {
  1272. padding-left: 2rem;
  1273. }
  1274. .primary-menu > li > .icon {
  1275. left: -0.5rem;
  1276. top: calc(50% - 0.4rem);
  1277. }
  1278. .primary-menu a {
  1279. color: inherit;
  1280. display: block;
  1281. line-height: 1.2;
  1282. text-decoration: none;
  1283. }
  1284. .primary-menu a:hover,
  1285. .primary-menu a:focus,
  1286. .primary-menu .current_page_ancestor {
  1287. text-decoration: underline;
  1288. }
  1289. .primary-menu li.current-menu-item > a,
  1290. .primary-menu li.current-menu-item > .link-icon-wrapper > a {
  1291. text-decoration: underline;
  1292. }
  1293. .primary-menu li.current-menu-item > a:hover,
  1294. .primary-menu li.current-menu-item > .link-icon-wrapper > a:hover,
  1295. .primary-menu li.current-menu-item > a:focus,
  1296. .primary-menu li.current-menu-item > .link-icon-wrapper > a:focus {
  1297. text-decoration: none;
  1298. }
  1299. /* SUB MENU */
  1300. .primary-menu ul {
  1301. background: #000;
  1302. border-radius: 0.4rem;
  1303. color: #fff;
  1304. font-size: 1.7rem;
  1305. opacity: 0;
  1306. padding: 1rem 0;
  1307. position: absolute;
  1308. left: 9999rem;
  1309. top: calc(100% + 2rem);
  1310. transition: opacity 0.15s linear, transform 0.15s linear, left 0s 0.15s;
  1311. transform: translateY(0.6rem);
  1312. width: 20rem;
  1313. z-index: 1;
  1314. }
  1315. .primary-menu li.menu-item-has-children:hover > ul,
  1316. .primary-menu li.menu-item-has-children:focus > ul,
  1317. .primary-menu li.menu-item-has-children.focus > ul {
  1318. left: 0;
  1319. opacity: 1;
  1320. transform: translateY(0);
  1321. transition: opacity 0.15s linear, transform 0.15s linear;
  1322. }
  1323. .primary-menu ul::before,
  1324. .primary-menu ul::after {
  1325. content: "";
  1326. display: block;
  1327. position: absolute;
  1328. bottom: 100%;
  1329. }
  1330. .primary-menu ul::before {
  1331. height: 2rem;
  1332. right: 0;
  1333. left: 0;
  1334. }
  1335. .primary-menu ul::after {
  1336. border: 0.8rem solid transparent;
  1337. border-bottom-color: #000;
  1338. left: 1.8rem;
  1339. }
  1340. .primary-menu ul a {
  1341. background: transparent;
  1342. border: none;
  1343. color: inherit;
  1344. display: block;
  1345. padding: 1rem 2rem;
  1346. transition: background-color 0.15s linear;
  1347. width: 100%;
  1348. }
  1349. .primary-menu ul li.menu-item-has-children > a {
  1350. padding-left: 4.5rem;
  1351. }
  1352. .primary-menu ul li.menu-item-has-children .icon {
  1353. position: absolute;
  1354. left: 1.5rem;
  1355. top: calc(50% - 0.5rem);
  1356. }
  1357. /* DEEP DOWN */
  1358. .primary-menu ul ul {
  1359. top: -1rem;
  1360. }
  1361. .primary-menu ul li.menu-item-has-children:hover > ul,
  1362. .primary-menu ul li.menu-item-has-children:focus > ul,
  1363. .primary-menu ul li.menu-item-has-children.focus > ul {
  1364. left: calc(100% + 2rem);
  1365. }
  1366. .primary-menu ul ul::before {
  1367. bottom: 0;
  1368. height: auto;
  1369. right: auto;
  1370. left: -2rem;
  1371. top: 0;
  1372. width: 2rem;
  1373. }
  1374. .primary-menu ul ul::after {
  1375. border-bottom-color: transparent;
  1376. border-left-color: #000;
  1377. bottom: auto;
  1378. left: -1.6rem;
  1379. top: 2rem;
  1380. }
  1381. .rtl .primary-menu ul ul::after {
  1382. transform: rotate(-180deg);
  1383. }
  1384. /*
  1385. * Enable nav submenu expansion with tapping on arrows on large-viewport
  1386. * touch interfaces (e.g. tablets or laptops with touch screens).
  1387. * These rules are supported by all browsers (>IE11) and when JS is disabled.
  1388. */
  1389. @media (any-pointer: coarse) {
  1390. .primary-menu > li.menu-item-has-children > a {
  1391. padding-left: 0;
  1392. margin-left: 2rem;
  1393. }
  1394. .primary-menu ul li.menu-item-has-children > a {
  1395. margin-left: 4.5rem;
  1396. padding-left: 0;
  1397. width: unset;
  1398. }
  1399. }
  1400. /* Repeat previous rules for IE11 (when JS enabled for polyfill). */
  1401. body.touch-enabled .primary-menu > li.menu-item-has-children > a {
  1402. padding-left: 0;
  1403. margin-left: 2rem;
  1404. }
  1405. body.touch-enabled .primary-menu ul li.menu-item-has-children > a {
  1406. margin-left: 4.5rem;
  1407. padding-left: 0;
  1408. width: unset;
  1409. }
  1410. /* -------------------------------------------------------------------------- */
  1411. /* 5. Menu Modal
  1412. /* -------------------------------------------------------------------------- */
  1413. .menu-modal {
  1414. background: #fff;
  1415. display: none;
  1416. opacity: 0;
  1417. overflow-y: auto;
  1418. overflow-x: hidden;
  1419. position: fixed;
  1420. bottom: 0;
  1421. right: -99999rem;
  1422. left: 99999rem;
  1423. top: 0;
  1424. transition: opacity 0.25s ease-in, right 0s 0.25s, left 0s 0.25s;
  1425. z-index: 99;
  1426. }
  1427. .admin-bar .menu-modal {
  1428. top: 32px;
  1429. }
  1430. @media (max-width: 782px) {
  1431. .admin-bar .menu-modal {
  1432. top: 46px;
  1433. }
  1434. }
  1435. .menu-modal.show-modal {
  1436. display: flex;
  1437. }
  1438. .menu-modal.active {
  1439. right: 0;
  1440. opacity: 1;
  1441. left: 0;
  1442. transition: opacity 0.25s ease-out;
  1443. }
  1444. .menu-modal-inner {
  1445. background: #fff;
  1446. display: flex;
  1447. justify-content: stretch;
  1448. overflow: auto;
  1449. -ms-overflow-style: auto;
  1450. width: 100%;
  1451. }
  1452. .menu-wrapper {
  1453. display: flex;
  1454. flex-direction: column;
  1455. justify-content: space-between;
  1456. position: relative;
  1457. }
  1458. button.close-nav-toggle {
  1459. align-items: center;
  1460. display: flex;
  1461. font-size: 1.6rem;
  1462. font-weight: 500;
  1463. justify-content: flex-end;
  1464. padding: 3.1rem 0;
  1465. width: 100%;
  1466. }
  1467. button.close-nav-toggle svg {
  1468. height: 1.6rem;
  1469. width: 1.6rem;
  1470. }
  1471. button.close-nav-toggle .toggle-text {
  1472. margin-left: 1.6rem;
  1473. }
  1474. .menu-modal .menu-top {
  1475. flex-shrink: 0;
  1476. }
  1477. /* Main Menu --------------------------------- */
  1478. .modal-menu {
  1479. position: relative;
  1480. right: calc(50% - 50vw);
  1481. width: 100vw;
  1482. }
  1483. .modal-menu li {
  1484. border-color: #dedfdf;
  1485. border-style: solid;
  1486. border-width: 0.1rem 0 0 0;
  1487. display: flex;
  1488. flex-wrap: wrap;
  1489. line-height: 1;
  1490. justify-content: flex-start;
  1491. margin: 0;
  1492. }
  1493. .modal-menu > li > a,
  1494. .modal-menu > li > .ancestor-wrapper > a {
  1495. font-size: 2rem;
  1496. font-weight: 700;
  1497. letter-spacing: -0.0375em;
  1498. }
  1499. .modal-menu > li:last-child {
  1500. border-bottom-width: 0.1rem;
  1501. }
  1502. .modal-menu .ancestor-wrapper {
  1503. display: flex;
  1504. justify-content: space-between;
  1505. width: 100%;
  1506. }
  1507. .modal-menu a {
  1508. display: block;
  1509. padding: 2rem 2.5rem;
  1510. text-decoration: none;
  1511. width: 100%;
  1512. }
  1513. .modal-menu a:focus,
  1514. .modal-menu a:hover,
  1515. .modal-menu li.current-menu-item > .ancestor-wrapper > a,
  1516. .modal-menu li.current_page_ancestor > .ancestor-wrapper > a {
  1517. text-decoration: underline;
  1518. }
  1519. button.sub-menu-toggle {
  1520. border-right: 0.1rem solid #dedfdf;
  1521. flex-shrink: 0;
  1522. margin: 1rem 0;
  1523. padding: 0 2.5rem;
  1524. }
  1525. button.sub-menu-toggle svg {
  1526. height: 0.9rem;
  1527. transition: transform 0.15s linear;
  1528. width: 1.5rem;
  1529. }
  1530. button.sub-menu-toggle.active svg {
  1531. transform: rotate(-180deg);
  1532. }
  1533. .modal-menu ul {
  1534. display: none;
  1535. margin: 0;
  1536. width: 100%;
  1537. }
  1538. .modal-menu ul li {
  1539. border-right-width: 1rem;
  1540. }
  1541. .modal-menu ul li a {
  1542. color: inherit;
  1543. font-weight: 500;
  1544. }
  1545. /* Main menu animation ----------------------- */
  1546. .menu-wrapper .menu-item {
  1547. position: relative;
  1548. }
  1549. .menu-wrapper .active {
  1550. display: block;
  1551. }
  1552. .menu-wrapper.is-toggling {
  1553. pointer-events: none;
  1554. }
  1555. .menu-wrapper.is-toggling .menu-item {
  1556. position: absolute;
  1557. top: 0;
  1558. right: 0;
  1559. margin: 0;
  1560. width: 100%;
  1561. }
  1562. .menu-wrapper.is-toggling .menu-bottom .social-menu .menu-item {
  1563. width: auto;
  1564. }
  1565. .menu-wrapper.is-animating .menu-item,
  1566. .menu-wrapper.is-animating .toggling-target {
  1567. transition-duration: 250ms;
  1568. }
  1569. .menu-wrapper.is-animating .menu-item {
  1570. transition-property: transform;
  1571. }
  1572. .menu-wrapper.is-toggling .toggling-target {
  1573. display: block;
  1574. position: absolute;
  1575. top: 0;
  1576. right: 0;
  1577. opacity: 1;
  1578. }
  1579. .menu-wrapper.is-toggling .toggling-target.active {
  1580. opacity: 0;
  1581. }
  1582. .menu-wrapper.is-animating.is-toggling .toggling-target {
  1583. display: block;
  1584. transition-property: opacity;
  1585. opacity: 0;
  1586. }
  1587. .menu-wrapper.is-animating.is-toggling .toggling-target.active {
  1588. opacity: 1;
  1589. }
  1590. .menu-wrapper.is-toggling .modal-menu > li:last-child li {
  1591. border-top-color: transparent;
  1592. border-bottom-width: 0.1rem;
  1593. }
  1594. @media (prefers-reduced-motion: reduce) {
  1595. .menu-wrapper.is-animating .menu-item,
  1596. .menu-wrapper.is-animating .toggling-target {
  1597. transition-duration: 1ms !important;
  1598. }
  1599. }
  1600. /* Expanded Menu ----------------------------- */
  1601. .expanded-menu {
  1602. display: none;
  1603. }
  1604. .mobile-menu {
  1605. display: block;
  1606. }
  1607. /* Menu Bottom ------------------------------- */
  1608. .menu-bottom {
  1609. flex-shrink: 0;
  1610. padding: 4rem 0;
  1611. }
  1612. .menu-bottom nav {
  1613. width: 100%;
  1614. }
  1615. .menu-copyright {
  1616. display: none;
  1617. font-size: 1.6rem;
  1618. font-weight: 500;
  1619. margin: 0;
  1620. }
  1621. .menu-copyright a:focus,
  1622. .menu-copyright a:hover {
  1623. text-decoration: underline;
  1624. }
  1625. .menu-bottom .social-menu {
  1626. justify-content: center;
  1627. }
  1628. /* -------------------------------------------------------------------------- */
  1629. /* 6. Search Modal
  1630. /* -------------------------------------------------------------------------- */
  1631. .search-modal {
  1632. background: rgba(0, 0, 0, 0.2);
  1633. display: none;
  1634. opacity: 0;
  1635. position: fixed;
  1636. bottom: 0;
  1637. right: -9999rem;
  1638. top: 0;
  1639. transition: opacity 0.2s linear, right 0s 0.2s linear;
  1640. width: 100%;
  1641. z-index: 999;
  1642. }
  1643. .admin-bar .search-modal.active {
  1644. top: 32px;
  1645. }
  1646. @media (max-width: 782px) {
  1647. .admin-bar .search-modal.active {
  1648. top: 46px;
  1649. }
  1650. }
  1651. .search-modal-inner {
  1652. background: #fff;
  1653. transform: translateY(-100%);
  1654. transition: transform 0.15s linear, box-shadow 0.15s linear;
  1655. }
  1656. .search-modal-inner .section-inner {
  1657. display: flex;
  1658. justify-content: space-between;
  1659. max-width: 168rem;
  1660. }
  1661. .search-modal.active {
  1662. right: 0;
  1663. opacity: 1;
  1664. transition: opacity 0.2s linear;
  1665. }
  1666. .search-modal.active .search-modal-inner {
  1667. box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.08);
  1668. transform: translateY(0);
  1669. transition: transform 0.25s ease-in-out, box-shadow 0.1s 0.25s linear;
  1670. }
  1671. button.search-untoggle {
  1672. align-items: center;
  1673. display: flex;
  1674. flex-shrink: 0;
  1675. justify-content: center;
  1676. margin-left: -2.5rem;
  1677. padding: 0 2.5rem;
  1678. }
  1679. .search-modal button.search-untoggle {
  1680. color: inherit;
  1681. }
  1682. .search-modal.active .search-untoggle {
  1683. animation: popIn both 0.3s 0.2s;
  1684. }
  1685. .search-untoggle svg {
  1686. height: 1.5rem;
  1687. transition: transform 0.15s ease-in-out;
  1688. width: 1.5rem;
  1689. }
  1690. .search-untoggle:focus svg,
  1691. .search-untoggle:hover svg {
  1692. transform: scale(1.15);
  1693. }
  1694. /* Modal Search Form ------------------------- */
  1695. .search-modal form {
  1696. margin: 0;
  1697. position: relative;
  1698. width: 100%;
  1699. }
  1700. .search-modal .search-field {
  1701. background: none;
  1702. border: none;
  1703. border-radius: 0;
  1704. color: inherit;
  1705. font-size: 2rem;
  1706. letter-spacing: -0.0277em;
  1707. height: 8.4rem;
  1708. margin: 0 -2rem 0 0;
  1709. max-width: calc(100% + 2rem);
  1710. padding: 0 2rem 0 0;
  1711. width: calc(100% + 2rem);
  1712. }
  1713. .search-modal .search-field::-webkit-input-placeholder {
  1714. color: inherit;
  1715. }
  1716. .search-modal .search-field:-ms-input-placeholder {
  1717. color: inherit;
  1718. }
  1719. .search-modal .search-field::-moz-placeholder {
  1720. color: inherit;
  1721. line-height: 4;
  1722. }
  1723. .search-modal .search-submit {
  1724. position: absolute;
  1725. left: -9999rem;
  1726. top: 50%;
  1727. transform: translateY(-50%);
  1728. }
  1729. .search-modal .search-submit:focus {
  1730. left: 0;
  1731. }
  1732. /* -------------------------------------------------------------------------- */
  1733. /* 7a. Template: Cover Template
  1734. /* -------------------------------------------------------------------------- */
  1735. .cover-header {
  1736. display: flex;
  1737. overflow: hidden;
  1738. }
  1739. .cover-header-inner-wrapper {
  1740. display: flex;
  1741. position: relative;
  1742. flex-direction: column;
  1743. justify-content: flex-end;
  1744. width: 100%;
  1745. }
  1746. .cover-header-inner {
  1747. padding: 10rem 0 5rem 0;
  1748. width: 100%;
  1749. }
  1750. .cover-color-overlay,
  1751. .cover-color-overlay::before {
  1752. position: absolute;
  1753. bottom: 0;
  1754. right: 0;
  1755. left: 0;
  1756. top: 0;
  1757. }
  1758. .cover-color-overlay::before {
  1759. background: currentColor;
  1760. content: "";
  1761. display: block;
  1762. }
  1763. .cover-header .entry-header {
  1764. position: relative;
  1765. width: 100%;
  1766. z-index: 1;
  1767. }
  1768. .cover-header .entry-header * {
  1769. color: #fff;
  1770. }
  1771. body.template-cover .entry-header {
  1772. background: transparent;
  1773. padding: 0;
  1774. }
  1775. .cover-header h1,
  1776. .cover-header h2,
  1777. .cover-header h3,
  1778. .cover-header h4,
  1779. .cover-header h5,
  1780. .cover-header h6,
  1781. .cover-header .faux-heading {
  1782. color: inherit;
  1783. }
  1784. .cover-header .entry-header a {
  1785. color: inherit;
  1786. }
  1787. /* To The Content ---------------------------- */
  1788. .to-the-content-wrapper {
  1789. position: absolute;
  1790. right: 0;
  1791. left: 0;
  1792. top: calc(100% + 0.5rem);
  1793. }
  1794. .to-the-content {
  1795. align-items: center;
  1796. display: flex;
  1797. justify-content: center;
  1798. height: 4rem;
  1799. text-decoration: none;
  1800. }
  1801. .to-the-content svg {
  1802. height: 2rem;
  1803. transition: transform 0.15s linear;
  1804. transform: translateY(0);
  1805. width: 1.767rem;
  1806. }
  1807. .to-the-content:focus svg,
  1808. .to-the-content:hover svg {
  1809. transform: translateY(20%);
  1810. }
  1811. /* -------------------------------------------------------------------------- */
  1812. /* 7c. Template: Full Width
  1813. /* -------------------------------------------------------------------------- */
  1814. body.template-full-width .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
  1815. body.template-full-width [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  1816. max-width: 120rem;
  1817. }
  1818. body.template-full-width .entry-content .alignleft,
  1819. body.template-full-width .entry-content .alignright {
  1820. position: static;
  1821. }
  1822. body.template-full-width .entry-content .alignleft,
  1823. body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .alignleft,
  1824. body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignleft,
  1825. body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignleft {
  1826. margin-left: 0;
  1827. position: static;
  1828. }
  1829. body.template-full-width .entry-content > .alignleft,
  1830. body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
  1831. body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
  1832. body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {
  1833. margin-left: 2rem;
  1834. position: static;
  1835. }
  1836. body.template-full-width .entry-content .alignright,
  1837. body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .alignright,
  1838. body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignright,
  1839. body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignright {
  1840. margin-right: 0;
  1841. position: static;
  1842. }
  1843. body.template-full-width .entry-content > .alignright,
  1844. body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
  1845. body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
  1846. body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {
  1847. margin-right: 2rem;
  1848. position: static;
  1849. }
  1850. /* -------------------------------------------------------------------------- */
  1851. /* 8. Post: Archive
  1852. /* -------------------------------------------------------------------------- */
  1853. /* Archive Header ---------------------------- */
  1854. .archive-header {
  1855. background-color: #fff;
  1856. padding: 4rem 0;
  1857. }
  1858. .reduced-spacing .archive-header {
  1859. padding-bottom: 2rem;
  1860. }
  1861. .archive-title {
  1862. font-size: 2.4rem;
  1863. font-weight: 700;
  1864. letter-spacing: -0.026666667em;
  1865. margin: 0;
  1866. }
  1867. .archive-subtitle p:last-child {
  1868. margin-bottom: 0;
  1869. }
  1870. /* Posts ------------------------------------- */
  1871. body:not(.singular) main > article:first-of-type {
  1872. padding: 4rem 0 0;
  1873. }
  1874. /* Search Results ---------------------------- */
  1875. .no-search-results-form {
  1876. padding-top: 5rem;
  1877. }
  1878. /* -------------------------------------------------------------------------- */
  1879. /* 9. Post: Single
  1880. /* -------------------------------------------------------------------------- */
  1881. /* Post Header ------------------------------- */
  1882. .singular .entry-header {
  1883. background-color: #fff;
  1884. padding: 4rem 0;
  1885. }
  1886. .entry-categories {
  1887. line-height: 1.25;
  1888. margin-bottom: 2rem;
  1889. }
  1890. .entry-categories-inner {
  1891. justify-content: center;
  1892. display: flex;
  1893. flex-wrap: wrap;
  1894. margin: -0.5rem -1rem 0 0;
  1895. }
  1896. .entry-categories a {
  1897. border-bottom: 0.15rem solid currentColor;
  1898. font-size: 1.4rem;
  1899. font-weight: 700;
  1900. letter-spacing: 0.036666667em;
  1901. margin: 0.5rem 1rem 0 0;
  1902. text-decoration: none;
  1903. text-transform: uppercase;
  1904. }
  1905. .entry-categories a:focus,
  1906. .entry-categories a:hover {
  1907. border-bottom-color: transparent;
  1908. }
  1909. h1.entry-title,
  1910. h2.entry-title {
  1911. margin: 0;
  1912. }
  1913. .entry-title a {
  1914. color: inherit;
  1915. text-decoration: none;
  1916. }
  1917. .entry-title a:focus,
  1918. .entry-title a:hover {
  1919. text-decoration: underline;
  1920. }
  1921. .intro-text {
  1922. margin-top: 2rem;
  1923. }
  1924. .singular .intro-text {
  1925. font-size: 2rem;
  1926. letter-spacing: -0.0315em;
  1927. line-height: 1.4;
  1928. }
  1929. /* POST META */
  1930. .post-meta-single-top .post-meta {
  1931. justify-content: center;
  1932. }
  1933. .post-meta-wrapper {
  1934. margin-top: 2rem;
  1935. margin-left: auto;
  1936. margin-right: auto;
  1937. max-width: 58rem;
  1938. width: calc(100% - 4rem);
  1939. }
  1940. .post-meta {
  1941. color: #6d6d6d;
  1942. display: flex;
  1943. flex-wrap: wrap;
  1944. font-size: 1.5rem;
  1945. font-weight: 500;
  1946. list-style: none;
  1947. margin: -1rem -2rem 0 0;
  1948. }
  1949. .post-meta li {
  1950. flex-shrink: 0;
  1951. letter-spacing: -0.016875em;
  1952. margin: 1rem 2rem 0 0;
  1953. max-width: calc(100% - 2rem);
  1954. }
  1955. .post-meta a {
  1956. color: inherit;
  1957. text-decoration: none;
  1958. }
  1959. .post-meta a:focus,
  1960. .post-meta a:hover {
  1961. text-decoration: underline;
  1962. }
  1963. .post-meta .meta-wrapper {
  1964. align-items: center;
  1965. display: flex;
  1966. flex-wrap: nowrap;
  1967. }
  1968. .post-meta .meta-icon {
  1969. flex-shrink: 0;
  1970. margin-left: 1rem;
  1971. }
  1972. .sticky .post-sticky {
  1973. color: inherit;
  1974. }
  1975. .post-meta .post-author .meta-icon svg {
  1976. width: 1.6rem;
  1977. height: 1.8rem;
  1978. }
  1979. .post-meta .post-categories .meta-icon svg {
  1980. width: 1.8rem;
  1981. height: 1.7rem;
  1982. }
  1983. .post-meta .post-comment-link .meta-icon svg {
  1984. width: 1.8rem;
  1985. height: 1.8rem;
  1986. }
  1987. .post-meta .post-date .meta-icon svg {
  1988. width: 1.7rem;
  1989. height: 1.8rem;
  1990. }
  1991. .post-meta .post-edit .meta-icon svg {
  1992. width: 1.8rem;
  1993. height: 1.8rem;
  1994. }
  1995. .post-meta .post-sticky .meta-icon svg {
  1996. width: 1.5rem;
  1997. height: 1.8rem;
  1998. }
  1999. .post-meta .post-tags .meta-icon svg {
  2000. width: 1.8rem;
  2001. height: 1.8rem;
  2002. }
  2003. .post-meta svg * {
  2004. fill: currentColor;
  2005. }
  2006. /* Featured Media ---------------------------- */
  2007. .featured-media {
  2008. margin-top: 5rem;
  2009. position: relative;
  2010. }
  2011. .singular .featured-media {
  2012. margin-top: 0;
  2013. }
  2014. .singular .featured-media-inner {
  2015. position: relative;
  2016. right: calc(50% - 50vw);
  2017. width: 100vw;
  2018. }
  2019. .singular .featured-media::before {
  2020. background: #fff;
  2021. content: "";
  2022. display: block;
  2023. position: absolute;
  2024. bottom: 50%;
  2025. right: 0;
  2026. left: 0;
  2027. top: 0;
  2028. }
  2029. .featured-media img {
  2030. margin: 0 auto;
  2031. }
  2032. .featured-media figcaption {
  2033. margin: 1.5rem auto 0 auto;
  2034. text-align: center;
  2035. width: calc(100% - 5rem);
  2036. }
  2037. .post-inner {
  2038. padding-top: 5rem;
  2039. }
  2040. .reduced-spacing.missing-post-thumbnail .post-inner {
  2041. padding-top: 0;
  2042. }
  2043. /* Post Footer ------------------------------- */
  2044. /* POST NAV LINKS */
  2045. .post-nav-links {
  2046. border-radius: 0.4rem;
  2047. display: flex;
  2048. font-size: 0.9em;
  2049. font-weight: 600;
  2050. line-height: 1;
  2051. margin-top: 3em;
  2052. padding: 0 0.25em;
  2053. }
  2054. .post-nav-links > * {
  2055. padding: 1em 0.75em;
  2056. }
  2057. /* POST META BOTTOM */
  2058. .post-meta-wrapper.post-meta-single-bottom {
  2059. margin-top: 3rem;
  2060. }
  2061. /* Author Bio -------------------------------- */
  2062. .author-bio {
  2063. margin-top: 4rem;
  2064. margin-left: auto;
  2065. margin-right: auto;
  2066. max-width: 58rem;
  2067. width: calc(100% - 4rem);
  2068. }
  2069. .hide-avatars .author-bio {
  2070. padding-right: 0;
  2071. }
  2072. .author-bio .author-title-wrapper {
  2073. align-items: center;
  2074. display: flex;
  2075. margin: 0 0 1rem 0;
  2076. }
  2077. .author-bio .avatar {
  2078. border-radius: 50%;
  2079. margin-left: 1.5rem;
  2080. height: 5rem;
  2081. width: 5rem;
  2082. }
  2083. .hide-avatars img.avatar {
  2084. display: none;
  2085. }
  2086. .author-bio p:last-child {
  2087. margin-bottom: 0;
  2088. }
  2089. .author-bio .author-title {
  2090. margin: 0;
  2091. }
  2092. .author-bio .author-link {
  2093. display: block;
  2094. font-size: 1.6rem;
  2095. font-weight: 600;
  2096. margin-top: 1em;
  2097. text-decoration: none;
  2098. }
  2099. .author-bio .author-link:focus,
  2100. .author-bio .author-link:hover {
  2101. text-decoration: underline;
  2102. }
  2103. /* Single Pagination ------------------------- */
  2104. .pagination-single {
  2105. font-size: 1.8rem;
  2106. margin-top: 5rem;
  2107. }
  2108. .pagination-single-inner {
  2109. display: flex;
  2110. flex-direction: column;
  2111. }
  2112. .pagination-single hr:first-child {
  2113. margin: 0 0 2.8rem 0;
  2114. }
  2115. .pagination-single hr:last-child {
  2116. margin: 2.8rem 0 0.8rem 0;
  2117. }
  2118. .pagination-single a {
  2119. align-items: baseline;
  2120. display: flex;
  2121. font-weight: 600;
  2122. letter-spacing: -0.0275em;
  2123. text-decoration: none;
  2124. flex: 1;
  2125. }
  2126. .pagination-single a + a {
  2127. margin-top: 1rem;
  2128. }
  2129. .pagination-single a .arrow {
  2130. margin-left: 1rem;
  2131. }
  2132. .pagination-single a:focus .title,
  2133. .pagination-single a:hover .title {
  2134. text-decoration: underline;
  2135. }
  2136. /* -------------------------------------------------------------------------- */
  2137. /* 10. Blocks
  2138. /* -------------------------------------------------------------------------- */
  2139. /* Block Colors ------------------------------ */
  2140. .has-text-color a {
  2141. color: inherit;
  2142. }
  2143. /* CUSTOM COLORS */
  2144. :root .has-accent-color {
  2145. color: #cd2653;
  2146. }
  2147. :root .has-accent-background-color {
  2148. background-color: #cd2653;
  2149. color: #fff;
  2150. }
  2151. :root .has-primary-color {
  2152. color: #000;
  2153. }
  2154. :root .has-primary-background-color {
  2155. background-color: #000;
  2156. color: #f5efe0;
  2157. }
  2158. :root .has-secondary-color {
  2159. color: #6d6d6d;
  2160. }
  2161. :root .has-secondary-background-color {
  2162. background-color: #6d6d6d;
  2163. color: #fff;
  2164. }
  2165. :root .has-subtle-background-color {
  2166. color: #dcd7ca;
  2167. }
  2168. :root .has-subtle-background-background-color {
  2169. background-color: #dcd7ca;
  2170. color: #000;
  2171. }
  2172. :root .has-background-color {
  2173. color: #f5efe0;
  2174. }
  2175. :root .has-background-background-color {
  2176. background-color: #f5efe0;
  2177. color: #000;
  2178. }
  2179. /* Block Typography Classes ------------------ */
  2180. .has-text-align-left {
  2181. text-align: left;
  2182. }
  2183. .has-text-align-center {
  2184. text-align: center;
  2185. }
  2186. .has-text-align-right {
  2187. text-align: left;
  2188. }
  2189. .has-drop-cap:not(:focus)::first-letter {
  2190. color: #cd2653;
  2191. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  2192. font-size: 5.1em;
  2193. font-weight: 800;
  2194. margin: 0.05em 0 0 0.1em;
  2195. }
  2196. .has-drop-cap:not(:focus)::first-letter::after {
  2197. content: "";
  2198. display: table;
  2199. clear: both;
  2200. }
  2201. .has-drop-cap:not(:focus)::after {
  2202. padding: 0;
  2203. }
  2204. /* Block Font Families ----------------------- */
  2205. .has-drop-cap:not(:focus)::first-letter,
  2206. .entry-content .wp-block-archives,
  2207. .entry-content .wp-block-categories,
  2208. .entry-content .wp-block-cover-image,
  2209. .entry-content .wp-block-latest-comments,
  2210. .entry-content .wp-block-latest-posts,
  2211. .entry-content .wp-block-pullquote,
  2212. .entry-content .wp-block-quote.is-large,
  2213. .entry-content .wp-block-quote.is-style-large {
  2214. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  2215. }
  2216. @supports ( font-variation-settings: normal ) {
  2217. .has-drop-cap:not(:focus)::first-letter,
  2218. .entry-content .wp-block-archives,
  2219. .entry-content .wp-block-categories,
  2220. .entry-content .wp-block-latest-posts,
  2221. .entry-content .wp-block-latest-comments,
  2222. .entry-content .wp-block-cover-image p,
  2223. .entry-content .wp-block-pullquote {
  2224. font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  2225. }
  2226. }
  2227. /* Block Font Sizes -------------------------- */
  2228. .entry-content .has-small-font-size {
  2229. font-size: 0.842em;
  2230. }
  2231. .entry-content .has-normal-font-size,
  2232. .entry-content .has-regular-font-size {
  2233. font-size: 1em;
  2234. }
  2235. .entry-content .has-medium-font-size {
  2236. font-size: 1.1em;
  2237. line-height: 1.45;
  2238. }
  2239. .entry-content .has-large-font-size {
  2240. font-size: 1.25em;
  2241. line-height: 1.4;
  2242. }
  2243. .entry-content .has-larger-font-size {
  2244. font-size: 1.5em;
  2245. line-height: 1.3;
  2246. }
  2247. /* Block: Base Margins ----------------------- */
  2248. *[class*="_inner-container"] > *:first-child {
  2249. margin-top: 0;
  2250. }
  2251. *[class*="_inner-container"] > *:last-child {
  2252. margin-bottom: 0;
  2253. }
  2254. .wp-block-archives:not(.alignwide):not(.alignfull),
  2255. .wp-block-categories:not(.alignwide):not(.alignfull),
  2256. .wp-block-code,
  2257. .wp-block-columns:not(.alignwide):not(.alignfull),
  2258. .wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  2259. .wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  2260. .wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  2261. .wp-block-group:not(.has-background):not(.alignwide):not(.alignfull),
  2262. .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  2263. .wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright),
  2264. .wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright),
  2265. .wp-block-media-text:not(.alignwide):not(.alignfull),
  2266. .wp-block-preformatted,
  2267. .wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
  2268. .wp-block-quote,
  2269. .wp-block-quote.is-large,
  2270. .wp-block-quote.is-style-large,
  2271. .wp-block-verse,
  2272. .wp-block-video:not(.alignwide):not(.alignfull) {
  2273. margin-bottom: 3rem;
  2274. margin-top: 3rem;
  2275. }
  2276. /* Block: Shared Nesting Alignment Resets ---- */
  2277. [class*="__inner-container"] .wp-block-group:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright),
  2278. [class*="__inner-container"] .wp-block-cover:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright) {
  2279. margin-right: auto;
  2280. margin-left: auto;
  2281. max-width: 58rem;
  2282. }
  2283. /* Block: Shared Widget Styles --------------- */
  2284. .wp-block-archives,
  2285. .wp-block-categories,
  2286. .wp-block-latest-posts,
  2287. .wp-block-latest-comments {
  2288. list-style: none;
  2289. margin-right: 0;
  2290. }
  2291. .wp-block-archives ul,
  2292. .wp-block-categories ul,
  2293. .wp-block-latest-posts ul,
  2294. .wp-block-latest-comments ul {
  2295. list-style: none;
  2296. }
  2297. .entry-content .wp-block-archives > li,
  2298. .entry-content .wp-block-categories > li,
  2299. .entry-content .wp-block-latest-posts > li,
  2300. .entry-content .wp-block-latest-comment > li {
  2301. margin-right: 0;
  2302. }
  2303. .entry-content .wp-block-archives > li:last-child,
  2304. .entry-content .wp-block-categories > li:last-child,
  2305. .entry-content .wp-block-latest-posts > li:last-child,
  2306. .entry-content .wp-block-latest-comment > li:last-child {
  2307. margin-bottom: 0;
  2308. }
  2309. .entry-content .wp-block-archives *,
  2310. .entry-content .wp-block-categories *,
  2311. .entry-content .wp-block-latest-posts *,
  2312. .entry-content .wp-block-latest-comments * {
  2313. font-family: inherit;
  2314. }
  2315. .entry-content .wp-block-archives li,
  2316. .entry-content .wp-block-categories li,
  2317. .entry-content .wp-block-latest-posts li {
  2318. color: #6d6d6d;
  2319. }
  2320. .wp-block-archives a,
  2321. .wp-block-categories a,
  2322. .wp-block-latest-posts a,
  2323. .wp-block-latest-comments a {
  2324. font-weight: 700;
  2325. text-decoration: none;
  2326. }
  2327. .wp-block-archives a:hover,
  2328. .wp-block-categories a:hover,
  2329. .wp-block-latest-posts a:hover,
  2330. .wp-block-latest-comments a:hover,
  2331. .wp-block-archives a:focus,
  2332. .wp-block-categories a:focus,
  2333. .wp-block-latest-posts a:focus,
  2334. .wp-block-latest-comments a:focus {
  2335. text-decoration: underline;
  2336. }
  2337. .wp-block-latest-posts a,
  2338. .wp-block-latest-comments__comment-meta {
  2339. font-weight: 700;
  2340. letter-spacing: -0.025em;
  2341. line-height: 1.25;
  2342. }
  2343. .wp-block-latest-comments__comment-date,
  2344. .wp-block-latest-posts__post-date {
  2345. color: #6d6d6d;
  2346. font-size: 0.7em;
  2347. font-weight: 600;
  2348. letter-spacing: normal;
  2349. margin-top: 0.15em;
  2350. }
  2351. /* Block: Shared Media Styles ---------------- */
  2352. .wp-block-embed figcaption,
  2353. .wp-block-image figcaption {
  2354. color: #6d6d6d;
  2355. font-size: 1.4rem;
  2356. margin-bottom: 0;
  2357. margin-top: 1.5rem;
  2358. }
  2359. /* Block: Audio ------------------------------ */
  2360. .wp-block-audio audio {
  2361. width: 100%;
  2362. }
  2363. /* Block: Button ----------------------------- */
  2364. .wp-block-button {
  2365. margin: 3rem 0;
  2366. }
  2367. .wp-block-button.is-style-outline {
  2368. color: #cd2653;
  2369. }
  2370. .is-style-outline .wp-block-button__link:not(.has-text-color) {
  2371. color: inherit;
  2372. }
  2373. .is-style-outline .wp-block-button__link {
  2374. padding: calc(1.1em - 0.2rem) calc(1.44em - 0.2rem);
  2375. }
  2376. /* Block: Columns ---------------------------- */
  2377. .wp-block-columns.alignfull,
  2378. .alignfull:not(.has-background) .wp-block-columns {
  2379. padding-right: 2rem;
  2380. padding-left: 2rem;
  2381. }
  2382. .wp-block-column {
  2383. margin-bottom: 3.2rem;
  2384. }
  2385. .wp-block-column > *:first-child {
  2386. margin-top: 0;
  2387. }
  2388. .wp-block-column > *:last-child {
  2389. margin-bottom: 0;
  2390. }
  2391. /* Block: Cover ------------------------------ */
  2392. .wp-block-cover-image .wp-block-cover__inner-container,
  2393. .wp-block-cover .wp-block-cover__inner-container {
  2394. width: calc(100% - 4rem);
  2395. padding: 2rem 0;
  2396. }
  2397. .wp-block-cover-image .wp-block-cover-image-text,
  2398. .wp-block-cover-image .wp-block-cover-text,
  2399. .wp-block-cover-image h2,
  2400. .wp-block-cover .wp-block-cover-image-text,
  2401. .wp-block-cover .wp-block-cover-text,
  2402. .wp-block-cover h2 {
  2403. max-width: 100%;
  2404. padding: 0;
  2405. }
  2406. .wp-block-cover-image h2,
  2407. .wp-block-cover h2 {
  2408. font-size: 3.2rem;
  2409. }
  2410. /* Block: Embed ------------------------------ */
  2411. /* Block: File ------------------------------- */
  2412. .wp-block-file {
  2413. align-items: center;
  2414. display: flex;
  2415. flex-wrap: wrap;
  2416. justify-content: space-between;
  2417. }
  2418. .wp-block-file a:not(.wp-block-file__button) {
  2419. font-weight: 700;
  2420. text-decoration: none;
  2421. }
  2422. .wp-block-file a:not(.wp-block-file__button):not(:last-child) {
  2423. margin-left: 1rem;
  2424. }
  2425. .wp-block-file a:not(.wp-block-file__button):focus,
  2426. .wp-block-file a:not(.wp-block-file__button):hover {
  2427. text-decoration: underline;
  2428. }
  2429. .wp-block-file .wp-block-file__button {
  2430. font-size: 1.5rem;
  2431. padding: 1em 1.25em;
  2432. }
  2433. .wp-block-file a.wp-block-file__button:visited {
  2434. opacity: 1;
  2435. }
  2436. .wp-block-file a.wp-block-file__button:active,
  2437. .wp-block-file a.wp-block-file__button:focus,
  2438. .wp-block-file a.wp-block-file__button:hover {
  2439. opacity: 1;
  2440. text-decoration: underline;
  2441. }
  2442. /* Block: Gallery ---------------------------- */
  2443. .wp-block-gallery ul {
  2444. list-style: none;
  2445. margin: 0 0 -1.6rem 0;
  2446. }
  2447. figure.wp-block-gallery.alignnone,
  2448. figure.wp-block-gallery.aligncenter {
  2449. margin-bottom: 3rem;
  2450. margin-top: 3rem;
  2451. }
  2452. figure.wp-block-gallery.alignleft {
  2453. margin: 0.3rem 0 2rem 2rem;
  2454. }
  2455. figure.wp-block-gallery.alignright {
  2456. margin: 0.3rem 2rem 2rem 0;
  2457. }
  2458. figure.wp-block-gallery.alignwide {
  2459. margin-bottom: 4rem;
  2460. margin-top: 4rem;
  2461. }
  2462. figure.wp-block-gallery.alignfull {
  2463. margin-bottom: 5rem;
  2464. margin-top: 5rem;
  2465. }
  2466. /* Block: Group ------------------------------ */
  2467. .wp-block-group.has-background {
  2468. padding: 2rem;
  2469. margin-bottom: 0;
  2470. margin-top: 0;
  2471. }
  2472. .wp-block-group__inner-container {
  2473. margin: 0 auto;
  2474. }
  2475. .wp-block-group__inner-container,
  2476. .entry-content .wp-block-group p {
  2477. max-width: 100%;
  2478. }
  2479. .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
  2480. padding-right: 2rem;
  2481. padding-left: 2rem;
  2482. }
  2483. /* Block: Image ------------------------------ */
  2484. /* Block: Media And Text --------------------- */
  2485. .wp-block-media-text .wp-block-media-text__content {
  2486. padding: 3rem 2rem;
  2487. }
  2488. .wp-block-media-text .wp-block-media-text__content p {
  2489. max-width: none;
  2490. }
  2491. .wp-block-media-text__content > *:first-child {
  2492. margin-top: 0;
  2493. }
  2494. .wp-block-media-text__content > *:last-child {
  2495. margin-bottom: 0;
  2496. }
  2497. /* Block: Pullquote -------------------------- */
  2498. /* STYLE: DEFAULT */
  2499. .wp-block-pullquote {
  2500. padding: 0;
  2501. position: relative;
  2502. }
  2503. .wp-block-pullquote.alignleft,
  2504. .wp-block-pullquote.alignright {
  2505. max-width: calc(100% - 4rem);
  2506. }
  2507. .wp-block-pullquote::before {
  2508. background: #fff;
  2509. border-radius: 50%;
  2510. color: #cd2653;
  2511. content: "”";
  2512. display: block;
  2513. font-size: 6.2rem;
  2514. font-weight: 500;
  2515. line-height: 1.2;
  2516. margin: 0 auto 1.5rem auto;
  2517. text-align: center;
  2518. height: 4.4rem;
  2519. width: 4.4rem;
  2520. }
  2521. .reduced-spacing .wp-block-pullquote::before {
  2522. border: 0.1rem solid currentColor;
  2523. font-size: 5.9rem;
  2524. }
  2525. .wp-block-pullquote blockquote {
  2526. border: none;
  2527. margin: 0;
  2528. padding: 0;
  2529. }
  2530. .wp-block-pullquote blockquote p {
  2531. font-family: inherit;
  2532. font-size: 2.8rem;
  2533. font-weight: 700;
  2534. line-height: 1.178571429;
  2535. letter-spacing: -0.041785714em;
  2536. max-width: 100%;
  2537. }
  2538. .wp-block-pullquote p:last-of-type {
  2539. margin-bottom: 0;
  2540. }
  2541. .wp-block-pullquote cite {
  2542. color: #6d6d6d;
  2543. font-size: 1.6rem;
  2544. font-weight: 500;
  2545. margin-top: 1.2rem;
  2546. }
  2547. .wp-block-pullquote.alignleft p,
  2548. .wp-block-pullquote.alignright p {
  2549. font-size: 2.8rem;
  2550. }
  2551. .wp-block-pullquote.alignleft {
  2552. text-align: right;
  2553. }
  2554. .wp-block-pullquote.alignright {
  2555. text-align: left;
  2556. }
  2557. .wp-block-pullquote.alignleft::before {
  2558. margin-right: 0;
  2559. }
  2560. .wp-block-pullquote.alignright::before {
  2561. margin-left: 0;
  2562. }
  2563. /* STYLE: SOLID BACKGROUND COLOR */
  2564. .wp-block-pullquote.is-style-solid-color {
  2565. padding: 3rem 2rem;
  2566. }
  2567. .wp-block-pullquote.is-style-solid-color::before {
  2568. position: absolute;
  2569. top: 0;
  2570. right: 50%;
  2571. transform: translateY(-50%) translateX(50%);
  2572. }
  2573. .wp-block-pullquote.is-style-solid-color.alignleft::before,
  2574. .wp-block-pullquote.is-style-solid-color.alignright::before {
  2575. transform: translateY(-50%);
  2576. }
  2577. .wp-block-pullquote.is-style-solid-color.alignleft::before {
  2578. right: 2rem;
  2579. }
  2580. .wp-block-pullquote.is-style-solid-color.alignright::before {
  2581. right: auto;
  2582. left: 2rem;
  2583. }
  2584. .wp-block-pullquote.is-style-solid-color blockquote {
  2585. max-width: 100%;
  2586. text-align: inherit;
  2587. }
  2588. .wp-block-pullquote.is-style-solid-color cite {
  2589. color: inherit;
  2590. }
  2591. /* Block: Separator ------------------------- */
  2592. hr.wp-block-separator {
  2593. margin: 3rem 0;
  2594. }
  2595. /* STYLE: WIDE */
  2596. .wp-block-separator.is-style-wide {
  2597. max-width: calc(100vw - 4rem);
  2598. position: relative;
  2599. width: 100%;
  2600. }
  2601. /* STYLE: DOTS */
  2602. .wp-block-separator.is-style-dots::before {
  2603. background: none;
  2604. color: inherit;
  2605. font-size: 3.2rem;
  2606. font-weight: 700;
  2607. height: auto;
  2608. letter-spacing: 1em;
  2609. padding-right: 1em;
  2610. position: static;
  2611. transform: none;
  2612. width: auto;
  2613. }
  2614. .wp-block-separator.is-style-dots::after {
  2615. content: none;
  2616. }
  2617. /* Block: Search ----------------------------- */
  2618. .wp-block-search .wp-block-search__input {
  2619. width: auto;
  2620. }
  2621. /* Block: Table ------------------------------ */
  2622. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  2623. background: #dcd7ca;
  2624. }
  2625. figure.wp-block-table.is-style-stripes {
  2626. border-bottom: none;
  2627. }
  2628. .wp-block-table.is-style-stripes table {
  2629. border-collapse: inherit;
  2630. }
  2631. /* Block: Quote ------------------------------ */
  2632. .wp-block-quote p,
  2633. .wp-block-quote cite {
  2634. text-align: inherit;
  2635. }
  2636. .wp-block-quote[style="text-align:center"] {
  2637. border-width: 0;
  2638. padding: 0;
  2639. }
  2640. .wp-block-quote[style="text-align:right"] {
  2641. border-width: 0 0.2rem 0 0;
  2642. padding: 0 2rem 0 0;
  2643. }
  2644. /* STYLE: LARGE */
  2645. .wp-block-quote.is-large,
  2646. .wp-block-quote.is-style-large {
  2647. border: none;
  2648. padding: 0;
  2649. margin-right: auto;
  2650. margin-left: auto;
  2651. }
  2652. .wp-block-quote.is-large p,
  2653. .wp-block-quote.is-style-large p {
  2654. font-family: inherit;
  2655. font-size: 2.4rem;
  2656. font-style: normal;
  2657. font-weight: 700;
  2658. letter-spacing: -0.02em;
  2659. line-height: 1.285;
  2660. }
  2661. .wp-block-quote.is-large cite,
  2662. .wp-block-quote.is-large footer,
  2663. .wp-block-quote.is-style-large cite,
  2664. .wp-block-quote.is-style-large footer {
  2665. font-size: 1.6rem;
  2666. text-align: inherit;
  2667. }
  2668. /* Block: Widget Latest Comments ------------- */
  2669. .entry-content .wp-block-latest-comments li {
  2670. margin: 2rem 0;
  2671. }
  2672. .has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,
  2673. .has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  2674. margin-right: 5.5rem;
  2675. }
  2676. .entry-content .wp-block-latest-comments a {
  2677. text-decoration: none;
  2678. }
  2679. .entry-content .wp-block-latest-comments a:hover,
  2680. .entry-content .wp-block-latest-comments a:focus {
  2681. text-decoration: underline;
  2682. }
  2683. .wp-block-latest-comments__comment {
  2684. font-size: inherit;
  2685. }
  2686. .wp-block-latest-comments__comment-date {
  2687. margin-top: 0.4em;
  2688. }
  2689. .wp-block-latest-comments__comment-excerpt p {
  2690. font-size: 0.7em;
  2691. margin: 0.9rem 0 2rem 0;
  2692. }
  2693. /* Block: Widget Latest Posts ---------------- */
  2694. .wp-block-latest-posts.is-grid li {
  2695. border-top: 0.2rem solid #dcd7ca;
  2696. margin-top: 2rem;
  2697. padding-top: 1rem;
  2698. }
  2699. .wp-block-latest-posts.has-dates {
  2700. list-style: none;
  2701. }
  2702. .wp-block-latest-posts.has-dates:not(.is-grid) li {
  2703. margin-top: 1.5rem;
  2704. }
  2705. .wp-block-latest-posts.has-dates:not(.is-grid) li:first-child {
  2706. margin-top: 0;
  2707. }
  2708. /* -------------------------------------------------------------------------- */
  2709. /* 11. Entry Content
  2710. /* -------------------------------------------------------------------------- */
  2711. .entry-content {
  2712. line-height: 1.5;
  2713. }
  2714. .entry-content > * {
  2715. margin-right: auto;
  2716. margin-left: auto;
  2717. margin-bottom: 1.25em;
  2718. }
  2719. .entry-content > *:first-child {
  2720. margin-top: 0;
  2721. }
  2722. .entry-content > *:last-child {
  2723. margin-bottom: 0;
  2724. }
  2725. .read-more-button-wrap {
  2726. margin-top: 1em;
  2727. text-align: center;
  2728. }
  2729. .entry-content a:hover,
  2730. .entry-content a:focus {
  2731. text-decoration: none;
  2732. }
  2733. .entry-content p,
  2734. .entry-content li {
  2735. line-height: 1.4;
  2736. }
  2737. .entry-content h1,
  2738. .entry-content h2,
  2739. .entry-content h3,
  2740. .entry-content h4,
  2741. .entry-content h5,
  2742. .entry-content h6 {
  2743. margin: 3.5rem auto 2rem;
  2744. }
  2745. .entry-content ul ul,
  2746. .entry-content ol ol,
  2747. .entry-content ul ol,
  2748. .entry-content ol ul {
  2749. margin-bottom: 1rem;
  2750. }
  2751. .entry-content hr {
  2752. margin: 4rem auto;
  2753. }
  2754. /* Font Families ----------------------------- */
  2755. .entry-content p,
  2756. .entry-content ol,
  2757. .entry-content ul,
  2758. .entry-content dl,
  2759. .entry-content dt {
  2760. font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
  2761. letter-spacing: normal;
  2762. }
  2763. .entry-content cite,
  2764. .entry-content figcaption,
  2765. .entry-content .wp-caption-text {
  2766. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  2767. }
  2768. @supports ( font-variation-settings: normal ) {
  2769. .entry-content cite,
  2770. .entry-content figcaption,
  2771. .entry-content .wp-caption-text {
  2772. font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  2773. }
  2774. }
  2775. /* Alignment Classes ------------------------- */
  2776. .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  2777. max-width: 58rem;
  2778. width: calc(100% - 4rem);
  2779. }
  2780. [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  2781. max-width: 58rem;
  2782. width: 100%;
  2783. }
  2784. .alignnone,
  2785. .aligncenter,
  2786. .alignleft,
  2787. .alignright,
  2788. .alignwide {
  2789. margin-top: 4rem;
  2790. margin-left: auto;
  2791. margin-bottom: 4rem;
  2792. margin-right: auto;
  2793. }
  2794. [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
  2795. margin-right: auto;
  2796. margin-left: auto;
  2797. }
  2798. /* Full */
  2799. .alignfull {
  2800. margin-top: 5rem;
  2801. margin-left: auto;
  2802. margin-bottom: 5rem;
  2803. margin-right: auto;
  2804. max-width: 100vw;
  2805. position: relative;
  2806. width: 100%;
  2807. }
  2808. [class*="__inner-container"] > .alignfull {
  2809. max-width: 100%;
  2810. }
  2811. /* Wide */
  2812. .alignwide {
  2813. max-width: 120rem;
  2814. position: relative;
  2815. width: calc(100% - 4rem);
  2816. }
  2817. [class*="__inner-container"] > .alignwide {
  2818. width: 100%;
  2819. }
  2820. /* Center */
  2821. .aligncenter,
  2822. .aligncenter img {
  2823. margin-right: auto;
  2824. margin-left: auto;
  2825. }
  2826. /* Left and right */
  2827. .alignleft,
  2828. .alignright {
  2829. max-width: 50%;
  2830. }
  2831. .alignleft {
  2832. float: left;
  2833. margin: 0.3rem 2rem 2rem 2rem;
  2834. }
  2835. .alignright {
  2836. float: right;
  2837. margin: 0.3rem 2rem 2rem 2rem;
  2838. }
  2839. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
  2840. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
  2841. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {
  2842. margin-left: 2rem;
  2843. }
  2844. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
  2845. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
  2846. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {
  2847. margin-right: 2rem;
  2848. }
  2849. /* Entry Media ------------------------------- */
  2850. .alignfull > figcaption,
  2851. .alignfull > .wp-caption-text {
  2852. margin-right: auto;
  2853. margin-left: auto;
  2854. max-width: 58rem;
  2855. width: calc(100% - 4rem);
  2856. }
  2857. /* -------------------------------------------------------------------------- */
  2858. /* 12. Comments
  2859. /* -------------------------------------------------------------------------- */
  2860. /* Comment Headers ----------------------------- */
  2861. .comments-wrapper {
  2862. margin-top: 5rem;
  2863. }
  2864. .comment-reply-title {
  2865. margin: 0 0 4rem 0;
  2866. text-align: center;
  2867. }
  2868. /* Comment Item ----------------------------- */
  2869. /* COMMENT HEADER */
  2870. .comments .comment,
  2871. .comments .pingback,
  2872. .comments .trackback,
  2873. .comments .review {
  2874. padding-top: 3.5rem;
  2875. }
  2876. div.comment:first-of-type {
  2877. margin-top: 3.5rem;
  2878. padding-top: 0;
  2879. }
  2880. .comments .comments-header + div {
  2881. margin-top: 0;
  2882. padding-top: 0;
  2883. }
  2884. .comment-body {
  2885. position: relative;
  2886. }
  2887. .comment .comment {
  2888. padding-right: 5%;
  2889. }
  2890. .comment-meta {
  2891. line-height: 1.1;
  2892. margin-bottom: 1.5rem;
  2893. min-height: 5rem;
  2894. padding-right: 5rem;
  2895. position: relative;
  2896. }
  2897. .hide-avatars .comment-meta {
  2898. min-height: 0;
  2899. padding-right: 0;
  2900. }
  2901. .comment-meta a {
  2902. color: inherit;
  2903. }
  2904. .comment-author {
  2905. font-size: 1.8rem;
  2906. font-weight: 700;
  2907. letter-spacing: -0.027777778em;
  2908. }
  2909. .comment-author a {
  2910. text-decoration: underline;
  2911. }
  2912. .comment-author a:hover,
  2913. .comment-author a:focus {
  2914. text-decoration: none;
  2915. }
  2916. .comment-meta .avatar {
  2917. height: 4rem;
  2918. position: absolute;
  2919. right: 0;
  2920. top: 0;
  2921. width: 4rem;
  2922. }
  2923. .comment-author .url {
  2924. text-decoration: underline;
  2925. }
  2926. .comment-metadata {
  2927. color: #6d6d6d;
  2928. font-size: 1.4rem;
  2929. font-weight: 500;
  2930. margin-top: 0.6rem;
  2931. }
  2932. .comment-metadata a {
  2933. text-decoration: none;
  2934. }
  2935. .comment-metadata a:focus,
  2936. .comment-metadata a:hover {
  2937. text-decoration: underline;
  2938. }
  2939. /* COMMENT CONTENT */
  2940. .comment-content.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  2941. width: 100%;
  2942. }
  2943. .comment-content.entry-content .alignleft {
  2944. margin-left: 0;
  2945. }
  2946. .comment-content.entry-content .alignright {
  2947. margin-right: 0;
  2948. }
  2949. /* COMMENT FOOTER */
  2950. .comment-footer-meta {
  2951. align-items: center;
  2952. display: flex;
  2953. flex-wrap: wrap;
  2954. font-size: 1.2rem;
  2955. font-weight: 600;
  2956. justify-content: flex-start;
  2957. letter-spacing: 0.030833333em;
  2958. line-height: 1;
  2959. margin: 1.5rem -1.5rem -1rem 0;
  2960. text-transform: uppercase;
  2961. }
  2962. .comment-footer-meta > * {
  2963. margin: 0 1.5rem 1rem 0;
  2964. }
  2965. .comment-reply-link {
  2966. background-color: #cd2653;
  2967. color: #fff;
  2968. display: block;
  2969. padding: 0.7rem;
  2970. }
  2971. .bypostauthor .comment-footer-meta .by-post-author {
  2972. display: block;
  2973. }
  2974. .comment-footer-meta a {
  2975. text-decoration: none;
  2976. }
  2977. .comment-footer-meta a:focus,
  2978. .comment-footer-meta a:hover {
  2979. text-decoration: underline;
  2980. }
  2981. /* Pingbacks & Trackbacks ------------------------- */
  2982. .pingback .comment-meta,
  2983. .trackback .comment-meta {
  2984. padding-right: 0;
  2985. }
  2986. /* Comments Pagination ---------------------------- */
  2987. .comments-pagination {
  2988. display: flex;
  2989. flex-wrap: wrap;
  2990. justify-content: space-between;
  2991. margin-top: 6rem;
  2992. text-align: center;
  2993. }
  2994. .comments-pagination.only-next {
  2995. justify-content: flex-end;
  2996. }
  2997. .comments-pagination .page-numbers {
  2998. display: none;
  2999. text-decoration: none;
  3000. }
  3001. .comments-pagination .page-numbers:focus,
  3002. .comments-pagination .page-numbers:hover {
  3003. text-decoration: underline;
  3004. }
  3005. .comments-pagination .prev,
  3006. .comments-pagination .next {
  3007. display: block;
  3008. }
  3009. .comments-pagination .prev {
  3010. right: 0;
  3011. }
  3012. .comments-pagination .next {
  3013. left: 0;
  3014. text-align: left;
  3015. }
  3016. /* Comment Respond ---------------------------- */
  3017. .comment-respond::after {
  3018. clear: both;
  3019. content: "";
  3020. display: block;
  3021. }
  3022. .comment-respond .comment-notes,
  3023. .comment-respond .logged-in-as {
  3024. color: #6d6d6d;
  3025. font-size: 1.6rem;
  3026. line-height: 1.4;
  3027. margin: -3rem 0 4rem 0;
  3028. text-align: center;
  3029. }
  3030. .comment-respond .comment-notes a,
  3031. .comment-respond .logged-in-as a {
  3032. color: inherit;
  3033. text-decoration: none;
  3034. }
  3035. .comment-respond .comment-notes a:focus,
  3036. .comment-respond .comment-notes a:hover,
  3037. .comment-respond .logged-in-as a:focus,
  3038. .comment-respond .logged-in-as a:hover {
  3039. text-decoration: underline;
  3040. }
  3041. .comment-respond p {
  3042. line-height: 1.1;
  3043. margin-bottom: 2rem;
  3044. margin-right: auto;
  3045. margin-left: auto;
  3046. }
  3047. .comment-respond p:not(.comment-notes) {
  3048. max-width: 58rem;
  3049. }
  3050. .comment-form-cookies-consent {
  3051. align-items: baseline;
  3052. display: flex;
  3053. }
  3054. .comment-respond > p:last-of-type {
  3055. margin-bottom: 0;
  3056. }
  3057. .comment-respond label {
  3058. display: block;
  3059. }
  3060. .comment-respond input[type="checkbox"] + label {
  3061. font-size: 1.5rem;
  3062. line-height: 1.25;
  3063. }
  3064. .comment-respond input[type="text"],
  3065. .comment-respond input[type="email"],
  3066. .comment-respond textarea {
  3067. margin-bottom: 0;
  3068. }
  3069. .comment-respond textarea {
  3070. height: 15rem;
  3071. }
  3072. .comment-respond #submit {
  3073. display: block;
  3074. }
  3075. .comment-respond .comments-closed {
  3076. text-align: center;
  3077. }
  3078. /* Reply Respond ---------------------------- */
  3079. .comments .comment-respond {
  3080. padding: 3rem 0 0;
  3081. }
  3082. .comments .comment-respond .comment-reply-title,
  3083. .comments .comment-respond .comment-notes,
  3084. .comments .comment-respond .logged-in-as {
  3085. text-align: right;
  3086. }
  3087. .comment-reply-title small {
  3088. display: block;
  3089. font-size: 1.6rem;
  3090. font-weight: 600;
  3091. letter-spacing: -0.0277em;
  3092. margin: 0.5rem 0 0 0;
  3093. white-space: nowrap;
  3094. }
  3095. .comment-reply-title small a {
  3096. text-decoration: none;
  3097. }
  3098. .comment-reply-title small a:focus,
  3099. .comment-reply-title small a:hover {
  3100. text-decoration: underline;
  3101. }
  3102. /* -------------------------------------------------------------------------- */
  3103. /* 13. Site Pagination
  3104. /* -------------------------------------------------------------------------- */
  3105. .pagination .nav-links {
  3106. align-items: baseline;
  3107. display: flex;
  3108. flex-wrap: wrap;
  3109. font-size: 1.8rem;
  3110. font-weight: 600;
  3111. margin: -1.5rem -2.5rem 0 0;
  3112. width: calc(100% + 2.5rem);
  3113. }
  3114. .pagination-separator {
  3115. margin: 5rem 0;
  3116. }
  3117. .nav-links > * {
  3118. margin: 1.5rem 2.5rem 0 0;
  3119. }
  3120. .nav-links .placeholder {
  3121. display: none;
  3122. visibility: hidden;
  3123. }
  3124. .pagination a {
  3125. text-decoration: none;
  3126. }
  3127. .pagination a:focus,
  3128. .pagination a:hover {
  3129. text-decoration: underline;
  3130. }
  3131. .pagination .dots {
  3132. transform: translateY(-0.3em);
  3133. color: #6d6d6d;
  3134. }
  3135. .nav-short {
  3136. display: none;
  3137. }
  3138. /* -------------------------------------------------------------------------- */
  3139. /* 14. Error 404
  3140. /* -------------------------------------------------------------------------- */
  3141. .error404 #site-content {
  3142. padding-top: 4rem;
  3143. }
  3144. .error404-content {
  3145. text-align: center;
  3146. }
  3147. .error404 #site-content .search-form {
  3148. justify-content: center;
  3149. margin-top: 3rem;
  3150. }
  3151. /* -------------------------------------------------------------------------- */
  3152. /* 15. Widgets
  3153. /* -------------------------------------------------------------------------- */
  3154. /* Widget Base ------------------------------- */
  3155. .widget {
  3156. margin-top: 3rem;
  3157. }
  3158. .widget:first-child {
  3159. margin-top: 0;
  3160. }
  3161. .widget-content > div > *:first-child {
  3162. margin-top: 0;
  3163. }
  3164. .widget-content > div > *:last-child {
  3165. margin-bottom: 0;
  3166. }
  3167. .widget .widget-title {
  3168. margin: 0 0 2rem;
  3169. }
  3170. .widget li {
  3171. margin: 2rem 0 0 0;
  3172. }
  3173. .widget li:first-child,
  3174. .widget li > ul,
  3175. .widget li > ol {
  3176. margin-top: 0;
  3177. }
  3178. .widget table,
  3179. .widget table * {
  3180. border-color: #dedfdf;
  3181. }
  3182. .widget table caption {
  3183. background-color: #dedfdf;
  3184. }
  3185. .widget .post-date,
  3186. .widget .rss-date {
  3187. color: #6d6d6d;
  3188. display: block;
  3189. font-size: 0.85em;
  3190. font-weight: 500;
  3191. margin-top: 0.2rem;
  3192. }
  3193. .widget select {
  3194. max-width: 100%;
  3195. }
  3196. /* Font Families ----------------------------- */
  3197. .widget_text p,
  3198. .widget_text ol,
  3199. .widget_text ul,
  3200. .widget_text dl,
  3201. .widget_text dt,
  3202. .widget-content .rssSummary {
  3203. font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
  3204. letter-spacing: normal;
  3205. }
  3206. .widget-content cite,
  3207. .widget-content figcaption,
  3208. .widget-content .wp-caption-text {
  3209. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  3210. }
  3211. @supports ( font-variation-settings: normal ) {
  3212. .widget-content cite,
  3213. .widget-content figcaption,
  3214. .widget-content .wp-caption-text {
  3215. font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  3216. }
  3217. }
  3218. /* Base List Widget -------------------------- */
  3219. .widget_archive ul,
  3220. .widget_categories ul,
  3221. .widget_pages ul,
  3222. .widget_meta ul,
  3223. .widget_nav_menu ul,
  3224. .widget_recent_comments ul,
  3225. .widget_recent_entries ul,
  3226. .widget_rss ul {
  3227. list-style: none;
  3228. margin: 0;
  3229. }
  3230. .widget_archive li,
  3231. .widget_categories li,
  3232. .widget_pages li,
  3233. .widget_meta li,
  3234. .widget_nav_menu li {
  3235. color: #6d6d6d;
  3236. margin: 0.3rem 0;
  3237. }
  3238. .widget_archive li li,
  3239. .widget_categories li li,
  3240. .widget_pages li li,
  3241. .widget_meta li li,
  3242. .widget_nav_menu li li {
  3243. margin-right: 2rem;
  3244. }
  3245. .widget_archive a,
  3246. .widget_categories a,
  3247. .widget_pages a,
  3248. .widget_meta a,
  3249. .widget_nav_menu a {
  3250. font-weight: 700;
  3251. text-decoration: none;
  3252. }
  3253. .widget_archive a:focus,
  3254. .widget_archive a:hover,
  3255. .widget_categories a:focus,
  3256. .widget_categories a:hover,
  3257. .widget_pages a:focus,
  3258. .widget_pages a:hover,
  3259. .widget_meta a:focus,
  3260. .widget_meta a:hover,
  3261. .widget_nav_menu a:focus,
  3262. .widget_nav_menu a:hover {
  3263. text-decoration: underline;
  3264. }
  3265. /* Widget: Calendar -------------------------- */
  3266. .calendar_wrap {
  3267. font-size: 2.4rem;
  3268. }
  3269. .calendar_wrap th,
  3270. .calendar_wrap td {
  3271. font-size: 1em;
  3272. font-weight: 500;
  3273. line-height: 1;
  3274. padding: 2.5% 2.5% 1.75% 2.5%;
  3275. text-align: center;
  3276. }
  3277. .calendar_wrap tfoot td {
  3278. border-bottom: none;
  3279. }
  3280. .calendar_wrap tfoot a {
  3281. text-decoration: none;
  3282. }
  3283. .calendar_wrap tfoot #prev {
  3284. text-align: right;
  3285. }
  3286. .calendar_wrap tfoot #next {
  3287. text-align: left;
  3288. }
  3289. /* Widget: Image ----------------------------- */
  3290. /* Widget: Gallery --------------------------- */
  3291. .widget_media_gallery .gallery {
  3292. margin: 0 -0.4em -0.8em -0.4em;
  3293. width: calc(100% + 0.8em);
  3294. }
  3295. .widget_media_gallery .gallery-item {
  3296. margin: 0 0 0.8em 0;
  3297. padding: 0 0.4em;
  3298. }
  3299. /* Widget: Nav Menu -------------------------- */
  3300. .widget_nav_menu .widget-content > div > ul {
  3301. margin-right: 0;
  3302. }
  3303. /* Widget: Recent Comments ------------------- */
  3304. .widget_recent_comments li {
  3305. font-weight: 700;
  3306. }
  3307. .widget_recent_comments a {
  3308. text-decoration: none;
  3309. }
  3310. .widget_recent_comments a:focus,
  3311. .widget_recent_comments a:hover {
  3312. text-decoration: underline;
  3313. }
  3314. /* Widget: Recent Entries -------------------- */
  3315. .widget_recent_entries a {
  3316. font-weight: 700;
  3317. text-decoration: none;
  3318. }
  3319. .widget_recent_entries a:focus,
  3320. .widget_recent_entries a:hover {
  3321. text-decoration: underline;
  3322. }
  3323. /* Widget: RSS ------------------------------- */
  3324. .widget_rss .widget-title a.rsswidget:first-of-type {
  3325. display: none;
  3326. }
  3327. .widget_rss .rsswidget {
  3328. font-weight: 700;
  3329. }
  3330. .widget_rss a {
  3331. text-decoration: none;
  3332. }
  3333. .widget_rss a:focus,
  3334. .widget_rss a:hover {
  3335. text-decoration: underline;
  3336. }
  3337. .widget_rss .rssSummary {
  3338. margin-top: 0.5rem;
  3339. }
  3340. .widget_rss cite::before {
  3341. content: "— ";
  3342. }
  3343. /* Widget: Search ---------------------------- */
  3344. .widget_search .search-field {
  3345. border-color: #dedfdf;
  3346. }
  3347. /* Widget: Tag Cloud ------------------------- */
  3348. .widget_tag_cloud a {
  3349. font-weight: 700;
  3350. margin-left: 0.5rem;
  3351. text-decoration: none;
  3352. white-space: nowrap;
  3353. }
  3354. .widget_tag_cloud a:focus,
  3355. .widget_tag_cloud a:hover {
  3356. text-decoration: underline;
  3357. }
  3358. /* Widget: Text ------------------------------ */
  3359. /* -------------------------------------------------------------------------- */
  3360. /* 16. Site Footer
  3361. /* -------------------------------------------------------------------------- */
  3362. .footer-nav-widgets-wrapper,
  3363. #site-footer {
  3364. background-color: #fff;
  3365. border-color: #dedfdf;
  3366. border-style: solid;
  3367. border-width: 0;
  3368. }
  3369. .footer-top-visible .footer-nav-widgets-wrapper,
  3370. .footer-top-hidden #site-footer {
  3371. margin-top: 5rem;
  3372. }
  3373. .reduced-spacing.footer-top-visible .footer-nav-widgets-wrapper,
  3374. .reduced-spacing.footer-top-hidden #site-footer {
  3375. border-top-width: 0.1rem;
  3376. }
  3377. .footer-top,
  3378. .footer-widgets-outer-wrapper,
  3379. #site-footer {
  3380. padding: 3rem 0;
  3381. }
  3382. /* Footer Top -------------------------------- */
  3383. .footer-top {
  3384. display: flex;
  3385. border-bottom: 0.1rem solid #dedfdf;
  3386. justify-content: space-between;
  3387. }
  3388. /* FOOTER MENU */
  3389. .footer-menu {
  3390. font-size: 1.8rem;
  3391. font-weight: 700;
  3392. letter-spacing: -0.0277em;
  3393. }
  3394. .footer-menu li {
  3395. line-height: 1.25;
  3396. margin: 0.25em 0 0 0;
  3397. }
  3398. .footer-menu a {
  3399. text-decoration: none;
  3400. }
  3401. .footer-menu a:hover,
  3402. .footer-menu a:focus {
  3403. text-decoration: underline;
  3404. }
  3405. /* FOOTER SOCIAL */
  3406. .footer-social-wrapper {
  3407. margin: 0;
  3408. width: 100%;
  3409. }
  3410. .has-footer-menu .footer-social-wrapper {
  3411. flex-shrink: 0;
  3412. margin-right: 1rem;
  3413. width: 50%;
  3414. }
  3415. ul.footer-social {
  3416. margin: -0.5rem -0.5rem 0 0;
  3417. }
  3418. .has-footer-menu .footer-social {
  3419. justify-content: flex-end;
  3420. }
  3421. ul.footer-social li {
  3422. margin: 0.5rem 0.5rem 0 0;
  3423. }
  3424. .footer-social a {
  3425. background-color: #cd2653;
  3426. height: 3.6rem;
  3427. width: 3.6rem;
  3428. }
  3429. .footer-social a::before {
  3430. font-size: 1.6rem;
  3431. }
  3432. /* Footer Widgets ---------------------------- */
  3433. .footer-widgets-outer-wrapper {
  3434. border-bottom: 0.1rem solid #dedfdf;
  3435. }
  3436. .footer-widgets + .footer-widgets {
  3437. margin-top: 3rem;
  3438. }
  3439. /* Footer Bottom ----------------------------- */
  3440. #site-footer {
  3441. font-size: 1.6rem;
  3442. }
  3443. #site-footer .section-inner {
  3444. align-items: baseline;
  3445. display: flex;
  3446. justify-content: space-between;
  3447. }
  3448. #site-footer a {
  3449. text-decoration: none;
  3450. }
  3451. #site-footer a:focus,
  3452. #site-footer a:hover {
  3453. text-decoration: underline;
  3454. }
  3455. .footer-copyright a,
  3456. .powered-by-wordpress a {
  3457. color: inherit;
  3458. }
  3459. .powered-by-wordpress,
  3460. .to-the-top {
  3461. color: #6d6d6d;
  3462. }
  3463. a.to-the-top > * {
  3464. pointer-events: none;
  3465. }
  3466. .footer-copyright {
  3467. font-weight: 600;
  3468. margin: 0;
  3469. }
  3470. .powered-by-wordpress {
  3471. display: none;
  3472. margin: 0 2.4rem 0 0;
  3473. }
  3474. .to-the-top-long {
  3475. display: none;
  3476. }
  3477. /* -------------------------------------------------------------------------- */
  3478. /* 17. Media Queries
  3479. /* -------------------------------------------------------------------------- */
  3480. @media ( max-width: 479px ) {
  3481. /* Blocks -------------------------------- */
  3482. .wp-block-pullquote.alignleft,
  3483. .wp-block-pullquote.alignright {
  3484. float: none;
  3485. }
  3486. /* Entry Content ------------------------- */
  3487. /* LISTS */
  3488. ul,
  3489. ol {
  3490. margin: 0 2rem 3rem 0;
  3491. }
  3492. li {
  3493. margin: 0.5rem 1rem 0 0;
  3494. }
  3495. }
  3496. @media ( min-width: 480px ) {
  3497. /* Blocks -------------------------------- */
  3498. /* BLOCK: BASE ALIGNMENT WIDTH */
  3499. .wp-block-pullquote.alignleft,
  3500. .wp-block-pullquote.alignright,
  3501. .wp-block-cover-image.alignleft,
  3502. .wp-block-cover-image.alignright,
  3503. .wp-block-cover.alignleft,
  3504. .wp-block-cover.alignright,
  3505. .wp-block-embed.alignleft,
  3506. .wp-block-embed.alignright,
  3507. .wp-block-gallery.alignleft,
  3508. .wp-block-gallery.alignright {
  3509. max-width: 26rem;
  3510. }
  3511. /* BLOCK: TABLE WIDTH */
  3512. .wp-block-table.alignleft,
  3513. .wp-block-table.alignright {
  3514. max-width: 100%;
  3515. }
  3516. /* Entry Content ------------------------- */
  3517. /* ALIGNMENT CLASSES */
  3518. .alignleft,
  3519. .alignright {
  3520. max-width: 26rem;
  3521. }
  3522. }
  3523. @media ( max-width: 599px ) {
  3524. /* Blocks -------------------------------- */
  3525. /* BLOCK: COLUMNS */
  3526. /* While columns are stacked */
  3527. .wp-block-column:last-child {
  3528. margin-bottom: 0;
  3529. }
  3530. .wp-block-columns + .wp-block-columns {
  3531. margin-top: 0.2rem;
  3532. }
  3533. .wp-block-columns.alignwide + .wp-block-columns.alignwide {
  3534. margin-top: -0.8rem;
  3535. }
  3536. .wp-block-columns.alignfull + .wp-block-columns.alignfull {
  3537. margin-top: -1.8rem;
  3538. }
  3539. }
  3540. @media ( min-width: 600px ) {
  3541. /* Blocks -------------------------------- */
  3542. /* BLOCK: COLUMNS */
  3543. .wp-block-columns.alignwide + .wp-block-columns.alignwide,
  3544. .wp-block-columns.alignfull + .wp-block-columns.alignfull {
  3545. margin-top: -4rem;
  3546. }
  3547. }
  3548. @media ( min-width: 660px ) {
  3549. /* Blocks -------------------------------- */
  3550. /* BLOCK: GALLERY */
  3551. figure.wp-block-gallery.alignleft {
  3552. margin-left: calc(( 100vw - 58rem - 8rem ) / -2);
  3553. }
  3554. figure.wp-block-gallery.alignright {
  3555. margin-right: calc(( 100vw - 58rem - 8rem ) / -2);
  3556. }
  3557. /* Entry Content ------------------------- */
  3558. /* ALIGNMENT CLASSES */
  3559. .entry-content > .alignleft {
  3560. margin-left: 4rem;
  3561. }
  3562. .entry-content > p .alignleft,
  3563. .entry-content > .wp-block-image .alignleft {
  3564. margin-left: calc(( 100vw - 58rem - 8rem ) / -2);
  3565. }
  3566. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignleft,
  3567. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignleft,
  3568. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignleft {
  3569. margin-left: 0;
  3570. }
  3571. .entry-content > .alignright {
  3572. margin-right: 4rem;
  3573. }
  3574. .entry-content > p .alignright,
  3575. .entry-content > .wp-block-image .alignright {
  3576. margin-right: calc(( 100vw - 58rem - 8rem ) / -2);
  3577. }
  3578. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignright,
  3579. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignright,
  3580. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignright {
  3581. margin-right: 0;
  3582. }
  3583. }
  3584. @media ( min-width: 700px ) {
  3585. /* Element Base ------------------------- */
  3586. ul,
  3587. ol {
  3588. margin-bottom: 4rem;
  3589. }
  3590. pre {
  3591. padding: 3rem;
  3592. }
  3593. hr {
  3594. margin: 8rem auto;
  3595. }
  3596. table {
  3597. font-size: 1.8rem;
  3598. }
  3599. /* VANILLA GALLERIES */
  3600. .gallery-columns-2 .gallery-item {
  3601. max-width: 50%;
  3602. }
  3603. .gallery-columns-3 .gallery-item {
  3604. max-width: 33.33%;
  3605. }
  3606. .gallery-columns-4 .gallery-item {
  3607. max-width: 25%;
  3608. }
  3609. .gallery-columns-5 .gallery-item {
  3610. max-width: 20%;
  3611. }
  3612. .gallery-columns-6 .gallery-item {
  3613. max-width: 16.66%;
  3614. }
  3615. .gallery-columns-7 .gallery-item {
  3616. max-width: 14.28%;
  3617. }
  3618. .gallery-columns-8 .gallery-item {
  3619. max-width: 12.5%;
  3620. }
  3621. .gallery-columns-9 .gallery-item {
  3622. max-width: 11.11%;
  3623. }
  3624. /* TITLES */
  3625. h1,
  3626. .heading-size-1,
  3627. h2,
  3628. .heading-size-2,
  3629. h3,
  3630. .heading-size-3 {
  3631. margin: 6rem auto 3rem;
  3632. }
  3633. h4,
  3634. .heading-size-4,
  3635. h5,
  3636. .heading-size-5,
  3637. h6,
  3638. .heading-size-6 {
  3639. margin: 4.5rem auto 2.5rem;
  3640. }
  3641. h1,
  3642. .heading-size-1 {
  3643. font-size: 6.4rem;
  3644. }
  3645. h2,
  3646. .heading-size-2 {
  3647. font-size: 4.8rem;
  3648. }
  3649. h3,
  3650. .heading-size-3 {
  3651. font-size: 4rem;
  3652. }
  3653. h4,
  3654. .heading-size-4 {
  3655. font-size: 3.2rem;
  3656. }
  3657. h5,
  3658. .heading-size-5 {
  3659. font-size: 2.4rem;
  3660. }
  3661. h6,
  3662. .heading-size-6 {
  3663. font-size: 1.8rem;
  3664. }
  3665. /* INPUTS */
  3666. fieldset {
  3667. padding: 3rem;
  3668. }
  3669. legend {
  3670. padding: 0 1.5rem;
  3671. }
  3672. button,
  3673. .button,
  3674. .faux-button,
  3675. .wp-block-button__link,
  3676. input[type="button"],
  3677. input[type="reset"],
  3678. input[type="submit"] {
  3679. font-size: 1.7rem;
  3680. }
  3681. /* MEDIA */
  3682. figcaption,
  3683. .wp-caption-text {
  3684. margin-top: 1.8rem;
  3685. }
  3686. /* Helper Classes ------------------------- */
  3687. /* SECTIONS */
  3688. section {
  3689. padding: 8rem 0;
  3690. }
  3691. .section-inner {
  3692. width: calc(100% - 8rem);
  3693. }
  3694. /* Site Header --------------------------- */
  3695. .header-inner {
  3696. padding: 3.8rem 0;
  3697. }
  3698. .site-title {
  3699. font-size: 2.4rem;
  3700. font-weight: 700;
  3701. }
  3702. .site-description {
  3703. display: block;
  3704. }
  3705. .site-logo img {
  3706. max-height: 9rem;
  3707. transition: height 0.15s linear, width 0.15s linear, max-height 0.15s linear;
  3708. }
  3709. /* HEADER TOGGLES */
  3710. .toggle-inner .toggle-text {
  3711. font-size: 1.2rem;
  3712. }
  3713. .search-toggle {
  3714. right: 2rem;
  3715. }
  3716. .nav-toggle {
  3717. left: 2rem;
  3718. }
  3719. /* Menu Modal ---------------------------- */
  3720. button.close-nav-toggle {
  3721. font-size: 1.8rem;
  3722. padding: 4rem 0;
  3723. }
  3724. button.close-nav-toggle svg {
  3725. height: 2rem;
  3726. width: 2rem;
  3727. }
  3728. button.close-nav-toggle .toggle-text {
  3729. margin-left: 2.1rem;
  3730. }
  3731. .modal-menu {
  3732. right: auto;
  3733. width: 100%;
  3734. }
  3735. .modal-menu > li > a,
  3736. .modal-menu > li > .ancestor-wrapper > a {
  3737. font-size: 2.4rem;
  3738. padding: 2.5rem 0;
  3739. }
  3740. .modal-menu ul li {
  3741. border-right-color: transparent;
  3742. }
  3743. .modal-menu > li > .ancestor-wrapper > button.sub-menu-toggle {
  3744. padding: 0 3rem;
  3745. }
  3746. .modal-menu > li > .ancestor-wrapper > button.sub-menu-toggle svg {
  3747. height: 1.1rem;
  3748. width: 1.8rem;
  3749. }
  3750. .menu-bottom {
  3751. align-items: center;
  3752. display: flex;
  3753. justify-content: space-between;
  3754. padding: 4.4rem 0;
  3755. }
  3756. .menu-copyright {
  3757. display: block;
  3758. flex-shrink: 0;
  3759. margin-left: 4rem;
  3760. }
  3761. /* Modal Search Form ------------------------- */
  3762. .search-modal form {
  3763. position: relative;
  3764. width: 100%;
  3765. }
  3766. .search-untoggle svg {
  3767. height: 2.5rem;
  3768. width: 2.5rem;
  3769. }
  3770. .search-modal .search-field {
  3771. border: none;
  3772. font-size: 3.2rem;
  3773. height: 14rem;
  3774. }
  3775. .search-modal .search-field::-moz-placeholder {
  3776. line-height: 4.375;
  3777. }
  3778. /* Sub Page ------------------------------ */
  3779. /* FEATURED MEDIA */
  3780. .featured-media figcaption {
  3781. margin: 2rem auto 0 auto;
  3782. width: calc(100% - 8rem);
  3783. }
  3784. /* Template: Cover Template -------------- */
  3785. .cover-header-inner {
  3786. padding: 18rem 0 8rem 0;
  3787. }
  3788. .to-the-content-wrapper {
  3789. top: calc(100% + 1.8rem);
  3790. }
  3791. .to-the-content {
  3792. height: 6rem;
  3793. }
  3794. .to-the-content svg {
  3795. height: 2.4rem;
  3796. width: 2.12rem;
  3797. }
  3798. /* Template: Full Width ------------------ */
  3799. body.template-full-width .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  3800. width: calc(100% - 8rem);
  3801. }
  3802. body.template-full-width .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
  3803. padding-right: 4rem;
  3804. padding-left: 4rem;
  3805. }
  3806. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
  3807. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
  3808. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
  3809. margin-left: 4rem;
  3810. }
  3811. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
  3812. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
  3813. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
  3814. margin-right: 4rem;
  3815. }
  3816. /* Post: Archive ------------------------- */
  3817. .archive-header {
  3818. padding: 8rem 0;
  3819. }
  3820. .reduced-spacing .archive-header {
  3821. padding-bottom: 3rem;
  3822. }
  3823. .archive-title {
  3824. font-size: 3.2rem;
  3825. }
  3826. body:not(.singular) main > article:first-of-type {
  3827. padding: 8rem 0 0;
  3828. }
  3829. h2.entry-title {
  3830. font-size: 6.4rem;
  3831. }
  3832. /* SEARCH RESULTS */
  3833. .no-search-results-form {
  3834. padding-top: 8rem;
  3835. }
  3836. /* Post: Single -------------------------- */
  3837. /* POST HEADER */
  3838. .singular .entry-header {
  3839. padding: 8rem 0;
  3840. }
  3841. .entry-categories {
  3842. margin-bottom: 3rem;
  3843. }
  3844. .entry-categories-inner {
  3845. margin: -1rem -2rem 0 0;
  3846. }
  3847. .entry-categories a {
  3848. font-size: 1.5rem;
  3849. margin: 1rem 2rem 0 0;
  3850. }
  3851. .intro-text {
  3852. font-size: 2rem;
  3853. margin-top: 2.5rem;
  3854. }
  3855. .singular .intro-text {
  3856. font-size: 2.6rem;
  3857. }
  3858. .post-meta-wrapper {
  3859. margin-top: 3rem;
  3860. }
  3861. .post-meta {
  3862. font-size: 1.6rem;
  3863. margin: -1.4rem -3rem 0 0;
  3864. }
  3865. .post-meta li {
  3866. margin: 1.4rem 3rem 0 0;
  3867. max-width: calc(100% - 3rem);
  3868. }
  3869. .featured-media {
  3870. margin-top: 6rem;
  3871. }
  3872. .post-inner {
  3873. padding-top: 8rem;
  3874. }
  3875. /* POST FOOTER */
  3876. .post-meta-wrapper.post-meta-single-bottom {
  3877. margin-top: 4rem;
  3878. }
  3879. /* AUTHOR BIO */
  3880. .author-bio {
  3881. margin-top: 8rem;
  3882. min-height: 8rem;
  3883. padding-right: 10rem;
  3884. position: relative;
  3885. }
  3886. .author-bio .avatar {
  3887. position: absolute;
  3888. right: 0;
  3889. top: 0;
  3890. height: 8rem;
  3891. width: 8rem;
  3892. }
  3893. /* SINGLE PAGINATION */
  3894. .pagination-single {
  3895. font-size: 2.4rem;
  3896. margin-top: 8rem;
  3897. }
  3898. .pagination-single-inner {
  3899. flex-direction: row;
  3900. justify-content: space-between;
  3901. }
  3902. .pagination-single.only-next .pagination-single-inner {
  3903. justify-content: flex-end;
  3904. }
  3905. .pagination-single hr:first-child {
  3906. margin: 0 0 4rem 0;
  3907. }
  3908. .pagination-single hr:last-child {
  3909. margin: 4rem 0 0.8rem 0;
  3910. }
  3911. .pagination-single a + a {
  3912. margin: 0 4rem 0 0;
  3913. }
  3914. .pagination-single a .arrow {
  3915. margin: 0 0 0 2rem;
  3916. }
  3917. .pagination-single .next-post {
  3918. flex-direction: row-reverse;
  3919. text-align: left;
  3920. }
  3921. .pagination-single .next-post .arrow {
  3922. margin: 0 2rem 0 0;
  3923. }
  3924. /* Blocks -------------------------------- */
  3925. /* BLOCK: SHARED MEDIA STYLES */
  3926. .wp-block-embed figcaption,
  3927. .wp-block-image figcaption {
  3928. font-size: 1.6rem;
  3929. }
  3930. /* BLOCK: BASE MARGINS */
  3931. .wp-block-archives:not(.alignwide):not(.alignfull),
  3932. .wp-block-categories:not(.alignwide):not(.alignfull),
  3933. .wp-block-code,
  3934. .wp-block-columns:not(.alignwide):not(.alignfull),
  3935. .wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  3936. .wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  3937. .wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  3938. .wp-block-group:not(.has-background):not(.alignwide):not(.alignfull),
  3939. .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
  3940. .wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright),
  3941. .wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright),
  3942. .wp-block-media-text:not(.alignwide):not(.alignfull),
  3943. .wp-block-preformatted,
  3944. .wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
  3945. .wp-block-quote,
  3946. .wp-block-quote.is-large,
  3947. .wp-block-quote.is-style-large,
  3948. .wp-block-verse,
  3949. .wp-block-video:not(.alignwide):not(.alignfull) {
  3950. margin-bottom: 4rem;
  3951. margin-top: 4rem;
  3952. }
  3953. /* BLOCK: COLUMNS */
  3954. .wp-block-columns.alignwide + .wp-block-columns.alignwide,
  3955. .wp-block-columns.alignfull + .wp-block-columns.alignfull {
  3956. margin-top: -6rem;
  3957. }
  3958. .entry-content .wp-block-columns h1,
  3959. .entry-content .wp-block-columns h2,
  3960. .entry-content .wp-block-columns h3,
  3961. .entry-content .wp-block-columns h4,
  3962. .entry-content .wp-block-columns h5,
  3963. .entry-content .wp-block-columns h6 {
  3964. margin: 3.5rem 0 2rem;
  3965. }
  3966. /* BLOCK: COVER */
  3967. .wp-block-cover-image .wp-block-cover__inner-container,
  3968. .wp-block-cover .wp-block-cover__inner-container {
  3969. width: calc(100% - 8rem);
  3970. }
  3971. .wp-block-cover-image h2,
  3972. .wp-block-cover h2 {
  3973. font-size: 4.8rem;
  3974. }
  3975. /* BLOCK: GALLERY */
  3976. figure.wp-block-gallery.alignnone,
  3977. figure.wp-block-gallery.aligncenter {
  3978. margin-bottom: 4rem;
  3979. margin-top: 4rem;
  3980. }
  3981. figure.wp-block-gallery.alignwide,
  3982. figure.wp-block-gallery.alignfull {
  3983. margin-bottom: 6rem;
  3984. margin-top: 6rem;
  3985. }
  3986. /* BLOCK: GROUP */
  3987. .wp-block-group.has-background {
  3988. padding: 4rem;
  3989. margin-top: 0;
  3990. margin-bottom: 0;
  3991. }
  3992. .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
  3993. padding-right: 0;
  3994. padding-left: 0;
  3995. }
  3996. /* BLOCK: MEDIA AND TEXT */
  3997. .wp-block-media-text .wp-block-media-text__content {
  3998. padding: 4rem;
  3999. }
  4000. /* BLOCK: PULLQUOTE */
  4001. .wp-block-pullquote blockquote p {
  4002. font-size: 3.2rem;
  4003. }
  4004. .wp-block-pullquote cite {
  4005. margin-top: 2rem;
  4006. }
  4007. .wp-block-pullquote.alignfull:not(.is-style-solid-color) {
  4008. padding-right: 1rem;
  4009. padding-left: 1rem;
  4010. }
  4011. .wp-block-pullquote.alignwide::before,
  4012. .wp-block-pullquote.alignfull::before {
  4013. font-size: 11.272727272rem;
  4014. height: 8rem;
  4015. margin-bottom: 2rem;
  4016. width: 8rem;
  4017. }
  4018. .wp-block-pullquote.alignwide blockquote p,
  4019. .wp-block-pullquote.alignfull blockquote p {
  4020. font-size: 4.8rem;
  4021. line-height: 1.203125;
  4022. }
  4023. .wp-block-pullquote.alignleft p,
  4024. .wp-block-pullquote.alignright p,
  4025. .wp-block-pullquote.alignleft.is-style-solid-color blockquote p,
  4026. .wp-block-pullquote.alignright.is-style-solid-color blockquote p {
  4027. font-size: 3.2rem;
  4028. line-height: 1.1875;
  4029. }
  4030. .wp-block-pullquote.is-style-solid-color.alignwide,
  4031. .wp-block-pullquote.is-style-solid-color.alignfull {
  4032. padding: 6rem 4rem 4rem;
  4033. }
  4034. .wp-block-pullquote.alignleft.is-style-solid-color blockquote p,
  4035. .wp-block-pullquote.alignright.is-style-solid-color blockquote p {
  4036. font-size: 2.6rem;
  4037. }
  4038. /* BLOCK: QUOTE */
  4039. .wp-block-quote.is-large p,
  4040. .wp-block-quote.is-style-large p {
  4041. font-size: 2.8rem;
  4042. }
  4043. /* BLOCK: SEPARATOR */
  4044. hr.wp-block-separator {
  4045. margin: 6rem auto;
  4046. }
  4047. .wp-block-separator.is-style-wide {
  4048. max-width: calc(100vw - 8rem);
  4049. }
  4050. /* Entry Content ------------------------- */
  4051. .entry-content {
  4052. font-size: 2.1rem;
  4053. }
  4054. .entry-content p,
  4055. .entry-content li {
  4056. line-height: 1.476;
  4057. }
  4058. .entry-content h1,
  4059. .entry-content h2,
  4060. .entry-content h3 {
  4061. margin: 6rem auto 3rem;
  4062. }
  4063. .entry-content h4,
  4064. .entry-content h5,
  4065. .entry-content h6 {
  4066. margin: 4.5rem auto 2.5rem;
  4067. }
  4068. .alignnone,
  4069. .aligncenter {
  4070. margin-bottom: 4rem;
  4071. margin-top: 4rem;
  4072. }
  4073. .alignleft {
  4074. margin: 0.3rem 2rem 2rem 0;
  4075. }
  4076. .alignright {
  4077. margin: 0.3rem 0 2rem 2rem;
  4078. }
  4079. .entry-content > .alignwide:not(.wp-block-group.has-background),
  4080. .entry-content > .alignfull:not(.wp-block-group.has-background) {
  4081. margin-bottom: 6rem;
  4082. margin-top: 6rem;
  4083. }
  4084. .entry-content > .alignwide {
  4085. max-width: calc(100vw - 8rem);
  4086. width: calc(100vw - 8rem);
  4087. }
  4088. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
  4089. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
  4090. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {
  4091. margin-left: 4rem;
  4092. }
  4093. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
  4094. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
  4095. [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {
  4096. margin-right: 4rem;
  4097. }
  4098. /* ENTRY MEDIA */
  4099. .alignfull > figcaption,
  4100. .alignfull > .wp-caption-text {
  4101. width: calc(100% - 8rem);
  4102. }
  4103. /* Comments ------------------------------ */
  4104. .comments-wrapper {
  4105. margin-top: 8rem;
  4106. }
  4107. .comment-reply-title {
  4108. margin-bottom: 4.6rem;
  4109. }
  4110. .comment-respond p.comment-notes,
  4111. .comment-respond p.logged-in-as {
  4112. font-size: 1.8rem;
  4113. letter-spacing: -0.025em;
  4114. margin: -2.5rem 0 4.4rem 0;
  4115. }
  4116. .comments .comment,
  4117. .comments .pingback,
  4118. .comments .trackback,
  4119. .comments .review {
  4120. padding-top: 5rem;
  4121. }
  4122. div.comment:first-of-type {
  4123. margin-top: 5rem;
  4124. }
  4125. .comment-meta {
  4126. margin-bottom: 2rem;
  4127. min-height: 6rem;
  4128. padding: 0.3rem 7.5rem 0 0;
  4129. }
  4130. .comment-meta .avatar {
  4131. display: block;
  4132. height: 6rem;
  4133. position: absolute;
  4134. right: 0;
  4135. top: 0;
  4136. width: 6rem;
  4137. }
  4138. .comment-author {
  4139. font-size: 2.4rem;
  4140. }
  4141. .comment-metadata {
  4142. font-size: 1.6rem;
  4143. margin-top: 0.8rem;
  4144. }
  4145. .comment-footer-meta {
  4146. margin-top: 2.5rem;
  4147. }
  4148. .comments-pagination {
  4149. margin-top: 8rem;
  4150. }
  4151. /* PINGBACKS & TRACKBACKS */
  4152. .pingback .comment-body {
  4153. padding: 0;
  4154. }
  4155. /* COMMENT RESPOND */
  4156. .comment-respond p {
  4157. margin-bottom: 2.5rem;
  4158. }
  4159. .comment-form p.logged-in-as {
  4160. margin: -2.5rem 0 4.4rem 0;
  4161. }
  4162. .comment-respond .comment-form-author,
  4163. .comment-respond .comment-form-email {
  4164. float: right;
  4165. width: calc(50% - 1rem);
  4166. }
  4167. .comment-respond .comment-form-email {
  4168. margin-right: 2rem;
  4169. }
  4170. .comments .comment-respond {
  4171. padding: 5rem 0 0;
  4172. }
  4173. .comment-reply-title small {
  4174. display: inline;
  4175. margin: 0 0.5rem 0 0;
  4176. }
  4177. /* Site Pagination ----------------------- */
  4178. .pagination-separator {
  4179. margin: 8rem 0;
  4180. }
  4181. /* Display the full text for Newer and Older Posts. */
  4182. .nav-short {
  4183. display: inline;
  4184. }
  4185. .pagination .nav-links {
  4186. font-size: 2.4rem;
  4187. font-weight: 700;
  4188. margin: -2.5rem -4rem 0 0;
  4189. }
  4190. .nav-links > * {
  4191. margin: 2.5rem 4rem 0 0;
  4192. }
  4193. /* Error 404 ----------------------------- */
  4194. .error404 #site-content {
  4195. padding-top: 8rem;
  4196. }
  4197. /* Widgets ------------------------------- */
  4198. .widget .widget-title {
  4199. margin-bottom: 3rem;
  4200. }
  4201. /* Site Footer --------------------------- */
  4202. .footer-top-visible .footer-nav-widgets-wrapper,
  4203. .footer-top-hidden #site-footer {
  4204. margin-top: 8rem;
  4205. }
  4206. /* FOOTER TOP */
  4207. .footer-top {
  4208. padding: 3.7rem 0;
  4209. }
  4210. .footer-menu {
  4211. font-size: 2.4rem;
  4212. margin: -0.8rem -1.6rem 0 0;
  4213. }
  4214. .footer-menu li {
  4215. margin: 0.8rem 1.6rem 0 0;
  4216. }
  4217. .has-footer-menu .footer-social-wrapper {
  4218. flex: 1;
  4219. margin-right: 4rem;
  4220. width: auto;
  4221. }
  4222. /* FOOTER WIDGETS */
  4223. .footer-widgets-outer-wrapper {
  4224. padding: 8rem 0;
  4225. }
  4226. .footer-widgets-wrapper {
  4227. display: flex;
  4228. justify-content: space-between;
  4229. margin-right: -4rem;
  4230. width: calc(100% + 4rem);
  4231. }
  4232. .footer-widgets {
  4233. margin-right: 4rem;
  4234. width: 50%;
  4235. }
  4236. .footer-widgets + .footer-widgets {
  4237. margin-top: 0;
  4238. }
  4239. .footer-widgets .widget {
  4240. border-top: none;
  4241. margin-top: 5rem;
  4242. padding-top: 0;
  4243. }
  4244. .footer-widgets .widget:first-child {
  4245. margin-top: 0;
  4246. }
  4247. /* FOOTER BOTTOM */
  4248. #site-footer {
  4249. font-size: 1.8rem;
  4250. padding: 4.3rem 0;
  4251. }
  4252. .footer-credits {
  4253. display: flex;
  4254. }
  4255. .footer-copyright {
  4256. font-weight: 700;
  4257. }
  4258. .powered-by-wordpress {
  4259. display: block;
  4260. }
  4261. .to-the-top-long {
  4262. display: inline;
  4263. }
  4264. .to-the-top-short {
  4265. display: none;
  4266. }
  4267. }
  4268. @media (min-width: 782px) {
  4269. /* Blocks -------------------------------- */
  4270. /* BLOCK: COLUMNS */
  4271. .wp-block-column {
  4272. margin-bottom: 0;
  4273. }
  4274. .wp-block-columns.alignwide + .wp-block-columns.alignwide,
  4275. .wp-block-columns.alignfull + .wp-block-columns.alignfull {
  4276. margin-top: -2.8rem;
  4277. }
  4278. }
  4279. @media ( min-width: 1000px ) {
  4280. /* Document Setup ------------------------ */
  4281. /* Helper Classes ------------------------ */
  4282. /* Site Header --------------------------- */
  4283. #site-header {
  4284. z-index: 1;
  4285. }
  4286. .header-inner {
  4287. align-items: center;
  4288. display: flex;
  4289. justify-content: space-between;
  4290. padding: 2.8rem 0;
  4291. }
  4292. .header-titles-wrapper {
  4293. margin-left: 4rem;
  4294. max-width: 50%;
  4295. padding: 0;
  4296. text-align: right;
  4297. }
  4298. .header-titles {
  4299. align-items: baseline;
  4300. display: flex;
  4301. flex-wrap: wrap;
  4302. justify-content: flex-start;
  4303. margin: -1rem -2.4rem 0 0;
  4304. }
  4305. .header-titles .site-title,
  4306. .header-titles .site-logo,
  4307. .header-titles .site-description {
  4308. margin: 1rem 2.4rem 0 0;
  4309. }
  4310. .wp-custom-logo .header-titles {
  4311. align-items: center;
  4312. }
  4313. /* HEADER NAVIGATION */
  4314. .header-navigation-wrapper {
  4315. align-items: center;
  4316. display: flex;
  4317. }
  4318. .primary-menu-wrapper {
  4319. display: block;
  4320. width: 100%;
  4321. }
  4322. /* HEADER TOGGLES */
  4323. .mobile-search-toggle,
  4324. .mobile-nav-toggle {
  4325. display: none !important;
  4326. }
  4327. .primary-menu-wrapper + .header-toggles {
  4328. margin-right: 3rem;
  4329. }
  4330. .header-toggles {
  4331. display: flex;
  4332. flex-shrink: 0;
  4333. margin-left: -3rem;
  4334. }
  4335. .header-inner .toggle {
  4336. height: 4.4rem;
  4337. padding: 0 3rem;
  4338. position: relative;
  4339. bottom: auto;
  4340. right: auto;
  4341. left: auto;
  4342. top: auto;
  4343. width: auto;
  4344. }
  4345. .header-inner .toggle-wrapper {
  4346. position: relative;
  4347. }
  4348. .header-inner .toggle-wrapper::before {
  4349. background: #dedfdf;
  4350. content: "";
  4351. display: block;
  4352. height: 2.7rem;
  4353. position: absolute;
  4354. right: 0;
  4355. top: calc(50% - 1.35rem);
  4356. width: 0.1rem;
  4357. }
  4358. .header-inner .toggle-wrapper:first-child::before {
  4359. content: none;
  4360. }
  4361. .header-inner .primary-menu-wrapper + .header-toggles .toggle-wrapper:first-child::before {
  4362. content: "";
  4363. }
  4364. .nav-toggle-wrapper:not(.has-expanded-menu) {
  4365. display: none;
  4366. }
  4367. .toggle-inner {
  4368. position: static;
  4369. }
  4370. .toggle-inner .toggle-text {
  4371. right: 0;
  4372. left: 0;
  4373. text-align: center;
  4374. top: calc(100% - 0.3rem);
  4375. width: auto;
  4376. }
  4377. .header-toggles:only-child .nav-toggle .toggle-inner {
  4378. padding-top: 0;
  4379. }
  4380. .header-toggles:only-child .toggle-inner {
  4381. display: flex;
  4382. flex-wrap: nowrap;
  4383. align-items: center;
  4384. }
  4385. .header-toggles:only-child .toggle-inner .svg-icon {
  4386. order: 1;
  4387. }
  4388. .header-toggles:only-child .toggle-inner .toggle-text {
  4389. position: static;
  4390. padding-left: 20px;
  4391. font-size: 15px;
  4392. color: inherit;
  4393. }
  4394. /* Menu Modal ---------------------------- */
  4395. .menu-modal {
  4396. opacity: 1;
  4397. justify-content: flex-end;
  4398. padding: 0;
  4399. transition: background-color 0.3s ease-in, right 0s 0.3s, left 0s 0.3s;
  4400. }
  4401. .menu-modal.cover-modal {
  4402. background: rgba(0, 0, 0, 0);
  4403. }
  4404. .menu-modal.active {
  4405. background: rgba(0, 0, 0, 0.2);
  4406. transition: background-color 0.3s ease-out;
  4407. }
  4408. .menu-wrapper.section-inner {
  4409. width: calc(100% - 8rem);
  4410. }
  4411. .menu-modal-inner {
  4412. box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
  4413. opacity: 0;
  4414. padding: 0;
  4415. transform: translateX(-20rem);
  4416. transition: transform 0.2s ease-in, opacity 0.2s ease-in;
  4417. width: 50rem;
  4418. }
  4419. .menu-modal.active .menu-modal-inner {
  4420. opacity: 1;
  4421. transform: translateX(0);
  4422. transition-timing-function: ease-out;
  4423. }
  4424. .mobile-menu {
  4425. display: none;
  4426. }
  4427. .expanded-menu {
  4428. display: block;
  4429. }
  4430. .menu-bottom {
  4431. padding: 6rem 0;
  4432. }
  4433. .menu-bottom .social-menu {
  4434. justify-content: flex-start;
  4435. }
  4436. /* Sub Page ------------------------------ */
  4437. /* FEATURED MEDIA */
  4438. .featured-media figcaption {
  4439. width: 100%;
  4440. }
  4441. /* Template: Full Width ------------------ */
  4442. .template-full-width .wp-block-image .alignleft {
  4443. margin-right: 2rem;
  4444. }
  4445. .template-full-width .wp-block-image .alignright {
  4446. margin-left: 2rem;
  4447. }
  4448. /* Post: Archive ------------------------- */
  4449. /* Post: Single -------------------------- */
  4450. .singular .intro-text {
  4451. font-size: 2.8rem;
  4452. }
  4453. /* Blocks -------------------------------- */
  4454. /* BLOCK: COLUMNS */
  4455. .wp-block-columns.alignwide + .wp-block-columns.alignwide,
  4456. .wp-block-columns.alignfull + .wp-block-columns.alignfull {
  4457. margin-top: -4.8rem;
  4458. }
  4459. /* BLOCK: GALLERY */
  4460. figure.wp-block-gallery.alignwide,
  4461. figure.wp-block-gallery.alignfull {
  4462. margin-bottom: 8rem;
  4463. margin-top: 8rem;
  4464. }
  4465. /* BLOCK: GROUP */
  4466. .entry-content > .wp-block-group.alignwide.has-background,
  4467. .entry-content > .wp-block-group.alignfull.has-background {
  4468. padding: 8rem 4rem;
  4469. margin-bottom: 0;
  4470. margin-top: 0;
  4471. }
  4472. /* BLOCK: IMAGE */
  4473. .wp-block-image .alignleft {
  4474. margin-right: 0;
  4475. }
  4476. .wp-block-image .alignright {
  4477. margin-left: 0;
  4478. }
  4479. /* BLOCK: SEPARATOR */
  4480. hr.wp-block-separator {
  4481. margin: 8rem auto;
  4482. }
  4483. /* Entry Content ------------------------- */
  4484. /* ALIGNMENT CLASSES */
  4485. .entry-content > .alignleft,
  4486. .entry-content > p .alignleft,
  4487. .entry-content > .wp-block-image .alignleft {
  4488. position: absolute;
  4489. right: calc((100vw - 58rem) / 2 + 58rem + 2rem);
  4490. max-width: calc((100% - 58rem) / 2 - 6rem);
  4491. }
  4492. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignleft,
  4493. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignleft,
  4494. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignleft {
  4495. position: relative;
  4496. right: inherit;
  4497. max-width: inherit;
  4498. }
  4499. [class*="wp-block"].alignwide [class*="__inner-container"] > .alignleft,
  4500. [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignleft,
  4501. [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignleft,
  4502. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
  4503. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
  4504. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
  4505. position: absolute;
  4506. right: calc((100% - 58rem) / 2 + 58rem + 4rem);
  4507. max-width: calc((100% - 58rem) / 2 - 4rem);
  4508. }
  4509. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignleft,
  4510. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignleft,
  4511. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignleft {
  4512. right: calc((100% - 58rem) / 2 + 58rem);
  4513. }
  4514. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
  4515. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
  4516. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
  4517. margin-left: 4rem;
  4518. }
  4519. .entry-content > .alignright,
  4520. .entry-content > p .alignright,
  4521. .entry-content > .wp-block-image .alignright,
  4522. [class*="__inner-container"] > .alignright {
  4523. position: absolute;
  4524. left: calc((100vw - 58rem) / 2 + 58rem + 2rem);
  4525. max-width: calc((100% - 58rem) / 2 - 6rem);
  4526. }
  4527. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignright,
  4528. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignright,
  4529. [class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignright {
  4530. position: relative;
  4531. left: inherit;
  4532. max-width: inherit;
  4533. }
  4534. [class*="wp-block"].alignwide [class*="__inner-container"] > .alignright,
  4535. [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignright,
  4536. [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignright,
  4537. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
  4538. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
  4539. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
  4540. position: absolute;
  4541. left: calc((100% - 58rem) / 2 + 58rem + 4rem);
  4542. max-width: calc((100% - 58rem) / 2 - 4rem);
  4543. }
  4544. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignright,
  4545. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignright,
  4546. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignright {
  4547. left: calc((100% - 58rem) / 2 + 58rem + 4rem);
  4548. }
  4549. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
  4550. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
  4551. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
  4552. margin-right: 4rem;
  4553. }
  4554. .entry-content > .alignwide:not(.wp-block-group.has-background),
  4555. .entry-content > .alignfull:not(.wp-block-group.has-background) {
  4556. margin-bottom: 8rem;
  4557. margin-top: 8rem;
  4558. }
  4559. /* ENTRY MEDIA */
  4560. .alignfull > figcaption,
  4561. .alignfull > .wp-caption-text {
  4562. width: calc(100% - 10rem);
  4563. }
  4564. /* Comments ------------------------------ */
  4565. .comment-meta {
  4566. padding-right: 0;
  4567. }
  4568. .comment-meta .avatar {
  4569. right: -8rem;
  4570. }
  4571. /* Site Pagination ----------------------- */
  4572. .pagination .nav-links {
  4573. justify-content: space-between;
  4574. margin: 0;
  4575. width: 100%;
  4576. }
  4577. .nav-links > * {
  4578. margin: 0 2rem;
  4579. }
  4580. .pagination .next,
  4581. .pagination .prev {
  4582. display: block;
  4583. }
  4584. .pagination .prev {
  4585. margin: 0 0 0 auto;
  4586. }
  4587. .pagination .next {
  4588. text-align: left;
  4589. margin: 0 auto 0 0;
  4590. }
  4591. /* Site Footer --------------------------- */
  4592. /* FOOTER TOP */
  4593. .footer-top {
  4594. align-items: center;
  4595. }
  4596. .footer-menu {
  4597. align-items: baseline;
  4598. display: flex;
  4599. justify-content: flex-start;
  4600. flex-wrap: wrap;
  4601. font-size: 2.1rem;
  4602. margin: -1.2rem -2.4rem 0 0;
  4603. }
  4604. .footer-menu li {
  4605. margin: 1.2rem 2.4rem 0 0;
  4606. }
  4607. }
  4608. @media ( min-width: 1220px ) {
  4609. /* Element Base -------------------------- */
  4610. /* TITLES */
  4611. h1,
  4612. .heading-size-1 {
  4613. font-size: 8.4rem;
  4614. }
  4615. /* Helper Classes ------------------------ */
  4616. /* Site Header --------------------------- */
  4617. /* PRIMARY MENU */
  4618. ul.primary-menu {
  4619. margin: -0.8rem -2.5rem 0 0;
  4620. }
  4621. .primary-menu > li {
  4622. margin: 0.8rem 2.5rem 0 0;
  4623. }
  4624. /* HEADER TOGGLES */
  4625. .primary-menu-wrapper + .header-toggles {
  4626. margin-right: 4rem;
  4627. }
  4628. .header-toggles {
  4629. margin-left: -4rem;
  4630. }
  4631. .header-toggles .toggle {
  4632. padding: 0 4rem;
  4633. }
  4634. /* Menu Modal ---------------------------- */
  4635. /* Search Modal -------------------------- */
  4636. /* Sub Page ------------------------------ */
  4637. /* Template: Cover Template -------------- */
  4638. .cover-header + .post-inner {
  4639. padding-top: 10rem;
  4640. }
  4641. /* Post: Archive ------------------------- */
  4642. /* Post: Single -------------------------- */
  4643. .singular .intro-text {
  4644. font-size: 3.2rem;
  4645. letter-spacing: -0.03125em;
  4646. line-height: 1.375;
  4647. }
  4648. /* Blocks -------------------------------- */
  4649. /* BLOCK: COLUMNS */
  4650. .wp-block-columns.alignfull + .wp-block-columns.alignfull {
  4651. margin-top: -6rem;
  4652. }
  4653. /* BLOCK: GALLERY */
  4654. figure.wp-block-gallery.alignfull {
  4655. margin-bottom: 10rem;
  4656. margin-top: 10rem;
  4657. }
  4658. /* BLOCK: GROUP */
  4659. .entry-content > .wp-block-group.alignwide.has-background,
  4660. .entry-content > .wp-block-group.alignfull.has-background {
  4661. padding: 8rem 6rem;
  4662. margin-bottom: 0;
  4663. margin-top: 0;
  4664. }
  4665. /* BLOCK: PULLQUOTE */
  4666. .wp-block-pullquote.alignwide blockquote p,
  4667. .wp-block-pullquote.alignfull blockquote p {
  4668. font-size: 6.4rem;
  4669. }
  4670. .wp-block-pullquote.is-style-solid-color.alignwide,
  4671. .wp-block-pullquote.is-style-solid-color.alignfull {
  4672. padding: 9rem 4rem 8rem;
  4673. }
  4674. /* Entry Content ------------------------- */
  4675. /* ALIGNMENT CLASSES */
  4676. .entry-content > .alignfull {
  4677. margin-bottom: 10rem;
  4678. margin-top: 10rem;
  4679. }
  4680. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignleft,
  4681. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignleft,
  4682. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignleft {
  4683. right: calc((100% - 58rem) / 2 + 58rem - 2rem);
  4684. }
  4685. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignright,
  4686. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignright,
  4687. [class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignright {
  4688. left: calc((100% - 58rem) / 2 + 58rem + 6rem);
  4689. }
  4690. /* Comments ------------------------------ */
  4691. .comment-reply-title {
  4692. font-size: 5.6rem;
  4693. line-height: 1.2;
  4694. margin-bottom: 6rem;
  4695. }
  4696. .comment-respond p.comment-notes,
  4697. .comment-respond p.logged-in-as {
  4698. margin: -4rem 0 6rem 0;
  4699. }
  4700. .comments .comment-respond .comment-reply-title {
  4701. font-size: 4.8rem;
  4702. }
  4703. .comments .comment-respond p.comment-notes,
  4704. .comments .comment-respond p.logged-in-as {
  4705. margin: -4.5rem 0 4rem 0;
  4706. }
  4707. /* Site Pagination ----------------------- */
  4708. /* Widgets ------------------------------- */
  4709. .widget-content {
  4710. font-size: 2.1rem;
  4711. }
  4712. /* Site Footer --------------------------- */
  4713. .footer-menu {
  4714. font-size: 2.4rem;
  4715. margin: -1.5rem -3rem 0 0;
  4716. }
  4717. .footer-menu li {
  4718. margin: 1.5rem 3rem 0 0;
  4719. }
  4720. ul.footer-social {
  4721. margin: -1rem -1rem 0 0;
  4722. }
  4723. ul.footer-social li {
  4724. margin: 1rem 1rem 0 0;
  4725. }
  4726. .footer-social a {
  4727. height: 4.4rem;
  4728. width: 4.4rem;
  4729. }
  4730. .footer-social a::before {
  4731. font-size: 2rem;
  4732. }
  4733. /* FOOTER WIDGETS */
  4734. .footer-widgets-wrapper {
  4735. margin-right: -6rem;
  4736. width: calc(100% + 6rem);
  4737. }
  4738. .footer-widgets {
  4739. margin-right: 6rem;
  4740. }
  4741. }
  4742. @media ( min-width: 1240px ) {
  4743. /* Blocks -------------------------------- */
  4744. body.template-full-width .entry-content > .alignleft {
  4745. margin-left: calc(( 100vw - 120rem ) / 2);
  4746. }
  4747. body.template-full-width .entry-content > .alignright {
  4748. margin-right: calc(( 100vw - 120rem ) / 2);
  4749. }
  4750. }
  4751. @media ( min-width: 1280px ) {
  4752. /* Blocks -------------------------------- */
  4753. /* BLOCK: GALLERY */
  4754. figure.wp-block-gallery.alignleft {
  4755. margin-left: -31rem;
  4756. }
  4757. figure.wp-block-gallery.alignright {
  4758. margin-right: -31rem;
  4759. }
  4760. /* BLOCK: SEPARATOR */
  4761. .wp-block-separator.is-style-wide {
  4762. max-width: 120rem;
  4763. width: 120rem;
  4764. }
  4765. /* Entry Content ------------------------- */
  4766. /* ALIGNMENT CLASSES */
  4767. .entry-content > .alignleft,
  4768. .entry-content > p .alignleft,
  4769. .entry-content > .wp-block-image .alignleft {
  4770. right: calc((100vw - 58rem) / 2 + 58rem + 4rem);
  4771. margin-left: -31rem;
  4772. }
  4773. .entry-content > .alignright,
  4774. .entry-content > p .alignright,
  4775. .entry-content > .wp-block-image .alignright {
  4776. left: calc((100vw - 58rem) / 2 + 58rem + 4rem);
  4777. margin-right: -31rem;
  4778. }
  4779. .entry-content > .alignwide {
  4780. max-width: 120rem;
  4781. width: 120rem;
  4782. }
  4783. [class*="__inner-container"] > .alignwide {
  4784. max-width: 120rem;
  4785. width: 100%;
  4786. }
  4787. .alignleft,
  4788. .alignright,
  4789. .entry-content > .alignleft,
  4790. .entry-content > p .alignleft,
  4791. .entry-content > .wp-block-image .alignleft,
  4792. .entry-content > .alignright,
  4793. .entry-content > p .alignright,
  4794. .entry-content > .wp-block-image .alignright,
  4795. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignleft,
  4796. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignleft,
  4797. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft,
  4798. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
  4799. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
  4800. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft,
  4801. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignright,
  4802. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignright,
  4803. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright,
  4804. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
  4805. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
  4806. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
  4807. max-width: 25rem;
  4808. }
  4809. /* Template: Full Width ------------------ */
  4810. body.template-full-width .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
  4811. padding-right: 0;
  4812. padding-left: 0;
  4813. }
  4814. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
  4815. margin-left: 0;
  4816. }
  4817. body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
  4818. margin-right: 0;
  4819. }
  4820. }
  4821. @media ( min-width: 1330px ) {
  4822. /* Entry Content ------------------------- */
  4823. /* ALIGNMENT CLASSES */
  4824. .alignleft,
  4825. .alignright,
  4826. .entry-content > .alignleft,
  4827. .entry-content > p .alignleft,
  4828. .entry-content > .wp-block-image .alignleft,
  4829. .entry-content > .alignright,
  4830. .entry-content > p .alignright,
  4831. .entry-content > .wp-block-image .alignright,
  4832. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignleft,
  4833. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignleft,
  4834. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft,
  4835. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
  4836. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
  4837. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft,
  4838. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignright,
  4839. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignright,
  4840. [class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright,
  4841. [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
  4842. [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
  4843. [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
  4844. max-width: 29rem;
  4845. }
  4846. /* Blocks -------------------------------- */
  4847. /* BLOCK: PULLQUOTE */
  4848. .wp-block-pullquote.is-style-solid-color.alignleft::before,
  4849. .wp-block-pullquote.is-style-solid-color.alignright::before {
  4850. top: 0;
  4851. }
  4852. }