style.css 99 KB

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