style.css 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700
  1. /*
  2. Theme Name: Radcliffe 2
  3. Theme URI: http://wordpress.com/themes/radcliffe-2
  4. Author: Anders Norén
  5. Author URI: http://www.andersnoren.se
  6. Description: A theme for bloggers who want their content to take center stage.
  7. Version: 2.0.9-wpcom
  8. License: GNU General Public License v2 or later
  9. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  10. Text Domain: radcliffe-2
  11. Tags: author-bio, custom-menu, featured-images, fluid-layout, gray, one-column, responsive-layout, sticky-post, threaded-comments, white
  12. This theme, like WordPress, is licensed under the GPL.
  13. Use it to make something cool, have fun, and share what you've learned with others.
  14. Radcliffe 2 is based on Underscores http://underscores.me/, (C) 2012-2017 Automattic, Inc.
  15. Underscores is distributed under the terms of the GNU GPL v2 or later.
  16. Normalizing styles have been helped along thanks to the fine work of
  17. Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
  18. */
  19. /*--------------------------------------------------------------
  20. >>> TABLE OF CONTENTS:
  21. ----------------------------------------------------------------
  22. # Normalize
  23. # Typography
  24. # Elements
  25. # Navigation
  26. ## Links
  27. ## Menus
  28. # Forms
  29. # Accessibility
  30. # Alignments
  31. # Clearings
  32. # Layout
  33. # Widgets
  34. # Content
  35. ## Posts and pages
  36. ## Comments
  37. # Infinite scroll
  38. # Media
  39. ## Captions
  40. ## Galleries
  41. # Media Queries
  42. --------------------------------------------------------------*/
  43. /*--------------------------------------------------------------
  44. # Normalize
  45. --------------------------------------------------------------*/
  46. html {
  47. font-family: sans-serif;
  48. font-size: 62.5%; /* 10px */
  49. -webkit-text-size-adjust: 100%;
  50. -ms-text-size-adjust: 100%;
  51. }
  52. body {
  53. margin: 0;
  54. }
  55. article,
  56. aside,
  57. details,
  58. figcaption,
  59. figure,
  60. footer,
  61. header,
  62. main,
  63. menu,
  64. nav,
  65. section,
  66. summary {
  67. display: block;
  68. }
  69. audio,
  70. canvas,
  71. progress,
  72. video {
  73. display: inline-block;
  74. vertical-align: baseline;
  75. }
  76. audio:not([controls]) {
  77. display: none;
  78. height: 0;
  79. }
  80. [hidden],
  81. template {
  82. display: none;
  83. }
  84. a {
  85. background-color: transparent;
  86. }
  87. a:active,
  88. a:hover {
  89. outline: 0;
  90. }
  91. abbr[title] {
  92. border-bottom: 1px dotted;
  93. }
  94. b,
  95. strong {
  96. font-weight: bold;
  97. }
  98. dfn {
  99. font-style: italic;
  100. }
  101. h1 {
  102. font-size: 2em;
  103. margin: 0.67em 0;
  104. }
  105. mark {
  106. background: #ff0;
  107. color: #000;
  108. }
  109. small {
  110. font-size: 80%;
  111. }
  112. sub,
  113. sup {
  114. font-size: 75%;
  115. line-height: 0;
  116. position: relative;
  117. vertical-align: baseline;
  118. }
  119. sup {
  120. top: -0.5em;
  121. }
  122. sub {
  123. bottom: -0.25em;
  124. }
  125. img {
  126. border: 0;
  127. }
  128. svg:not(:root) {
  129. overflow: hidden;
  130. }
  131. figure {
  132. margin: 1em 40px;
  133. }
  134. hr {
  135. box-sizing: content-box;
  136. height: 0;
  137. }
  138. pre {
  139. overflow: auto;
  140. }
  141. code,
  142. kbd,
  143. pre,
  144. samp {
  145. font-family: monospace, monospace;
  146. font-size: 1em;
  147. }
  148. button,
  149. input,
  150. optgroup,
  151. select,
  152. textarea {
  153. color: inherit;
  154. font: inherit;
  155. margin: 0;
  156. }
  157. button {
  158. overflow: visible;
  159. }
  160. button,
  161. select {
  162. text-transform: none;
  163. }
  164. button,
  165. html input[type="button"],
  166. input[type="reset"],
  167. input[type="submit"] {
  168. -webkit-appearance: button;
  169. cursor: pointer;
  170. }
  171. button[disabled],
  172. html input[disabled] {
  173. cursor: default;
  174. }
  175. button::-moz-focus-inner,
  176. input::-moz-focus-inner {
  177. border: 0;
  178. padding: 0;
  179. }
  180. input {
  181. line-height: normal;
  182. }
  183. input[type="checkbox"],
  184. input[type="radio"] {
  185. box-sizing: border-box;
  186. padding: 0;
  187. }
  188. input[type="number"]::-webkit-inner-spin-button,
  189. input[type="number"]::-webkit-outer-spin-button {
  190. height: auto;
  191. }
  192. input[type="search"]::-webkit-search-cancel-button,
  193. input[type="search"]::-webkit-search-decoration {
  194. -webkit-appearance: none;
  195. }
  196. fieldset {
  197. border: 1px solid #c0c0c0;
  198. margin: 0 2px;
  199. padding: 0.35em 0.625em 0.75em;
  200. }
  201. legend {
  202. border: 0;
  203. padding: 0;
  204. }
  205. textarea {
  206. overflow: auto;
  207. }
  208. optgroup {
  209. font-weight: bold;
  210. }
  211. table {
  212. border-collapse: collapse;
  213. border-spacing: 0;
  214. }
  215. td,
  216. th {
  217. padding: 0;
  218. }
  219. body a,
  220. .tagcloud a:before {
  221. -webkit-transition: all 0.1s ease-in-out;
  222. transition: all 0.1s ease-in-out;
  223. }
  224. .post-nav a,
  225. .respond input,
  226. .respond textarea,
  227. .site-title a,
  228. .main-navigation a,
  229. .main-navigation > .has-children > a::after,
  230. .main-navigation > .menu-item-has-children > a::after,
  231. .menu-toggle,
  232. .search-button,
  233. #infinite-handle span,
  234. .media-caption,
  235. .entry-content input[type="submit"],
  236. .entry-content input[type="reset"],
  237. .entry-content input[type="button"] {
  238. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  239. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  240. }
  241. .main-navigation ul ul > li:first-child:after,
  242. .main-navigation ul ul > li:first-child:hover:after,
  243. .main-navigation ul ul ul > li:first-child:after,
  244. .main-navigation ul ul ul > li:first-child:hover:after {
  245. -webkit-transition: border-color 0.15s ease-in-out;
  246. transition: border-color 0.15s ease-in-out;
  247. }
  248. .entry-header,
  249. .entry-title,
  250. .search-form .s {
  251. -webkit-transition: all 0.3s ease-in-out;
  252. transition: all 0.3s ease-in-out;
  253. }
  254. /*--------------------------------------------------------------
  255. # Typography
  256. --------------------------------------------------------------*/
  257. body,
  258. button,
  259. input,
  260. select,
  261. textarea {
  262. color: #222;
  263. font-family: Palatino,"Palatino Linotype","Palatino LT STD","Book Antiqua",Times,"Times New Roman",serif;
  264. font-size: 20px;
  265. font-size: 2rem;
  266. line-height: 1.8;
  267. }
  268. h1,
  269. h2,
  270. h3,
  271. h4,
  272. h5,
  273. h6 {
  274. clear: both;
  275. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
  276. line-height: 1.1;
  277. margin-top: 0;
  278. margin-bottom: 18px;
  279. }
  280. h1 {
  281. font-size: 36px;
  282. line-height: 1.25;
  283. }
  284. h2 {
  285. font-size: 30px;
  286. line-height: 1.2;
  287. }
  288. h3 {
  289. font-size: 25px;
  290. line-height: 1.44;
  291. }
  292. h4 {
  293. font-size: 20px;
  294. line-height: 1.8em;
  295. }
  296. h5,
  297. h6 {
  298. font-size: 15px;
  299. line-height: 2.4em;
  300. text-transform: uppercase;
  301. }
  302. p {
  303. margin: 0 0 1.8em;
  304. }
  305. dfn,
  306. cite,
  307. em,
  308. i {
  309. font-style: italic;
  310. }
  311. address {
  312. margin: 0 0 1.8em;
  313. }
  314. pre {
  315. background: #eee;
  316. font-family: "Courier 10 Pitch", Courier, monospace;
  317. font-size: 16px;
  318. font-size: 1.6rem;
  319. line-height: 1.6;
  320. margin-bottom: 1.6em;
  321. max-width: 100%;
  322. overflow: auto;
  323. padding: 1.6em;
  324. }
  325. code,
  326. kbd,
  327. tt,
  328. var {
  329. font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  330. font-size: 16px;
  331. font-size: 1.6rem;
  332. }
  333. abbr,
  334. acronym {
  335. border-bottom: 1px dotted #666;
  336. cursor: help;
  337. }
  338. mark,
  339. ins {
  340. background: #fff9c0;
  341. text-decoration: none;
  342. }
  343. big {
  344. font-size: 125%;
  345. }
  346. .header-search .s,
  347. .entry-meta,
  348. .widget-title,
  349. .site-footer,
  350. .main-navigation a,
  351. .archive .page-title,
  352. .entry-footer,
  353. .posts-navigation,
  354. .post-navigation,
  355. .post-navigation a span,
  356. .comment-header,
  357. .comment-actions,
  358. .comment-navigation,
  359. #wp-calendar tfoot a,
  360. form,
  361. input,
  362. button,
  363. .button,
  364. input[type="button"],
  365. input[type="reset"],
  366. input[type="submit"],
  367. #infinite-handle span {
  368. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
  369. }
  370. /*--------------------------------------------------------------
  371. # Elements
  372. --------------------------------------------------------------*/
  373. html {
  374. box-sizing: border-box;
  375. }
  376. *,
  377. *:before,
  378. *:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  379. box-sizing: inherit;
  380. }
  381. body {
  382. background: #fff; /* Fallback for when there is no custom background color defined. */
  383. }
  384. blockquote:before,
  385. blockquote:after,
  386. q:before,
  387. q:after {
  388. content: "";
  389. }
  390. blockquote,
  391. q {
  392. quotes: "" "";
  393. }
  394. blockquote {
  395. color: #666;
  396. font-style: italic;
  397. text-align: center;
  398. margin: 0 0.5em;
  399. }
  400. blockquote:before,
  401. blockquote:after {
  402. background: #ddd;
  403. content: "";
  404. display: block;
  405. height: 2px;
  406. margin: 20px auto;
  407. width: 80px;
  408. }
  409. blockquote blockquote:after {
  410. display: none;
  411. }
  412. hr {
  413. background-color: #ccc;
  414. border: 0;
  415. height: 1px;
  416. margin-bottom: 1.6em;
  417. }
  418. ul,
  419. ol {
  420. margin: 0 0 1.6em;
  421. }
  422. ul {
  423. list-style: disc;
  424. }
  425. ol {
  426. list-style: decimal;
  427. }
  428. li > ul,
  429. li > ol {
  430. margin-bottom: 0;
  431. }
  432. dt {
  433. font-weight: bold;
  434. }
  435. dd {
  436. margin: 0 1.6em 1.6em;
  437. }
  438. img {
  439. height: auto; /* Make sure images are scaled correctly. */
  440. max-width: 100%; /* Adhere to container width. */
  441. }
  442. figure {
  443. margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
  444. }
  445. table {
  446. border-collapse: collapse;
  447. border-spacing: 0;
  448. empty-cells: show;
  449. font-size: 0.9em;
  450. margin: 0 0 1.6em;
  451. width: 100%;
  452. }
  453. thead {
  454. vertical-align: bottom;
  455. white-space: nowrap;
  456. }
  457. tbody {
  458. border-bottom: 1px solid #eee;
  459. border-top: 1px solid #eee;
  460. }
  461. th {
  462. color: #444;
  463. font-weight: bold;
  464. text-align: left;
  465. }
  466. th,
  467. td {
  468. border-bottom: 1px solid #eee;
  469. line-height: 120%;
  470. margin: 0;
  471. overflow: visible;
  472. padding: 2%;
  473. }
  474. tr:last-child td {
  475. border-bottom: none;
  476. }
  477. table tbody > tr:nth-child(odd) > th,
  478. table tbody > tr:nth-child(odd) > td {
  479. background: #f9f9f9;
  480. }
  481. /*--------------------------------------------------------------
  482. # Navigation
  483. --------------------------------------------------------------*/
  484. /*--------------------------------------------------------------
  485. ## Links
  486. --------------------------------------------------------------*/
  487. a,
  488. a:visited {
  489. color: #ca2017;
  490. text-decoration: none;
  491. }
  492. a:hover,
  493. a:focus,
  494. a:active {
  495. color: #e43a31;
  496. text-decoration: underline;
  497. }
  498. a:focus {
  499. outline: thin dotted;
  500. text-decoration: none;
  501. }
  502. a:hover,
  503. a:active {
  504. outline: 0;
  505. }
  506. /*--------------------------------------------------------------
  507. ## Menus
  508. --------------------------------------------------------------*/
  509. .main-navigation {
  510. display: inherit;
  511. flex: 1 1 auto;
  512. margin-bottom: 18px;
  513. position: relative;
  514. z-index: 100;
  515. }
  516. .main-navigation ul {
  517. display: none;
  518. list-style: none;
  519. margin: 0;
  520. padding-left: 0;
  521. }
  522. #header-menu:after {
  523. clear: both;
  524. content: "";
  525. display: table;
  526. }
  527. .main-navigation li {
  528. float: left;
  529. margin: 0;
  530. position: relative;
  531. }
  532. .main-navigation a {
  533. color: #222;
  534. display: block;
  535. font-size: 15px;
  536. font-size: 1.5rem;
  537. font-weight: 700;
  538. letter-spacing: 1px;
  539. line-height: 1.2;
  540. padding: 9px 15px;
  541. text-decoration: none;
  542. text-transform: uppercase;
  543. word-wrap: break-word;
  544. }
  545. .main-navigation a .icon {
  546. margin-left: 6px;
  547. }
  548. .main-navigation ul ul > li:hover > a,
  549. .main-navigation ul ul > li.focus > a,
  550. .main-navigation ul ul > li.current-menu-item > a {
  551. border-radius: 0;
  552. }
  553. .main-navigation ul ul > li:first-child > a {
  554. border-top-left-radius: 6px;
  555. border-top-right-radius: 6px;
  556. }
  557. .main-navigation ul ul > li:last-child > a {
  558. border-bottom-left-radius: 6px;
  559. border-bottom-right-radius: 6px;
  560. }
  561. .main-navigation ul ul ul {
  562. left: -999em;
  563. top: 0;
  564. }
  565. .main-navigation ul ul a {
  566. background: #222;
  567. color: #fff;
  568. font-weight: 400;
  569. text-transform: none;
  570. width: 200px;
  571. }
  572. .main-navigation ul li:hover > ul,
  573. .main-navigation ul li.focus > ul {
  574. left: auto;
  575. }
  576. .main-navigation ul ul li:hover > ul,
  577. .main-navigation ul ul li.focus > ul {
  578. left: 100%;
  579. }
  580. .main-navigation .current_page_item > a,
  581. .main-navigation .current-menu-item > a,
  582. .main-navigation .current_page_ancestor > a,
  583. .main-navigation .current-menu-ancestor > a {
  584. }
  585. /* Small menu. */
  586. .menu-toggle {
  587. background-color: transparent;
  588. color: #222;
  589. font-size: 16px;
  590. font-weight: 600;
  591. text-transform: uppercase;
  592. }
  593. .menu-toggle .icon {
  594. font-size: 20px;
  595. margin-right: 6px;
  596. }
  597. .menu-toggle:focus .icon,
  598. .menu-toggle:hover .icon {
  599. fill: #fff;
  600. }
  601. .toggled .menu-toggle .icon-menu,
  602. .menu-toggle .icon-close {
  603. display: none;
  604. }
  605. .toggled .menu-toggle .icon-close {
  606. display: inline-block;
  607. }
  608. /* Jetpack social menu */
  609. .jetpack-social-navigation {
  610. flex: 0 1 auto;
  611. margin: 0 0 18px;
  612. }
  613. .site-header .jetpack-social-navigation ul {
  614. margin: 0;
  615. }
  616. .site-header .jetpack-social-navigation-svg .icon {
  617. height: 1.25em;
  618. width: 1.25em;
  619. }
  620. .jetpack-social-navigation li {
  621. margin-right: 0.25em;
  622. }
  623. .jetpack-social-navigation a {
  624. padding: 0 0.5em 0.5em 0;
  625. }
  626. .jetpack-social-navigation a,
  627. .jetpack-social-navigation a:visited {
  628. color: #222;
  629. }
  630. .jetpack-social-navigation a:hover,
  631. .jetpack-social-navigation a:focus {
  632. color: #ca2017;
  633. }
  634. /* Comment and Post menus */
  635. .comment-navigation,
  636. .posts-navigation,
  637. .post-navigation {
  638. overflow: hidden;
  639. }
  640. .post-nav-wrapper {
  641. border-top: 1px solid #ddd;
  642. }
  643. .post-navigation {
  644. margin: 0 auto;
  645. padding-top: 36px;
  646. padding-bottom: 36px;
  647. }
  648. #comment-nav-above {
  649. margin-bottom: 36px;
  650. }
  651. #comment-nav-below {
  652. margin-top: 36px;
  653. }
  654. .comment-navigation div,
  655. .posts-navigation div {
  656. text-align: center;
  657. }
  658. .comment-navigation a,
  659. .posts-navigation a {
  660. color: #666;
  661. display: block;
  662. font-size: 14px;
  663. font-size: 1.4rem;
  664. font-weight: 700;
  665. line-height: 2.57;
  666. text-transform: uppercase;
  667. }
  668. .posts-navigation a:hover,
  669. .comment-navigation a:hover {
  670. color: #ca2017;
  671. text-decoration: none;
  672. }
  673. .posts-navigation .nav-previous,
  674. .comment-navigation .nav-previous {
  675. margin-bottom: 0;
  676. }
  677. .post-navigation a {
  678. color: #222;
  679. font-family: Palatino,"Palatino Linotype","Palatino LT STD","Book Antiqua",Times,"Times New Roman",serif;
  680. font-size: 20px;
  681. font-size: 2rem;
  682. font-style: italic;
  683. }
  684. .post-navigation a span {
  685. color: #707070;
  686. display: block;
  687. font-size: 14px;
  688. font-size: 1.4rem;
  689. font-style: normal;
  690. font-weight: 600;
  691. line-height: 2.58;
  692. text-transform: uppercase;
  693. }
  694. .post-navigation a:hover {
  695. color: #ca2017;
  696. text-decoration: none;
  697. }
  698. .nav-previous {
  699. margin-bottom: 18px;
  700. }
  701. .nav-next .icon {
  702. margin-left: 6px;
  703. }
  704. .nav-previous .icon {
  705. margin-right: 6px;
  706. }
  707. /*--------------------------------------------------------------
  708. # Forms
  709. --------------------------------------------------------------*/
  710. button,
  711. .button,
  712. input[type="button"],
  713. input[type="reset"],
  714. input[type="submit"] {
  715. -webkit-appearance: none;
  716. background: #222;
  717. border: none;
  718. border-radius: 3px;
  719. color: #fff;
  720. font-size: 14px;
  721. font-size: 1.4rem;
  722. line-height: 1.29;
  723. margin: 0;
  724. padding: 9px 18px;
  725. }
  726. button:hover,
  727. .button:hover,
  728. input[type="button"]:hover,
  729. input[type="reset"]:hover,
  730. input[type="submit"]:hover {
  731. background: #ca2017;
  732. color: #fff;
  733. cursor: pointer;
  734. text-decoration: none;
  735. }
  736. button:focus,
  737. .button:focus,
  738. input[type="button"]:focus,
  739. input[type="reset"]:focus,
  740. input[type="submit"]:focus,
  741. button:active,
  742. .button:active,
  743. input[type="button"]:active,
  744. input[type="reset"]:active,
  745. input[type="submit"]:active {
  746. background: #ca2017;
  747. color: #fff;
  748. cursor: pointer;
  749. }
  750. input[type="text"],
  751. input[type="email"],
  752. input[type="url"],
  753. input[type="password"],
  754. input[type="search"],
  755. input[type="number"],
  756. input[type="tel"],
  757. input[type="range"],
  758. input[type="date"],
  759. input[type="month"],
  760. input[type="week"],
  761. input[type="time"],
  762. input[type="datetime"],
  763. input[type="datetime-local"],
  764. input[type="color"],
  765. textarea {
  766. color: #666;
  767. border: 1px solid #ccc;
  768. border-radius: 3px;
  769. padding: 3px;
  770. max-width: 100%;
  771. }
  772. select {
  773. border: 1px solid #ccc;
  774. }
  775. input[type="text"]:focus,
  776. input[type="email"]:focus,
  777. input[type="url"]:focus,
  778. input[type="password"]:focus,
  779. input[type="search"]:focus,
  780. input[type="number"]:focus,
  781. input[type="tel"]:focus,
  782. input[type="range"]:focus,
  783. input[type="date"]:focus,
  784. input[type="month"]:focus,
  785. input[type="week"]:focus,
  786. input[type="time"]:focus,
  787. input[type="datetime"]:focus,
  788. input[type="datetime-local"]:focus,
  789. input[type="color"]:focus,
  790. textarea:focus {
  791. border-color: #222;
  792. color: #111;
  793. }
  794. textarea {
  795. width: 100%;
  796. }
  797. /*--------------------------------------------------------------
  798. # Accessibility
  799. --------------------------------------------------------------*/
  800. /* Text meant only for screen readers. */
  801. .screen-reader-text {
  802. clip: rect(1px, 1px, 1px, 1px);
  803. position: absolute !important;
  804. height: 1px;
  805. width: 1px;
  806. overflow: hidden;
  807. word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  808. }
  809. .screen-reader-text:focus {
  810. background-color: #f1f1f1;
  811. border-radius: 3px;
  812. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  813. clip: auto !important;
  814. color: #21759b;
  815. display: block;
  816. font-size: 14px;
  817. font-size: 0.875rem;
  818. font-weight: bold;
  819. height: auto;
  820. left: 5px;
  821. line-height: normal;
  822. padding: 15px 23px 14px;
  823. text-decoration: none;
  824. top: 5px;
  825. width: auto;
  826. z-index: 100000; /* Above WP toolbar. */
  827. }
  828. /* Do not show the outline on the skip link target. */
  829. #content[tabindex="-1"]:focus {
  830. outline: 0;
  831. }
  832. /*--------------------------------------------------------------
  833. # Alignments
  834. --------------------------------------------------------------*/
  835. .alignleft {
  836. display: inline;
  837. float: left;
  838. margin-right: 1.6em;
  839. }
  840. .alignright {
  841. display: inline;
  842. float: right;
  843. margin-left: 1.6em;
  844. }
  845. .aligncenter {
  846. clear: both;
  847. display: block;
  848. margin-left: auto;
  849. margin-right: auto;
  850. }
  851. /*--------------------------------------------------------------
  852. # Clearings
  853. --------------------------------------------------------------*/
  854. .clear:before,
  855. .clear:after,
  856. .entry-content:before,
  857. .entry-content:after,
  858. .comment-content:before,
  859. .comment-content:after,
  860. .site-header:before,
  861. .site-header:after,
  862. .site-content:before,
  863. .site-content:after,
  864. .site-footer:before,
  865. .site-footer:after {
  866. content: "";
  867. display: table;
  868. table-layout: fixed;
  869. }
  870. .clear:after,
  871. .entry-content:after,
  872. .comment-content:after,
  873. .site-header:after,
  874. .site-content:after,
  875. .site-footer:after {
  876. clear: both;
  877. }
  878. /*--------------------------------------------------------------
  879. # Layout
  880. --------------------------------------------------------------*/
  881. .site-header {
  882. border-top: 5px solid #222;
  883. padding-bottom: 20px;
  884. position: relative;
  885. }
  886. .site-header:before {
  887. border-top: 1px solid rgba(255,255,255,0.5);
  888. content: "";
  889. left: 0;
  890. position: absolute;
  891. top: -5px;
  892. width: 100%;
  893. }
  894. .menu-wrapper {
  895. margin: 0 auto;
  896. max-width: 92%;
  897. width: 1300px;
  898. }
  899. .header-wrapper {
  900. margin: 0 auto;
  901. max-width: 92%;
  902. padding: 36px 0 18px;
  903. position: relative;
  904. width: 1300px;
  905. }
  906. .single.no-featured-image .site-header,
  907. .page.no-featured-image .site-header {
  908. border-bottom: 1px solid #ddd;
  909. }
  910. .header-image img {
  911. width: 100%;
  912. }
  913. .contact-info-area {
  914. border: 1px solid #ddd;
  915. color: #888;
  916. font-size: 16px;
  917. font-size: 1.6rem;
  918. padding: 18px 10px 8px;
  919. text-align: center;
  920. }
  921. .site-header .contact-info-area {
  922. border-width: 0 0 1px;
  923. }
  924. .site > .contact-info-area {
  925. border-width: 1px 0 0;
  926. }
  927. .contact-info-area,
  928. .contact-info-area a {
  929. color: #222;
  930. }
  931. .contact-info-area a:focus,
  932. .contact-info-area a:hover {
  933. color: #ca2017;
  934. text-decoration: none;
  935. }
  936. .contact-info-area a:focus span,
  937. .contact-info-area a:hover span {
  938. text-decoration: underline;
  939. }
  940. .contact-info-area span,
  941. .contact-info-area span a {
  942. display: inline-block;
  943. }
  944. .contact-info-area span a,
  945. .contact-info-wrapper > span:last-of-type {
  946. padding: 0 10px 9px;
  947. }
  948. .contact-info-area span:first-child {
  949. margin-left: 0;
  950. }
  951. .contact-info-area span.contact-info-label {
  952. position: absolute;
  953. left: -999999em;
  954. }
  955. .contact-info-area .icon {
  956. fill: #ca2017;
  957. height: 1.5em;
  958. width: 1.5em;
  959. }
  960. .site-branding {
  961. position: relative;
  962. text-align: center;
  963. }
  964. .custom-logo-link {
  965. display: block;
  966. margin-bottom: 18px;
  967. text-align: center;
  968. }
  969. .custom-logo-link + .site-title {
  970. margin-top: 36px;
  971. }
  972. .site-title {
  973. font-family: Palatino,"Palatino Linotype","Palatino LT STD","Book Antiqua",Times,"Times New Roman",serif;
  974. font-size: 40px;
  975. font-size: 4rem;
  976. font-weight: 600;
  977. line-height: 1;
  978. margin-bottom: 0;
  979. margin-top: 0;
  980. word-wrap: break-word;
  981. }
  982. .site-title a {
  983. color: #222;
  984. }
  985. .site-title a:hover {
  986. color: #ca2017;
  987. text-decoration: none;
  988. }
  989. .site-description {
  990. font-style: italic;
  991. line-height: 2;
  992. margin: 0;
  993. }
  994. .header-search {
  995. background: #222;
  996. display: none;
  997. padding: 50px 0;
  998. text-align: center;
  999. }
  1000. .header-search-wrapper {
  1001. margin: 0 auto;
  1002. max-width: 92%;
  1003. width: 1300px;
  1004. }
  1005. .header-search .s {
  1006. background: none;
  1007. border: none;
  1008. color: #fff !important;
  1009. display: block;
  1010. font-size: 36px;
  1011. font-size: 3.6rem;
  1012. font-weight: 300;
  1013. margin: 0;
  1014. width: 100%;
  1015. }
  1016. .header-search .s::-webkit-input-placeholder {
  1017. color: rgba(255,255,255,0.5);
  1018. }
  1019. .header-search .s:-ms-input-placeholder {
  1020. color: rgba(255,255,255,0.5);
  1021. }
  1022. .header-search .s:focus {
  1023. outline: none;
  1024. }
  1025. .site-footer {
  1026. border-top: 1px solid #ddd;
  1027. font-size: 16px;
  1028. text-transform: uppercase;
  1029. text-align: center;
  1030. }
  1031. .site-info {
  1032. font-size: 14px;
  1033. font-size: 1.4rem;
  1034. font-weight: 600;
  1035. line-height: 2.58;
  1036. margin: auto;
  1037. max-width: 92%;
  1038. padding: 36px 0;
  1039. text-transform: uppercase;
  1040. }
  1041. .site-info, .site-info a {
  1042. color: #707070;
  1043. }
  1044. .site-info a:hover {
  1045. color: #ca2017;
  1046. text-decoration: none;
  1047. }
  1048. /*--------------------------------------------------------------
  1049. # Widgets
  1050. --------------------------------------------------------------*/
  1051. .widget-area {
  1052. border-top: 1px solid #ddd;
  1053. clear: both;
  1054. padding: 50px 0 10px;
  1055. }
  1056. .widget-wrapper {
  1057. margin: 0 auto;
  1058. max-width: 92%;
  1059. width: 1300px;
  1060. }
  1061. .widget-area .widget-column {
  1062. width: 100%;
  1063. }
  1064. .widget {
  1065. font-size: 16px;
  1066. font-size: 1.6rem;
  1067. margin: 0 0 3.6em;
  1068. }
  1069. .widget-title {
  1070. font-size: 16px;
  1071. font-size: 1.6rem;
  1072. line-height: 1.125;
  1073. margin: 0 0 18px;
  1074. text-transform: uppercase;
  1075. }
  1076. .widget ul {
  1077. list-style-type: none;
  1078. padding-left: 0;
  1079. }
  1080. .widget li {
  1081. border-top: 1px solid rgba(0, 0, 0, 0.075);
  1082. padding: 8px 0;
  1083. }
  1084. .widget ul ul {
  1085. margin-top: 9px;
  1086. }
  1087. .widget ul ul li:last-child {
  1088. padding-bottom: 0;
  1089. }
  1090. /* Make sure select elements fit in widgets. */
  1091. .widget select {
  1092. max-width: 100%;
  1093. }
  1094. /* Calendar widget */
  1095. #wp-calendar {
  1096. max-width: 100%;
  1097. text-align: center;
  1098. width: 100%;
  1099. }
  1100. #wp-calendar,
  1101. #wp-calendar caption,
  1102. #wp-calendar tr,
  1103. #wp-calendar td,
  1104. #wp-calendar th {
  1105. text-align: center;
  1106. }
  1107. #wp-calendar td {
  1108. padding: 3% 2%;
  1109. }
  1110. #wp-calendar caption {
  1111. line-height: 1;
  1112. padding-bottom: 20px;
  1113. text-transform: capitalize;
  1114. }
  1115. #wp-calendar thead th {
  1116. border-bottom: 1px solid #eee;
  1117. border-top: 1px solid #eee;
  1118. font-size: 18px;
  1119. font-size: 1.8rem;
  1120. font-weight: 600;
  1121. line-height: normal;
  1122. padding: 3% 2% 1.75%;
  1123. text-transform: uppercase;
  1124. }
  1125. #wp-calendar tbody {
  1126. border-bottom: 1px solid #eee;
  1127. }
  1128. #wp-calendar tfoot td {
  1129. padding: 0;
  1130. }
  1131. #wp-calendar tfoot #prev {
  1132. text-align: left;
  1133. }
  1134. #wp-calendar tfoot #next {
  1135. text-align: right;
  1136. }
  1137. #wp-calendar tfoot a {
  1138. color: #666;
  1139. display: block;
  1140. font-size: 14px;
  1141. font-size: 1.4rem;
  1142. font-weight: 700;
  1143. padding: 12px 0;
  1144. text-transform: uppercase;
  1145. }
  1146. #wp-calendar tfoot a:hover {
  1147. color: #ca2017;
  1148. text-decoration: none;
  1149. }
  1150. /* widget */
  1151. .search-form .search-field {
  1152. -webkit-appearance: none;
  1153. background: #eee;
  1154. border: none;
  1155. border-radius: 0;
  1156. color: #444;
  1157. font-size: 18px;
  1158. font-size: 1.8rem;
  1159. padding: 5% 20% 5% 5%;
  1160. width: 100%;
  1161. }
  1162. .search-submit {
  1163. display: none;
  1164. }
  1165. /*--------------------------------------------------------------
  1166. # Content
  1167. --------------------------------------------------------------*/
  1168. /*--------------------------------------------------------------
  1169. ## Hero Area
  1170. --------------------------------------------------------------*/
  1171. .hero-area {
  1172. background: #888;
  1173. color: #fff;
  1174. position: relative;
  1175. text-align: center;
  1176. display: flex;
  1177. align-items: center;
  1178. }
  1179. .hero-area.has-post-thumbnail {
  1180. background-position: 50% 50%;
  1181. background-size: cover;
  1182. }
  1183. .hero-area:before {
  1184. background: #111111;
  1185. bottom: 0;
  1186. content: "";
  1187. display: block;
  1188. left: 0;
  1189. opacity: 0.4;
  1190. position: absolute;
  1191. right: 0;
  1192. top: 0;
  1193. }
  1194. .hero-area-wrapper {
  1195. font-size: 18px;
  1196. font-size: 1.8rem;
  1197. margin: 0 auto;
  1198. max-width: 92%;
  1199. padding: 36px 0;
  1200. position: relative;
  1201. width: 740px;
  1202. }
  1203. .hero-area-title {
  1204. font-size: 24px;
  1205. font-size: 2.4rem;
  1206. line-height: 1.5;
  1207. margin-top: 0;
  1208. margin-bottom: 9px;
  1209. }
  1210. .hero-area-button {
  1211. margin-top: 18px;
  1212. }
  1213. .hero-area .button {
  1214. background: #fff;
  1215. color: #ca2017;
  1216. display: inline-block;
  1217. font-size: 16px;
  1218. font-size: 1.6rem;
  1219. padding: 12px 24px;
  1220. }
  1221. .hero-area .button:focus,
  1222. .hero-area .button:hover {
  1223. background: #fff;
  1224. color: #ca2017;
  1225. opacity: 0.75;
  1226. }
  1227. .hero-area .button,
  1228. .hero-area .button:focus,
  1229. .hero-area .button:hover {
  1230. background: #fff;
  1231. color: #222;
  1232. }
  1233. .hero-area-title:empty,
  1234. .hero-area-content:empty,
  1235. .hero-area-button a:empty {
  1236. display: none;
  1237. }
  1238. /*--------------------------------------------------------------
  1239. ## Posts & Pages
  1240. --------------------------------------------------------------*/
  1241. .sticky {
  1242. display: block;
  1243. }
  1244. .hentry {
  1245. margin-bottom: 36px;
  1246. position: relative;
  1247. }
  1248. .archive .hentry,
  1249. .blog .hentry,
  1250. .search-results .hentry {
  1251. margin: 0;
  1252. }
  1253. .archive .entry-header,
  1254. .blog .entry-header,
  1255. .search-results .entry-header {
  1256. background: rgba(0, 0, 0, 0.55);
  1257. width: 100%;
  1258. }
  1259. .archive article:nth-of-type(even) .entry-header,
  1260. .blog article:nth-of-type(even) .entry-header,
  1261. .search-results article:nth-of-type(even) .entry-header {
  1262. background: rgba(0, 0, 0, 0.6);
  1263. }
  1264. .archive article .entry-header:hover,
  1265. .blog article .entry-header:hover,
  1266. .search-results article .entry-header:hover {
  1267. background: rgba(0, 0, 0, 0.75);
  1268. }
  1269. .archive .entry-thumbnail + .entry-header,
  1270. .blog .entry-thumbnail + .entry-header,
  1271. .search .entry-thumbnail + .entry-header {
  1272. position: absolute;
  1273. bottom: 0;
  1274. left: 0;
  1275. }
  1276. .archive .entry-header .entry-meta a,
  1277. .blog .entry-header .entry-meta a,
  1278. .search-results .entry-header .entry-meta a {
  1279. color: #fff;
  1280. }
  1281. .entry-header {
  1282. padding: 36px 0;
  1283. text-align: center;
  1284. }
  1285. .entry-thumbnail {
  1286. background-size: cover;
  1287. background-position: 50% 50%;
  1288. display: block;
  1289. min-height: 270px;
  1290. max-height: 684px;
  1291. overflow: hidden;
  1292. position: relative;
  1293. width: 100%;
  1294. }
  1295. .entry-title {
  1296. font-family: Palatino,"Palatino Linotype","Palatino LT STD","Book Antiqua",Times,"Times New Roman",serif;
  1297. font-size: 36px;
  1298. font-size: 3.6rem;
  1299. font-weight: 600;
  1300. line-height: 1.25;
  1301. margin: 0 auto;
  1302. max-width: 92%;
  1303. word-wrap: break-word;
  1304. width: 1040px;
  1305. }
  1306. .blog .entry-title,
  1307. .archive .entry-title,
  1308. .search .entry-title {
  1309. text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
  1310. }
  1311. .entry-title a {
  1312. color: #fff;
  1313. text-decoration: none;
  1314. }
  1315. .entry-title a:hover {
  1316. color: #fd534a;
  1317. }
  1318. .entry-meta,
  1319. .entry-meta a,
  1320. .entry-meta a:visited {
  1321. color: #666;
  1322. font-size: 12px;
  1323. font-size: 1.2rem;
  1324. font-weight: 600;
  1325. letter-spacing: 1px;
  1326. line-height: 1.5;
  1327. margin-bottom: 18px;
  1328. text-decoration: none;
  1329. text-transform: uppercase;
  1330. }
  1331. .entry-meta a:hover {
  1332. color: #ca2017;
  1333. text-decoration: none;
  1334. }
  1335. .updated:not(.published) {
  1336. display: none;
  1337. }
  1338. .byline:before,
  1339. .comments-link:before {
  1340. content: "/";
  1341. color: rgba(255,255,255,0.5);
  1342. margin: 0 0.5em;
  1343. }
  1344. .single .byline:before,
  1345. .single .comments-link:before {
  1346. color: rgba(0,0,0,0.15);
  1347. }
  1348. .home .sticky .byline,
  1349. .home .sticky .comments-link {
  1350. display: none;
  1351. }
  1352. .date-hidden .byline:before,
  1353. .date-hidden.author-hidden .comments-link:before {
  1354. content: "";
  1355. }
  1356. .page-content,
  1357. .entry-content,
  1358. .entry-summary,
  1359. .entry-footer,
  1360. .post-navigation,
  1361. .posts-navigation,
  1362. .comments-wrapper,
  1363. .respond-wrapper {
  1364. margin-left: auto;
  1365. margin-right: auto;
  1366. max-width: 92%;
  1367. width: 740px;
  1368. }
  1369. .page-content,
  1370. .entry-content,
  1371. .entry-summary {
  1372. font-size: 18px;
  1373. font-size: 1.8rem;
  1374. line-height: 1.8;
  1375. }
  1376. .page-content > :last-child,
  1377. .entry-content > :last-child,
  1378. .entry-summary > :last-child,
  1379. .comment-content > :last-child {
  1380. margin-bottom: 0;
  1381. }
  1382. .entry-footer {
  1383. font-size: 16px;
  1384. font-size: 1.6rem;
  1385. line-height: 1.69;
  1386. display: block;
  1387. margin-top: 36px;
  1388. }
  1389. .entry-footer a {
  1390. color: #666;
  1391. }
  1392. .entry-footer a:hover {
  1393. color: #ca2017;
  1394. text-decoration: none;
  1395. }
  1396. .entry-author {
  1397. margin-right: 0;
  1398. margin-bottom: 36px;
  1399. }
  1400. .entry-links {
  1401. flex: 2;
  1402. }
  1403. .entry-author,
  1404. .entry-links {
  1405. border-top: 1px solid #ddd;
  1406. padding-top: 18px;
  1407. }
  1408. .author-avatar img {
  1409. border-radius: 50%;
  1410. }
  1411. .author-title {
  1412. font-size: 25px;
  1413. font-size: 2.5rem;
  1414. line-height: 1.44;
  1415. margin: 0 0 8px;
  1416. }
  1417. .cat-links,
  1418. .tags-links,
  1419. .edit-link {
  1420. display: block;
  1421. padding-left: 30px;
  1422. position: relative;
  1423. }
  1424. .cat-links .icon,
  1425. .tags-links .icon,
  1426. .edit-link .icon {
  1427. fill: #adadad;
  1428. height: 24px;
  1429. left: 0;
  1430. position: absolute;
  1431. top: 2px;
  1432. width: 24px;
  1433. }
  1434. .cat-links,
  1435. .tags-links {
  1436. margin-bottom: 0.5em;
  1437. }
  1438. .author-link {
  1439. display: block;
  1440. }
  1441. .page-links {
  1442. clear: both;
  1443. margin: 0 0 1.6em;
  1444. }
  1445. .page-links span {
  1446. display: inline-block;
  1447. padding: 0 0.25em;
  1448. margin: 0 0.2em 0.2em 0.2em;
  1449. }
  1450. .page-header {
  1451. border-top: 1px solid #ddd;
  1452. padding: 54px 0;
  1453. text-align: center;
  1454. }
  1455. .page-content {
  1456. padding: 36px 0;
  1457. }
  1458. .archive .page-title,
  1459. .search .page-title,
  1460. .error404 .page-title {
  1461. color: #707070;
  1462. font-size: 16px;
  1463. font-size: 1.6rem;
  1464. font-weight: 600;
  1465. line-height: 2.25;
  1466. letter-spacing: 1px;
  1467. margin: 0 0 18px;
  1468. text-transform: uppercase;
  1469. }
  1470. .error-404 .page-header,
  1471. .no-results .page-header,
  1472. .search-no-results .page-header {
  1473. border-bottom: 1px solid #ddd;
  1474. padding: 30px 0;
  1475. }
  1476. /*--------------------------------------------------------------
  1477. ## Comments
  1478. --------------------------------------------------------------*/
  1479. .comments-area,
  1480. .respond {
  1481. background: #f1f1f1;
  1482. border-top: 1px solid #ddd;
  1483. overflow: hidden;
  1484. }
  1485. .comments-area .respond:first-child {
  1486. border-top: 0;
  1487. }
  1488. .comments-wrapper {
  1489. padding-top: 60px;
  1490. }
  1491. .respond {
  1492. padding-top: 36px;
  1493. }
  1494. .comments-wrapper,
  1495. .respond-wrapper {
  1496. padding-bottom: 36px;
  1497. }
  1498. .respond-wrapper .no-comments {
  1499. margin-bottom: 0;
  1500. text-align: center;
  1501. }
  1502. .comments-title {
  1503. border-bottom: 1px solid #ddd;
  1504. margin: 0;
  1505. padding-bottom: 17px;
  1506. }
  1507. .comments-title,
  1508. .comment-reply-title {
  1509. font-size: 24px;
  1510. font-size: 2.4rem;
  1511. font-weight: 700;
  1512. margin-bottom: 36px;
  1513. text-align: center;
  1514. }
  1515. .comment-reply-title {
  1516. margin-bottom: 18px;
  1517. }
  1518. .comments .children {
  1519. margin-left: 5%;
  1520. }
  1521. .comment-wrapper,
  1522. .pingback,
  1523. .trackback {
  1524. margin-left: 0;
  1525. }
  1526. .comment-wrapper:after {
  1527. display: none;
  1528. }
  1529. .comment-list {
  1530. padding: 0;
  1531. }
  1532. .comment-list,
  1533. ol.children {
  1534. list-style-type: none;
  1535. }
  1536. ol.children ol.children {
  1537. padding-left: 0;
  1538. }
  1539. .comment-list li {
  1540. margin-top: 18px;
  1541. position: relative;
  1542. }
  1543. .comment-list > li:first-child {
  1544. margin-top: 0;
  1545. }
  1546. .comment-wrapper,
  1547. .pingback ,
  1548. .trackback {
  1549. background: #fff;
  1550. border-radius: 6px;
  1551. padding: 30px;
  1552. position: relative;
  1553. }
  1554. .comment-wrapper:after {
  1555. border: 12px solid transparent;
  1556. border-right-color: #fff;
  1557. content: "";
  1558. display: none;
  1559. left: -24px;
  1560. position: absolute;
  1561. top: 28px;
  1562. }
  1563. .comment .avatar {
  1564. border-radius: 50%;
  1565. display: none;
  1566. height: auto;
  1567. left: 0;
  1568. max-width: 80px;
  1569. position: absolute;
  1570. top: 0;
  1571. }
  1572. .comment-header cite {
  1573. color: #333;
  1574. font-style: normal;
  1575. font-weight: 700;
  1576. }
  1577. .comment-header cite a {
  1578. color: #333;
  1579. }
  1580. .comment-header span {
  1581. color: #707070;
  1582. font-size: 13px;
  1583. font-size: 1.3rem;
  1584. font-weight: 700;
  1585. margin-left: 5px;
  1586. }
  1587. .comment-header span a {
  1588. color: #707070;
  1589. }
  1590. .comment-content {
  1591. font-size: 18px;
  1592. font-size: 1.8rem;
  1593. line-height: 2;
  1594. margin: 18px 0;
  1595. }
  1596. .comment-content a {
  1597. word-wrap: break-word;
  1598. }
  1599. .comment-content li {
  1600. margin-top: 0;
  1601. }
  1602. .comment-actions {
  1603. line-height: 1;
  1604. }
  1605. .comment-actions a {
  1606. font-size: 14px;
  1607. font-size: 1.4rem;
  1608. font-weight: 700;
  1609. margin-right: 10px;
  1610. text-transform: uppercase;
  1611. }
  1612. form label,
  1613. .comment-respond .logged-in-as,
  1614. .comment-respond .comment-notes {
  1615. font-size: 14px;
  1616. font-size: 1.4rem;
  1617. }
  1618. .bypostauthor {
  1619. display: block;
  1620. }
  1621. .bypostauthor .by-post-author {
  1622. background: #ca2017;
  1623. border-radius: 99px;
  1624. height: 10px;
  1625. left: 12px;
  1626. position: absolute;
  1627. text-indent: -9999px;
  1628. top: 39px;
  1629. width: 10px;
  1630. z-index: 10;
  1631. }
  1632. /*--------------------------------------------------------------
  1633. # Infinite scroll
  1634. --------------------------------------------------------------*/
  1635. /* Globally hidden elements when Infinite Scroll is supported and in use. */
  1636. .infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
  1637. .infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  1638. display: none;
  1639. }
  1640. /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
  1641. .infinity-end.neverending .site-footer {
  1642. display: block;
  1643. }
  1644. #infinite-handle span,
  1645. .infinite-loader {
  1646. height: 110px;
  1647. padding: 45px 0;
  1648. }
  1649. #infinite-handle span {
  1650. background: #eee;
  1651. color: #666;
  1652. display: block;
  1653. float: left;
  1654. font-size: 18px;
  1655. font-size: 1.8rem;
  1656. font-weight: 700;
  1657. letter-spacing: 1px;
  1658. text-align: center;
  1659. text-transform: uppercase;
  1660. width: 100%;
  1661. }
  1662. #infinite-handle span:hover {
  1663. background: #ca2017;
  1664. color: #fff;
  1665. }
  1666. .infinite-loader {
  1667. background-color: #eee;
  1668. }
  1669. .infinite-loader .spinner {
  1670. left: 50% !important;
  1671. -webkit-transform: translate(-50%, 0);
  1672. -ms-transform: translate(-50%, 0);
  1673. transform: translate(-50%, 0);
  1674. }
  1675. /*--------------------------------------------------------------
  1676. # Jetpack Contact Forms
  1677. --------------------------------------------------------------*/
  1678. .site-content .contact-form input[type="radio"],
  1679. .site-content .contact-form input[type="checkbox"] {
  1680. margin-bottom: 6px;
  1681. margin-right: .3em;
  1682. vertical-align: middle;
  1683. }
  1684. .site-content .contact-form label.checkbox,
  1685. .site-content .contact-form label.checkbox-multiple,
  1686. .site-content .contact-form label.radio {
  1687. font-weight: normal;
  1688. font-style: normal;
  1689. margin-bottom: 0;
  1690. float: none;
  1691. line-height: 1.8;
  1692. }
  1693. .site-content .contact-form > div {
  1694. margin-bottom: 18px;
  1695. }
  1696. .site-content .contact-form textarea,
  1697. .site-content .contact-form input[type='text'],
  1698. .site-content .contact-form input[type='email'],
  1699. .site-content .contact-form input[type='url'],
  1700. .site-content .contact-form select {
  1701. margin-bottom: 4px;
  1702. max-width: 100%;
  1703. }
  1704. /*--------------------------------------------------------------
  1705. # Media
  1706. --------------------------------------------------------------*/
  1707. .page-content .wp-smiley,
  1708. .entry-content .wp-smiley,
  1709. .comment-content .wp-smiley {
  1710. border: none;
  1711. margin-bottom: 0;
  1712. margin-top: 0;
  1713. padding: 0;
  1714. }
  1715. /* Make sure embeds and iframes fit their containers. */
  1716. embed,
  1717. iframe,
  1718. object {
  1719. max-width: 100%;
  1720. }
  1721. /* SVG Icons base styles. */
  1722. .icon {
  1723. display: inline-block;
  1724. fill: currentColor;
  1725. height: 1em;
  1726. position: relative;
  1727. top: -0.0625em;
  1728. vertical-align: middle;
  1729. width: 1em;
  1730. }
  1731. /*--------------------------------------------------------------
  1732. ## Captions
  1733. --------------------------------------------------------------*/
  1734. .wp-caption,
  1735. .gallery-caption {
  1736. font-size: 0.8em;
  1737. margin-bottom: 1.6em;
  1738. max-width: 100%;
  1739. }
  1740. .wp-caption img[class*="wp-image-"] {
  1741. display: block;
  1742. margin-left: auto;
  1743. margin-right: auto;
  1744. }
  1745. .wp-caption .wp-caption-text {
  1746. margin: 0.8075em 0;
  1747. }
  1748. .wp-caption-text {
  1749. opacity: 0.8;
  1750. text-align: center;
  1751. }
  1752. /*--------------------------------------------------------------
  1753. ## Galleries
  1754. --------------------------------------------------------------*/
  1755. .gallery {
  1756. margin: 0 -2% 1.6em;
  1757. }
  1758. .gallery-item {
  1759. display: inline-block;
  1760. padding: 0 1% 0;
  1761. text-align: center;
  1762. vertical-align: top;
  1763. width: 100%;
  1764. }
  1765. .gallery-columns-2 .gallery-item {
  1766. max-width: 50%;
  1767. }
  1768. .gallery-columns-3 .gallery-item {
  1769. max-width: 33.33%;
  1770. }
  1771. .gallery-columns-4 .gallery-item {
  1772. max-width: 25%;
  1773. }
  1774. .gallery-columns-5 .gallery-item {
  1775. max-width: 20%;
  1776. }
  1777. .gallery-columns-6 .gallery-item {
  1778. max-width: 16.66%;
  1779. }
  1780. .gallery-columns-7 .gallery-item {
  1781. max-width: 14.28%;
  1782. }
  1783. .gallery-columns-8 .gallery-item {
  1784. max-width: 12.5%;
  1785. }
  1786. .gallery-columns-9 .gallery-item {
  1787. max-width: 11.11%;
  1788. }
  1789. .gallery-caption {
  1790. display: block;
  1791. }
  1792. .slideshow-window {
  1793. background-color: transparent !important;
  1794. border: 0px !important;
  1795. }
  1796. /*--------------------------------------------------------------
  1797. # Media Queries
  1798. --------------------------------------------------------------*/
  1799. @media all and (max-width: 767px) {
  1800. .menu-toggle {
  1801. display: block;
  1802. margin: 0 auto;
  1803. }
  1804. .menu-toggle:focus {
  1805. outline: thin solid;
  1806. }
  1807. .dropdown-toggle {
  1808. background-color: transparent;
  1809. color: #666;
  1810. position: absolute;
  1811. right: 6px;
  1812. top: 0;
  1813. }
  1814. .dropdown-toggle:hover
  1815. .dropdown-toggle:hover {
  1816. background-color: transparent;
  1817. color: #666;
  1818. }
  1819. a:hover + .dropdown-toggle,
  1820. a:focus + .dropdown-toggle {
  1821. color: #fff;
  1822. }
  1823. .dropdown-toggle.toggled {
  1824. -ms-transform: rotate(180deg);
  1825. -webkit-transform: rotate(180deg);
  1826. transform: rotate(180deg);
  1827. }
  1828. .main-navigation a > .icon-expand {
  1829. display: none;
  1830. }
  1831. .main-navigation > div {
  1832. background-color: #eee;
  1833. height: auto;
  1834. left: 0;
  1835. max-height: 0;
  1836. overflow: hidden;
  1837. padding: 0;
  1838. position: relative;
  1839. width: 100%;
  1840. -webkit-transition: max-height 0.425s ease-in-out;
  1841. -moz-transition: max-height 0.425s ease-in-out;
  1842. transition: max-height 0.425s ease-in-out;
  1843. }
  1844. .main-navigation.toggled > div {
  1845. max-height: 300vh;
  1846. width: 100%;
  1847. z-index: 999;
  1848. }
  1849. .main-navigation ul {
  1850. display: inherit;
  1851. }
  1852. .main-navigation ul li {
  1853. float: none;
  1854. }
  1855. .main-navigation ul > li:first-child > a {
  1856. border-top-left-radius: 6px;
  1857. border-top-right-radius: 6px;
  1858. }
  1859. .main-navigation ul > li:last-child > a {
  1860. border-bottom-left-radius: 6px;
  1861. border-bottom-right-radius: 6px;
  1862. }
  1863. .main-navigation > div {
  1864. border-radius: 6px;
  1865. }
  1866. .main-navigation ul a {
  1867. color: #666;
  1868. display: block;
  1869. font-weight: 600;
  1870. padding: 10px 4%;
  1871. }
  1872. .main-navigation ul ul a {
  1873. color: #666;
  1874. }
  1875. .main-navigation li a:hover,
  1876. .main-navigation li a:focus,
  1877. .main-navigation li a:active {
  1878. background: #ca2017;
  1879. border-radius: 0;
  1880. color: #fff;
  1881. }
  1882. .main-navigation .sub-menu {
  1883. border-top: 0;
  1884. display: none;
  1885. padding: 0 0 0 25px;
  1886. }
  1887. .main-navigation .sub-menu.toggled {
  1888. display: block;
  1889. }
  1890. .main-navigation ul ul a {
  1891. background: transparent;
  1892. width: 100%;
  1893. }
  1894. .site-header .jetpack-social-navigation ul {
  1895. margin: 0;
  1896. text-align: center;
  1897. }
  1898. }
  1899. @media all and (min-width: 600px) {
  1900. .header-wrapper {
  1901. padding-top: 45px;
  1902. padding-bottom: 36px;
  1903. }
  1904. .site-title {
  1905. font-size: 50px;
  1906. font-size: 5rem;
  1907. }
  1908. .site-header .jetpack-social-navigation-svg .icon {
  1909. height: 24px;
  1910. width: 24px;
  1911. }
  1912. .jetpack-social-navigation {
  1913. flex: 0 0 auto;
  1914. margin: 0;
  1915. }
  1916. .jetpack-social-navigation li {
  1917. margin-right: 0;
  1918. }
  1919. .jetpack-social-navigation a {
  1920. padding: 0.25em;
  1921. }
  1922. blockquote {
  1923. font-size: 1.1em;
  1924. margin: 0 1.8em;
  1925. }
  1926. blockquote:before,
  1927. blockquote:after {
  1928. margin: 36px auto;
  1929. width: 108px;
  1930. }
  1931. blockquote blockquote {
  1932. font-size: 1.0em;
  1933. }
  1934. .hentry {
  1935. margin-bottom: 108px;
  1936. }
  1937. .entry-title {
  1938. font-size: 50px;
  1939. font-size: 5rem;
  1940. line-height: 1.44;
  1941. }
  1942. .entry-meta,
  1943. .entry-meta a {
  1944. font-size: 16px;
  1945. font-size: 1.6rem;
  1946. line-height: 1.125;
  1947. }
  1948. .entry-footer {
  1949. display: flex;
  1950. flex-direction: row;
  1951. margin-top: 72px;
  1952. }
  1953. .entry-author {
  1954. flex: 3;
  1955. margin-right: 36px;
  1956. }
  1957. .entry-author .author-bio,
  1958. .entry-author .author-heading {
  1959. margin-bottom: 0;
  1960. padding-left: 80px;
  1961. }
  1962. .author-avatar-hide.entry-author .author-bio,
  1963. .author-avatar-hide.entry-author .author-heading {
  1964. padding-left: 0;
  1965. }
  1966. .entry-author .author-avatar {
  1967. position: absolute;
  1968. }
  1969. .post-navigation {
  1970. padding-top: 72px;
  1971. padding-bottom: 72px;
  1972. }
  1973. .page-content {
  1974. padding: 72px 0;
  1975. }
  1976. .page-content,
  1977. .entry-content,
  1978. .entry-summary {
  1979. font-size: 20px;
  1980. font-size: 2rem;
  1981. }
  1982. .respond {
  1983. padding-top: 72px;
  1984. }
  1985. .comments-wrapper,
  1986. .respond-wrapper {
  1987. padding-bottom: 72px;
  1988. }
  1989. .comment-wrapper,
  1990. .pingback ,
  1991. .trackback {
  1992. margin-left: 110px;
  1993. padding: 36px;
  1994. }
  1995. .comment-wrapper:after {
  1996. display: block;
  1997. }
  1998. .comment-list li {
  1999. margin-top: 36px;
  2000. }
  2001. .comment .avatar {
  2002. display: block;
  2003. }
  2004. ol.children {
  2005. padding-left: 36px;
  2006. }
  2007. .comments-title,
  2008. .comment-reply-title {
  2009. font-size: 28px;
  2010. font-size: 2.8rem;
  2011. line-height: 1.286;
  2012. margin: 0 0 36px;
  2013. }
  2014. .comments-wrapper {
  2015. padding-top: 108px;
  2016. }
  2017. form label,
  2018. .comment-respond .logged-in-as,
  2019. .comment-respond .comment-notes {
  2020. font-size: 18px;
  2021. font-size: 1.8rem;
  2022. line-height: 2;
  2023. }
  2024. .bypostauthor .by-post-author {
  2025. height: 32px;
  2026. left: -2px;
  2027. top: 50px;
  2028. width: 32px;
  2029. }
  2030. .comment-navigation .nav-previous,
  2031. .posts-navigation .nav-previous,
  2032. .post-navigation .nav-previous {
  2033. float: left;
  2034. text-align: left;
  2035. width: 50%;
  2036. }
  2037. .comment-navigation .nav-next,
  2038. .posts-navigation .nav-next,
  2039. .post-navigation .nav-next {
  2040. float: right;
  2041. text-align: right;
  2042. width: 50%;
  2043. }
  2044. .posts-navigation a {
  2045. padding: 2em 1em;
  2046. }
  2047. .nav-previous {
  2048. margin-bottom: 0;
  2049. }
  2050. .widget-wrapper {
  2051. display: flex;
  2052. justify-content: space-around;
  2053. }
  2054. .widget-area {
  2055. padding: 72px 0;
  2056. }
  2057. .widget-area .widget-column {
  2058. width: 30%;
  2059. }
  2060. .widget {
  2061. font-size: 18px;
  2062. font-size: 1.8rem;
  2063. }
  2064. #infinite-handle span,
  2065. .infinite-loader {
  2066. height: 180px;
  2067. padding: 72px 0;
  2068. }
  2069. #infinite-handle span {
  2070. font-size: 22px;
  2071. font-size: 2.2rem;
  2072. }
  2073. .hero-area-wrapper {
  2074. font-size: 20px;
  2075. font-size: 2rem;
  2076. line-height: 1.6;
  2077. padding-bottom: 72px;
  2078. padding-top: 72px;
  2079. }
  2080. .hero-area-title {
  2081. font-size: 30px;
  2082. font-size: 3rem;
  2083. line-height: 1.2;
  2084. margin-top: 0;
  2085. margin-bottom: 18px;
  2086. }
  2087. .hero-area .button {
  2088. font-size: 24px;
  2089. font-size: 2.4rem;
  2090. line-height: 1.5;
  2091. padding-top: 9px;
  2092. padding-bottom: 9px;
  2093. }
  2094. .hero-area-button {
  2095. margin-top: 36px;
  2096. }
  2097. }
  2098. @media screen and (min-width: 768px) {
  2099. h1 {
  2100. font-size: 40px;
  2101. line-height: 1.35;
  2102. }
  2103. .contact-info-area .icon {
  2104. height: 1em;
  2105. width: 1em;
  2106. }
  2107. .contact-info-area span.contact-info-label {
  2108. display: inline;
  2109. left: auto;
  2110. margin: 0;
  2111. position: static;
  2112. }
  2113. .site-header {
  2114. padding-bottom: 36px;
  2115. border-top-width: 9px;
  2116. }
  2117. .site-header:before {
  2118. top: -8px;
  2119. }
  2120. .header-wrapper {
  2121. align-items: flex-start;
  2122. display: flex;
  2123. justify-content: space-between;
  2124. }
  2125. .site-title {
  2126. font-size: 60px;
  2127. font-size: 6rem;
  2128. }
  2129. .site-branding {
  2130. flex: 1 1 auto;
  2131. }
  2132. .search-toggle {
  2133. display: block;
  2134. flex: 0 0 auto;
  2135. }
  2136. .menu-wrapper {
  2137. align-items: flex-start;
  2138. display: flex;
  2139. justify-content: space-between;
  2140. max-width: 92%;
  2141. }
  2142. .menu-toggle,
  2143. .dropdown-toggle {
  2144. display: none;
  2145. }
  2146. .main-navigation {
  2147. flex: 2 1 auto;
  2148. margin-bottom: 0;
  2149. }
  2150. .main-navigation ul {
  2151. display: block;
  2152. }
  2153. #header-menu {
  2154. margin-left: -15px;
  2155. }
  2156. .main-navigation li {
  2157. margin-right: 6px;
  2158. }
  2159. .main-navigation li:hover > a,
  2160. .main-navigation li.focus > a,
  2161. .main-navigation li.current-menu-item > a {
  2162. background: #ca2017;
  2163. border-radius: 3px;
  2164. color: #fff;
  2165. }
  2166. .main-navigation li.current-menu-item ~ li.current-menu-item > a {
  2167. background: #222;
  2168. color: #fff;
  2169. }
  2170. .main-navigation li.current-menu-item ~ li.current-menu-item > a:hover {
  2171. background: #ca2017;
  2172. }
  2173. .main-navigation ul li:hover > ul ul {
  2174. top: 0;
  2175. }
  2176. .main-navigation ul ul {
  2177. padding-top: 1.15em;
  2178. position: absolute;
  2179. top: 100%;
  2180. left: -999em;
  2181. z-index: 99999;
  2182. }
  2183. .main-navigation ul ul > li:first-child:after {
  2184. border: 10px solid transparent;
  2185. border-bottom-color: #222;
  2186. content: "";
  2187. display: block;
  2188. left: 50%;
  2189. margin-left: -10px;
  2190. position: absolute;
  2191. top: -20px;
  2192. }
  2193. .main-navigation ul ul > li:first-child:hover:after,
  2194. .main-navigation ul ul > li.current-menu-item:first-child:after {
  2195. border-bottom-color: #ca2017;
  2196. }
  2197. .main-navigation ul ul a {
  2198. padding-right: 18px;
  2199. }
  2200. .main-navigation ul ul .menu-item-has-children > a > .icon,
  2201. .main-navigation ul ul .page_item_has_children > a > .icon {
  2202. margin-top: -7px;
  2203. left: auto;
  2204. position: absolute;
  2205. right: 0.5em;
  2206. top: 50%;
  2207. -ms-transform: rotate(-90deg);
  2208. -moz-transform: rotate(-90deg);
  2209. -webkit-transform: rotate(-90deg);
  2210. transform: rotate(-90deg);
  2211. }
  2212. .main-navigation ul ul ul {
  2213. padding-top: 0;
  2214. padding-left: 20px;
  2215. }
  2216. .main-navigation ul ul ul > li:first-child:after {
  2217. border: 10px solid transparent;
  2218. border-right-color: #222;
  2219. content: "";
  2220. display: block;
  2221. top: 8px;
  2222. position: absolute;
  2223. left: -10px;
  2224. }
  2225. .main-navigation ul ul ul > li:first-child:hover:after,
  2226. .main-navigation ul ul ul > li.current-menu-item:first-child:after {
  2227. border-bottom-color: transparent;
  2228. border-right-color: #ca2017;
  2229. }
  2230. .jetpack-social-navigation {
  2231. max-width: none;
  2232. text-align: right;
  2233. }
  2234. .hero-area {
  2235. max-height: 684px;
  2236. }
  2237. .hero-area-wrapper {
  2238. font-size: 20px;
  2239. font-size: 2rem;
  2240. line-height: 1.6;
  2241. padding-bottom: 144px;
  2242. padding-top: 144px; }
  2243. .hero-area-title {
  2244. font-size: 40px;
  2245. font-size: 4rem;
  2246. line-height: 1.125;
  2247. margin-top: 0;
  2248. margin-bottom: 27px;
  2249. }
  2250. .hero-area .button {
  2251. font-size: 30px;
  2252. font-size: 3rem;
  2253. line-height: 1.2;
  2254. padding-top: 12px;
  2255. padding-bottom: 12px;
  2256. }
  2257. .entry-header {
  2258. padding: 72px 0;
  2259. }
  2260. .entry-title {
  2261. font-size: 60px;
  2262. font-size: 6rem;
  2263. line-height: 1.2;
  2264. }
  2265. }
  2266. @media screen and (max-width: 1304px) {
  2267. .site-branding .custom-logo {
  2268. height: auto;
  2269. max-width: 90vw;
  2270. max-height: 1000%;
  2271. }
  2272. }