main.css 52 KB

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