style.css 121 KB

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