templated.css 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219
  1. @charset "UTF-8";
  2. @import url(font-awesome.min.css);
  3. @font-face {
  4. font-family: 'wildy';
  5. src: url('../fonts/wildy.ttf');
  6. }
  7. /*
  8. Intensify by TEMPLATED
  9. templated.co @templatedco
  10. Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
  11. */
  12. /* Reset */
  13. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  14. margin: 0;
  15. padding: 0;
  16. border: 0;
  17. font-size: 100%;
  18. font: inherit;
  19. vertical-align: baseline;
  20. }
  21. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  22. display: block;
  23. }
  24. body {
  25. line-height: 1;
  26. }
  27. ol, ul {
  28. list-style: none;
  29. }
  30. blockquote, q {
  31. quotes: none;
  32. }
  33. blockquote:before, blockquote:after, q:before, q:after {
  34. content: '';
  35. content: none;
  36. }
  37. table {
  38. border-collapse: collapse;
  39. border-spacing: 0;
  40. }
  41. body {
  42. -webkit-text-size-adjust: none;
  43. }
  44. /* Box Model */
  45. *, *:before, *:after {
  46. -moz-box-sizing: border-box;
  47. -webkit-box-sizing: border-box;
  48. box-sizing: border-box;
  49. }
  50. /* Containers */
  51. .container {
  52. margin-left: auto;
  53. margin-right: auto;
  54. }
  55. .container.\31 25\25 {
  56. width: 100%;
  57. max-width: 100em;
  58. min-width: 80em;
  59. }
  60. .container.\37 5\25 {
  61. width: 60em;
  62. }
  63. .container.\35 0\25 {
  64. width: 40em;
  65. }
  66. .container.\32 5\25 {
  67. width: 20em;
  68. }
  69. .container {
  70. width: 80em;
  71. }
  72. @media screen and (max-width: 1680px) {
  73. .container.\31 25\25 {
  74. width: 100%;
  75. max-width: 100em;
  76. min-width: 80em;
  77. }
  78. .container.\37 5\25 {
  79. width: 60em;
  80. }
  81. .container.\35 0\25 {
  82. width: 40em;
  83. }
  84. .container.\32 5\25 {
  85. width: 20em;
  86. }
  87. .container {
  88. width: 80em;
  89. }
  90. }
  91. @media screen and (max-width: 1280px) {
  92. .container.\31 25\25 {
  93. width: 100%;
  94. max-width: 81.25em;
  95. min-width: 65em;
  96. }
  97. .container.\37 5\25 {
  98. width: 48.75em;
  99. }
  100. .container.\35 0\25 {
  101. width: 32.5em;
  102. }
  103. .container.\32 5\25 {
  104. width: 16.25em;
  105. }
  106. .container {
  107. width: 65em;
  108. }
  109. }
  110. @media screen and (max-width: 980px) {
  111. .container.\31 25\25 {
  112. width: 100%;
  113. max-width: 112.5%;
  114. min-width: 90%;
  115. }
  116. .container.\37 5\25 {
  117. width: 67.5%;
  118. }
  119. .container.\35 0\25 {
  120. width: 45%;
  121. }
  122. .container.\32 5\25 {
  123. width: 22.5%;
  124. }
  125. .container {
  126. width: 90%;
  127. }
  128. }
  129. @media screen and (max-width: 736px) {
  130. .container.\31 25\25 {
  131. width: 100%;
  132. max-width: 112.5%;
  133. min-width: 90%;
  134. }
  135. .container.\37 5\25 {
  136. width: 67.5%;
  137. }
  138. .container.\35 0\25 {
  139. width: 45%;
  140. }
  141. .container.\32 5\25 {
  142. width: 22.5%;
  143. }
  144. .container {
  145. width: 90% !important;
  146. }
  147. }
  148. @media screen and (max-width: 480px) {
  149. .container.\31 25\25 {
  150. width: 100%;
  151. max-width: 112.5%;
  152. min-width: 90%;
  153. }
  154. .container.\37 5\25 {
  155. width: 67.5%;
  156. }
  157. .container.\35 0\25 {
  158. width: 45%;
  159. }
  160. .container.\32 5\25 {
  161. width: 22.5%;
  162. }
  163. .container {
  164. width: 90% !important;
  165. }
  166. }
  167. /* Grid */
  168. .row {
  169. border-bottom: solid 1px transparent;
  170. -moz-box-sizing: border-box;
  171. -webkit-box-sizing: border-box;
  172. box-sizing: border-box;
  173. }
  174. .row > * {
  175. float: left;
  176. -moz-box-sizing: border-box;
  177. -webkit-box-sizing: border-box;
  178. box-sizing: border-box;
  179. }
  180. .row:after, .row:before {
  181. content: '';
  182. display: block;
  183. clear: both;
  184. height: 0;
  185. }
  186. .row.uniform > * > :first-child {
  187. margin-top: 0;
  188. }
  189. .row.uniform > * > :last-child {
  190. margin-bottom: 0;
  191. }
  192. .row.\30 \25 > * {
  193. padding: 0 0 0 0em;
  194. }
  195. .row.\30 \25 {
  196. margin: 0 0 -1px 0em;
  197. }
  198. .row.uniform.\30 \25 > * {
  199. padding: 0em 0 0 0em;
  200. }
  201. .row.uniform.\30 \25 {
  202. margin: 0em 0 -1px 0em;
  203. }
  204. .row > * {
  205. padding: 0 0 0 2em;
  206. }
  207. .row {
  208. margin: 0 0 -1px -2em;
  209. }
  210. .row.uniform > * {
  211. padding: 2em 0 0 2em;
  212. }
  213. .row.uniform {
  214. margin: -2em 0 -1px -2em;
  215. }
  216. .row.\32 00\25 > * {
  217. padding: 0 0 0 4em;
  218. }
  219. .row.\32 00\25 {
  220. margin: 0 0 -1px -4em;
  221. }
  222. .row.uniform.\32 00\25 > * {
  223. padding: 4em 0 0 4em;
  224. }
  225. .row.uniform.\32 00\25 {
  226. margin: -4em 0 -1px -4em;
  227. }
  228. .row.\31 50\25 > * {
  229. padding: 0 0 0 3em;
  230. }
  231. .row.\31 50\25 {
  232. margin: 0 0 -1px -3em;
  233. }
  234. .row.uniform.\31 50\25 > * {
  235. padding: 3em 0 0 3em;
  236. }
  237. .row.uniform.\31 50\25 {
  238. margin: -3em 0 -1px -3em;
  239. }
  240. .row.\35 0\25 > * {
  241. padding: 0 0 0 1em;
  242. }
  243. .row.\35 0\25 {
  244. margin: 0 0 -1px -1em;
  245. }
  246. .row.uniform.\35 0\25 > * {
  247. padding: 1em 0 0 1em;
  248. }
  249. .row.uniform.\35 0\25 {
  250. margin: -1em 0 -1px -1em;
  251. }
  252. .row.\32 5\25 > * {
  253. padding: 0 0 0 0.5em;
  254. }
  255. .row.\32 5\25 {
  256. margin: 0 0 -1px -0.5em;
  257. }
  258. .row.uniform.\32 5\25 > * {
  259. padding: 0.5em 0 0 0.5em;
  260. }
  261. .row.uniform.\32 5\25 {
  262. margin: -0.5em 0 -1px -0.5em;
  263. }
  264. .\31 2u, .\31 2u\24 {
  265. width: 100%;
  266. clear: none;
  267. margin-left: 0;
  268. }
  269. .\31 1u, .\31 1u\24 {
  270. width: 91.6666666667%;
  271. clear: none;
  272. margin-left: 0;
  273. }
  274. .\31 0u, .\31 0u\24 {
  275. width: 83.3333333333%;
  276. clear: none;
  277. margin-left: 0;
  278. }
  279. .\39 u, .\39 u\24 {
  280. width: 75%;
  281. clear: none;
  282. margin-left: 0;
  283. }
  284. .\38 u, .\38 u\24 {
  285. width: 66.6666666667%;
  286. clear: none;
  287. margin-left: 0;
  288. }
  289. .\37 u, .\37 u\24 {
  290. width: 58.3333333333%;
  291. clear: none;
  292. margin-left: 0;
  293. }
  294. .\36 u, .\36 u\24 {
  295. width: 50%;
  296. clear: none;
  297. margin-left: 0;
  298. }
  299. .\35 u, .\35 u\24 {
  300. width: 41.6666666667%;
  301. clear: none;
  302. margin-left: 0;
  303. }
  304. .\34 u, .\34 u\24 {
  305. width: 33.3333333333%;
  306. clear: none;
  307. margin-left: 0;
  308. }
  309. .\33 u, .\33 u\24 {
  310. width: 25%;
  311. clear: none;
  312. margin-left: 0;
  313. }
  314. .\32 u, .\32 u\24 {
  315. width: 16.6666666667%;
  316. clear: none;
  317. margin-left: 0;
  318. }
  319. .\31 u, .\31 u\24 {
  320. width: 8.3333333333%;
  321. clear: none;
  322. margin-left: 0;
  323. }
  324. .\31 2u\24 + *,
  325. .\31 1u\24 + *,
  326. .\31 0u\24 + *,
  327. .\39 u\24 + *,
  328. .\38 u\24 + *,
  329. .\37 u\24 + *,
  330. .\36 u\24 + *,
  331. .\35 u\24 + *,
  332. .\34 u\24 + *,
  333. .\33 u\24 + *,
  334. .\32 u\24 + *,
  335. .\31 u\24 + * {
  336. clear: left;
  337. }
  338. .\-11u {
  339. margin-left: 91.66667%;
  340. }
  341. .\-10u {
  342. margin-left: 83.33333%;
  343. }
  344. .\-9u {
  345. margin-left: 75%;
  346. }
  347. .\-8u {
  348. margin-left: 66.66667%;
  349. }
  350. .\-7u {
  351. margin-left: 58.33333%;
  352. }
  353. .\-6u {
  354. margin-left: 50%;
  355. }
  356. .\-5u {
  357. margin-left: 41.66667%;
  358. }
  359. .\-4u {
  360. margin-left: 33.33333%;
  361. }
  362. .\-3u {
  363. margin-left: 25%;
  364. }
  365. .\-2u {
  366. margin-left: 16.66667%;
  367. }
  368. .\-1u {
  369. margin-left: 8.33333%;
  370. }
  371. @media screen and (max-width: 1680px) {
  372. .row > * {
  373. padding: 0 0 0 2em;
  374. }
  375. .row {
  376. margin: 0 0 -1px -2em;
  377. }
  378. .row.uniform > * {
  379. padding: 2em 0 0 2em;
  380. }
  381. .row.uniform {
  382. margin: -2em 0 -1px -2em;
  383. }
  384. .row.\32 00\25 > * {
  385. padding: 0 0 0 4em;
  386. }
  387. .row.\32 00\25 {
  388. margin: 0 0 -1px -4em;
  389. }
  390. .row.uniform.\32 00\25 > * {
  391. padding: 4em 0 0 4em;
  392. }
  393. .row.uniform.\32 00\25 {
  394. margin: -4em 0 -1px -4em;
  395. }
  396. .row.\31 50\25 > * {
  397. padding: 0 0 0 3em;
  398. }
  399. .row.\31 50\25 {
  400. margin: 0 0 -1px -3em;
  401. }
  402. .row.uniform.\31 50\25 > * {
  403. padding: 3em 0 0 3em;
  404. }
  405. .row.uniform.\31 50\25 {
  406. margin: -3em 0 -1px -3em;
  407. }
  408. .row.\35 0\25 > * {
  409. padding: 0 0 0 1em;
  410. }
  411. .row.\35 0\25 {
  412. margin: 0 0 -1px -1em;
  413. }
  414. .row.uniform.\35 0\25 > * {
  415. padding: 1em 0 0 1em;
  416. }
  417. .row.uniform.\35 0\25 {
  418. margin: -1em 0 -1px -1em;
  419. }
  420. .row.\32 5\25 > * {
  421. padding: 0 0 0 0.5em;
  422. }
  423. .row.\32 5\25 {
  424. margin: 0 0 -1px -0.5em;
  425. }
  426. .row.uniform.\32 5\25 > * {
  427. padding: 0.5em 0 0 0.5em;
  428. }
  429. .row.uniform.\32 5\25 {
  430. margin: -0.5em 0 -1px -0.5em;
  431. }
  432. .\31 2u\28xlarge\29, .\31 2u\24\28xlarge\29 {
  433. width: 100%;
  434. clear: none;
  435. margin-left: 0;
  436. }
  437. .\31 1u\28xlarge\29, .\31 1u\24\28xlarge\29 {
  438. width: 91.6666666667%;
  439. clear: none;
  440. margin-left: 0;
  441. }
  442. .\31 0u\28xlarge\29, .\31 0u\24\28xlarge\29 {
  443. width: 83.3333333333%;
  444. clear: none;
  445. margin-left: 0;
  446. }
  447. .\39 u\28xlarge\29, .\39 u\24\28xlarge\29 {
  448. width: 75%;
  449. clear: none;
  450. margin-left: 0;
  451. }
  452. .\38 u\28xlarge\29, .\38 u\24\28xlarge\29 {
  453. width: 66.6666666667%;
  454. clear: none;
  455. margin-left: 0;
  456. }
  457. .\37 u\28xlarge\29, .\37 u\24\28xlarge\29 {
  458. width: 58.3333333333%;
  459. clear: none;
  460. margin-left: 0;
  461. }
  462. .\36 u\28xlarge\29, .\36 u\24\28xlarge\29 {
  463. width: 50%;
  464. clear: none;
  465. margin-left: 0;
  466. }
  467. .\35 u\28xlarge\29, .\35 u\24\28xlarge\29 {
  468. width: 41.6666666667%;
  469. clear: none;
  470. margin-left: 0;
  471. }
  472. .\34 u\28xlarge\29, .\34 u\24\28xlarge\29 {
  473. width: 33.3333333333%;
  474. clear: none;
  475. margin-left: 0;
  476. }
  477. .\33 u\28xlarge\29, .\33 u\24\28xlarge\29 {
  478. width: 25%;
  479. clear: none;
  480. margin-left: 0;
  481. }
  482. .\32 u\28xlarge\29, .\32 u\24\28xlarge\29 {
  483. width: 16.6666666667%;
  484. clear: none;
  485. margin-left: 0;
  486. }
  487. .\31 u\28xlarge\29, .\31 u\24\28xlarge\29 {
  488. width: 8.3333333333%;
  489. clear: none;
  490. margin-left: 0;
  491. }
  492. .\31 2u\24\28xlarge\29 + *,
  493. .\31 1u\24\28xlarge\29 + *,
  494. .\31 0u\24\28xlarge\29 + *,
  495. .\39 u\24\28xlarge\29 + *,
  496. .\38 u\24\28xlarge\29 + *,
  497. .\37 u\24\28xlarge\29 + *,
  498. .\36 u\24\28xlarge\29 + *,
  499. .\35 u\24\28xlarge\29 + *,
  500. .\34 u\24\28xlarge\29 + *,
  501. .\33 u\24\28xlarge\29 + *,
  502. .\32 u\24\28xlarge\29 + *,
  503. .\31 u\24\28xlarge\29 + * {
  504. clear: left;
  505. }
  506. .\-11u\28xlarge\29 {
  507. margin-left: 91.66667%;
  508. }
  509. .\-10u\28xlarge\29 {
  510. margin-left: 83.33333%;
  511. }
  512. .\-9u\28xlarge\29 {
  513. margin-left: 75%;
  514. }
  515. .\-8u\28xlarge\29 {
  516. margin-left: 66.66667%;
  517. }
  518. .\-7u\28xlarge\29 {
  519. margin-left: 58.33333%;
  520. }
  521. .\-6u\28xlarge\29 {
  522. margin-left: 50%;
  523. }
  524. .\-5u\28xlarge\29 {
  525. margin-left: 41.66667%;
  526. }
  527. .\-4u\28xlarge\29 {
  528. margin-left: 33.33333%;
  529. }
  530. .\-3u\28xlarge\29 {
  531. margin-left: 25%;
  532. }
  533. .\-2u\28xlarge\29 {
  534. margin-left: 16.66667%;
  535. }
  536. .\-1u\28xlarge\29 {
  537. margin-left: 8.33333%;
  538. }
  539. }
  540. @media screen and (max-width: 1280px) {
  541. .row > * {
  542. padding: 0 0 0 1.5em;
  543. }
  544. .row {
  545. margin: 0 0 -1px -1.5em;
  546. }
  547. .row.uniform > * {
  548. padding: 1.5em 0 0 1.5em;
  549. }
  550. .row.uniform {
  551. margin: -1.5em 0 -1px -1.5em;
  552. }
  553. .row.\32 00\25 > * {
  554. padding: 0 0 0 3em;
  555. }
  556. .row.\32 00\25 {
  557. margin: 0 0 -1px -3em;
  558. }
  559. .row.uniform.\32 00\25 > * {
  560. padding: 3em 0 0 3em;
  561. }
  562. .row.uniform.\32 00\25 {
  563. margin: -3em 0 -1px -3em;
  564. }
  565. .row.\31 50\25 > * {
  566. padding: 0 0 0 2.25em;
  567. }
  568. .row.\31 50\25 {
  569. margin: 0 0 -1px -2.25em;
  570. }
  571. .row.uniform.\31 50\25 > * {
  572. padding: 2.25em 0 0 2.25em;
  573. }
  574. .row.uniform.\31 50\25 {
  575. margin: -2.25em 0 -1px -2.25em;
  576. }
  577. .row.\35 0\25 > * {
  578. padding: 0 0 0 0.75em;
  579. }
  580. .row.\35 0\25 {
  581. margin: 0 0 -1px -0.75em;
  582. }
  583. .row.uniform.\35 0\25 > * {
  584. padding: 0.75em 0 0 0.75em;
  585. }
  586. .row.uniform.\35 0\25 {
  587. margin: -0.75em 0 -1px -0.75em;
  588. }
  589. .row.\32 5\25 > * {
  590. padding: 0 0 0 0.375em;
  591. }
  592. .row.\32 5\25 {
  593. margin: 0 0 -1px -0.375em;
  594. }
  595. .row.uniform.\32 5\25 > * {
  596. padding: 0.375em 0 0 0.375em;
  597. }
  598. .row.uniform.\32 5\25 {
  599. margin: -0.375em 0 -1px -0.375em;
  600. }
  601. .\31 2u\28large\29, .\31 2u\24\28large\29 {
  602. width: 100%;
  603. clear: none;
  604. margin-left: 0;
  605. }
  606. .\31 1u\28large\29, .\31 1u\24\28large\29 {
  607. width: 91.6666666667%;
  608. clear: none;
  609. margin-left: 0;
  610. }
  611. .\31 0u\28large\29, .\31 0u\24\28large\29 {
  612. width: 83.3333333333%;
  613. clear: none;
  614. margin-left: 0;
  615. }
  616. .\39 u\28large\29, .\39 u\24\28large\29 {
  617. width: 75%;
  618. clear: none;
  619. margin-left: 0;
  620. }
  621. .\38 u\28large\29, .\38 u\24\28large\29 {
  622. width: 66.6666666667%;
  623. clear: none;
  624. margin-left: 0;
  625. }
  626. .\37 u\28large\29, .\37 u\24\28large\29 {
  627. width: 58.3333333333%;
  628. clear: none;
  629. margin-left: 0;
  630. }
  631. .\36 u\28large\29, .\36 u\24\28large\29 {
  632. width: 50%;
  633. clear: none;
  634. margin-left: 0;
  635. }
  636. .\35 u\28large\29, .\35 u\24\28large\29 {
  637. width: 41.6666666667%;
  638. clear: none;
  639. margin-left: 0;
  640. }
  641. .\34 u\28large\29, .\34 u\24\28large\29 {
  642. width: 33.3333333333%;
  643. clear: none;
  644. margin-left: 0;
  645. }
  646. .\33 u\28large\29, .\33 u\24\28large\29 {
  647. width: 25%;
  648. clear: none;
  649. margin-left: 0;
  650. }
  651. .\32 u\28large\29, .\32 u\24\28large\29 {
  652. width: 16.6666666667%;
  653. clear: none;
  654. margin-left: 0;
  655. }
  656. .\31 u\28large\29, .\31 u\24\28large\29 {
  657. width: 8.3333333333%;
  658. clear: none;
  659. margin-left: 0;
  660. }
  661. .\31 2u\24\28large\29 + *,
  662. .\31 1u\24\28large\29 + *,
  663. .\31 0u\24\28large\29 + *,
  664. .\39 u\24\28large\29 + *,
  665. .\38 u\24\28large\29 + *,
  666. .\37 u\24\28large\29 + *,
  667. .\36 u\24\28large\29 + *,
  668. .\35 u\24\28large\29 + *,
  669. .\34 u\24\28large\29 + *,
  670. .\33 u\24\28large\29 + *,
  671. .\32 u\24\28large\29 + *,
  672. .\31 u\24\28large\29 + * {
  673. clear: left;
  674. }
  675. .\-11u\28large\29 {
  676. margin-left: 91.66667%;
  677. }
  678. .\-10u\28large\29 {
  679. margin-left: 83.33333%;
  680. }
  681. .\-9u\28large\29 {
  682. margin-left: 75%;
  683. }
  684. .\-8u\28large\29 {
  685. margin-left: 66.66667%;
  686. }
  687. .\-7u\28large\29 {
  688. margin-left: 58.33333%;
  689. }
  690. .\-6u\28large\29 {
  691. margin-left: 50%;
  692. }
  693. .\-5u\28large\29 {
  694. margin-left: 41.66667%;
  695. }
  696. .\-4u\28large\29 {
  697. margin-left: 33.33333%;
  698. }
  699. .\-3u\28large\29 {
  700. margin-left: 25%;
  701. }
  702. .\-2u\28large\29 {
  703. margin-left: 16.66667%;
  704. }
  705. .\-1u\28large\29 {
  706. margin-left: 8.33333%;
  707. }
  708. }
  709. @media screen and (max-width: 980px) {
  710. .row > * {
  711. padding: 0 0 0 1.5em;
  712. }
  713. .row {
  714. margin: 0 0 -1px -1.5em;
  715. }
  716. .row.uniform > * {
  717. padding: 1.5em 0 0 1.5em;
  718. }
  719. .row.uniform {
  720. margin: -1.5em 0 -1px -1.5em;
  721. }
  722. .row.\32 00\25 > * {
  723. padding: 0 0 0 3em;
  724. }
  725. .row.\32 00\25 {
  726. margin: 0 0 -1px -3em;
  727. }
  728. .row.uniform.\32 00\25 > * {
  729. padding: 3em 0 0 3em;
  730. }
  731. .row.uniform.\32 00\25 {
  732. margin: -3em 0 -1px -3em;
  733. }
  734. .row.\31 50\25 > * {
  735. padding: 0 0 0 2.25em;
  736. }
  737. .row.\31 50\25 {
  738. margin: 0 0 -1px -2.25em;
  739. }
  740. .row.uniform.\31 50\25 > * {
  741. padding: 2.25em 0 0 2.25em;
  742. }
  743. .row.uniform.\31 50\25 {
  744. margin: -2.25em 0 -1px -2.25em;
  745. }
  746. .row.\35 0\25 > * {
  747. padding: 0 0 0 0.75em;
  748. }
  749. .row.\35 0\25 {
  750. margin: 0 0 -1px -0.75em;
  751. }
  752. .row.uniform.\35 0\25 > * {
  753. padding: 0.75em 0 0 0.75em;
  754. }
  755. .row.uniform.\35 0\25 {
  756. margin: -0.75em 0 -1px -0.75em;
  757. }
  758. .row.\32 5\25 > * {
  759. padding: 0 0 0 0.375em;
  760. }
  761. .row.\32 5\25 {
  762. margin: 0 0 -1px -0.375em;
  763. }
  764. .row.uniform.\32 5\25 > * {
  765. padding: 0.375em 0 0 0.375em;
  766. }
  767. .row.uniform.\32 5\25 {
  768. margin: -0.375em 0 -1px -0.375em;
  769. }
  770. .\31 2u\28medium\29, .\31 2u\24\28medium\29 {
  771. width: 100%;
  772. clear: none;
  773. margin-left: 0;
  774. }
  775. .\31 1u\28medium\29, .\31 1u\24\28medium\29 {
  776. width: 91.6666666667%;
  777. clear: none;
  778. margin-left: 0;
  779. }
  780. .\31 0u\28medium\29, .\31 0u\24\28medium\29 {
  781. width: 83.3333333333%;
  782. clear: none;
  783. margin-left: 0;
  784. }
  785. .\39 u\28medium\29, .\39 u\24\28medium\29 {
  786. width: 75%;
  787. clear: none;
  788. margin-left: 0;
  789. }
  790. .\38 u\28medium\29, .\38 u\24\28medium\29 {
  791. width: 66.6666666667%;
  792. clear: none;
  793. margin-left: 0;
  794. }
  795. .\37 u\28medium\29, .\37 u\24\28medium\29 {
  796. width: 58.3333333333%;
  797. clear: none;
  798. margin-left: 0;
  799. }
  800. .\36 u\28medium\29, .\36 u\24\28medium\29 {
  801. width: 50%;
  802. clear: none;
  803. margin-left: 0;
  804. }
  805. .\35 u\28medium\29, .\35 u\24\28medium\29 {
  806. width: 41.6666666667%;
  807. clear: none;
  808. margin-left: 0;
  809. }
  810. .\34 u\28medium\29, .\34 u\24\28medium\29 {
  811. width: 33.3333333333%;
  812. clear: none;
  813. margin-left: 0;
  814. }
  815. .\33 u\28medium\29, .\33 u\24\28medium\29 {
  816. width: 25%;
  817. clear: none;
  818. margin-left: 0;
  819. }
  820. .\32 u\28medium\29, .\32 u\24\28medium\29 {
  821. width: 16.6666666667%;
  822. clear: none;
  823. margin-left: 0;
  824. }
  825. .\31 u\28medium\29, .\31 u\24\28medium\29 {
  826. width: 8.3333333333%;
  827. clear: none;
  828. margin-left: 0;
  829. }
  830. .\31 2u\24\28medium\29 + *,
  831. .\31 1u\24\28medium\29 + *,
  832. .\31 0u\24\28medium\29 + *,
  833. .\39 u\24\28medium\29 + *,
  834. .\38 u\24\28medium\29 + *,
  835. .\37 u\24\28medium\29 + *,
  836. .\36 u\24\28medium\29 + *,
  837. .\35 u\24\28medium\29 + *,
  838. .\34 u\24\28medium\29 + *,
  839. .\33 u\24\28medium\29 + *,
  840. .\32 u\24\28medium\29 + *,
  841. .\31 u\24\28medium\29 + * {
  842. clear: left;
  843. }
  844. .\-11u\28medium\29 {
  845. margin-left: 91.66667%;
  846. }
  847. .\-10u\28medium\29 {
  848. margin-left: 83.33333%;
  849. }
  850. .\-9u\28medium\29 {
  851. margin-left: 75%;
  852. }
  853. .\-8u\28medium\29 {
  854. margin-left: 66.66667%;
  855. }
  856. .\-7u\28medium\29 {
  857. margin-left: 58.33333%;
  858. }
  859. .\-6u\28medium\29 {
  860. margin-left: 50%;
  861. }
  862. .\-5u\28medium\29 {
  863. margin-left: 41.66667%;
  864. }
  865. .\-4u\28medium\29 {
  866. margin-left: 33.33333%;
  867. }
  868. .\-3u\28medium\29 {
  869. margin-left: 25%;
  870. }
  871. .\-2u\28medium\29 {
  872. margin-left: 16.66667%;
  873. }
  874. .\-1u\28medium\29 {
  875. margin-left: 8.33333%;
  876. }
  877. }
  878. @media screen and (max-width: 736px) {
  879. .row > * {
  880. padding: 0 0 0 1.25em;
  881. }
  882. .row {
  883. margin: 0 0 -1px -1.25em;
  884. }
  885. .row.uniform > * {
  886. padding: 1.25em 0 0 1.25em;
  887. }
  888. .row.uniform {
  889. margin: -1.25em 0 -1px -1.25em;
  890. }
  891. .row.\32 00\25 > * {
  892. padding: 0 0 0 2.5em;
  893. }
  894. .row.\32 00\25 {
  895. margin: 0 0 -1px -2.5em;
  896. }
  897. .row.uniform.\32 00\25 > * {
  898. padding: 2.5em 0 0 2.5em;
  899. }
  900. .row.uniform.\32 00\25 {
  901. margin: -2.5em 0 -1px -2.5em;
  902. }
  903. .row.\31 50\25 > * {
  904. padding: 0 0 0 1.875em;
  905. }
  906. .row.\31 50\25 {
  907. margin: 0 0 -1px -1.875em;
  908. }
  909. .row.uniform.\31 50\25 > * {
  910. padding: 1.875em 0 0 1.875em;
  911. }
  912. .row.uniform.\31 50\25 {
  913. margin: -1.875em 0 -1px -1.875em;
  914. }
  915. .row.\35 0\25 > * {
  916. padding: 0 0 0 0.625em;
  917. }
  918. .row.\35 0\25 {
  919. margin: 0 0 -1px -0.625em;
  920. }
  921. .row.uniform.\35 0\25 > * {
  922. padding: 0.625em 0 0 0.625em;
  923. }
  924. .row.uniform.\35 0\25 {
  925. margin: -0.625em 0 -1px -0.625em;
  926. }
  927. .row.\32 5\25 > * {
  928. padding: 0 0 0 0.3125em;
  929. }
  930. .row.\32 5\25 {
  931. margin: 0 0 -1px -0.3125em;
  932. }
  933. .row.uniform.\32 5\25 > * {
  934. padding: 0.3125em 0 0 0.3125em;
  935. }
  936. .row.uniform.\32 5\25 {
  937. margin: -0.3125em 0 -1px -0.3125em;
  938. }
  939. .\31 2u\28small\29, .\31 2u\24\28small\29 {
  940. width: 100%;
  941. clear: none;
  942. margin-left: 0;
  943. }
  944. .\31 1u\28small\29, .\31 1u\24\28small\29 {
  945. width: 91.6666666667%;
  946. clear: none;
  947. margin-left: 0;
  948. }
  949. .\31 0u\28small\29, .\31 0u\24\28small\29 {
  950. width: 83.3333333333%;
  951. clear: none;
  952. margin-left: 0;
  953. }
  954. .\39 u\28small\29, .\39 u\24\28small\29 {
  955. width: 75%;
  956. clear: none;
  957. margin-left: 0;
  958. }
  959. .\38 u\28small\29, .\38 u\24\28small\29 {
  960. width: 66.6666666667%;
  961. clear: none;
  962. margin-left: 0;
  963. }
  964. .\37 u\28small\29, .\37 u\24\28small\29 {
  965. width: 58.3333333333%;
  966. clear: none;
  967. margin-left: 0;
  968. }
  969. .\36 u\28small\29, .\36 u\24\28small\29 {
  970. width: 50%;
  971. clear: none;
  972. margin-left: 0;
  973. }
  974. .\35 u\28small\29, .\35 u\24\28small\29 {
  975. width: 41.6666666667%;
  976. clear: none;
  977. margin-left: 0;
  978. }
  979. .\34 u\28small\29, .\34 u\24\28small\29 {
  980. width: 33.3333333333%;
  981. clear: none;
  982. margin-left: 0;
  983. }
  984. .\33 u\28small\29, .\33 u\24\28small\29 {
  985. width: 25%;
  986. clear: none;
  987. margin-left: 0;
  988. }
  989. .\32 u\28small\29, .\32 u\24\28small\29 {
  990. width: 16.6666666667%;
  991. clear: none;
  992. margin-left: 0;
  993. }
  994. .\31 u\28small\29, .\31 u\24\28small\29 {
  995. width: 8.3333333333%;
  996. clear: none;
  997. margin-left: 0;
  998. }
  999. .\31 2u\24\28small\29 + *,
  1000. .\31 1u\24\28small\29 + *,
  1001. .\31 0u\24\28small\29 + *,
  1002. .\39 u\24\28small\29 + *,
  1003. .\38 u\24\28small\29 + *,
  1004. .\37 u\24\28small\29 + *,
  1005. .\36 u\24\28small\29 + *,
  1006. .\35 u\24\28small\29 + *,
  1007. .\34 u\24\28small\29 + *,
  1008. .\33 u\24\28small\29 + *,
  1009. .\32 u\24\28small\29 + *,
  1010. .\31 u\24\28small\29 + * {
  1011. clear: left;
  1012. }
  1013. .\-11u\28small\29 {
  1014. margin-left: 91.66667%;
  1015. }
  1016. .\-10u\28small\29 {
  1017. margin-left: 83.33333%;
  1018. }
  1019. .\-9u\28small\29 {
  1020. margin-left: 75%;
  1021. }
  1022. .\-8u\28small\29 {
  1023. margin-left: 66.66667%;
  1024. }
  1025. .\-7u\28small\29 {
  1026. margin-left: 58.33333%;
  1027. }
  1028. .\-6u\28small\29 {
  1029. margin-left: 50%;
  1030. }
  1031. .\-5u\28small\29 {
  1032. margin-left: 41.66667%;
  1033. }
  1034. .\-4u\28small\29 {
  1035. margin-left: 33.33333%;
  1036. }
  1037. .\-3u\28small\29 {
  1038. margin-left: 25%;
  1039. }
  1040. .\-2u\28small\29 {
  1041. margin-left: 16.66667%;
  1042. }
  1043. .\-1u\28small\29 {
  1044. margin-left: 8.33333%;
  1045. }
  1046. }
  1047. @media screen and (max-width: 480px) {
  1048. .row > * {
  1049. padding: 0 0 0 1.25em;
  1050. }
  1051. .row {
  1052. margin: 0 0 -1px -1.25em;
  1053. }
  1054. .row.uniform > * {
  1055. padding: 1.25em 0 0 1.25em;
  1056. }
  1057. .row.uniform {
  1058. margin: -1.25em 0 -1px -1.25em;
  1059. }
  1060. .row.\32 00\25 > * {
  1061. padding: 0 0 0 2.5em;
  1062. }
  1063. .row.\32 00\25 {
  1064. margin: 0 0 -1px -2.5em;
  1065. }
  1066. .row.uniform.\32 00\25 > * {
  1067. padding: 2.5em 0 0 2.5em;
  1068. }
  1069. .row.uniform.\32 00\25 {
  1070. margin: -2.5em 0 -1px -2.5em;
  1071. }
  1072. .row.\31 50\25 > * {
  1073. padding: 0 0 0 1.875em;
  1074. }
  1075. .row.\31 50\25 {
  1076. margin: 0 0 -1px -1.875em;
  1077. }
  1078. .row.uniform.\31 50\25 > * {
  1079. padding: 1.875em 0 0 1.875em;
  1080. }
  1081. .row.uniform.\31 50\25 {
  1082. margin: -1.875em 0 -1px -1.875em;
  1083. }
  1084. .row.\35 0\25 > * {
  1085. padding: 0 0 0 0.625em;
  1086. }
  1087. .row.\35 0\25 {
  1088. margin: 0 0 -1px -0.625em;
  1089. }
  1090. .row.uniform.\35 0\25 > * {
  1091. padding: 0.625em 0 0 0.625em;
  1092. }
  1093. .row.uniform.\35 0\25 {
  1094. margin: -0.625em 0 -1px -0.625em;
  1095. }
  1096. .row.\32 5\25 > * {
  1097. padding: 0 0 0 0.3125em;
  1098. }
  1099. .row.\32 5\25 {
  1100. margin: 0 0 -1px -0.3125em;
  1101. }
  1102. .row.uniform.\32 5\25 > * {
  1103. padding: 0.3125em 0 0 0.3125em;
  1104. }
  1105. .row.uniform.\32 5\25 {
  1106. margin: -0.3125em 0 -1px -0.3125em;
  1107. }
  1108. .\31 2u\28xsmall\29, .\31 2u\24\28xsmall\29 {
  1109. width: 100%;
  1110. clear: none;
  1111. margin-left: 0;
  1112. }
  1113. .\31 1u\28xsmall\29, .\31 1u\24\28xsmall\29 {
  1114. width: 91.6666666667%;
  1115. clear: none;
  1116. margin-left: 0;
  1117. }
  1118. .\31 0u\28xsmall\29, .\31 0u\24\28xsmall\29 {
  1119. width: 83.3333333333%;
  1120. clear: none;
  1121. margin-left: 0;
  1122. }
  1123. .\39 u\28xsmall\29, .\39 u\24\28xsmall\29 {
  1124. width: 75%;
  1125. clear: none;
  1126. margin-left: 0;
  1127. }
  1128. .\38 u\28xsmall\29, .\38 u\24\28xsmall\29 {
  1129. width: 66.6666666667%;
  1130. clear: none;
  1131. margin-left: 0;
  1132. }
  1133. .\37 u\28xsmall\29, .\37 u\24\28xsmall\29 {
  1134. width: 58.3333333333%;
  1135. clear: none;
  1136. margin-left: 0;
  1137. }
  1138. .\36 u\28xsmall\29, .\36 u\24\28xsmall\29 {
  1139. width: 50%;
  1140. clear: none;
  1141. margin-left: 0;
  1142. }
  1143. .\35 u\28xsmall\29, .\35 u\24\28xsmall\29 {
  1144. width: 41.6666666667%;
  1145. clear: none;
  1146. margin-left: 0;
  1147. }
  1148. .\34 u\28xsmall\29, .\34 u\24\28xsmall\29 {
  1149. width: 33.3333333333%;
  1150. clear: none;
  1151. margin-left: 0;
  1152. }
  1153. .\33 u\28xsmall\29, .\33 u\24\28xsmall\29 {
  1154. width: 25%;
  1155. clear: none;
  1156. margin-left: 0;
  1157. }
  1158. .\32 u\28xsmall\29, .\32 u\24\28xsmall\29 {
  1159. width: 16.6666666667%;
  1160. clear: none;
  1161. margin-left: 0;
  1162. }
  1163. .\31 u\28xsmall\29, .\31 u\24\28xsmall\29 {
  1164. width: 8.3333333333%;
  1165. clear: none;
  1166. margin-left: 0;
  1167. }
  1168. .\31 2u\24\28xsmall\29 + *,
  1169. .\31 1u\24\28xsmall\29 + *,
  1170. .\31 0u\24\28xsmall\29 + *,
  1171. .\39 u\24\28xsmall\29 + *,
  1172. .\38 u\24\28xsmall\29 + *,
  1173. .\37 u\24\28xsmall\29 + *,
  1174. .\36 u\24\28xsmall\29 + *,
  1175. .\35 u\24\28xsmall\29 + *,
  1176. .\34 u\24\28xsmall\29 + *,
  1177. .\33 u\24\28xsmall\29 + *,
  1178. .\32 u\24\28xsmall\29 + *,
  1179. .\31 u\24\28xsmall\29 + * {
  1180. clear: left;
  1181. }
  1182. .\-11u\28xsmall\29 {
  1183. margin-left: 91.66667%;
  1184. }
  1185. .\-10u\28xsmall\29 {
  1186. margin-left: 83.33333%;
  1187. }
  1188. .\-9u\28xsmall\29 {
  1189. margin-left: 75%;
  1190. }
  1191. .\-8u\28xsmall\29 {
  1192. margin-left: 66.66667%;
  1193. }
  1194. .\-7u\28xsmall\29 {
  1195. margin-left: 58.33333%;
  1196. }
  1197. .\-6u\28xsmall\29 {
  1198. margin-left: 50%;
  1199. }
  1200. .\-5u\28xsmall\29 {
  1201. margin-left: 41.66667%;
  1202. }
  1203. .\-4u\28xsmall\29 {
  1204. margin-left: 33.33333%;
  1205. }
  1206. .\-3u\28xsmall\29 {
  1207. margin-left: 25%;
  1208. }
  1209. .\-2u\28xsmall\29 {
  1210. margin-left: 16.66667%;
  1211. }
  1212. .\-1u\28xsmall\29 {
  1213. margin-left: 8.33333%;
  1214. }
  1215. }
  1216. /* Basic */
  1217. @-ms-viewport {
  1218. width: device-width;
  1219. }
  1220. body {
  1221. -ms-overflow-style: scrollbar;
  1222. }
  1223. @media screen and (max-width: 480px) {
  1224. html, body {
  1225. min-width: 320px;
  1226. }
  1227. }
  1228. body {
  1229. background: #fff;
  1230. }
  1231. body.is-loading *, body.is-loading *:before, body.is-loading *:after {
  1232. -moz-animation: none !important;
  1233. -webkit-animation: none !important;
  1234. -ms-animation: none !important;
  1235. animation: none !important;
  1236. -moz-transition: none !important;
  1237. -webkit-transition: none !important;
  1238. -ms-transition: none !important;
  1239. transition: none !important;
  1240. }
  1241. .inner {
  1242. margin: 0 auto;
  1243. max-width: 65em;
  1244. }
  1245. @media screen and (max-width: 1280px) {
  1246. .inner {
  1247. max-width: 90%;
  1248. }
  1249. }
  1250. @media screen and (max-width: 980px) {
  1251. .inner {
  1252. max-width: 70%;
  1253. }
  1254. }
  1255. @media screen and (max-width: 736px) {
  1256. .inner {
  1257. max-width: 85%;
  1258. }
  1259. }
  1260. /* Type */
  1261. body, input, select, textarea {
  1262. color: #767d85;
  1263. font-family: "Open Sans", Arial, Helvetica, sans-serif;
  1264. font-size: 13pt;
  1265. font-weight: 300;
  1266. line-height: 1.65;
  1267. }
  1268. @media screen and (max-width: 1680px) {
  1269. body, input, select, textarea {
  1270. font-size: 11pt;
  1271. }
  1272. }
  1273. @media screen and (max-width: 1280px) {
  1274. body, input, select, textarea {
  1275. font-size: 11pt;
  1276. }
  1277. }
  1278. @media screen and (max-width: 980px) {
  1279. body, input, select, textarea {
  1280. font-size: 12pt;
  1281. }
  1282. }
  1283. @media screen and (max-width: 736px) {
  1284. body, input, select, textarea {
  1285. font-size: 12pt;
  1286. }
  1287. }
  1288. @media screen and (max-width: 480px) {
  1289. body, input, select, textarea {
  1290. font-size: 12pt;
  1291. }
  1292. }
  1293. a {
  1294. color: #25a2c3;
  1295. text-decoration: underline;
  1296. }
  1297. a:hover {
  1298. text-decoration: none;
  1299. }
  1300. strong, b {
  1301. color: #727a82;
  1302. font-weight: 700;
  1303. }
  1304. em, i {
  1305. font-style: italic;
  1306. }
  1307. p {
  1308. margin: 0 0 2em 0;
  1309. }
  1310. h1, h2, h3, h4, h5, h6 {
  1311. color: #727a82;
  1312. font-weight: 700;
  1313. font-family: "Montserrat", sans-serif;
  1314. line-height: 1.5;
  1315. margin: 0 0 1em 0;
  1316. }
  1317. h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  1318. color: inherit;
  1319. text-decoration: none;
  1320. }
  1321. h1 {
  1322. font-size: 2em;
  1323. line-height: 1.3;
  1324. }
  1325. h2 {
  1326. font-size: 1.75em;
  1327. }
  1328. h3 {
  1329. font-size: 1.25em;
  1330. }
  1331. h4 {
  1332. font-size: 1em;
  1333. }
  1334. h5 {
  1335. font-size: 0.9em;
  1336. }
  1337. h6 {
  1338. font-size: 0.7em;
  1339. }
  1340. sub {
  1341. font-size: 0.8em;
  1342. position: relative;
  1343. top: 0.5em;
  1344. }
  1345. sup {
  1346. font-size: 0.8em;
  1347. position: relative;
  1348. top: -0.5em;
  1349. }
  1350. blockquote {
  1351. font-style: italic;
  1352. margin: 0 0 2em 0;
  1353. }
  1354. cite {
  1355. display: block;
  1356. }
  1357. cite.author {
  1358. font-weight: 400;
  1359. }
  1360. cite.company {
  1361. font-size: .8em;
  1362. }
  1363. figure {
  1364. margin: 0 0 2em 0;
  1365. }
  1366. code {
  1367. background: rgba(144, 144, 144, 0.075);
  1368. border-radius: 4px;
  1369. border: solid 1px #dee1e3;
  1370. font-family: "Courier New", monospace;
  1371. font-size: 0.9em;
  1372. margin: 0 0.25em;
  1373. padding: 0.25em 0.65em;
  1374. }
  1375. pre {
  1376. -webkit-overflow-scrolling: touch;
  1377. font-family: "Courier New", monospace;
  1378. font-size: 0.9em;
  1379. margin: 0 0 2em 0;
  1380. }
  1381. pre code {
  1382. display: block;
  1383. line-height: 1.75;
  1384. padding: 1em 1.5em;
  1385. overflow-x: auto;
  1386. }
  1387. hr {
  1388. border: 0;
  1389. border-bottom: solid 1px #dee1e3;
  1390. margin: 2em 0;
  1391. }
  1392. hr.major {
  1393. margin: 3em 0;
  1394. }
  1395. .align-left {
  1396. text-align: left;
  1397. }
  1398. .align-center {
  1399. text-align: center;
  1400. }
  1401. .align-right {
  1402. text-align: right;
  1403. }
  1404. /* Section/Article */
  1405. section.special, article.special {
  1406. text-align: center;
  1407. }
  1408. header p {
  1409. color: #bbb;
  1410. position: relative;
  1411. margin: 0 0 1.5em 0;
  1412. }
  1413. header h1 + p {
  1414. font-size: 1.25em;
  1415. margin-top: -1em;
  1416. }
  1417. header h2 + p {
  1418. font-size: 1.25em;
  1419. margin-top: -1em;
  1420. }
  1421. header h3 + p {
  1422. font-size: 1.1em;
  1423. margin-top: -0.8em;
  1424. }
  1425. header h4 + p,
  1426. header h5 + p,
  1427. header h6 + p {
  1428. font-size: 0.9em;
  1429. margin-top: -0.6em;
  1430. }
  1431. /* Form */
  1432. form {
  1433. margin: 0 0 2em 0;
  1434. }
  1435. label {
  1436. color: #727a82;
  1437. display: block;
  1438. font-size: 0.9em;
  1439. font-weight: 700;
  1440. margin: 0 0 1em 0;
  1441. }
  1442. input[type="text"],
  1443. input[type="password"],
  1444. input[type="email"],
  1445. input[type="tel"],
  1446. input[type="number"],
  1447. select,
  1448. textarea {
  1449. /* -moz-appearance: none; */
  1450. -webkit-appearance: none;
  1451. -ms-appearance: none;
  1452. appearance: none;
  1453. background: rgba(144, 144, 144, 0.075);
  1454. border-radius: 4px;
  1455. border: none;
  1456. border: solid 1px #dee1e3;
  1457. color: inherit;
  1458. display: block;
  1459. outline: 0;
  1460. padding: 0 1em;
  1461. text-decoration: none;
  1462. width: 100%;
  1463. }
  1464. input[type="text"]:invalid,
  1465. input[type="password"]:invalid,
  1466. input[type="email"]:invalid,
  1467. input[type="tel"]:invalid,
  1468. input[type="number"]:invalid,
  1469. select:invalid,
  1470. textarea:invalid {
  1471. box-shadow: none;
  1472. }
  1473. input[type="text"]:focus,
  1474. input[type="password"]:focus,
  1475. input[type="email"]:focus,
  1476. input[type="tel"]:focus,
  1477. input[type="number"]:focus,
  1478. select:focus,
  1479. textarea:focus {
  1480. border-color: #25a2c3;
  1481. box-shadow: 0 0 0 1px #25a2c3;
  1482. }
  1483. .select-wrapper {
  1484. text-decoration: none;
  1485. display: block;
  1486. position: relative;
  1487. }
  1488. .select-wrapper:before {
  1489. content: "";
  1490. -moz-osx-font-smoothing: grayscale;
  1491. -webkit-font-smoothing: antialiased;
  1492. font-family: FontAwesome;
  1493. font-style: normal;
  1494. font-weight: normal;
  1495. text-transform: none !important;
  1496. }
  1497. .select-wrapper:before {
  1498. color: #dee1e3;
  1499. display: block;
  1500. height: 2.75em;
  1501. line-height: 2.75em;
  1502. pointer-events: none;
  1503. position: absolute;
  1504. right: 0;
  1505. text-align: center;
  1506. top: 0;
  1507. width: 2.75em;
  1508. }
  1509. .select-wrapper select::-ms-expand {
  1510. display: none;
  1511. }
  1512. input[type="text"],
  1513. input[type="password"],
  1514. input[type="email"],
  1515. input[type="number"],
  1516. select {
  1517. height: 3.5em;
  1518. line-height: 3.5em;
  1519. }
  1520. textarea {
  1521. padding: 0.75em 1em;
  1522. }
  1523. input[type="checkbox"],
  1524. input[type="radio"] {
  1525. -moz-appearance: none;
  1526. -webkit-appearance: none;
  1527. -ms-appearance: none;
  1528. appearance: none;
  1529. display: block;
  1530. float: left;
  1531. margin-right: -2em;
  1532. opacity: 0;
  1533. width: 1em;
  1534. z-index: -1;
  1535. }
  1536. input[type="checkbox"] + label,
  1537. input[type="radio"] + label {
  1538. text-decoration: none;
  1539. color: #767d85;
  1540. cursor: pointer;
  1541. display: inline-block;
  1542. font-size: 1em;
  1543. font-weight: 300;
  1544. padding-left: 2.4em;
  1545. padding-right: 0.75em;
  1546. position: relative;
  1547. }
  1548. input[type="checkbox"] + label:before,
  1549. input[type="radio"] + label:before {
  1550. -moz-osx-font-smoothing: grayscale;
  1551. -webkit-font-smoothing: antialiased;
  1552. font-family: FontAwesome;
  1553. font-style: normal;
  1554. font-weight: normal;
  1555. text-transform: none !important;
  1556. }
  1557. input[type="checkbox"] + label:before,
  1558. input[type="radio"] + label:before {
  1559. background: rgba(144, 144, 144, 0.075);
  1560. border-radius: 4px;
  1561. border: solid 1px #dee1e3;
  1562. content: '';
  1563. display: inline-block;
  1564. height: 1.65em;
  1565. left: 0;
  1566. line-height: 1.58125em;
  1567. position: absolute;
  1568. text-align: center;
  1569. top: 0;
  1570. width: 1.65em;
  1571. }
  1572. input[type="checkbox"]:checked + label:before,
  1573. input[type="radio"]:checked + label:before {
  1574. background: #f6755e;
  1575. border-color: #f6755e;
  1576. color: #ffffff;
  1577. content: '\f00c';
  1578. }
  1579. input[type="checkbox"]:focus + label:before,
  1580. input[type="radio"]:focus + label:before {
  1581. border-color: #25a2c3;
  1582. box-shadow: 0 0 0 1px #25a2c3;
  1583. }
  1584. input[type="checkbox"] + label:before {
  1585. border-radius: 4px;
  1586. }
  1587. input[type="radio"] + label:before {
  1588. border-radius: 100%;
  1589. }
  1590. ::-webkit-input-placeholder {
  1591. color: #bbb !important;
  1592. opacity: 1.0;
  1593. }
  1594. :-moz-placeholder {
  1595. color: #bbb !important;
  1596. opacity: 1.0;
  1597. }
  1598. ::-moz-placeholder {
  1599. color: #bbb !important;
  1600. opacity: 1.0;
  1601. }
  1602. :-ms-input-placeholder {
  1603. color: #bbb !important;
  1604. opacity: 1.0;
  1605. }
  1606. .formerize-placeholder {
  1607. color: #bbb !important;
  1608. opacity: 1.0;
  1609. }
  1610. /* Box */
  1611. .box {
  1612. border-radius: 4px;
  1613. border: solid 1px #dee1e3;
  1614. margin-bottom: 2em;
  1615. overflow: hidden;
  1616. }
  1617. .box > :last-child,
  1618. .box > :last-child > :last-child,
  1619. .box > :last-child > :last-child > :last-child {
  1620. margin-bottom: 0;
  1621. }
  1622. .box .image.fit {
  1623. margin: 0;
  1624. }
  1625. .box .content {
  1626. padding: 1.5em;
  1627. }
  1628. .box.alt {
  1629. border: 0;
  1630. border-radius: 0;
  1631. padding: 0;
  1632. }
  1633. /* Icon */
  1634. .icon {
  1635. text-decoration: none;
  1636. border-bottom: none;
  1637. position: relative;
  1638. }
  1639. .icon:before {
  1640. -moz-osx-font-smoothing: grayscale;
  1641. -webkit-font-smoothing: antialiased;
  1642. font-family: FontAwesome;
  1643. font-style: normal;
  1644. font-weight: normal;
  1645. text-transform: none !important;
  1646. }
  1647. .icon > .label {
  1648. display: none;
  1649. }
  1650. /* Image */
  1651. .image {
  1652. border: 0;
  1653. display: inline-block;
  1654. position: relative;
  1655. }
  1656. .image img {
  1657. display: block;
  1658. }
  1659. .image.left, .image.right {
  1660. max-width: 40%;
  1661. }
  1662. .image.left img, .image.right img {
  1663. width: 100%;
  1664. }
  1665. .image.left {
  1666. float: left;
  1667. padding: 0 1.5em 1em 0;
  1668. top: 0.25em;
  1669. }
  1670. .image.right {
  1671. float: right;
  1672. padding: 0 0 1em 1.5em;
  1673. top: 0.25em;
  1674. }
  1675. .image.fit {
  1676. display: block;
  1677. margin: 0 0 2em 0;
  1678. width: 100%;
  1679. }
  1680. .image.fit img {
  1681. width: 100%;
  1682. }
  1683. .image.round img {
  1684. border-radius: 100%;
  1685. }
  1686. .image.main {
  1687. display: block;
  1688. margin: 0 0 3em 0;
  1689. width: 100%;
  1690. }
  1691. .image.main img {
  1692. width: 100%;
  1693. }
  1694. /* List */
  1695. ol {
  1696. list-style: decimal;
  1697. margin: 0 0 2em 0;
  1698. padding-left: 1.25em;
  1699. }
  1700. ol li {
  1701. padding-left: 0.25em;
  1702. }
  1703. ul {
  1704. list-style: disc;
  1705. margin: 0 0 2em 0;
  1706. padding-left: 1em;
  1707. }
  1708. ul li {
  1709. padding-left: 0.5em;
  1710. }
  1711. ul.alt {
  1712. list-style: none;
  1713. padding-left: 0;
  1714. }
  1715. ul.alt li {
  1716. border-top: solid 1px #dee1e3;
  1717. padding: 0.5em 0;
  1718. }
  1719. ul.alt li:first-child {
  1720. border-top: 0;
  1721. padding-top: 0;
  1722. }
  1723. ul.icons {
  1724. cursor: default;
  1725. list-style: none;
  1726. padding-left: 0;
  1727. }
  1728. ul.icons li {
  1729. display: inline-block;
  1730. padding: 0 1em 0 0;
  1731. }
  1732. ul.icons li:last-child {
  1733. padding-right: 0;
  1734. }
  1735. ul.icons li .icon:before {
  1736. font-size: 2em;
  1737. }
  1738. ul.actions {
  1739. cursor: default;
  1740. list-style: none;
  1741. padding-left: 0;
  1742. }
  1743. ul.actions li {
  1744. display: inline-block;
  1745. padding: 0 1em 0 0;
  1746. vertical-align: middle;
  1747. }
  1748. ul.actions li:last-child {
  1749. padding-right: 0;
  1750. }
  1751. ul.actions.small li {
  1752. padding: 0 0.5em 0 0;
  1753. }
  1754. ul.actions.vertical li {
  1755. display: block;
  1756. padding: 1em 0 0 0;
  1757. }
  1758. ul.actions.vertical li:first-child {
  1759. padding-top: 0;
  1760. }
  1761. ul.actions.vertical li > * {
  1762. margin-bottom: 0;
  1763. }
  1764. ul.actions.vertical.small li {
  1765. padding: 0.5em 0 0 0;
  1766. }
  1767. ul.actions.vertical.small li:first-child {
  1768. padding-top: 0;
  1769. }
  1770. ul.actions.fit {
  1771. display: table;
  1772. margin-left: -1em;
  1773. padding: 0;
  1774. table-layout: fixed;
  1775. width: calc(100% + 1em);
  1776. }
  1777. ul.actions.fit li {
  1778. display: table-cell;
  1779. padding: 0 0 0 1em;
  1780. }
  1781. ul.actions.fit li > * {
  1782. margin-bottom: 0;
  1783. }
  1784. ul.actions.fit.small {
  1785. margin-left: -0.5em;
  1786. width: calc(100% + 0.5em);
  1787. }
  1788. ul.actions.fit.small li {
  1789. padding: 0 0 0 0.5em;
  1790. }
  1791. @media screen and (max-width: 480px) {
  1792. ul.actions {
  1793. margin: 0 0 2em 0;
  1794. }
  1795. ul.actions li {
  1796. padding: 1em 0 0 0;
  1797. display: block;
  1798. text-align: center;
  1799. width: 100%;
  1800. }
  1801. ul.actions li:first-child {
  1802. padding-top: 0;
  1803. }
  1804. ul.actions li > * {
  1805. width: 100%;
  1806. margin: 0 !important;
  1807. }
  1808. ul.actions li > *.icon:before {
  1809. margin-left: -2em;
  1810. }
  1811. ul.actions.small li {
  1812. padding: 0.5em 0 0 0;
  1813. }
  1814. ul.actions.small li:first-child {
  1815. padding-top: 0;
  1816. }
  1817. }
  1818. dl {
  1819. margin: 0 0 2em 0;
  1820. }
  1821. dl dt {
  1822. display: block;
  1823. font-weight: 700;
  1824. margin: 0 0 1em 0;
  1825. }
  1826. dl dd {
  1827. margin-left: 2em;
  1828. }
  1829. /* Table */
  1830. .table-wrapper {
  1831. -webkit-overflow-scrolling: touch;
  1832. overflow-x: auto;
  1833. }
  1834. table {
  1835. margin: 0 0 2em 0;
  1836. width: 100%;
  1837. }
  1838. table tbody tr {
  1839. border: solid 1px #dee1e3;
  1840. border-left: 0;
  1841. border-right: 0;
  1842. }
  1843. table tbody tr:nth-child(2n + 1) {
  1844. background-color: rgba(144, 144, 144, 0.075);
  1845. }
  1846. table td {
  1847. padding: 0.75em 0.75em;
  1848. }
  1849. table th {
  1850. color: #727a82;
  1851. font-size: 0.9em;
  1852. font-weight: 700;
  1853. padding: 0 0.75em 0.75em 0.75em;
  1854. text-align: left;
  1855. }
  1856. table thead {
  1857. border-bottom: solid 2px #dee1e3;
  1858. }
  1859. table tfoot {
  1860. border-top: solid 2px #dee1e3;
  1861. }
  1862. table.alt {
  1863. border-collapse: separate;
  1864. }
  1865. table.alt tbody tr td {
  1866. border: solid 1px #dee1e3;
  1867. border-left-width: 0;
  1868. border-top-width: 0;
  1869. }
  1870. table.alt tbody tr td:first-child {
  1871. border-left-width: 1px;
  1872. }
  1873. table.alt tbody tr:first-child td {
  1874. border-top-width: 1px;
  1875. }
  1876. table.alt thead {
  1877. border-bottom: 0;
  1878. }
  1879. table.alt tfoot {
  1880. border-top: 0;
  1881. }
  1882. /* Button */
  1883. input[type="submit"],
  1884. input[type="reset"],
  1885. input[type="button"],
  1886. button,
  1887. .button {
  1888. -moz-appearance: none;
  1889. -webkit-appearance: none;
  1890. -ms-appearance: none;
  1891. appearance: none;
  1892. -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  1893. -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  1894. -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  1895. transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  1896. background-color: #f6755e;
  1897. border-radius: 4px;
  1898. border: 0;
  1899. color: #ffffff;
  1900. cursor: pointer;
  1901. display: inline-block;
  1902. font-family: "Montserrat", sans-serif;
  1903. height: 3.5em;
  1904. line-height: 3.5em;
  1905. padding: 0 3.5em;
  1906. text-align: center;
  1907. text-decoration: none;
  1908. white-space: nowrap;
  1909. text-transform: uppercase;
  1910. }
  1911. input[type="submit"]:hover,
  1912. input[type="reset"]:hover,
  1913. input[type="button"]:hover,
  1914. button:hover,
  1915. .button:hover {
  1916. background-color: #f78a76;
  1917. }
  1918. input[type="submit"]:active,
  1919. input[type="reset"]:active,
  1920. input[type="button"]:active,
  1921. button:active,
  1922. .button:active {
  1923. background-color: #f56046;
  1924. }
  1925. input[type="submit"].icon,
  1926. input[type="reset"].icon,
  1927. input[type="button"].icon,
  1928. button.icon,
  1929. .button.icon {
  1930. padding-left: 1.35em;
  1931. }
  1932. input[type="submit"].icon:before,
  1933. input[type="reset"].icon:before,
  1934. input[type="button"].icon:before,
  1935. button.icon:before,
  1936. .button.icon:before {
  1937. margin-right: 0.5em;
  1938. }
  1939. input[type="submit"].fit,
  1940. input[type="reset"].fit,
  1941. input[type="button"].fit,
  1942. button.fit,
  1943. .button.fit {
  1944. display: block;
  1945. margin: 0 0 1em 0;
  1946. width: 100%;
  1947. }
  1948. input[type="submit"].small,
  1949. input[type="reset"].small,
  1950. input[type="button"].small,
  1951. button.small,
  1952. .button.small {
  1953. font-size: 0.8em;
  1954. }
  1955. input[type="submit"].big,
  1956. input[type="reset"].big,
  1957. input[type="button"].big,
  1958. button.big,
  1959. .button.big {
  1960. font-size: 1.35em;
  1961. }
  1962. input[type="submit"].alt,
  1963. input[type="reset"].alt,
  1964. input[type="button"].alt,
  1965. button.alt,
  1966. .button.alt {
  1967. background-color: transparent;
  1968. box-shadow: inset 0 0 0 1px #dee1e3;
  1969. color: #727a82 !important;
  1970. }
  1971. input[type="submit"].alt:hover,
  1972. input[type="reset"].alt:hover,
  1973. input[type="button"].alt:hover,
  1974. button.alt:hover,
  1975. .button.alt:hover {
  1976. background-color: rgba(144, 144, 144, 0.075);
  1977. }
  1978. input[type="submit"].alt:active,
  1979. input[type="reset"].alt:active,
  1980. input[type="button"].alt:active,
  1981. button.alt:active,
  1982. .button.alt:active {
  1983. background-color: rgba(144, 144, 144, 0.2);
  1984. }
  1985. input[type="submit"].alt.icon:before,
  1986. input[type="reset"].alt.icon:before,
  1987. input[type="button"].alt.icon:before,
  1988. button.alt.icon:before,
  1989. .button.alt.icon:before {
  1990. color: #bbb;
  1991. }
  1992. input[type="submit"].special,
  1993. input[type="reset"].special,
  1994. input[type="button"].special,
  1995. button.special,
  1996. .button.special {
  1997. background-color: #25a2c3;
  1998. color: #ffffff !important;
  1999. }
  2000. input[type="submit"].special:hover,
  2001. input[type="reset"].special:hover,
  2002. input[type="button"].special:hover,
  2003. button.special:hover,
  2004. .button.special:hover {
  2005. background-color: #2bb3d7;
  2006. }
  2007. input[type="submit"].special:active,
  2008. input[type="reset"].special:active,
  2009. input[type="button"].special:active,
  2010. button.special:active,
  2011. .button.special:active {
  2012. background-color: #2190ae;
  2013. }
  2014. input[type="submit"].disabled, input[type="submit"]:disabled,
  2015. input[type="reset"].disabled,
  2016. input[type="reset"]:disabled,
  2017. input[type="button"].disabled,
  2018. input[type="button"]:disabled,
  2019. button.disabled,
  2020. button:disabled,
  2021. .button.disabled,
  2022. .button:disabled {
  2023. background-color: #767d85 !important;
  2024. box-shadow: inset 0 -0.15em 0 0 rgba(0, 0, 0, 0.15);
  2025. color: #fff !important;
  2026. cursor: default;
  2027. opacity: 0.25;
  2028. }
  2029. @media screen and (max-width: 480px) {
  2030. input[type="submit"],
  2031. input[type="reset"],
  2032. input[type="button"],
  2033. button,
  2034. .button {
  2035. padding: 0;
  2036. }
  2037. }
  2038. /* Flex */
  2039. .flex {
  2040. display: -ms-flexbox;
  2041. -ms-flex-wrap: nowrap;
  2042. -ms-flex-pack: justify;
  2043. -ms-flex-align: stretch;
  2044. display: -moz-flex;
  2045. display: -webkit-flex;
  2046. display: -ms-flex;
  2047. display: flex;
  2048. -moz-flex-wrap: nowrap;
  2049. -webkit-flex-wrap: nowrap;
  2050. -ms-flex-wrap: nowrap;
  2051. flex-wrap: nowrap;
  2052. -moz-justify-content: space-between;
  2053. -webkit-justify-content: space-between;
  2054. -ms-justify-content: space-between;
  2055. justify-content: space-between;
  2056. -moz-align-items: stretch;
  2057. -webkit-align-items: stretch;
  2058. -ms-align-items: stretch;
  2059. align-items: stretch;
  2060. }
  2061. .flex.flex-3 .flex-item {
  2062. -ms-flex: 0 1 auto;
  2063. -ms-flex-preferred-size: 30%;
  2064. -moz-flex-basis: 30%;
  2065. -webkit-flex-basis: 30%;
  2066. -ms-flex-basis: 30%;
  2067. flex-basis: 30%;
  2068. }
  2069. .flex.flex-3 .flex-item.left {
  2070. text-align: right;
  2071. }
  2072. @media screen and (max-width: 980px) {
  2073. .flex {
  2074. -ms-flex-wrap: wrap;
  2075. -moz-flex-wrap: wrap;
  2076. -webkit-flex-wrap: wrap;
  2077. -ms-flex-wrap: wrap;
  2078. flex-wrap: wrap;
  2079. }
  2080. .flex.flex-3 .flex-item {
  2081. -ms-flex-preferred-size: 100%;
  2082. -moz-flex-basis: 100%;
  2083. -webkit-flex-basis: 100%;
  2084. -ms-flex-basis: 100%;
  2085. flex-basis: 100%;
  2086. }
  2087. .flex.flex-3 .flex-item.left {
  2088. text-align: right;
  2089. }
  2090. }
  2091. /* Wrapper */
  2092. .wrapper {
  2093. padding: 6em 0 4em 0;
  2094. }
  2095. .wrapper h1, .wrapper h2, .wrapper h3, .wrapper h4, .wrapper h5 {
  2096. color: #25a2c3;
  2097. }
  2098. .wrapper.style1 {
  2099. background: #f6755e;
  2100. color: #fcdcd6;
  2101. }
  2102. .wrapper.style1 h1, .wrapper.style1 h2, .wrapper.style1 h3, .wrapper.style1 h4, .wrapper.style1 h5 {
  2103. color: #fff;
  2104. }
  2105. .wrapper.style1 cite.author {
  2106. color: #fff;
  2107. }
  2108. @media screen and (max-width: 980px) {
  2109. .wrapper {
  2110. padding: 3em 0 1em 0;
  2111. }
  2112. }
  2113. @media screen and (max-width: 480px) {
  2114. .wrapper {
  2115. padding: 2em 0 0.1em 0;
  2116. }
  2117. }
  2118. /* Header */
  2119. body {
  2120. padding-top: 6em;
  2121. }
  2122. #header {
  2123. -moz-align-items: center;
  2124. -webkit-align-items: center;
  2125. -ms-align-items: center;
  2126. align-items: center;
  2127. background: #fff;
  2128. cursor: default;
  2129. height: 6em;
  2130. left: 0;
  2131. line-height: 6em;
  2132. position: fixed;
  2133. top: 0;
  2134. width: 100%;
  2135. z-index: 10001;
  2136. box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.075);
  2137. text-align: center;
  2138. }
  2139. #header .logo {
  2140. color: #f6755e;
  2141. font-family: "wildy";
  2142. font-size: 4.0em;
  2143. letter-spacing: 2px;
  2144. margin-top: -5px;
  2145. text-decoration: none;
  2146. display: inline-block;
  2147. }
  2148. #header nav {
  2149. position: absolute;
  2150. top: 0;
  2151. height: inherit;
  2152. line-height: inherit;
  2153. }
  2154. #header nav.left {
  2155. left: 2em;
  2156. }
  2157. #header nav.right {
  2158. right: 2em;
  2159. }
  2160. #header nav .button {
  2161. padding: 0 2em;
  2162. height: 3.25em;
  2163. line-height: 3.25em;
  2164. }
  2165. #header nav a {
  2166. text-decoration: none;
  2167. display: inline-block;
  2168. }
  2169. #header nav a[href="#menu"] {
  2170. text-decoration: none;
  2171. -webkit-tap-highlight-color: transparent;
  2172. font-size: 2em;
  2173. color: #dee1e3;
  2174. z-index: 10005;
  2175. }
  2176. #header nav a[href="#menu"]:before {
  2177. content: "";
  2178. -moz-osx-font-smoothing: grayscale;
  2179. -webkit-font-smoothing: antialiased;
  2180. font-family: FontAwesome;
  2181. font-style: normal;
  2182. font-weight: normal;
  2183. text-transform: none !important;
  2184. }
  2185. #header nav a[href="#menu"] span {
  2186. display: none;
  2187. }
  2188. #header nav a[href="#menu"]:before {
  2189. margin: 0 0.5em 0 0;
  2190. }
  2191. @media screen and (max-width: 980px) {
  2192. body {
  2193. padding-top: 44px;
  2194. }
  2195. #header {
  2196. height: 44px;
  2197. line-height: 44px;
  2198. }
  2199. #header .logo {
  2200. font-size: 1.25em;
  2201. text-align: center;
  2202. }
  2203. #header nav a[href="#menu"] {
  2204. font-size: 1.5em;
  2205. }
  2206. #header nav.left {
  2207. left: 1em;
  2208. }
  2209. #header nav.right {
  2210. display: none;
  2211. }
  2212. }
  2213. @media screen and (max-width: 480px) {
  2214. #header {
  2215. min-width: 320px;
  2216. }
  2217. }
  2218. /* Menu */
  2219. #menu {
  2220. -moz-transform: translateX(-20em);
  2221. -webkit-transform: translateX(-20em);
  2222. -ms-transform: translateX(-20em);
  2223. transform: translateX(-20em);
  2224. -moz-transition: -moz-transform 0.5s ease, visibility 0.5s;
  2225. -webkit-transition: -webkit-transform 0.5s ease, visibility 0.5s;
  2226. -ms-transition: -ms-transform 0.5s ease, visibility 0.5s;
  2227. transition: transform 0.5s ease, visibility 0.5s;
  2228. -webkit-overflow-scrolling: touch;
  2229. background: #25a2c3;
  2230. color: #ffffff;
  2231. height: 100%;
  2232. max-width: 80%;
  2233. overflow-y: auto;
  2234. padding: 3em 2em;
  2235. position: fixed;
  2236. left: 0;
  2237. top: 0;
  2238. visibility: hidden;
  2239. width: 20em;
  2240. z-index: 10002;
  2241. }
  2242. #menu > ul {
  2243. margin: 0 0 1em 0;
  2244. }
  2245. #menu > ul.links {
  2246. list-style: none;
  2247. padding: 0;
  2248. }
  2249. #menu > ul.links > li {
  2250. padding: 0;
  2251. }
  2252. #menu > ul.links > li > a:not(.button) {
  2253. border: 0;
  2254. border-top: solid 1px rgba(255, 255, 255, 0.25);
  2255. color: inherit;
  2256. display: block;
  2257. line-height: 3.5em;
  2258. text-decoration: none;
  2259. }
  2260. #menu > ul.links > li > .button {
  2261. display: block;
  2262. margin: 0.5em 0 0 0;
  2263. }
  2264. #menu > ul.links > li:first-child > a:not(.button) {
  2265. border-top: 0 !important;
  2266. }
  2267. #menu > ul.actions {
  2268. display: none;
  2269. }
  2270. #menu .close {
  2271. text-decoration: none;
  2272. -moz-transition: color 0.2s ease-in-out;
  2273. -webkit-transition: color 0.2s ease-in-out;
  2274. -ms-transition: color 0.2s ease-in-out;
  2275. transition: color 0.2s ease-in-out;
  2276. -webkit-tap-highlight-color: transparent;
  2277. border: 0;
  2278. color: #a7d9e7;
  2279. cursor: pointer;
  2280. display: block;
  2281. height: 3.25em;
  2282. line-height: 3.25em;
  2283. padding-right: 1.25em;
  2284. position: absolute;
  2285. right: 0;
  2286. text-align: right;
  2287. top: 0;
  2288. vertical-align: middle;
  2289. width: 7em;
  2290. }
  2291. #menu .close:before {
  2292. content: "";
  2293. -moz-osx-font-smoothing: grayscale;
  2294. -webkit-font-smoothing: antialiased;
  2295. font-family: FontAwesome;
  2296. font-style: normal;
  2297. font-weight: normal;
  2298. text-transform: none !important;
  2299. }
  2300. #menu .close:before {
  2301. font-size: 1.25em;
  2302. }
  2303. #menu .close:hover {
  2304. color: #ffffff;
  2305. }
  2306. @media screen and (max-width: 736px) {
  2307. #menu .close {
  2308. height: 4em;
  2309. line-height: 4em;
  2310. }
  2311. }
  2312. #menu.visible {
  2313. -moz-transform: translateX(0);
  2314. -webkit-transform: translateX(0);
  2315. -ms-transform: translateX(0);
  2316. transform: translateX(0);
  2317. visibility: visible;
  2318. }
  2319. @media screen and (max-width: 980px) {
  2320. #menu ul.actions {
  2321. display: block;
  2322. }
  2323. }
  2324. @media screen and (max-width: 736px) {
  2325. #menu {
  2326. padding: 2.5em 1.75em;
  2327. }
  2328. }
  2329. /* Banner */
  2330. #banner {
  2331. padding: 14em 0 12em 0;
  2332. background-image: url(../../images/banner.jpg);
  2333. background-size: cover;
  2334. background-position: center top;
  2335. background-repeat: no-repeat;
  2336. text-align: center;
  2337. }
  2338. #banner .content {
  2339. -moz-transition: opacity 1s ease-in-out, -moz-transform 0.75s ease-in-out;
  2340. -webkit-transition: opacity 1s ease-in-out, -webkit-transform 0.75s ease-in-out;
  2341. -ms-transition: opacity 1s ease-in-out, -ms-transform 0.75s ease-in-out;
  2342. transition: opacity 1s ease-in-out, transform 0.75s ease-in-out;
  2343. opacity: 1;
  2344. }
  2345. #banner h1 {
  2346. font-size: 3em;
  2347. color: #25a2c3;
  2348. line-height: 1em;
  2349. margin: 0 0 0.5em 0;
  2350. padding: 0;
  2351. }
  2352. #banner p {
  2353. font-size: 1.25em;
  2354. margin-bottom: 1.75em;
  2355. }
  2356. @media screen and (max-width: 1280px) {
  2357. #banner {
  2358. padding: 12em 0 10em 0;
  2359. }
  2360. }
  2361. @media screen and (max-width: 980px) {
  2362. #banner {
  2363. padding: 8em 6em 6em 6em;
  2364. }
  2365. #banner br {
  2366. display: none;
  2367. }
  2368. #banner h1 {
  2369. font-size: 2.25em;
  2370. }
  2371. }
  2372. @media screen and (max-width: 736px) {
  2373. #banner {
  2374. padding: 6em 4em 4em 4em;
  2375. }
  2376. }
  2377. @media screen and (max-width: 480px) {
  2378. #banner {
  2379. padding: 4em 2em 2em 2em;
  2380. }
  2381. #banner h1 {
  2382. font-size: 2em;
  2383. }
  2384. #banner p {
  2385. font-size: 1em;
  2386. }
  2387. #banner .button {
  2388. font-size: .9em;
  2389. }
  2390. }
  2391. body.is-loading #banner .content {
  2392. opacity: 0;
  2393. -moz-transform: translateY(1em);
  2394. -webkit-transform: translateY(1em);
  2395. -ms-transform: translateY(1em);
  2396. transform: translateY(1em);
  2397. }
  2398. /* Main */
  2399. #one .inner {
  2400. margin-bottom: 2em;
  2401. }
  2402. #one .flex-item {
  2403. display: -ms-flexbox;
  2404. -ms-flex-wrap: wrap;
  2405. -ms-flex-pack: justify;
  2406. display: -moz-flex;
  2407. display: -webkit-flex;
  2408. display: -ms-flex;
  2409. display: flex;
  2410. -moz-flex-wrap: wrap;
  2411. -webkit-flex-wrap: wrap;
  2412. -ms-flex-wrap: wrap;
  2413. flex-wrap: wrap;
  2414. -moz-justify-content: space-between;
  2415. -webkit-justify-content: space-between;
  2416. -ms-justify-content: space-between;
  2417. justify-content: space-between;
  2418. -moz-align-items: stretch;
  2419. -webkit-align-items: stretch;
  2420. -ms-align-items: stretch;
  2421. align-items: stretch;
  2422. }
  2423. #one .flex-item.left div:first-child, #one .flex-item.right div:first-child {
  2424. padding-top: 1em;
  2425. }
  2426. #one .flex-item.left div:last-child, #one .flex-item.right div:last-child {
  2427. -moz-align-self: -moz-flex-end;
  2428. -webkit-align-self: -webkit-flex-end;
  2429. -ms-align-self: -ms-flex-end;
  2430. align-self: flex-end;
  2431. }
  2432. #one .flex-item.left div p, #one .flex-item.right div p {
  2433. margin-bottom: 1em;
  2434. }
  2435. @media screen and (max-width: 1280px) {
  2436. #one .flex-item.left div:first-child, #one .flex-item.right div:first-child {
  2437. padding-top: 0;
  2438. }
  2439. #one .flex-item.left div p, #one .flex-item.right div p {
  2440. margin-bottom: 0;
  2441. }
  2442. }
  2443. @media screen and (max-width: 980px) {
  2444. #one .flex-item {
  2445. -moz-flex-direction: column;
  2446. -webkit-flex-direction: column;
  2447. -ms-flex-direction: column;
  2448. flex-direction: column;
  2449. text-align: center;
  2450. }
  2451. #one .flex-item.left br, #one .flex-item.right br {
  2452. display: none;
  2453. }
  2454. #one .flex-item.left div:first-child, #one .flex-item.right div:first-child {
  2455. padding-top: 0;
  2456. }
  2457. #one .flex-item.left div:last-child, #one .flex-item.right div:last-child {
  2458. -moz-align-self: center;
  2459. -webkit-align-self: center;
  2460. -ms-align-self: center;
  2461. align-self: center;
  2462. }
  2463. #one .flex-item.left div p, #one .flex-item.right div p {
  2464. margin-bottom: 2em;
  2465. }
  2466. }
  2467. #one .image.fit {
  2468. margin: 0;
  2469. }
  2470. @media screen and (max-width: 980px) {
  2471. #one .image.fit {
  2472. margin: 0 auto 2em auto;
  2473. max-width: 60%;
  2474. }
  2475. }
  2476. @media screen and (max-width: 480px) {
  2477. #one .image.fit {
  2478. margin: 0 auto 2em auto;
  2479. max-width: 90%;
  2480. }
  2481. }
  2482. @media screen and (max-width: 980px) {
  2483. #two blockquote br {
  2484. display: none;
  2485. }
  2486. }
  2487. @media screen and (max-width: 980px) {
  2488. #three {
  2489. text-align: center;
  2490. }
  2491. }
  2492. /* Footer */
  2493. #footer {
  2494. padding: 6em 0 4em 0;
  2495. background: #25a2c3;
  2496. text-align: center;
  2497. color: #c8e7f0;
  2498. }
  2499. #footer h2 {
  2500. color: #fff;
  2501. }
  2502. #footer .icon {
  2503. color: #f6755e;
  2504. }
  2505. #footer a {
  2506. color: #c8e7f0;
  2507. text-decoration: none;
  2508. }
  2509. #footer ul li {
  2510. padding: 0 2em;
  2511. }
  2512. #footer .copyright {
  2513. display: inline-block;
  2514. color: #a7d9e7;
  2515. font-size: 0.75em;
  2516. margin: 0 0 2em 0;
  2517. padding: 0;
  2518. text-align: center;
  2519. border-top: 1px solid rgba(255, 255, 255, 0.25);
  2520. padding: 2em 10em;
  2521. }
  2522. @media screen and (max-width: 980px) {
  2523. #footer {
  2524. padding: 3em 0 1em 0;
  2525. }
  2526. #footer ul li {
  2527. display: block;
  2528. padding: .25em 0;
  2529. }
  2530. }
  2531. @media screen and (max-width: 736px) {
  2532. #footer .copyright {
  2533. padding: 2em 5em;
  2534. }
  2535. }
  2536. @media screen and (max-width: 480px) {
  2537. #footer {
  2538. padding: 2em 0 0.1em 0;
  2539. }
  2540. #footer ul li {
  2541. font-size: .9em;
  2542. }
  2543. #footer ul li .icon:before {
  2544. margin-left: -1em;
  2545. }
  2546. #footer .copyright {
  2547. padding: 2em 0;
  2548. }
  2549. }