main.css 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882
  1. @import url(fontawesome-all.min.css);
  2. @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,600,700,300i,600i,700i|Raleway:600,800");
  3. /*
  4. Paradigm Shift by HTML5 UP
  5. html5up.net | @ajlkn
  6. Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
  7. */
  8. html, body, div, span, applet, object,
  9. iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
  10. pre, a, abbr, acronym, address, big, cite,
  11. code, del, dfn, em, img, ins, kbd, q, s, samp,
  12. small, strike, strong, sub, sup, tt, var, b,
  13. u, i, center, dl, dt, dd, ol, ul, li, fieldset,
  14. form, label, legend, table, caption, tbody,
  15. tfoot, thead, tr, th, td, article, aside,
  16. canvas, details, embed, figure, figcaption,
  17. footer, header, hgroup, menu, nav, output, ruby,
  18. section, summary, time, mark, audio, video {
  19. margin: 0;
  20. padding: 0;
  21. border: 0;
  22. font-size: 100%;
  23. font: inherit;
  24. vertical-align: baseline;}
  25. article, aside, details, figcaption, figure,
  26. footer, header, hgroup, menu, nav, section {
  27. display: block;}
  28. body {
  29. line-height: 1;
  30. }
  31. ol, ul {
  32. list-style: none;
  33. }
  34. blockquote, q {
  35. quotes: none;
  36. }
  37. blockquote:before, blockquote:after, q:before, q:after {
  38. content: '';
  39. content: none;
  40. }
  41. table {
  42. border-collapse: collapse;
  43. border-spacing: 0;
  44. }
  45. body {
  46. -webkit-text-size-adjust: none;
  47. }
  48. mark {
  49. background-color: transparent;
  50. color: inherit;
  51. }
  52. input::-moz-focus-inner {
  53. border: 0;
  54. padding: 0;
  55. }
  56. input, select, textarea {
  57. -moz-appearance: none;
  58. -webkit-appearance: none;
  59. -ms-appearance: none;
  60. appearance: none;
  61. }
  62. /* Basic */
  63. @-ms-viewport {
  64. width: device-width;
  65. }
  66. body {
  67. -ms-overflow-style: scrollbar;
  68. }
  69. @media screen and (max-width: 480px) {
  70. html, body {
  71. min-width: 320px;
  72. }
  73. }
  74. html {
  75. box-sizing: border-box;
  76. }
  77. *, *:before, *:after {
  78. box-sizing: inherit;
  79. }
  80. html {
  81. overflow-x: hidden;
  82. }
  83. body {
  84. background: #ffffff;
  85. overflow-x: hidden;
  86. }
  87. body.is-preload *, body.is-preload *:before, body.is-preload *:after {
  88. -moz-animation: none !important;
  89. -webkit-animation: none !important;
  90. -ms-animation: none !important;
  91. animation: none !important;
  92. -moz-transition: none !important;
  93. -webkit-transition: none !important;
  94. -ms-transition: none !important;
  95. transition: none !important;
  96. }
  97. /* Typography */
  98. html {
  99. font-size: 18pt;
  100. }
  101. @media screen and (max-width: 1920px) {
  102. html {
  103. font-size: 13pt;
  104. }
  105. }
  106. @media screen and (max-width: 1152px) {
  107. html {
  108. font-size: 14pt;
  109. }
  110. }
  111. @media screen and (max-width: 736px) {
  112. html {
  113. font-size: 12pt;
  114. }
  115. }
  116. @media screen and (max-width: 480px) {
  117. html {
  118. font-size: 11pt;
  119. }
  120. }
  121. body {
  122. background-color: #ffffff;
  123. color: #000000;
  124. }
  125. body, input, select, textarea {
  126. color: #000000;
  127. font-family: "Source Sans Pro", Helvetica, sans-serif;
  128. font-size: 1rem;
  129. font-weight: 300;
  130. letter-spacing: 0.0375em;
  131. line-height: 2;
  132. }
  133. a {
  134. -moz-transition: border-bottom-color 0.25s ease-in-out;
  135. -webkit-transition: border-bottom-color 0.25s ease-in-out;
  136. -ms-transition: border-bottom-color 0.25s ease-in-out;
  137. transition: border-bottom-color 0.25s ease-in-out;
  138. text-decoration: none;
  139. color: #000000;
  140. border-bottom: dotted 1px;
  141. }
  142. a:hover {
  143. text-decoration: none;
  144. border-bottom-color: transparent;
  145. }
  146. strong, b {
  147. font-weight: 600;
  148. color: #000000;
  149. }
  150. em, i {
  151. font-style: italic;
  152. }
  153. p {
  154. margin: 0 0 2rem 0;
  155. }
  156. h1, h2, h3, h4, h5, h6 {
  157. color: #000000;
  158. font-family: "Raleway", Helvetica, sans-serif;
  159. font-weight: 600;
  160. letter-spacing: 0.175em;
  161. line-height: 1.75;
  162. margin: 0 0 1.5rem 0;
  163. text-transform: uppercase;
  164. }
  165. h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  166. color: inherit;
  167. text-decoration: none;
  168. }
  169. h1 {
  170. font-family: "Source Sans Pro", Helvetica, sans-serif;
  171. font-size: 5rem;
  172. font-weight: 700;
  173. letter-spacing: -0.05em;
  174. line-height: 1.1;
  175. margin: 0 0 1.5rem 0;
  176. text-transform: none;
  177. }
  178. h2 {
  179. font-size: 1.25rem;
  180. font-weight: 800;
  181. margin: 0 0 2rem 0;
  182. }
  183. h3 {
  184. font-size: 0.875rem;
  185. }
  186. h4 {
  187. font-size: 0.875rem;
  188. }
  189. h5 {
  190. font-size: 0.75rem;
  191. }
  192. h6 {
  193. font-size: 0.625rem;
  194. }
  195. @media screen and (max-width: 736px) {
  196. h1 {
  197. font-size: 4.5rem;
  198. line-height: 1.1;
  199. }
  200. h2 {
  201. font-size: 1.25rem;
  202. line-height: 1.7;
  203. }
  204. h3 {
  205. font-size: 0.9rem;
  206. }
  207. h4 {
  208. font-size: 0.75rem;
  209. }
  210. h5 {
  211. font-size: 0.675rem;
  212. }
  213. }
  214. @media screen and (max-width: 360px) {
  215. h1 {
  216. font-size: 3.75rem;
  217. }
  218. h2 {
  219. font-size: 1.125rem;
  220. }
  221. h3 {
  222. font-size: 0.8rem;
  223. }
  224. h4 {
  225. font-size: 0.675rem;
  226. }
  227. h5 {
  228. font-size: 0.675rem;
  229. }
  230. }
  231. sub {
  232. font-size: 0.8rem;
  233. position: relative;
  234. top: 0.5rem;
  235. }
  236. sup {
  237. font-size: 0.8rem;
  238. position: relative;
  239. top: -0.5rem;
  240. }
  241. blockquote {
  242. border-left: solid 0.5rem rgba(144, 144, 144, 0.25);
  243. font-style: italic;
  244. margin: 0 0 2rem 0;
  245. padding: 1rem 0 1rem 2rem;
  246. }
  247. code {
  248. background: rgba(144, 144, 144, 0.1);
  249. border-radius: 0.325rem;
  250. font-family: "Courier New", monospace;
  251. font-size: 0.9rem;
  252. margin: 0 0.25rem;
  253. padding: 0.25rem 0.65rem;
  254. }
  255. pre {
  256. -webkit-overflow-scrolling: touch;
  257. font-family: "Courier New", monospace;
  258. font-size: 0.9rem;
  259. margin: 0 0 2rem 0;
  260. width: 100%;
  261. }
  262. pre code {
  263. display: block;
  264. line-height: 1.75;
  265. padding: 1rem 1.5rem;
  266. overflow-x: auto;
  267. }
  268. hr {
  269. border: 0;
  270. border-bottom: solid 2px rgba(144, 144, 144, 0.25);
  271. margin: 3rem 0;
  272. }
  273. hr.major {
  274. margin: 5rem 0;
  275. }
  276. @media screen and (max-width: 736px) {
  277. hr.major {
  278. margin: 3rem 0;
  279. }
  280. }
  281. /* Row */
  282. .row {
  283. display: flex;
  284. flex-wrap: wrap;
  285. box-sizing: border-box;
  286. align-items: stretch;
  287. }
  288. .row > * {
  289. box-sizing: border-box;
  290. }
  291. .row.gtr-uniform > * > :last-child {
  292. margin-bottom: 0;
  293. }
  294. .row.aln-left {
  295. justify-content: flex-start;
  296. }
  297. .row.aln-center {
  298. justify-content: center;
  299. }
  300. .row.aln-right {
  301. justify-content: flex-end;
  302. }
  303. .row.aln-top {
  304. align-items: flex-start;
  305. }
  306. .row.aln-middle {
  307. align-items: center;
  308. }
  309. .row.aln-bottom {
  310. align-items: flex-end;
  311. }
  312. .row > .imp {
  313. order: -1;
  314. }
  315. .row > .col-1 {
  316. width: 8.33333%;
  317. }
  318. .row > .off-1 {
  319. margin-left: 8.33333%;
  320. }
  321. .row > .col-2 {
  322. width: 16.66667%;
  323. }
  324. .row > .off-2 {
  325. margin-left: 16.66667%;
  326. }
  327. .row > .col-3 {
  328. width: 25%;
  329. }
  330. .row > .off-3 {
  331. margin-left: 25%;
  332. }
  333. .row > .col-4 {
  334. width: 33.33333%;
  335. }
  336. .row > .off-4 {
  337. margin-left: 33.33333%;
  338. }
  339. .row > .col-5 {
  340. width: 41.66667%;
  341. }
  342. .row > .off-5 {
  343. margin-left: 41.66667%;
  344. }
  345. .row > .col-6 {
  346. width: 50%;
  347. }
  348. .row > .off-6 {
  349. margin-left: 50%;
  350. }
  351. .row > .col-7 {
  352. width: 58.33333%;
  353. }
  354. .row > .off-7 {
  355. margin-left: 58.33333%;
  356. }
  357. .row > .col-8 {
  358. width: 66.66667%;
  359. }
  360. .row > .off-8 {
  361. margin-left: 66.66667%;
  362. }
  363. .row > .col-9 {
  364. width: 75%;
  365. }
  366. .row > .off-9 {
  367. margin-left: 75%;
  368. }
  369. .row > .col-10 {
  370. width: 83.33333%;
  371. }
  372. .row > .off-10 {
  373. margin-left: 83.33333%;
  374. }
  375. .row > .col-11 {
  376. width: 91.66667%;
  377. }
  378. .row > .off-11 {
  379. margin-left: 91.66667%;
  380. }
  381. .row > .col-12 {
  382. width: 100%;
  383. }
  384. .row > .off-12 {
  385. margin-left: 100%;
  386. }
  387. .row.gtr-0 {
  388. margin-top: 0;
  389. margin-left: 0rem;
  390. }
  391. .row.gtr-0 > * {
  392. padding: 0 0 0 0rem;
  393. }
  394. .row.gtr-0.gtr-uniform {
  395. margin-top: 0rem;
  396. }
  397. .row.gtr-0.gtr-uniform > * {
  398. padding-top: 0rem;
  399. }
  400. .row.gtr-25 {
  401. margin-top: 0;
  402. margin-left: -0.5rem;
  403. }
  404. .row.gtr-25 > * {
  405. padding: 0 0 0 0.5rem;
  406. }
  407. .row.gtr-25.gtr-uniform {
  408. margin-top: -0.5rem;
  409. }
  410. .row.gtr-25.gtr-uniform > * {
  411. padding-top: 0.5rem;
  412. }
  413. .row.gtr-50 {
  414. margin-top: 0;
  415. margin-left: -1rem;
  416. }
  417. .row.gtr-50 > * {
  418. padding: 0 0 0 1rem;
  419. }
  420. .row.gtr-50.gtr-uniform {
  421. margin-top: -1rem;
  422. }
  423. .row.gtr-50.gtr-uniform > * {
  424. padding-top: 1rem;
  425. }
  426. .row {
  427. margin-top: 0;
  428. margin-left: -2rem;
  429. }
  430. .row > * {
  431. padding: 0 0 0 2rem;
  432. }
  433. .row.gtr-uniform {
  434. margin-top: -2rem;
  435. }
  436. .row.gtr-uniform > * {
  437. padding-top: 2rem;
  438. }
  439. .row.gtr-150 {
  440. margin-top: 0;
  441. margin-left: -3rem;
  442. }
  443. .row.gtr-150 > * {
  444. padding: 0 0 0 3rem;
  445. }
  446. .row.gtr-150.gtr-uniform {
  447. margin-top: -3rem;
  448. }
  449. .row.gtr-150.gtr-uniform > * {
  450. padding-top: 3rem;
  451. }
  452. .row.gtr-200 {
  453. margin-top: 0;
  454. margin-left: -4rem;
  455. }
  456. .row.gtr-200 > * {
  457. padding: 0 0 0 4rem;
  458. }
  459. .row.gtr-200.gtr-uniform {
  460. margin-top: -4rem;
  461. }
  462. .row.gtr-200.gtr-uniform > * {
  463. padding-top: 4rem;
  464. }
  465. @media screen and (max-width: 1920px) {
  466. .row {
  467. display: flex;
  468. flex-wrap: wrap;
  469. box-sizing: border-box;
  470. align-items: stretch;
  471. }
  472. .row > * {
  473. box-sizing: border-box;
  474. }
  475. .row.gtr-uniform > * > :last-child {
  476. margin-bottom: 0;
  477. }
  478. .row.aln-left {
  479. justify-content: flex-start;
  480. }
  481. .row.aln-center {
  482. justify-content: center;
  483. }
  484. .row.aln-right {
  485. justify-content: flex-end;
  486. }
  487. .row.aln-top {
  488. align-items: flex-start;
  489. }
  490. .row.aln-middle {
  491. align-items: center;
  492. }
  493. .row.aln-bottom {
  494. align-items: flex-end;
  495. }
  496. .row > .imp-xlarge {
  497. order: -1;
  498. }
  499. .row > .col-1-xlarge {
  500. width: 8.33333%;
  501. }
  502. .row > .off-1-xlarge {
  503. margin-left: 8.33333%;
  504. }
  505. .row > .col-2-xlarge {
  506. width: 16.66667%;
  507. }
  508. .row > .off-2-xlarge {
  509. margin-left: 16.66667%;
  510. }
  511. .row > .col-3-xlarge {
  512. width: 25%;
  513. }
  514. .row > .off-3-xlarge {
  515. margin-left: 25%;
  516. }
  517. .row > .col-4-xlarge {
  518. width: 33.33333%;
  519. }
  520. .row > .off-4-xlarge {
  521. margin-left: 33.33333%;
  522. }
  523. .row > .col-5-xlarge {
  524. width: 41.66667%;
  525. }
  526. .row > .off-5-xlarge {
  527. margin-left: 41.66667%;
  528. }
  529. .row > .col-6-xlarge {
  530. width: 50%;
  531. }
  532. .row > .off-6-xlarge {
  533. margin-left: 50%;
  534. }
  535. .row > .col-7-xlarge {
  536. width: 58.33333%;
  537. }
  538. .row > .off-7-xlarge {
  539. margin-left: 58.33333%;
  540. }
  541. .row > .col-8-xlarge {
  542. width: 66.66667%;
  543. }
  544. .row > .off-8-xlarge {
  545. margin-left: 66.66667%;
  546. }
  547. .row > .col-9-xlarge {
  548. width: 75%;
  549. }
  550. .row > .off-9-xlarge {
  551. margin-left: 75%;
  552. }
  553. .row > .col-10-xlarge {
  554. width: 83.33333%;
  555. }
  556. .row > .off-10-xlarge {
  557. margin-left: 83.33333%;
  558. }
  559. .row > .col-11-xlarge {
  560. width: 91.66667%;
  561. }
  562. .row > .off-11-xlarge {
  563. margin-left: 91.66667%;
  564. }
  565. .row > .col-12-xlarge {
  566. width: 100%;
  567. }
  568. .row > .off-12-xlarge {
  569. margin-left: 100%;
  570. }
  571. .row.gtr-0 {
  572. margin-top: 0;
  573. margin-left: 0rem;
  574. }
  575. .row.gtr-0 > * {
  576. padding: 0 0 0 0rem;
  577. }
  578. .row.gtr-0.gtr-uniform {
  579. margin-top: 0rem;
  580. }
  581. .row.gtr-0.gtr-uniform > * {
  582. padding-top: 0rem;
  583. }
  584. .row.gtr-25 {
  585. margin-top: 0;
  586. margin-left: -0.5rem;
  587. }
  588. .row.gtr-25 > * {
  589. padding: 0 0 0 0.5rem;
  590. }
  591. .row.gtr-25.gtr-uniform {
  592. margin-top: -0.5rem;
  593. }
  594. .row.gtr-25.gtr-uniform > * {
  595. padding-top: 0.5rem;
  596. }
  597. .row.gtr-50 {
  598. margin-top: 0;
  599. margin-left: -1rem;
  600. }
  601. .row.gtr-50 > * {
  602. padding: 0 0 0 1rem;
  603. }
  604. .row.gtr-50.gtr-uniform {
  605. margin-top: -1rem;
  606. }
  607. .row.gtr-50.gtr-uniform > * {
  608. padding-top: 1rem;
  609. }
  610. .row {
  611. margin-top: 0;
  612. margin-left: -2rem;
  613. }
  614. .row > * {
  615. padding: 0 0 0 2rem;
  616. }
  617. .row.gtr-uniform {
  618. margin-top: -2rem;
  619. }
  620. .row.gtr-uniform > * {
  621. padding-top: 2rem;
  622. }
  623. .row.gtr-150 {
  624. margin-top: 0;
  625. margin-left: -3rem;
  626. }
  627. .row.gtr-150 > * {
  628. padding: 0 0 0 3rem;
  629. }
  630. .row.gtr-150.gtr-uniform {
  631. margin-top: -3rem;
  632. }
  633. .row.gtr-150.gtr-uniform > * {
  634. padding-top: 3rem;
  635. }
  636. .row.gtr-200 {
  637. margin-top: 0;
  638. margin-left: -4rem;
  639. }
  640. .row.gtr-200 > * {
  641. padding: 0 0 0 4rem;
  642. }
  643. .row.gtr-200.gtr-uniform {
  644. margin-top: -4rem;
  645. }
  646. .row.gtr-200.gtr-uniform > * {
  647. padding-top: 4rem;
  648. }
  649. }
  650. @media screen and (max-width: 1280px) {
  651. .row {
  652. display: flex;
  653. flex-wrap: wrap;
  654. box-sizing: border-box;
  655. align-items: stretch;
  656. }
  657. .row > * {
  658. box-sizing: border-box;
  659. }
  660. .row.gtr-uniform > * > :last-child {
  661. margin-bottom: 0;
  662. }
  663. .row.aln-left {
  664. justify-content: flex-start;
  665. }
  666. .row.aln-center {
  667. justify-content: center;
  668. }
  669. .row.aln-right {
  670. justify-content: flex-end;
  671. }
  672. .row.aln-top {
  673. align-items: flex-start;
  674. }
  675. .row.aln-middle {
  676. align-items: center;
  677. }
  678. .row.aln-bottom {
  679. align-items: flex-end;
  680. }
  681. .row > .imp-large {
  682. order: -1;
  683. }
  684. .row > .col-1-large {
  685. width: 8.33333%;
  686. }
  687. .row > .off-1-large {
  688. margin-left: 8.33333%;
  689. }
  690. .row > .col-2-large {
  691. width: 16.66667%;
  692. }
  693. .row > .off-2-large {
  694. margin-left: 16.66667%;
  695. }
  696. .row > .col-3-large {
  697. width: 25%;
  698. }
  699. .row > .off-3-large {
  700. margin-left: 25%;
  701. }
  702. .row > .col-4-large {
  703. width: 33.33333%;
  704. }
  705. .row > .off-4-large {
  706. margin-left: 33.33333%;
  707. }
  708. .row > .col-5-large {
  709. width: 41.66667%;
  710. }
  711. .row > .off-5-large {
  712. margin-left: 41.66667%;
  713. }
  714. .row > .col-6-large {
  715. width: 50%;
  716. }
  717. .row > .off-6-large {
  718. margin-left: 50%;
  719. }
  720. .row > .col-7-large {
  721. width: 58.33333%;
  722. }
  723. .row > .off-7-large {
  724. margin-left: 58.33333%;
  725. }
  726. .row > .col-8-large {
  727. width: 66.66667%;
  728. }
  729. .row > .off-8-large {
  730. margin-left: 66.66667%;
  731. }
  732. .row > .col-9-large {
  733. width: 75%;
  734. }
  735. .row > .off-9-large {
  736. margin-left: 75%;
  737. }
  738. .row > .col-10-large {
  739. width: 83.33333%;
  740. }
  741. .row > .off-10-large {
  742. margin-left: 83.33333%;
  743. }
  744. .row > .col-11-large {
  745. width: 91.66667%;
  746. }
  747. .row > .off-11-large {
  748. margin-left: 91.66667%;
  749. }
  750. .row > .col-12-large {
  751. width: 100%;
  752. }
  753. .row > .off-12-large {
  754. margin-left: 100%;
  755. }
  756. .row.gtr-0 {
  757. margin-top: 0;
  758. margin-left: 0rem;
  759. }
  760. .row.gtr-0 > * {
  761. padding: 0 0 0 0rem;
  762. }
  763. .row.gtr-0.gtr-uniform {
  764. margin-top: 0rem;
  765. }
  766. .row.gtr-0.gtr-uniform > * {
  767. padding-top: 0rem;
  768. }
  769. .row.gtr-25 {
  770. margin-top: 0;
  771. margin-left: -0.375rem;
  772. }
  773. .row.gtr-25 > * {
  774. padding: 0 0 0 0.375rem;
  775. }
  776. .row.gtr-25.gtr-uniform {
  777. margin-top: -0.375rem;
  778. }
  779. .row.gtr-25.gtr-uniform > * {
  780. padding-top: 0.375rem;
  781. }
  782. .row.gtr-50 {
  783. margin-top: 0;
  784. margin-left: -0.75rem;
  785. }
  786. .row.gtr-50 > * {
  787. padding: 0 0 0 0.75rem;
  788. }
  789. .row.gtr-50.gtr-uniform {
  790. margin-top: -0.75rem;
  791. }
  792. .row.gtr-50.gtr-uniform > * {
  793. padding-top: 0.75rem;
  794. }
  795. .row {
  796. margin-top: 0;
  797. margin-left: -1.5rem;
  798. }
  799. .row > * {
  800. padding: 0 0 0 1.5rem;
  801. }
  802. .row.gtr-uniform {
  803. margin-top: -1.5rem;
  804. }
  805. .row.gtr-uniform > * {
  806. padding-top: 1.5rem;
  807. }
  808. .row.gtr-150 {
  809. margin-top: 0;
  810. margin-left: -2.25rem;
  811. }
  812. .row.gtr-150 > * {
  813. padding: 0 0 0 2.25rem;
  814. }
  815. .row.gtr-150.gtr-uniform {
  816. margin-top: -2.25rem;
  817. }
  818. .row.gtr-150.gtr-uniform > * {
  819. padding-top: 2.25rem;
  820. }
  821. .row.gtr-200 {
  822. margin-top: 0;
  823. margin-left: -3rem;
  824. }
  825. .row.gtr-200 > * {
  826. padding: 0 0 0 3rem;
  827. }
  828. .row.gtr-200.gtr-uniform {
  829. margin-top: -3rem;
  830. }
  831. .row.gtr-200.gtr-uniform > * {
  832. padding-top: 3rem;
  833. }
  834. }
  835. @media screen and (max-width: 1152px) {
  836. .row {
  837. display: flex;
  838. flex-wrap: wrap;
  839. box-sizing: border-box;
  840. align-items: stretch;
  841. }
  842. .row > * {
  843. box-sizing: border-box;
  844. }
  845. .row.gtr-uniform > * > :last-child {
  846. margin-bottom: 0;
  847. }
  848. .row.aln-left {
  849. justify-content: flex-start;
  850. }
  851. .row.aln-center {
  852. justify-content: center;
  853. }
  854. .row.aln-right {
  855. justify-content: flex-end;
  856. }
  857. .row.aln-top {
  858. align-items: flex-start;
  859. }
  860. .row.aln-middle {
  861. align-items: center;
  862. }
  863. .row.aln-bottom {
  864. align-items: flex-end;
  865. }
  866. .row > .imp-medium {
  867. order: -1;
  868. }
  869. .row > .col-1-medium {
  870. width: 8.33333%;
  871. }
  872. .row > .off-1-medium {
  873. margin-left: 8.33333%;
  874. }
  875. .row > .col-2-medium {
  876. width: 16.66667%;
  877. }
  878. .row > .off-2-medium {
  879. margin-left: 16.66667%;
  880. }
  881. .row > .col-3-medium {
  882. width: 25%;
  883. }
  884. .row > .off-3-medium {
  885. margin-left: 25%;
  886. }
  887. .row > .col-4-medium {
  888. width: 33.33333%;
  889. }
  890. .row > .off-4-medium {
  891. margin-left: 33.33333%;
  892. }
  893. .row > .col-5-medium {
  894. width: 41.66667%;
  895. }
  896. .row > .off-5-medium {
  897. margin-left: 41.66667%;
  898. }
  899. .row > .col-6-medium {
  900. width: 50%;
  901. }
  902. .row > .off-6-medium {
  903. margin-left: 50%;
  904. }
  905. .row > .col-7-medium {
  906. width: 58.33333%;
  907. }
  908. .row > .off-7-medium {
  909. margin-left: 58.33333%;
  910. }
  911. .row > .col-8-medium {
  912. width: 66.66667%;
  913. }
  914. .row > .off-8-medium {
  915. margin-left: 66.66667%;
  916. }
  917. .row > .col-9-medium {
  918. width: 75%;
  919. }
  920. .row > .off-9-medium {
  921. margin-left: 75%;
  922. }
  923. .row > .col-10-medium {
  924. width: 83.33333%;
  925. }
  926. .row > .off-10-medium {
  927. margin-left: 83.33333%;
  928. }
  929. .row > .col-11-medium {
  930. width: 91.66667%;
  931. }
  932. .row > .off-11-medium {
  933. margin-left: 91.66667%;
  934. }
  935. .row > .col-12-medium {
  936. width: 100%;
  937. }
  938. .row > .off-12-medium {
  939. margin-left: 100%;
  940. }
  941. .row.gtr-0 {
  942. margin-top: 0;
  943. margin-left: 0rem;
  944. }
  945. .row.gtr-0 > * {
  946. padding: 0 0 0 0rem;
  947. }
  948. .row.gtr-0.gtr-uniform {
  949. margin-top: 0rem;
  950. }
  951. .row.gtr-0.gtr-uniform > * {
  952. padding-top: 0rem;
  953. }
  954. .row.gtr-25 {
  955. margin-top: 0;
  956. margin-left: -0.375rem;
  957. }
  958. .row.gtr-25 > * {
  959. padding: 0 0 0 0.375rem;
  960. }
  961. .row.gtr-25.gtr-uniform {
  962. margin-top: -0.375rem;
  963. }
  964. .row.gtr-25.gtr-uniform > * {
  965. padding-top: 0.375rem;
  966. }
  967. .row.gtr-50 {
  968. margin-top: 0;
  969. margin-left: -0.75rem;
  970. }
  971. .row.gtr-50 > * {
  972. padding: 0 0 0 0.75rem;
  973. }
  974. .row.gtr-50.gtr-uniform {
  975. margin-top: -0.75rem;
  976. }
  977. .row.gtr-50.gtr-uniform > * {
  978. padding-top: 0.75rem;
  979. }
  980. .row {
  981. margin-top: 0;
  982. margin-left: -1.5rem;
  983. }
  984. .row > * {
  985. padding: 0 0 0 1.5rem;
  986. }
  987. .row.gtr-uniform {
  988. margin-top: -1.5rem;
  989. }
  990. .row.gtr-uniform > * {
  991. padding-top: 1.5rem;
  992. }
  993. .row.gtr-150 {
  994. margin-top: 0;
  995. margin-left: -2.25rem;
  996. }
  997. .row.gtr-150 > * {
  998. padding: 0 0 0 2.25rem;
  999. }
  1000. .row.gtr-150.gtr-uniform {
  1001. margin-top: -2.25rem;
  1002. }
  1003. .row.gtr-150.gtr-uniform > * {
  1004. padding-top: 2.25rem;
  1005. }
  1006. .row.gtr-200 {
  1007. margin-top: 0;
  1008. margin-left: -3rem;
  1009. }
  1010. .row.gtr-200 > * {
  1011. padding: 0 0 0 3rem;
  1012. }
  1013. .row.gtr-200.gtr-uniform {
  1014. margin-top: -3rem;
  1015. }
  1016. .row.gtr-200.gtr-uniform > * {
  1017. padding-top: 3rem;
  1018. }
  1019. }
  1020. @media screen and (max-width: 736px) {
  1021. .row {
  1022. display: flex;
  1023. flex-wrap: wrap;
  1024. box-sizing: border-box;
  1025. align-items: stretch;
  1026. }
  1027. .row > * {
  1028. box-sizing: border-box;
  1029. }
  1030. .row.gtr-uniform > * > :last-child {
  1031. margin-bottom: 0;
  1032. }
  1033. .row.aln-left {
  1034. justify-content: flex-start;
  1035. }
  1036. .row.aln-center {
  1037. justify-content: center;
  1038. }
  1039. .row.aln-right {
  1040. justify-content: flex-end;
  1041. }
  1042. .row.aln-top {
  1043. align-items: flex-start;
  1044. }
  1045. .row.aln-middle {
  1046. align-items: center;
  1047. }
  1048. .row.aln-bottom {
  1049. align-items: flex-end;
  1050. }
  1051. .row > .imp-small {
  1052. order: -1;
  1053. }
  1054. .row > .col-1-small {
  1055. width: 8.33333%;
  1056. }
  1057. .row > .off-1-small {
  1058. margin-left: 8.33333%;
  1059. }
  1060. .row > .col-2-small {
  1061. width: 16.66667%;
  1062. }
  1063. .row > .off-2-small {
  1064. margin-left: 16.66667%;
  1065. }
  1066. .row > .col-3-small {
  1067. width: 25%;
  1068. }
  1069. .row > .off-3-small {
  1070. margin-left: 25%;
  1071. }
  1072. .row > .col-4-small {
  1073. width: 33.33333%;
  1074. }
  1075. .row > .off-4-small {
  1076. margin-left: 33.33333%;
  1077. }
  1078. .row > .col-5-small {
  1079. width: 41.66667%;
  1080. }
  1081. .row > .off-5-small {
  1082. margin-left: 41.66667%;
  1083. }
  1084. .row > .col-6-small {
  1085. width: 50%;
  1086. }
  1087. .row > .off-6-small {
  1088. margin-left: 50%;
  1089. }
  1090. .row > .col-7-small {
  1091. width: 58.33333%;
  1092. }
  1093. .row > .off-7-small {
  1094. margin-left: 58.33333%;
  1095. }
  1096. .row > .col-8-small {
  1097. width: 66.66667%;
  1098. }
  1099. .row > .off-8-small {
  1100. margin-left: 66.66667%;
  1101. }
  1102. .row > .col-9-small {
  1103. width: 75%;
  1104. }
  1105. .row > .off-9-small {
  1106. margin-left: 75%;
  1107. }
  1108. .row > .col-10-small {
  1109. width: 83.33333%;
  1110. }
  1111. .row > .off-10-small {
  1112. margin-left: 83.33333%;
  1113. }
  1114. .row > .col-11-small {
  1115. width: 91.66667%;
  1116. }
  1117. .row > .off-11-small {
  1118. margin-left: 91.66667%;
  1119. }
  1120. .row > .col-12-small {
  1121. width: 100%;
  1122. }
  1123. .row > .off-12-small {
  1124. margin-left: 100%;
  1125. }
  1126. .row.gtr-0 {
  1127. margin-top: 0;
  1128. margin-left: 0rem;
  1129. }
  1130. .row.gtr-0 > * {
  1131. padding: 0 0 0 0rem;
  1132. }
  1133. .row.gtr-0.gtr-uniform {
  1134. margin-top: 0rem;
  1135. }
  1136. .row.gtr-0.gtr-uniform > * {
  1137. padding-top: 0rem;
  1138. }
  1139. .row.gtr-25 {
  1140. margin-top: 0;
  1141. margin-left: -0.3125rem;
  1142. }
  1143. .row.gtr-25 > * {
  1144. padding: 0 0 0 0.3125rem;
  1145. }
  1146. .row.gtr-25.gtr-uniform {
  1147. margin-top: -0.3125rem;
  1148. }
  1149. .row.gtr-25.gtr-uniform > * {
  1150. padding-top: 0.3125rem;
  1151. }
  1152. .row.gtr-50 {
  1153. margin-top: 0;
  1154. margin-left: -0.625rem;
  1155. }
  1156. .row.gtr-50 > * {
  1157. padding: 0 0 0 0.625rem;
  1158. }
  1159. .row.gtr-50.gtr-uniform {
  1160. margin-top: -0.625rem;
  1161. }
  1162. .row.gtr-50.gtr-uniform > * {
  1163. padding-top: 0.625rem;
  1164. }
  1165. .row {
  1166. margin-top: 0;
  1167. margin-left: -1.25rem;
  1168. }
  1169. .row > * {
  1170. padding: 0 0 0 1.25rem;
  1171. }
  1172. .row.gtr-uniform {
  1173. margin-top: -1.25rem;
  1174. }
  1175. .row.gtr-uniform > * {
  1176. padding-top: 1.25rem;
  1177. }
  1178. .row.gtr-150 {
  1179. margin-top: 0;
  1180. margin-left: -1.875rem;
  1181. }
  1182. .row.gtr-150 > * {
  1183. padding: 0 0 0 1.875rem;
  1184. }
  1185. .row.gtr-150.gtr-uniform {
  1186. margin-top: -1.875rem;
  1187. }
  1188. .row.gtr-150.gtr-uniform > * {
  1189. padding-top: 1.875rem;
  1190. }
  1191. .row.gtr-200 {
  1192. margin-top: 0;
  1193. margin-left: -2.5rem;
  1194. }
  1195. .row.gtr-200 > * {
  1196. padding: 0 0 0 2.5rem;
  1197. }
  1198. .row.gtr-200.gtr-uniform {
  1199. margin-top: -2.5rem;
  1200. }
  1201. .row.gtr-200.gtr-uniform > * {
  1202. padding-top: 2.5rem;
  1203. }
  1204. }
  1205. @media screen and (max-width: 480px) {
  1206. .row {
  1207. display: flex;
  1208. flex-wrap: wrap;
  1209. box-sizing: border-box;
  1210. align-items: stretch;
  1211. }
  1212. .row > * {
  1213. box-sizing: border-box;
  1214. }
  1215. .row.gtr-uniform > * > :last-child {
  1216. margin-bottom: 0;
  1217. }
  1218. .row.aln-left {
  1219. justify-content: flex-start;
  1220. }
  1221. .row.aln-center {
  1222. justify-content: center;
  1223. }
  1224. .row.aln-right {
  1225. justify-content: flex-end;
  1226. }
  1227. .row.aln-top {
  1228. align-items: flex-start;
  1229. }
  1230. .row.aln-middle {
  1231. align-items: center;
  1232. }
  1233. .row.aln-bottom {
  1234. align-items: flex-end;
  1235. }
  1236. .row > .imp-xsmall {
  1237. order: -1;
  1238. }
  1239. .row > .col-1-xsmall {
  1240. width: 8.33333%;
  1241. }
  1242. .row > .off-1-xsmall {
  1243. margin-left: 8.33333%;
  1244. }
  1245. .row > .col-2-xsmall {
  1246. width: 16.66667%;
  1247. }
  1248. .row > .off-2-xsmall {
  1249. margin-left: 16.66667%;
  1250. }
  1251. .row > .col-3-xsmall {
  1252. width: 25%;
  1253. }
  1254. .row > .off-3-xsmall {
  1255. margin-left: 25%;
  1256. }
  1257. .row > .col-4-xsmall {
  1258. width: 33.33333%;
  1259. }
  1260. .row > .off-4-xsmall {
  1261. margin-left: 33.33333%;
  1262. }
  1263. .row > .col-5-xsmall {
  1264. width: 41.66667%;
  1265. }
  1266. .row > .off-5-xsmall {
  1267. margin-left: 41.66667%;
  1268. }
  1269. .row > .col-6-xsmall {
  1270. width: 50%;
  1271. }
  1272. .row > .off-6-xsmall {
  1273. margin-left: 50%;
  1274. }
  1275. .row > .col-7-xsmall {
  1276. width: 58.33333%;
  1277. }
  1278. .row > .off-7-xsmall {
  1279. margin-left: 58.33333%;
  1280. }
  1281. .row > .col-8-xsmall {
  1282. width: 66.66667%;
  1283. }
  1284. .row > .off-8-xsmall {
  1285. margin-left: 66.66667%;
  1286. }
  1287. .row > .col-9-xsmall {
  1288. width: 75%;
  1289. }
  1290. .row > .off-9-xsmall {
  1291. margin-left: 75%;
  1292. }
  1293. .row > .col-10-xsmall {
  1294. width: 83.33333%;
  1295. }
  1296. .row > .off-10-xsmall {
  1297. margin-left: 83.33333%;
  1298. }
  1299. .row > .col-11-xsmall {
  1300. width: 91.66667%;
  1301. }
  1302. .row > .off-11-xsmall {
  1303. margin-left: 91.66667%;
  1304. }
  1305. .row > .col-12-xsmall {
  1306. width: 100%;
  1307. }
  1308. .row > .off-12-xsmall {
  1309. margin-left: 100%;
  1310. }
  1311. .row.gtr-0 {
  1312. margin-top: 0;
  1313. margin-left: 0rem;
  1314. }
  1315. .row.gtr-0 > * {
  1316. padding: 0 0 0 0rem;
  1317. }
  1318. .row.gtr-0.gtr-uniform {
  1319. margin-top: 0rem;
  1320. }
  1321. .row.gtr-0.gtr-uniform > * {
  1322. padding-top: 0rem;
  1323. }
  1324. .row.gtr-25 {
  1325. margin-top: 0;
  1326. margin-left: -0.3125rem;
  1327. }
  1328. .row.gtr-25 > * {
  1329. padding: 0 0 0 0.3125rem;
  1330. }
  1331. .row.gtr-25.gtr-uniform {
  1332. margin-top: -0.3125rem;
  1333. }
  1334. .row.gtr-25.gtr-uniform > * {
  1335. padding-top: 0.3125rem;
  1336. }
  1337. .row.gtr-50 {
  1338. margin-top: 0;
  1339. margin-left: -0.625rem;
  1340. }
  1341. .row.gtr-50 > * {
  1342. padding: 0 0 0 0.625rem;
  1343. }
  1344. .row.gtr-50.gtr-uniform {
  1345. margin-top: -0.625rem;
  1346. }
  1347. .row.gtr-50.gtr-uniform > * {
  1348. padding-top: 0.625rem;
  1349. }
  1350. .row {
  1351. margin-top: 0;
  1352. margin-left: -1.25rem;
  1353. }
  1354. .row > * {
  1355. padding: 0 0 0 1.25rem;
  1356. }
  1357. .row.gtr-uniform {
  1358. margin-top: -1.25rem;
  1359. }
  1360. .row.gtr-uniform > * {
  1361. padding-top: 1.25rem;
  1362. }
  1363. .row.gtr-150 {
  1364. margin-top: 0;
  1365. margin-left: -1.875rem;
  1366. }
  1367. .row.gtr-150 > * {
  1368. padding: 0 0 0 1.875rem;
  1369. }
  1370. .row.gtr-150.gtr-uniform {
  1371. margin-top: -1.875rem;
  1372. }
  1373. .row.gtr-150.gtr-uniform > * {
  1374. padding-top: 1.875rem;
  1375. }
  1376. .row.gtr-200 {
  1377. margin-top: 0;
  1378. margin-left: -2.5rem;
  1379. }
  1380. .row.gtr-200 > * {
  1381. padding: 0 0 0 2.5rem;
  1382. }
  1383. .row.gtr-200.gtr-uniform {
  1384. margin-top: -2.5rem;
  1385. }
  1386. .row.gtr-200.gtr-uniform > * {
  1387. padding-top: 2.5rem;
  1388. }
  1389. }
  1390. /* Box */
  1391. .box {
  1392. border: solid 2px rgba(144, 144, 144, 0.25);
  1393. border-radius: 0.325rem;
  1394. margin-bottom: 2rem;
  1395. padding: 1.5rem;
  1396. }
  1397. .box > :last-child {
  1398. margin-bottom: 0;
  1399. }
  1400. .box.alt {
  1401. border: 0;
  1402. border-radius: 0;
  1403. padding: 0;
  1404. }
  1405. /* Button */
  1406. input[type="submit"],
  1407. input[type="reset"],
  1408. input[type="button"],
  1409. button,
  1410. .button {
  1411. -moz-appearance: none;
  1412. -webkit-appearance: none;
  1413. -ms-appearance: none;
  1414. appearance: none;
  1415. -moz-transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
  1416. -webkit-transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
  1417. -ms-transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
  1418. transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
  1419. background-color: transparent;
  1420. border-radius: 0.325rem;
  1421. border: 0;
  1422. box-shadow: inset 0 0 0 2px rgba(144, 144, 144, 0.25);
  1423. color: #000000 !important;
  1424. cursor: pointer;
  1425. display: inline-block;
  1426. font-family: "Raleway", Helvetica, sans-serif;
  1427. font-size: 0.6rem;
  1428. font-weight: 600;
  1429. height: 3rem;
  1430. letter-spacing: 0.175em;
  1431. line-height: 3rem;
  1432. padding: 0 2rem;
  1433. text-align: center;
  1434. text-decoration: none;
  1435. text-transform: uppercase;
  1436. white-space: nowrap;
  1437. }
  1438. input[type="submit"]:hover,
  1439. input[type="reset"]:hover,
  1440. input[type="button"]:hover,
  1441. button:hover,
  1442. .button:hover {
  1443. box-shadow: inset 0 0 0 2px #2ee4bb;
  1444. color: #2ee4bb !important;
  1445. }
  1446. input[type="submit"]:active,
  1447. input[type="reset"]:active,
  1448. input[type="button"]:active,
  1449. button:active,
  1450. .button:active {
  1451. background-color: rgba(73, 252, 212, 0.25);
  1452. box-shadow: inset 0 0 0 2px #2ee4bb;
  1453. color: #2ee4bb !important;
  1454. }
  1455. input[type="submit"].small,
  1456. input[type="reset"].small,
  1457. input[type="button"].small,
  1458. button.small,
  1459. .button.small {
  1460. font-size: 0.5rem;
  1461. height: 2.25rem;
  1462. line-height: 2.25rem;
  1463. padding: 0 1.25rem;
  1464. }
  1465. input[type="submit"].large,
  1466. input[type="reset"].large,
  1467. input[type="button"].large,
  1468. button.large,
  1469. .button.large {
  1470. font-size: 0.7rem;
  1471. height: 3.2625rem;
  1472. line-height: 3.2625rem;
  1473. padding: 0 3.25rem;
  1474. }
  1475. input[type="submit"].wide,
  1476. input[type="reset"].wide,
  1477. input[type="button"].wide,
  1478. button.wide,
  1479. .button.wide {
  1480. min-width: 13rem;
  1481. }
  1482. input[type="submit"].icon:before,
  1483. input[type="reset"].icon:before,
  1484. input[type="button"].icon:before,
  1485. button.icon:before,
  1486. .button.icon:before {
  1487. margin-right: 0.5rem;
  1488. }
  1489. input[type="submit"].fit,
  1490. input[type="reset"].fit,
  1491. input[type="button"].fit,
  1492. button.fit,
  1493. .button.fit {
  1494. width: 100%;
  1495. }
  1496. input[type="submit"].disabled, input[type="submit"]:disabled,
  1497. input[type="reset"].disabled,
  1498. input[type="reset"]:disabled,
  1499. input[type="button"].disabled,
  1500. input[type="button"]:disabled,
  1501. button.disabled,
  1502. button:disabled,
  1503. .button.disabled,
  1504. .button:disabled {
  1505. pointer-events: none;
  1506. opacity: 0.25;
  1507. }
  1508. input[type="submit"].primary,
  1509. input[type="reset"].primary,
  1510. input[type="button"].primary,
  1511. button.primary,
  1512. .button.primary {
  1513. background-color: #49fcd4;
  1514. box-shadow: none;
  1515. color: #000000 !important;
  1516. }
  1517. input[type="submit"].primary:hover,
  1518. input[type="reset"].primary:hover,
  1519. input[type="button"].primary:hover,
  1520. button.primary:hover,
  1521. .button.primary:hover {
  1522. background-color: #93ffe7;
  1523. }
  1524. input[type="submit"].primary:active,
  1525. input[type="reset"].primary:active,
  1526. input[type="button"].primary:active,
  1527. button.primary:active,
  1528. .button.primary:active {
  1529. background-color: #44f2cb;
  1530. }
  1531. @media screen and (max-width: 736px) {
  1532. input[type="submit"],
  1533. input[type="reset"],
  1534. input[type="button"],
  1535. button,
  1536. .button {
  1537. font-size: 0.7rem;
  1538. height: 3.3rem;
  1539. line-height: 3.3rem;
  1540. }
  1541. input[type="submit"].large,
  1542. input[type="reset"].large,
  1543. input[type="button"].large,
  1544. button.large,
  1545. .button.large {
  1546. font-size: 0.8rem;
  1547. height: 3.75rem;
  1548. line-height: 3.75rem;
  1549. }
  1550. input[type="submit"].small,
  1551. input[type="reset"].small,
  1552. input[type="button"].small,
  1553. button.small,
  1554. .button.small {
  1555. font-size: 0.6rem;
  1556. height: 3rem;
  1557. line-height: 3rem;
  1558. }
  1559. }
  1560. /* Form */
  1561. form {
  1562. margin: 0 0 2rem 0;
  1563. }
  1564. form > :last-child {
  1565. margin-bottom: 0;
  1566. }
  1567. form > .fields {
  1568. display: -moz-flex;
  1569. display: -webkit-flex;
  1570. display: -ms-flex;
  1571. display: flex;
  1572. -moz-flex-wrap: wrap;
  1573. -webkit-flex-wrap: wrap;
  1574. -ms-flex-wrap: wrap;
  1575. flex-wrap: wrap;
  1576. margin: -2rem 0 2rem -2rem;
  1577. width: calc(100% + 4rem);
  1578. }
  1579. form > .fields > .field {
  1580. -moz-flex-grow: 0;
  1581. -webkit-flex-grow: 0;
  1582. -ms-flex-grow: 0;
  1583. flex-grow: 0;
  1584. -moz-flex-shrink: 0;
  1585. -webkit-flex-shrink: 0;
  1586. -ms-flex-shrink: 0;
  1587. flex-shrink: 0;
  1588. padding: 2rem 0 0 2rem;
  1589. width: calc(100% - 2rem);
  1590. }
  1591. form > .fields > .field > :last-child {
  1592. margin-bottom: 0;
  1593. }
  1594. form > .fields > .field.half {
  1595. width: calc(50% - 1rem);
  1596. }
  1597. form > .fields > .field.third {
  1598. width: calc(100%/3 - 0.66667rem);
  1599. }
  1600. form > .fields > .field.quarter {
  1601. width: calc(25% - 0.5rem);
  1602. }
  1603. @media screen and (max-width: 480px) {
  1604. form > .fields {
  1605. margin: -1.5rem 0 2rem -1.5rem;
  1606. width: calc(100% + 3rem);
  1607. }
  1608. form > .fields > .field {
  1609. padding: 1.5rem 0 0 1.5rem;
  1610. width: calc(100% - 1.5rem);
  1611. }
  1612. form > .fields > .field.half {
  1613. width: calc(100% - 1.5rem);
  1614. }
  1615. form > .fields > .field.third {
  1616. width: calc(100% - 1.5rem);
  1617. }
  1618. form > .fields > .field.quarter {
  1619. width: calc(100% - 1.5rem);
  1620. }
  1621. }
  1622. input[type="text"],
  1623. input[type="password"],
  1624. input[type="email"],
  1625. input[type="tel"],
  1626. input[type="search"],
  1627. input[type="url"],
  1628. select,
  1629. textarea {
  1630. -moz-appearance: none;
  1631. -webkit-appearance: none;
  1632. -ms-appearance: none;
  1633. appearance: none;
  1634. border-radius: 0.325rem;
  1635. border: solid 2px rgba(144, 144, 144, 0.25);
  1636. color: inherit;
  1637. display: block;
  1638. outline: 0;
  1639. padding: 0 1rem;
  1640. text-decoration: none;
  1641. width: 100%;
  1642. }
  1643. input[type="text"]:invalid,
  1644. input[type="password"]:invalid,
  1645. input[type="email"]:invalid,
  1646. input[type="tel"]:invalid,
  1647. input[type="search"]:invalid,
  1648. input[type="url"]:invalid,
  1649. select:invalid,
  1650. textarea:invalid {
  1651. box-shadow: none;
  1652. }
  1653. input[type="text"]:focus,
  1654. input[type="password"]:focus,
  1655. input[type="email"]:focus,
  1656. input[type="tel"]:focus,
  1657. input[type="search"]:focus,
  1658. input[type="url"]:focus,
  1659. select:focus,
  1660. textarea:focus {
  1661. border-color: #2ee4bb;
  1662. }
  1663. label {
  1664. color: #000000;
  1665. display: block;
  1666. font-family: "Raleway", Helvetica, sans-serif;
  1667. font-size: 0.75rem;
  1668. font-weight: 600;
  1669. letter-spacing: 0.175em;
  1670. line-height: 1.75;
  1671. margin: 0 0 1rem 0;
  1672. text-transform: uppercase;
  1673. }
  1674. input[type="text"],
  1675. input[type="password"],
  1676. input[type="email"],
  1677. input[type="tel"],
  1678. input[type="search"],
  1679. input[type="url"] {
  1680. height: 3rem;
  1681. }
  1682. select {
  1683. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='rgba(144, 144, 144, 0.25)' /%3E%3C/svg%3E");
  1684. background-position: calc(100% - 1rem) center;
  1685. background-repeat: no-repeat;
  1686. background-size: 1.25rem;
  1687. height: 3rem;
  1688. padding-right: 3rem;
  1689. text-overflow: ellipsis;
  1690. }
  1691. select option {
  1692. background-color: #ffffff;
  1693. color: #000000;
  1694. }
  1695. select:focus::-ms-value {
  1696. background-color: transparent;
  1697. }
  1698. select::-ms-expand {
  1699. display: none;
  1700. }
  1701. textarea {
  1702. padding: 0.75rem 1rem;
  1703. }
  1704. input[type="checkbox"],
  1705. input[type="radio"] {
  1706. -moz-appearance: none;
  1707. -webkit-appearance: none;
  1708. -ms-appearance: none;
  1709. appearance: none;
  1710. display: block;
  1711. float: left;
  1712. margin-right: -2rem;
  1713. opacity: 0;
  1714. width: 1rem;
  1715. z-index: -1;
  1716. }
  1717. input[type="checkbox"] + label,
  1718. input[type="radio"] + label {
  1719. text-decoration: none;
  1720. color: #000000;
  1721. cursor: pointer;
  1722. display: inline-block;
  1723. font-family: "Source Sans Pro", Helvetica, sans-serif;
  1724. font-size: 1rem;
  1725. font-weight: 300;
  1726. letter-spacing: 0.0375em;
  1727. padding-left: 2.675rem;
  1728. padding-right: 0.875rem;
  1729. position: relative;
  1730. text-transform: none;
  1731. }
  1732. input[type="checkbox"] + label:before,
  1733. input[type="radio"] + label:before {
  1734. -moz-osx-font-smoothing: grayscale;
  1735. -webkit-font-smoothing: antialiased;
  1736. display: inline-block;
  1737. font-style: normal;
  1738. font-variant: normal;
  1739. text-rendering: auto;
  1740. line-height: 1;
  1741. text-transform: none !important;
  1742. font-family: 'Font Awesome 5 Free';
  1743. font-weight: 900;
  1744. }
  1745. input[type="checkbox"] + label:before,
  1746. input[type="radio"] + label:before {
  1747. border-radius: 0.325rem;
  1748. border: solid 2px rgba(144, 144, 144, 0.25);
  1749. content: '';
  1750. display: inline-block;
  1751. font-size: 0.8rem;
  1752. height: 2.25rem;
  1753. left: 0;
  1754. line-height: 2.25rem;
  1755. position: absolute;
  1756. text-align: center;
  1757. top: -0.15rem;
  1758. width: 2.25rem;
  1759. }
  1760. input[type="checkbox"]:checked + label:before,
  1761. input[type="radio"]:checked + label:before {
  1762. content: '\f00c';
  1763. background-color: #49fcd4;
  1764. border-color: #49fcd4;
  1765. color: #ffffff;
  1766. }
  1767. input[type="checkbox"]:focus + label:before,
  1768. input[type="radio"]:focus + label:before {
  1769. border-color: #49fcd4;
  1770. box-shadow: 0 0 0 1px #49fcd4;
  1771. }
  1772. input[type="checkbox"] + label:before {
  1773. border-radius: 0.325rem;
  1774. }
  1775. input[type="radio"] + label:before {
  1776. border-radius: 100%;
  1777. }
  1778. ::-webkit-input-placeholder {
  1779. opacity: 1.0;
  1780. color: rgba(0, 0, 0, 0.25) !important;
  1781. }
  1782. :-moz-placeholder {
  1783. opacity: 1.0;
  1784. color: rgba(0, 0, 0, 0.25) !important;
  1785. }
  1786. ::-moz-placeholder {
  1787. opacity: 1.0;
  1788. color: rgba(0, 0, 0, 0.25) !important;
  1789. }
  1790. :-ms-input-placeholder {
  1791. opacity: 1.0;
  1792. color: rgba(0, 0, 0, 0.25) !important;
  1793. }
  1794. @media screen and (max-width: 736px) {
  1795. label {
  1796. font-size: 0.675rem;
  1797. }
  1798. input[type="checkbox"] + label,
  1799. input[type="radio"] + label {
  1800. font-size: 1rem;
  1801. }
  1802. }
  1803. @media screen and (max-width: 360px) {
  1804. label {
  1805. font-size: 0.675rem;
  1806. }
  1807. input[type="checkbox"] + label,
  1808. input[type="radio"] + label {
  1809. font-size: 1rem;
  1810. }
  1811. }
  1812. /* Icon */
  1813. .icon {
  1814. text-decoration: none;
  1815. border-bottom: none;
  1816. position: relative;
  1817. }
  1818. .icon:before {
  1819. -moz-osx-font-smoothing: grayscale;
  1820. -webkit-font-smoothing: antialiased;
  1821. display: inline-block;
  1822. font-style: normal;
  1823. font-variant: normal;
  1824. text-rendering: auto;
  1825. line-height: 1;
  1826. text-transform: none !important;
  1827. font-family: 'Font Awesome 5 Free';
  1828. font-weight: 400;
  1829. }
  1830. .icon > .label {
  1831. display: none;
  1832. }
  1833. .icon.solid:before {
  1834. font-weight: 900;
  1835. }
  1836. .icon.brands:before {
  1837. font-family: 'Font Awesome 5 Brands';
  1838. }
  1839. /* Image */
  1840. .image {
  1841. border: 0;
  1842. display: inline-block;
  1843. position: relative;
  1844. }
  1845. .image img {
  1846. display: block;
  1847. }
  1848. .image[data-position] img {
  1849. -moz-object-fit: cover;
  1850. -webkit-object-fit: cover;
  1851. -ms-object-fit: cover;
  1852. object-fit: cover;
  1853. display: block;
  1854. position: absolute;
  1855. top: 0;
  1856. left: 0;
  1857. width: 100%;
  1858. height: 100%;
  1859. }
  1860. .image[data-position="top left"] img {
  1861. -moz-object-position: top left;
  1862. -webkit-object-position: top left;
  1863. -ms-object-position: top left;
  1864. object-position: top left;
  1865. }
  1866. .image[data-position="top"] img {
  1867. -moz-object-position: top;
  1868. -webkit-object-position: top;
  1869. -ms-object-position: top;
  1870. object-position: top;
  1871. }
  1872. .image[data-position="top right"] img {
  1873. -moz-object-position: top right;
  1874. -webkit-object-position: top right;
  1875. -ms-object-position: top right;
  1876. object-position: top right;
  1877. }
  1878. .image[data-position="right"] img {
  1879. -moz-object-position: right;
  1880. -webkit-object-position: right;
  1881. -ms-object-position: right;
  1882. object-position: right;
  1883. }
  1884. .image[data-position="bottom right"] img {
  1885. -moz-object-position: bottom right;
  1886. -webkit-object-position: bottom right;
  1887. -ms-object-position: bottom right;
  1888. object-position: bottom right;
  1889. }
  1890. .image[data-position="bottom"] img {
  1891. -moz-object-position: bottom;
  1892. -webkit-object-position: bottom;
  1893. -ms-object-position: bottom;
  1894. object-position: bottom;
  1895. }
  1896. .image[data-position="bottom left"] img {
  1897. -moz-object-position: bottom left;
  1898. -webkit-object-position: bottom left;
  1899. -ms-object-position: bottom left;
  1900. object-position: bottom left;
  1901. }
  1902. .image[data-position="left"] img {
  1903. -moz-object-position: left;
  1904. -webkit-object-position: left;
  1905. -ms-object-position: left;
  1906. object-position: left;
  1907. }
  1908. .image[data-position="center"] img {
  1909. -moz-object-position: center;
  1910. -webkit-object-position: center;
  1911. -ms-object-position: center;
  1912. object-position: center;
  1913. }
  1914. .image[data-position="25% 25%"] img {
  1915. -moz-object-position: 25% 25%;
  1916. -webkit-object-position: 25% 25%;
  1917. -ms-object-position: 25% 25%;
  1918. object-position: 25% 25%;
  1919. }
  1920. .image[data-position="75% 25%"] img {
  1921. -moz-object-position: 75% 25%;
  1922. -webkit-object-position: 75% 25%;
  1923. -ms-object-position: 75% 25%;
  1924. object-position: 75% 25%;
  1925. }
  1926. .image[data-position="75% 75%"] img {
  1927. -moz-object-position: 75% 75%;
  1928. -webkit-object-position: 75% 75%;
  1929. -ms-object-position: 75% 75%;
  1930. object-position: 75% 75%;
  1931. }
  1932. .image[data-position="25% 75%"] img {
  1933. -moz-object-position: 25% 75%;
  1934. -webkit-object-position: 25% 75%;
  1935. -ms-object-position: 25% 75%;
  1936. object-position: 25% 75%;
  1937. }
  1938. .image.left, .image.right {
  1939. max-width: 40%;
  1940. }
  1941. .image.left img, .image.right img {
  1942. width: 100%;
  1943. }
  1944. .image.left {
  1945. float: left;
  1946. margin: 0 2rem 2rem 0;
  1947. top: 0.25rem;
  1948. }
  1949. .image.right {
  1950. float: right;
  1951. margin: 0 0 2rem 2rem;
  1952. top: 0.25rem;
  1953. }
  1954. .image.fit {
  1955. display: block;
  1956. margin: 0 0 2rem 0;
  1957. width: 100%;
  1958. }
  1959. .image.fit img {
  1960. width: 100%;
  1961. }
  1962. .image.main {
  1963. display: block;
  1964. margin: 3rem 0;
  1965. width: 100%;
  1966. }
  1967. .image.main img {
  1968. width: 100%;
  1969. }
  1970. .image.main:first-child {
  1971. margin-top: 0;
  1972. }
  1973. .image.fill {
  1974. height: 100%;
  1975. left: 0;
  1976. position: absolute;
  1977. top: 0;
  1978. width: 100%;
  1979. }
  1980. .image.fill img {
  1981. height: 100%;
  1982. left: 0;
  1983. position: absolute;
  1984. top: 0;
  1985. width: 100%;
  1986. }
  1987. /* List */
  1988. ol {
  1989. list-style: decimal;
  1990. margin: 0 0 2rem 0;
  1991. padding-left: 1.25rem;
  1992. }
  1993. ol li {
  1994. padding-left: 0.25rem;
  1995. }
  1996. ul {
  1997. list-style: disc;
  1998. margin: 0 0 2rem 0;
  1999. padding-left: 1rem;
  2000. }
  2001. ul li {
  2002. padding-left: 0.325rem;
  2003. }
  2004. ul.alt {
  2005. list-style: none;
  2006. padding-left: 0;
  2007. }
  2008. ul.alt > li {
  2009. border-top: solid 1px rgba(144, 144, 144, 0.25);
  2010. padding: 0.75rem 0;
  2011. }
  2012. ul.alt > li:first-child {
  2013. border-top: 0;
  2014. padding-top: 0;
  2015. }
  2016. ul.alt > li:last-child {
  2017. padding-bottom: 0;
  2018. }
  2019. ul.items {
  2020. list-style: none;
  2021. padding-left: 0;
  2022. }
  2023. ul.items > li {
  2024. padding-left: 0;
  2025. margin: 0 0 3rem 0;
  2026. }
  2027. ul.items > li > h3 {
  2028. margin: 0 0 1rem 0;
  2029. }
  2030. ul.items > li > :last-child {
  2031. margin-bottom: 0;
  2032. }
  2033. ul.items > li:last-child {
  2034. margin-bottom: 0;
  2035. }
  2036. @media screen and (max-width: 736px) {
  2037. ul.items > li {
  2038. margin: 0 0 2rem 0;
  2039. }
  2040. }
  2041. dl {
  2042. margin: 0 0 2rem 0;
  2043. }
  2044. dl dt {
  2045. display: block;
  2046. font-weight: 600;
  2047. margin: 0 0 1rem 0;
  2048. }
  2049. dl dd {
  2050. margin-left: 1.5rem;
  2051. }
  2052. /* Actions */
  2053. ul.actions {
  2054. display: -moz-flex;
  2055. display: -webkit-flex;
  2056. display: -ms-flex;
  2057. display: flex;
  2058. cursor: default;
  2059. list-style: none;
  2060. margin-left: -1rem;
  2061. padding-left: 0;
  2062. }
  2063. ul.actions li {
  2064. padding: 0 0 0 1rem;
  2065. vertical-align: middle;
  2066. }
  2067. ul.actions.special {
  2068. -moz-justify-content: center;
  2069. -webkit-justify-content: center;
  2070. -ms-justify-content: center;
  2071. justify-content: center;
  2072. width: 100%;
  2073. margin-left: 0;
  2074. }
  2075. ul.actions.special li:first-child {
  2076. padding-left: 0;
  2077. }
  2078. ul.actions.stacked {
  2079. -moz-flex-direction: column;
  2080. -webkit-flex-direction: column;
  2081. -ms-flex-direction: column;
  2082. flex-direction: column;
  2083. margin-left: 0;
  2084. }
  2085. ul.actions.stacked li {
  2086. padding: 1.3rem 0 0 0;
  2087. }
  2088. ul.actions.stacked li:first-child {
  2089. padding-top: 0;
  2090. }
  2091. ul.actions.fit {
  2092. width: calc(100% + 1rem);
  2093. }
  2094. ul.actions.fit li {
  2095. -moz-flex-grow: 1;
  2096. -webkit-flex-grow: 1;
  2097. -ms-flex-grow: 1;
  2098. flex-grow: 1;
  2099. -moz-flex-shrink: 1;
  2100. -webkit-flex-shrink: 1;
  2101. -ms-flex-shrink: 1;
  2102. flex-shrink: 1;
  2103. width: 100%;
  2104. }
  2105. ul.actions.fit li > * {
  2106. width: 100%;
  2107. }
  2108. ul.actions.fit.stacked {
  2109. width: 100%;
  2110. }
  2111. @media screen and (max-width: 480px) {
  2112. ul.actions:not(.fixed) {
  2113. -moz-flex-direction: column;
  2114. -webkit-flex-direction: column;
  2115. -ms-flex-direction: column;
  2116. flex-direction: column;
  2117. margin-left: 0;
  2118. width: 100% !important;
  2119. }
  2120. ul.actions:not(.fixed) li {
  2121. -moz-flex-grow: 1;
  2122. -webkit-flex-grow: 1;
  2123. -ms-flex-grow: 1;
  2124. flex-grow: 1;
  2125. -moz-flex-shrink: 1;
  2126. -webkit-flex-shrink: 1;
  2127. -ms-flex-shrink: 1;
  2128. flex-shrink: 1;
  2129. padding: 1rem 0 0 0;
  2130. text-align: center;
  2131. width: 100%;
  2132. }
  2133. ul.actions:not(.fixed) li > * {
  2134. width: 100%;
  2135. }
  2136. ul.actions:not(.fixed) li:first-child {
  2137. padding-top: 0;
  2138. }
  2139. ul.actions:not(.fixed) li input[type="submit"],
  2140. ul.actions:not(.fixed) li input[type="reset"],
  2141. ul.actions:not(.fixed) li input[type="button"],
  2142. ul.actions:not(.fixed) li button,
  2143. ul.actions:not(.fixed) li .button {
  2144. width: 100%;
  2145. }
  2146. ul.actions:not(.fixed) li input[type="submit"].icon:before,
  2147. ul.actions:not(.fixed) li input[type="reset"].icon:before,
  2148. ul.actions:not(.fixed) li input[type="button"].icon:before,
  2149. ul.actions:not(.fixed) li button.icon:before,
  2150. ul.actions:not(.fixed) li .button.icon:before {
  2151. margin-left: -0.5rem;
  2152. }
  2153. }
  2154. /* Icons */
  2155. ul.icons {
  2156. cursor: default;
  2157. list-style: none;
  2158. padding-left: 0;
  2159. }
  2160. ul.icons li {
  2161. display: inline-block;
  2162. }
  2163. ul.icons li:last-child {
  2164. padding-right: 0;
  2165. }
  2166. ul.icons li .icon {
  2167. -moz-transition: background-color 0.25s ease-in-out;
  2168. -webkit-transition: background-color 0.25s ease-in-out;
  2169. -ms-transition: background-color 0.25s ease-in-out;
  2170. transition: background-color 0.25s ease-in-out;
  2171. width: 2.25rem;
  2172. height: 2.25rem;
  2173. text-align: center;
  2174. line-height: 2.25rem;
  2175. border-radius: 2.25rem;
  2176. display: inline-block;
  2177. }
  2178. ul.icons li .icon:before {
  2179. font-size: 1.25rem;
  2180. }
  2181. ul.icons li .icon:hover {
  2182. background-color: rgba(144, 144, 144, 0.1);
  2183. }
  2184. /* Table */
  2185. .table-wrapper {
  2186. -webkit-overflow-scrolling: touch;
  2187. overflow-x: auto;
  2188. }
  2189. table {
  2190. margin: 0 0 2rem 0;
  2191. width: 100%;
  2192. }
  2193. table tbody tr {
  2194. border: solid 1px rgba(144, 144, 144, 0.25);
  2195. border-left: 0;
  2196. border-right: 0;
  2197. }
  2198. table tbody tr:nth-child(2n + 1) {
  2199. background-color: rgba(144, 144, 144, 0.1);
  2200. }
  2201. table td {
  2202. padding: 0.75rem 0.75rem;
  2203. }
  2204. table th {
  2205. color: #000000;
  2206. font-size: 0.9rem;
  2207. font-weight: 600;
  2208. padding: 0 0.75rem 0.75rem 0.75rem;
  2209. text-align: left;
  2210. }
  2211. table thead {
  2212. border-bottom: solid 2px rgba(144, 144, 144, 0.25);
  2213. }
  2214. table tfoot {
  2215. border-top: solid 2px rgba(144, 144, 144, 0.25);
  2216. }
  2217. table.alt {
  2218. border-collapse: separate;
  2219. }
  2220. table.alt tbody tr td {
  2221. border: solid 1px rgba(144, 144, 144, 0.25);
  2222. border-left-width: 0;
  2223. border-top-width: 0;
  2224. }
  2225. table.alt tbody tr td:first-child {
  2226. border-left-width: 1px;
  2227. }
  2228. table.alt tbody tr:first-child td {
  2229. border-top-width: 1px;
  2230. }
  2231. table.alt thead {
  2232. border-bottom: 0;
  2233. }
  2234. table.alt tfoot {
  2235. border-top: 0;
  2236. }
  2237. /* Arrow */
  2238. a.arrow {
  2239. border-bottom: 0;
  2240. display: inline-block;
  2241. height: 4rem;
  2242. position: relative;
  2243. width: 6rem;
  2244. }
  2245. a.arrow .label {
  2246. display: none;
  2247. }
  2248. a.arrow:before {
  2249. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 512 512'%3E%3Cpath d='M442.53,346.28L293.65,495.16c-0.33,0.33-0.7,0.62-1.05,0.94c-9.16,9.77-22.15,15.9-36.6,15.9 c-14.44,0-27.43-6.13-36.59-15.88c-0.35-0.33-0.72-0.62-1.06-0.96L69.47,346.28c-19.62-19.62-19.62-51.44,0-71.05 c19.62-19.62,51.43-19.62,71.06,0l65.23,65.23V50.24C205.76,22.5,228.25,0,256,0s50.24,22.5,50.24,50.24v290.21l65.23-65.23 c19.62-19.62,51.43-19.62,71.05,0C462.15,294.84,462.15,326.66,442.53,346.28z' fill='%23000000' /%3E%3C/svg%3E");
  2250. background-position: center;
  2251. background-repeat: no-repeat;
  2252. background-size: contain;
  2253. content: '';
  2254. display: inline-block;
  2255. height: 100%;
  2256. position: relative;
  2257. width: 3rem;
  2258. }
  2259. /* Gallery */
  2260. @-moz-keyframes gallery-modal-spinner {
  2261. 0% {
  2262. -moz-transform: rotate(0deg);
  2263. -webkit-transform: rotate(0deg);
  2264. -ms-transform: rotate(0deg);
  2265. transform: rotate(0deg);
  2266. }
  2267. 100% {
  2268. -moz-transform: rotate(360deg);
  2269. -webkit-transform: rotate(360deg);
  2270. -ms-transform: rotate(360deg);
  2271. transform: rotate(360deg);
  2272. }
  2273. }
  2274. @-webkit-keyframes gallery-modal-spinner {
  2275. 0% {
  2276. -moz-transform: rotate(0deg);
  2277. -webkit-transform: rotate(0deg);
  2278. -ms-transform: rotate(0deg);
  2279. transform: rotate(0deg);
  2280. }
  2281. 100% {
  2282. -moz-transform: rotate(360deg);
  2283. -webkit-transform: rotate(360deg);
  2284. -ms-transform: rotate(360deg);
  2285. transform: rotate(360deg);
  2286. }
  2287. }
  2288. @-ms-keyframes gallery-modal-spinner {
  2289. 0% {
  2290. -moz-transform: rotate(0deg);
  2291. -webkit-transform: rotate(0deg);
  2292. -ms-transform: rotate(0deg);
  2293. transform: rotate(0deg);
  2294. }
  2295. 100% {
  2296. -moz-transform: rotate(360deg);
  2297. -webkit-transform: rotate(360deg);
  2298. -ms-transform: rotate(360deg);
  2299. transform: rotate(360deg);
  2300. }
  2301. }
  2302. @keyframes gallery-modal-spinner {
  2303. 0% {
  2304. -moz-transform: rotate(0deg);
  2305. -webkit-transform: rotate(0deg);
  2306. -ms-transform: rotate(0deg);
  2307. transform: rotate(0deg);
  2308. }
  2309. 100% {
  2310. -moz-transform: rotate(360deg);
  2311. -webkit-transform: rotate(360deg);
  2312. -ms-transform: rotate(360deg);
  2313. transform: rotate(360deg);
  2314. }
  2315. }
  2316. .gallery {
  2317. display: flex;
  2318. flex-wrap: wrap;
  2319. margin: -1.25rem 0 0 -1.25rem;
  2320. width: calc(100% + 1.25rem);
  2321. }
  2322. .gallery a {
  2323. border-bottom: 0;
  2324. display: block;
  2325. margin: 1.25rem 0 0 1.25rem;
  2326. outline: 0;
  2327. position: relative;
  2328. width: calc(50% - 1.25rem);
  2329. }
  2330. .gallery a img {
  2331. display: block;
  2332. height: 25vw;
  2333. min-height: 18rem;
  2334. object-fit: cover;
  2335. object-position: center;
  2336. width: 100%;
  2337. }
  2338. .gallery a.landscape {
  2339. width: 100%;
  2340. }
  2341. .gallery a.landscape img {
  2342. height: 30vw;
  2343. }
  2344. .gallery a.portrait img {
  2345. height: 30vw;
  2346. }
  2347. .gallery .modal {
  2348. display: -moz-flex;
  2349. display: -webkit-flex;
  2350. display: -ms-flex;
  2351. display: flex;
  2352. -moz-align-items: center;
  2353. -webkit-align-items: center;
  2354. -ms-align-items: center;
  2355. align-items: center;
  2356. -moz-justify-content: center;
  2357. -webkit-justify-content: center;
  2358. -ms-justify-content: center;
  2359. justify-content: center;
  2360. pointer-events: none;
  2361. -moz-user-select: none;
  2362. -webkit-user-select: none;
  2363. -ms-user-select: none;
  2364. user-select: none;
  2365. -moz-transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
  2366. -webkit-transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
  2367. -ms-transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
  2368. transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
  2369. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  2370. background-color: rgba(255, 255, 255, 0.875);
  2371. height: 100%;
  2372. left: 0;
  2373. opacity: 0;
  2374. outline: 0;
  2375. position: fixed;
  2376. top: 0;
  2377. visibility: none;
  2378. width: 100%;
  2379. z-index: 0;
  2380. }
  2381. .gallery .modal:before {
  2382. -moz-animation: gallery-modal-spinner 1s infinite linear;
  2383. -webkit-animation: gallery-modal-spinner 1s infinite linear;
  2384. -ms-animation: gallery-modal-spinner 1s infinite linear;
  2385. animation: gallery-modal-spinner 1s infinite linear;
  2386. -moz-transition: opacity 0.25s ease;
  2387. -webkit-transition: opacity 0.25s ease;
  2388. -ms-transition: opacity 0.25s ease;
  2389. transition: opacity 0.25s ease;
  2390. -moz-transition-delay: 0.5s;
  2391. -webkit-transition-delay: 0.5s;
  2392. -ms-transition-delay: 0.5s;
  2393. transition-delay: 0.5s;
  2394. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='96px' height='96px' viewBox='0 0 96 96' zoomAndPan='disable'%3E%3Cstyle%3Ecircle %7Bfill: transparent%3B stroke: %23000000%3B stroke-width: 2px%3B %7D%3C/style%3E%3Cdefs%3E%3CclipPath id='corner'%3E%3Cpolygon points='0,0 48,0 48,48 96,48 96,96 0,96' /%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23corner)'%3E%3Ccircle cx='48' cy='48' r='32'/%3E%3C/g%3E%3C/svg%3E");
  2395. background-position: center;
  2396. background-repeat: no-repeat;
  2397. background-size: 4rem;
  2398. content: '';
  2399. display: block;
  2400. height: 4rem;
  2401. left: 50%;
  2402. margin: -2rem 0 0 -2rem;
  2403. opacity: 0;
  2404. position: absolute;
  2405. top: 50%;
  2406. width: 4rem;
  2407. }
  2408. .gallery .modal:after {
  2409. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='64px' height='64px' viewBox='0 0 64 64' zoomAndPan='disable'%3E%3Cstyle%3Eline %7Bstroke: %23000000%3Bstroke-width: 2px%3B%7D%3C/style%3E%3Cline x1='20' y1='20' x2='44' y2='44' /%3E%3Cline x1='20' y1='44' x2='44' y2='20' /%3E%3C/svg%3E");
  2410. background-position: center;
  2411. background-repeat: no-repeat;
  2412. background-size: 3rem;
  2413. content: '';
  2414. cursor: pointer;
  2415. display: block;
  2416. height: 4rem;
  2417. position: absolute;
  2418. right: 0.5rem;
  2419. top: 0.5rem;
  2420. width: 4rem;
  2421. }
  2422. .gallery .modal .inner {
  2423. -moz-transform: translateY(0.75rem);
  2424. -webkit-transform: translateY(0.75rem);
  2425. -ms-transform: translateY(0.75rem);
  2426. transform: translateY(0.75rem);
  2427. -moz-transition: opacity 0.25s ease, -moz-transform 0.25s ease;
  2428. -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  2429. -ms-transition: opacity 0.25s ease, -ms-transform 0.25s ease;
  2430. transition: opacity 0.25s ease, transform 0.25s ease;
  2431. opacity: 0;
  2432. }
  2433. .gallery .modal .inner img {
  2434. box-shadow: 0 1rem 3rem 0 rgba(0, 0, 0, 0.35);
  2435. display: block;
  2436. max-height: 90vh;
  2437. max-width: 90vw;
  2438. }
  2439. .gallery .modal.visible {
  2440. pointer-events: auto;
  2441. opacity: 1;
  2442. visibility: visible;
  2443. z-index: 11000;
  2444. }
  2445. .gallery .modal.visible:before {
  2446. opacity: 1;
  2447. }
  2448. .gallery .modal.loaded .inner {
  2449. -moz-transform: translateY(0);
  2450. -webkit-transform: translateY(0);
  2451. -ms-transform: translateY(0);
  2452. transform: translateY(0);
  2453. -moz-transition: opacity 0.5s ease, -moz-transform 0.5s ease;
  2454. -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  2455. -ms-transition: opacity 0.5s ease, -ms-transform 0.5s ease;
  2456. transition: opacity 0.5s ease, transform 0.5s ease;
  2457. opacity: 1;
  2458. }
  2459. .gallery .modal.loaded:before {
  2460. -moz-transition-delay: 0s;
  2461. -webkit-transition-delay: 0s;
  2462. -ms-transition-delay: 0s;
  2463. transition-delay: 0s;
  2464. opacity: 0;
  2465. }
  2466. @media screen and (max-width: 1152px) {
  2467. .gallery a img {
  2468. height: 20rem;
  2469. }
  2470. .gallery a.landscape img {
  2471. height: 25rem;
  2472. }
  2473. .gallery a.portrait img {
  2474. height: 25rem;
  2475. }
  2476. .gallery .modal .inner img {
  2477. max-width: 100vw;
  2478. }
  2479. }
  2480. @media screen and (max-width: 736px) {
  2481. .gallery {
  2482. margin: -0.625rem 0 0 -0.625rem;
  2483. width: calc(100% + 0.625rem);
  2484. }
  2485. .gallery a {
  2486. margin: 0.625rem 0 0 0.625rem;
  2487. width: calc(50% - 0.625rem);
  2488. }
  2489. .gallery a img {
  2490. height: 20rem;
  2491. }
  2492. .gallery a.landscape img {
  2493. height: 20rem;
  2494. }
  2495. .gallery a.portrait img {
  2496. height: 30rem;
  2497. }
  2498. }
  2499. @media screen and (max-width: 480px) {
  2500. .gallery a img {
  2501. height: 12rem;
  2502. min-height: 0;
  2503. }
  2504. .gallery a.landscape img {
  2505. height: 12rem;
  2506. }
  2507. .gallery a.portrait img {
  2508. height: 14rem;
  2509. }
  2510. }
  2511. /* Feature Icons */
  2512. ul.feature-icons {
  2513. display: flex;
  2514. flex-wrap: wrap;
  2515. list-style: none;
  2516. margin: 3rem 0;
  2517. padding-left: 0;
  2518. }
  2519. ul.feature-icons:first-child {
  2520. margin-top: 0;
  2521. }
  2522. ul.feature-icons li {
  2523. margin: 2.5rem 0 0 0;
  2524. padding: 0.5rem 0 0 4.5rem;
  2525. position: relative;
  2526. width: 50%;
  2527. }
  2528. ul.feature-icons li:before {
  2529. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 512 512'%3E%3Cpath d='M256,0l221.7,128v256L256,512L34.3,384V128L256,0z' fill='rgba(144, 144, 144, 0.1)' /%3E%3C/svg%3E");
  2530. background-position: center;
  2531. background-repeat: no-repeat;
  2532. background-size: contain;
  2533. color: #000000;
  2534. display: block;
  2535. font-size: 1.25rem;
  2536. height: 3.25rem;
  2537. left: 0;
  2538. line-height: 3.25rem;
  2539. position: absolute;
  2540. text-align: center;
  2541. top: 0;
  2542. width: 3.25rem;
  2543. }
  2544. ul.feature-icons li:nth-child(1), ul.feature-icons li:nth-child(2) {
  2545. margin-top: 0;
  2546. }
  2547. @media screen and (max-width: 736px) {
  2548. ul.feature-icons {
  2549. margin: 0 0 3rem 0;
  2550. }
  2551. ul.feature-icons li {
  2552. width: 100%;
  2553. }
  2554. ul.feature-icons li:nth-child(2) {
  2555. margin-top: 2rem;
  2556. }
  2557. }
  2558. /* Wrapper */
  2559. #wrapper {
  2560. position: relative;
  2561. width: 100vw;
  2562. padding: 0 0 10rem 0;
  2563. }
  2564. #wrapper:before {
  2565. background-attachment: fixed;
  2566. background-color: #49fcd4;
  2567. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 920 1750' x='0px' y='0px'%3E %3Cpath style='fill: rgba(67, 217, 184, 0.25)' d='M889.72,1137.55l-2.91-0.75l-364.39,282.94l-0.7-0.9l-0.51,0.11l-94.77-451.5l-32.51-15.75l-16.73-8.11l0,0.68 l-1.46,0l0-1.39l-1.89-0.92l-112.41-54.47l-0.29,1.03l-1.41-0.37l0.37-1.31l-34.14-16.54l-98.56-47.76l-0.59,0.81l-1.16-0.88 l0.42-0.57L11.43,766.33l-0.25,0.2l-0.9-1.15l102.87-79.98l0.08-0.1l0.02,0.02l116.68-90.72l-0.18-0.34l1.3-0.66l0.05,0.09 l100.5-78.14l-0.07-0.32l0.65-0.14l42.3-32.89l-0.15-54.54l-0.59,0.29l-0.64-1.31l1.23-0.6l-0.01-4.54l-0.33-122.47l-0.99,0.18 l-0.28-1.43l1.27-0.23l-0.4-147.49l-0.87-0.16l0.28-1.43l0.58,0.1l-0.35-127.48l-0.13-0.06l0.64-1.31L489.97,76.8l0.73,0.19 l-0.04,0.14l132.63,65.11l0.33-0.45l1.16,0.88l-0.16,0.22l114.21,56.07l0.45-0.35l0.72,0.93l47.89,23.51l2.76-1.36l0.56,4.61 l-3.32-1.63L571.52,330.88L375.95,482.93l0.66,239.95l51.12,243.57l222.53,107.83l236.23,60.93l2.27-1.77 M375.8,425.34l17.25-8.47 l36.13-127.75l-53.73,9.66L375.8,425.34z M551,241.05l38.19-52.2l-123.83-22.27l-34.13,120.68l98.99-17.81L551,241.05z M532.3,269.09l151.34-27.22l37.63-29.25l-130.48-23.47L532.3,269.09z M303.38,733.9l-2.36-4.48l-44.18-83.78L182.5,747.25 l40.78,36.46l52.69,47.11L303.38,733.9z M277.18,831.91l56.95,50.93L375.69,920l-0.13-49.23l-71.19-135L277.18,831.91z M303.96,731.86l41.93-148.25l-9.74-46.39L257.8,644.33L303.96,731.86z M304.94,733.73l9.55,18.12l61.05,115.78l-0.39-144.6 l-16.9-80.53l-11.71-55.81L304.94,733.73z M375.21,211.79l0.23,85.51l54.17-9.74l34.29-121.23l-88.87-15.98L375.21,211.79z M430.78,288.83l-17.88,63.21L394.81,416l44.01-21.6l90.15-123.23L430.78,288.83z M287.76,898.62l87.99,42.64l-0.05-19.29 l-91.37-81.71l-7.59-6.78l-14.88,52.59L287.76,898.62z M174.26,843.62l86.26,41.8l15-53.03l-93.89-83.95l-53.34,72.91L174.26,843.62 z M113.18,687.22L12.71,765.33l55.69,26.99l58.56,28.38l53.58-73.24l-34.83-31.14L113.18,687.22z M230.62,595.92l-116.27,90.4 l63.02,56.36l4.03,3.61l74.67-102.08l-7.47-14.17L230.62,595.92z M331.94,517.15l-100.15,77.86l25.25,47.88l78.71-107.59l-1.71-8.14 L331.94,517.15z M333.22,516.15l2.02,9.64l1.66,7.92l34.65-47.37L333.22,516.15z M337.31,535.63l9.43,44.95l26.67-94.3 L337.31,535.63z M347.39,583.66l27.74,132.16l-0.62-228.04L347.39,583.66z M374.7,21.83l0.35,127.02l89.27,16.06l24.61-87 L374.7,21.83z M490.25,78.56l-22.26,78.7l-2.24,7.91l124.39,22.37l10.23-13.99l22.04-30.12L490.25,78.56z M623.74,144.09 l-12.29,16.8l-19.71,26.95l131.07,23.58l14.73-11.45L623.74,144.09z M739,200.67l-13.3,10.34l-0.96,0.74l58.14,10.46L739,200.67z M723.19,212.96l-25.33,19.69l-11.14,8.66l97.03-17.45L723.19,212.96z M782.89,225.5l-98.64,17.74l-107.06,83.23L782.89,225.5z M631.68,282.26l49.48-38.47l-150.1,27l-89.41,122.22l129.1-63.37L631.68,282.26z M565.06,334.05l-125.28,61.5l-45.94,62.8 l-14.96,20.44L565.06,334.05z M425.31,412.87l11.65-15.93l-42.69,20.96l-13.66,48.3l-3.58,12.67L425.31,412.87z M392.51,418.76 l-16.71,8.2l0.01,4.72l0.12,45.68L392.51,418.76z M377.21,941.96l21.37,10.36l24.14,11.7l-45.56-40.74L377.21,941.96z M377.15,921.31l34.83,31.15l12.57,11.24l-47.53-90.14L377.15,921.31z M376.63,730.07l0.38,140.33l48.29,91.59L376.63,730.07z M806.29,1197.48l75.8-58.86l-28.56,11.47l-25.6,10.28l14.96,7.25l-0.64,1.31l-16.16-7.83l-124.76,50.1l40.56,36.27L806.29,1197.48z M522.43,1146.18l58.88,111.66l52.71-21.17l64.61-25.95l-75.11-67.17L522.43,1146.18z M621.92,1142.14l-115.78-103.53l-46.8-12.07 l62.33,118.2l7.06-0.18L621.92,1142.14z M700.14,1210.12l124.19-49.87l-42.89-20.78l-155.8,4.04L700.14,1210.12z M679.7,1295.77 l61.03-47.39l-40.9-36.57l-117.85,47.32l42.09,79.82L679.7,1295.77z M522.48,1417.85l1.83-1.42l98.6-76.56l-42.28-80.19 l-84.25,33.83L522.48,1417.85z M496.08,1292.06l83.87-33.68l-59.14-112.16l-55.04,1.43L496.08,1292.06z M465.46,1146.2l54.58-1.42 l-62.61-118.74l-18.03-4.65l0.36-1.41l16.74,4.32l-27.63-52.4L465.46,1146.2z M458.42,1024.79l45.35,11.7l-74.14-66.29 L458.42,1024.79z M431.46,969.87l75.38,67.41l136.26,35.15L431.46,969.87z M649.76,1075.65l-140.54-36.25l114.83,102.68l154.53-4.01 L649.76,1075.65z M656.92,1077.5l124.84,60.5l51.97-1.35l47.7-1.24L656.92,1077.5z M784.62,1139.38l41.54,20.13l56.45-22.67 L784.62,1139.38z'/%3E %3C/svg%3E");
  2568. background-position: -90% 10%; /* BMOD -50% 10% */
  2569. background-repeat: repeat-y;
  2570. background-size: 75% auto;
  2571. content: '';
  2572. display: block;
  2573. height: 100%;
  2574. left: 0;
  2575. position: absolute;
  2576. top: 0;
  2577. width: 40vw; /* BMOD 50vw */
  2578. z-index: -1;
  2579. }
  2580. #wrapper section {
  2581. display: grid;
  2582. grid-template-areas: "header content" "footer content";
  2583. grid-template-columns: 40vw 60vw; /* BMOD 50vw 5vw */
  2584. grid-template-rows: 1fr;
  2585. }
  2586. #wrapper section:first-child {
  2587. margin-top: 0;
  2588. }
  2589. #wrapper section > header {
  2590. grid-area: header;
  2591. justify-self: end;
  2592. text-align: right;
  2593. }
  2594. #wrapper section > header h2 {
  2595. margin: 0 0 5rem 0;
  2596. }
  2597. #wrapper section > header h1 + p {
  2598. font-family: "Raleway", Helvetica, sans-serif;
  2599. font-size: 0.8rem;
  2600. letter-spacing: 0.175em;
  2601. line-height: 2.5;
  2602. text-transform: uppercase;
  2603. }
  2604. #wrapper section > header ul.actions {
  2605. justify-content: flex-end;
  2606. }
  2607. #wrapper section > .content {
  2608. grid-area: content;
  2609. max-width: 70rem; /* BMOD 60rem */
  2610. position: relative;
  2611. }
  2612. #wrapper section > footer {
  2613. grid-area: footer;
  2614. text-align: right;
  2615. }
  2616. #wrapper section > footer ul.actions {
  2617. justify-content: flex-end;
  2618. }
  2619. #wrapper > section {
  2620. position: relative;
  2621. }
  2622. #wrapper > section > header:before {
  2623. background: #43d9b8;
  2624. content: '';
  2625. display: block;
  2626. margin-top: 1rem;
  2627. position: absolute;
  2628. width: 2px;
  2629. }
  2630. #wrapper > section > header h1, #wrapper > section > header h2 {
  2631. position: relative;
  2632. }
  2633. #wrapper > section > header h1:before, #wrapper > section > header h2:before {
  2634. background: #43d9b8;
  2635. content: '';
  2636. display: block;
  2637. height: 2px;
  2638. position: absolute;
  2639. top: 1rem;
  2640. }
  2641. #wrapper > section > header h1:after, #wrapper > section > header h2:after {
  2642. background: #43d9b8;
  2643. border-radius: 0.5rem;
  2644. content: '';
  2645. display: block;
  2646. height: 0.5rem;
  2647. position: absolute;
  2648. top: 0.75rem;
  2649. width: 0.5rem;
  2650. }
  2651. #wrapper > section > header h1 {
  2652. margin-top: -2rem;
  2653. }
  2654. #wrapper > section > header h1:before {
  2655. top: 3rem;
  2656. }
  2657. #wrapper > section > header h1:after {
  2658. top: 2.75rem;
  2659. }
  2660. #wrapper > section > .content > section {
  2661. position: relative;
  2662. }
  2663. #wrapper > section > .content > section:first-child {
  2664. margin-top: 6rem;
  2665. }
  2666. #wrapper > section.intro {
  2667. align-items: center;
  2668. }
  2669. #wrapper > section.intro > header {
  2670. padding-top: 4rem;
  2671. width: 100%;
  2672. }
  2673. #wrapper > section.intro > header > * {
  2674. margin-left: auto;
  2675. }
  2676. #wrapper > section.intro > header:before {
  2677. left: auto;
  2678. }
  2679. #wrapper > section.intro > .content {
  2680. height: 100vh;
  2681. max-width: none;
  2682. }
  2683. #wrapper > section:last-of-type > header:before {
  2684. height: 100%;
  2685. }
  2686. #wrapper > section:last-of-type > header:after {
  2687. background: #43d9b8;
  2688. border-radius: 0.5rem;
  2689. bottom: -1.5rem;
  2690. content: '';
  2691. display: block;
  2692. height: 0.5rem;
  2693. position: absolute;
  2694. width: 0.5rem;
  2695. z-index: 1;
  2696. }
  2697. #wrapper .copyright {
  2698. color: rgba(0, 0, 0, 0.25);
  2699. font-size: 1rem;
  2700. left: 50vw;
  2701. position: relative;
  2702. width: 50vw;
  2703. }
  2704. #wrapper .copyright a {
  2705. color: inherit;
  2706. }
  2707. #wrapper section {
  2708. margin: 7.5rem 0 0 0;
  2709. }
  2710. #wrapper section > header {
  2711. padding: 0 10rem 0 5rem;
  2712. width: 35rem;
  2713. }
  2714. #wrapper section > .content {
  2715. padding: 0 5rem;
  2716. }
  2717. #wrapper section > footer {
  2718. padding: 0 10rem;
  2719. }
  2720. #wrapper > section > header:before {
  2721. height: calc(100% + 10rem);
  2722. left: calc(40vw - 5rem); /* BMOD 5vw - 5rem */
  2723. }
  2724. #wrapper > section > header h1:before, #wrapper > section > header h2:before {
  2725. right: -5rem;
  2726. width: 2.5rem;
  2727. }
  2728. #wrapper > section > header h1:after, #wrapper > section > header h2:after {
  2729. right: -2.5rem;
  2730. }
  2731. #wrapper > section > .content > section {
  2732. left: calc(-40vw - 5rem); /* BMOD -50vw - 5rem */
  2733. }
  2734. #wrapper > section > .content > section > header {
  2735. width: 32rem;
  2736. }
  2737. #wrapper > section.intro > header > * {
  2738. width: 20rem;
  2739. }
  2740. #wrapper > section.intro > header:before {
  2741. margin-left: calc(40vw - 10rem); /* BMOD 60vw - 10rem */
  2742. }
  2743. @media screen and (max-width: 1152px) {
  2744. #wrapper > section.intro > header > * {
  2745. width: 100%;
  2746. }
  2747. #wrapper > section.intro > header:before {
  2748. margin-left: 0;
  2749. }
  2750. }
  2751. #wrapper > section:last-of-type > header:after {
  2752. left: calc(40vw - 5rem - 0.25rem + 1px); /* BMOD 50vw - 5rem - 0.25rem + 1px */
  2753. }
  2754. #wrapper .copyright {
  2755. padding: 0 5rem;
  2756. }
  2757. @media screen and (max-width: 1280px) {
  2758. #wrapper {
  2759. padding: 0 0 8rem 0;
  2760. }
  2761. #wrapper section {
  2762. margin: 6rem 0 0 0;
  2763. }
  2764. #wrapper section > header {
  2765. padding: 0 8rem 0 4rem;
  2766. width: 33rem;
  2767. }
  2768. #wrapper section > .content {
  2769. padding: 0 4rem;
  2770. }
  2771. #wrapper section > footer {
  2772. padding: 0 8rem;
  2773. }
  2774. #wrapper > section > header:before {
  2775. height: calc(100% + 8rem);
  2776. left: calc(50vw - 4rem);
  2777. }
  2778. #wrapper > section > header h1:before, #wrapper > section > header h2:before {
  2779. right: -4rem;
  2780. width: 2rem;
  2781. }
  2782. #wrapper > section > header h1:after, #wrapper > section > header h2:after {
  2783. right: -2rem;
  2784. }
  2785. #wrapper > section > .content > section {
  2786. left: calc(-50vw - 4rem);
  2787. }
  2788. #wrapper > section > .content > section > header {
  2789. width: 30rem;
  2790. }
  2791. #wrapper > section.intro > header > * {
  2792. width: 21rem;
  2793. }
  2794. #wrapper > section.intro > header:before {
  2795. margin-left: calc(50vw - 8rem);
  2796. }
  2797. }
  2798. @media screen and (max-width: 1280px) and (max-width: 1152px) {
  2799. #wrapper > section.intro > header > * {
  2800. width: 100%;
  2801. }
  2802. #wrapper > section.intro > header:before {
  2803. margin-left: 0;
  2804. }
  2805. }
  2806. @media screen and (max-width: 1280px) {
  2807. #wrapper > section:last-of-type > header:after {
  2808. left: calc(50vw - 4rem - 0.25rem + 1px);
  2809. }
  2810. #wrapper .copyright {
  2811. padding: 0 4rem;
  2812. }
  2813. }
  2814. @media screen and (max-width: 1152px) {
  2815. #wrapper {
  2816. padding: 0;
  2817. }
  2818. #wrapper:before {
  2819. display: none;
  2820. }
  2821. #wrapper section {
  2822. grid-template-areas: "header" "content" "footer";
  2823. grid-template-columns: 1fr;
  2824. grid-template-rows: 3fr;
  2825. }
  2826. #wrapper section > header {
  2827. justify-self: start;
  2828. padding: 0;
  2829. text-align: left;
  2830. width: 100%;
  2831. }
  2832. #wrapper section > header ul.actions {
  2833. justify-content: flex-start;
  2834. }
  2835. #wrapper section > .content {
  2836. padding: 0;
  2837. width: 100%;
  2838. overflow-x: hidden;
  2839. }
  2840. #wrapper section > footer {
  2841. padding: 0;
  2842. text-align: left;
  2843. }
  2844. #wrapper section > footer ul.actions {
  2845. justify-content: flex-start;
  2846. }
  2847. #wrapper > section {
  2848. margin: 0;
  2849. }
  2850. #wrapper > section > header {
  2851. background-attachment: fixed;
  2852. background-color: #49fcd4;
  2853. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 920 1750' x='0px' y='0px'%3E %3Cpath style='fill: rgba(67, 217, 184, 0.5)' d='M889.72,1137.55l-2.91-0.75l-364.39,282.94l-0.7-0.9l-0.51,0.11l-94.77-451.5l-32.51-15.75l-16.73-8.11l0,0.68 l-1.46,0l0-1.39l-1.89-0.92l-112.41-54.47l-0.29,1.03l-1.41-0.37l0.37-1.31l-34.14-16.54l-98.56-47.76l-0.59,0.81l-1.16-0.88 l0.42-0.57L11.43,766.33l-0.25,0.2l-0.9-1.15l102.87-79.98l0.08-0.1l0.02,0.02l116.68-90.72l-0.18-0.34l1.3-0.66l0.05,0.09 l100.5-78.14l-0.07-0.32l0.65-0.14l42.3-32.89l-0.15-54.54l-0.59,0.29l-0.64-1.31l1.23-0.6l-0.01-4.54l-0.33-122.47l-0.99,0.18 l-0.28-1.43l1.27-0.23l-0.4-147.49l-0.87-0.16l0.28-1.43l0.58,0.1l-0.35-127.48l-0.13-0.06l0.64-1.31L489.97,76.8l0.73,0.19 l-0.04,0.14l132.63,65.11l0.33-0.45l1.16,0.88l-0.16,0.22l114.21,56.07l0.45-0.35l0.72,0.93l47.89,23.51l2.76-1.36l0.56,4.61 l-3.32-1.63L571.52,330.88L375.95,482.93l0.66,239.95l51.12,243.57l222.53,107.83l236.23,60.93l2.27-1.77 M375.8,425.34l17.25-8.47 l36.13-127.75l-53.73,9.66L375.8,425.34z M551,241.05l38.19-52.2l-123.83-22.27l-34.13,120.68l98.99-17.81L551,241.05z M532.3,269.09l151.34-27.22l37.63-29.25l-130.48-23.47L532.3,269.09z M303.38,733.9l-2.36-4.48l-44.18-83.78L182.5,747.25 l40.78,36.46l52.69,47.11L303.38,733.9z M277.18,831.91l56.95,50.93L375.69,920l-0.13-49.23l-71.19-135L277.18,831.91z M303.96,731.86l41.93-148.25l-9.74-46.39L257.8,644.33L303.96,731.86z M304.94,733.73l9.55,18.12l61.05,115.78l-0.39-144.6 l-16.9-80.53l-11.71-55.81L304.94,733.73z M375.21,211.79l0.23,85.51l54.17-9.74l34.29-121.23l-88.87-15.98L375.21,211.79z M430.78,288.83l-17.88,63.21L394.81,416l44.01-21.6l90.15-123.23L430.78,288.83z M287.76,898.62l87.99,42.64l-0.05-19.29 l-91.37-81.71l-7.59-6.78l-14.88,52.59L287.76,898.62z M174.26,843.62l86.26,41.8l15-53.03l-93.89-83.95l-53.34,72.91L174.26,843.62 z M113.18,687.22L12.71,765.33l55.69,26.99l58.56,28.38l53.58-73.24l-34.83-31.14L113.18,687.22z M230.62,595.92l-116.27,90.4 l63.02,56.36l4.03,3.61l74.67-102.08l-7.47-14.17L230.62,595.92z M331.94,517.15l-100.15,77.86l25.25,47.88l78.71-107.59l-1.71-8.14 L331.94,517.15z M333.22,516.15l2.02,9.64l1.66,7.92l34.65-47.37L333.22,516.15z M337.31,535.63l9.43,44.95l26.67-94.3 L337.31,535.63z M347.39,583.66l27.74,132.16l-0.62-228.04L347.39,583.66z M374.7,21.83l0.35,127.02l89.27,16.06l24.61-87 L374.7,21.83z M490.25,78.56l-22.26,78.7l-2.24,7.91l124.39,22.37l10.23-13.99l22.04-30.12L490.25,78.56z M623.74,144.09 l-12.29,16.8l-19.71,26.95l131.07,23.58l14.73-11.45L623.74,144.09z M739,200.67l-13.3,10.34l-0.96,0.74l58.14,10.46L739,200.67z M723.19,212.96l-25.33,19.69l-11.14,8.66l97.03-17.45L723.19,212.96z M782.89,225.5l-98.64,17.74l-107.06,83.23L782.89,225.5z M631.68,282.26l49.48-38.47l-150.1,27l-89.41,122.22l129.1-63.37L631.68,282.26z M565.06,334.05l-125.28,61.5l-45.94,62.8 l-14.96,20.44L565.06,334.05z M425.31,412.87l11.65-15.93l-42.69,20.96l-13.66,48.3l-3.58,12.67L425.31,412.87z M392.51,418.76 l-16.71,8.2l0.01,4.72l0.12,45.68L392.51,418.76z M377.21,941.96l21.37,10.36l24.14,11.7l-45.56-40.74L377.21,941.96z M377.15,921.31l34.83,31.15l12.57,11.24l-47.53-90.14L377.15,921.31z M376.63,730.07l0.38,140.33l48.29,91.59L376.63,730.07z M806.29,1197.48l75.8-58.86l-28.56,11.47l-25.6,10.28l14.96,7.25l-0.64,1.31l-16.16-7.83l-124.76,50.1l40.56,36.27L806.29,1197.48z M522.43,1146.18l58.88,111.66l52.71-21.17l64.61-25.95l-75.11-67.17L522.43,1146.18z M621.92,1142.14l-115.78-103.53l-46.8-12.07 l62.33,118.2l7.06-0.18L621.92,1142.14z M700.14,1210.12l124.19-49.87l-42.89-20.78l-155.8,4.04L700.14,1210.12z M679.7,1295.77 l61.03-47.39l-40.9-36.57l-117.85,47.32l42.09,79.82L679.7,1295.77z M522.48,1417.85l1.83-1.42l98.6-76.56l-42.28-80.19 l-84.25,33.83L522.48,1417.85z M496.08,1292.06l83.87-33.68l-59.14-112.16l-55.04,1.43L496.08,1292.06z M465.46,1146.2l54.58-1.42 l-62.61-118.74l-18.03-4.65l0.36-1.41l16.74,4.32l-27.63-52.4L465.46,1146.2z M458.42,1024.79l45.35,11.7l-74.14-66.29 L458.42,1024.79z M431.46,969.87l75.38,67.41l136.26,35.15L431.46,969.87z M649.76,1075.65l-140.54-36.25l114.83,102.68l154.53-4.01 L649.76,1075.65z M656.92,1077.5l124.84,60.5l51.97-1.35l47.7-1.24L656.92,1077.5z M784.62,1139.38l41.54,20.13l56.45-22.67 L784.62,1139.38z'/%3E %3C/svg%3E");
  2854. background-position: 25% 50%;
  2855. background-repeat: repeat-y;
  2856. background-size: 40rem auto;
  2857. }
  2858. #wrapper > section > header > * {
  2859. max-width: 25rem;
  2860. }
  2861. #wrapper > section > header > :last-child {
  2862. margin-bottom: 0;
  2863. }
  2864. #wrapper > section > header:before {
  2865. display: none;
  2866. }
  2867. #wrapper > section > header h1:before, #wrapper > section > header h2:before {
  2868. display: none;
  2869. }
  2870. #wrapper > section > header h1:after, #wrapper > section > header h2:after {
  2871. display: none;
  2872. }
  2873. #wrapper > section > .content > :last-child {
  2874. margin-bottom: 0;
  2875. }
  2876. #wrapper > section > .content > section {
  2877. left: 0;
  2878. }
  2879. #wrapper > section > .content > section:first-child {
  2880. margin-top: 0;
  2881. }
  2882. #wrapper > section > .content > section > header {
  2883. width: 100%;
  2884. }
  2885. #wrapper > section > .content > section:last-child {
  2886. margin-bottom: 0;
  2887. }
  2888. #wrapper > section > footer > :last-child {
  2889. margin-bottom: 0;
  2890. }
  2891. #wrapper > section.intro {
  2892. margin-bottom: 0;
  2893. }
  2894. #wrapper > section.intro > header {
  2895. margin-bottom: 0;
  2896. }
  2897. #wrapper > section.intro > header ul.actions {
  2898. display: none;
  2899. }
  2900. #wrapper > section.intro > header > * {
  2901. margin-left: 0;
  2902. margin-right: 0;
  2903. width: 100%;
  2904. }
  2905. #wrapper > section.intro > header > ul.actions {
  2906. margin-left: -1rem;
  2907. }
  2908. #wrapper > section.intro > header:before {
  2909. margin-left: 0;
  2910. }
  2911. #wrapper > section:last-of-type > header:after {
  2912. display: none;
  2913. }
  2914. #wrapper .copyright {
  2915. left: 0;
  2916. width: 100%;
  2917. }
  2918. #wrapper section {
  2919. margin: 6rem 0 0 0;
  2920. }
  2921. #wrapper > section {
  2922. margin: 0;
  2923. }
  2924. #wrapper > section > header {
  2925. padding: 4rem 4rem;
  2926. }
  2927. #wrapper > section > .content {
  2928. padding: 4rem 4rem;
  2929. }
  2930. #wrapper > section > .content > section {
  2931. margin: 4rem 0;
  2932. }
  2933. #wrapper > section > footer {
  2934. padding: 0 4rem 4rem 4rem;
  2935. }
  2936. #wrapper > section.intro > header {
  2937. padding: 8rem 4rem 5rem 4rem;
  2938. }
  2939. #wrapper .copyright {
  2940. padding: 0 4rem 4rem 4rem;
  2941. }
  2942. }
  2943. @media screen and (max-width: 736px) {
  2944. #wrapper section {
  2945. margin: 3rem 0 0 0;
  2946. }
  2947. #wrapper > section {
  2948. margin: 0;
  2949. }
  2950. #wrapper > section > header {
  2951. padding: 3rem 2rem;
  2952. }
  2953. #wrapper > section > .content {
  2954. padding: 3rem 2rem;
  2955. }
  2956. #wrapper > section > .content > section {
  2957. margin: 3rem 0;
  2958. }
  2959. #wrapper > section > footer {
  2960. padding: 0 2rem 3rem 2rem;
  2961. }
  2962. #wrapper > section.intro > header {
  2963. padding: 5.5rem 2rem 2.5rem 2rem;
  2964. }
  2965. #wrapper .copyright {
  2966. padding: 0 2rem 2rem 2rem;
  2967. }
  2968. }
  2969. @media screen and (max-width: 360px) {
  2970. #wrapper section {
  2971. margin: 2.25rem 0 0 0;
  2972. }
  2973. #wrapper > section {
  2974. margin: 0;
  2975. }
  2976. #wrapper > section > header {
  2977. padding: 2.25rem 1.5rem;
  2978. }
  2979. #wrapper > section > .content {
  2980. padding: 2.25rem 1.5rem;
  2981. }
  2982. #wrapper > section > .content > section {
  2983. margin: 2.25rem 0;
  2984. }
  2985. #wrapper > section > footer {
  2986. padding: 0 1.5rem 2.25rem 1.5rem;
  2987. }
  2988. #wrapper > section.intro > header {
  2989. padding: 4.875rem 1.5rem 1.875rem 1.5rem;
  2990. }
  2991. #wrapper .copyright {
  2992. padding: 0 1.5rem 1.5rem 1.5rem;
  2993. }
  2994. }
  2995. body.is-mobile #wrapper:before {
  2996. background-attachment: scroll;
  2997. background-position: 50% -3%;
  2998. background-repeat: repeat-y;
  2999. background-size: 150% auto;
  3000. }
  3001. body.is-mobile #wrapper > section > header {
  3002. background-attachment: scroll;
  3003. background-position: 25% 50%;
  3004. }
  3005. body.is-mobile #wrapper > section.intro > header {
  3006. background-position: 25% 23%;
  3007. }
  3008. #wrapper:before {
  3009. transition: opacity 1s ease;
  3010. }
  3011. body.is-preload #wrapper:before {
  3012. opacity: 0;
  3013. }
  3014. #wrapper > section.intro {
  3015. transition: opacity 1s ease;
  3016. opacity: 1;
  3017. }
  3018. #wrapper > section.intro > header {
  3019. transition: transform 1s ease;
  3020. }
  3021. #wrapper > section.intro > .content {
  3022. transition: transform 1s ease;
  3023. }
  3024. body.is-preload #wrapper > section.intro {
  3025. opacity: 0;
  3026. }
  3027. body.is-preload #wrapper > section.intro > header {
  3028. transform: translateY(1rem);
  3029. }
  3030. body.is-preload #wrapper > section.intro > .content {
  3031. transform: translateY(-1rem);
  3032. }
  3033. @media screen and (max-width: 1280px) {
  3034. #wrapper > section.intro > header > * {
  3035. transition: transform 1s ease, opacity 1s ease;
  3036. }
  3037. body.is-preload #wrapper > section.intro > header {
  3038. transform: none;
  3039. }
  3040. body.is-preload #wrapper > section.intro > header > * {
  3041. transform: translate(-0.5rem);
  3042. opacity: 0;
  3043. }
  3044. body.is-preload #wrapper > section.intro > .content {
  3045. transform: none;
  3046. }
  3047. }
  3048. body.is-ie #wrapper section {
  3049. display: flex;
  3050. flex-wrap: wrap;
  3051. }
  3052. body.is-ie #wrapper section > header {
  3053. width: 50%;
  3054. }
  3055. body.is-ie #wrapper section > .content {
  3056. width: 50%;
  3057. }
  3058. body.is-ie #wrapper section > footer {
  3059. width: 50%;
  3060. text-align: left;
  3061. margin-left: 50%;
  3062. padding: 5rem;
  3063. }
  3064. body.is-ie #wrapper > section > .content > section {
  3065. width: 100vw;
  3066. }
  3067. @media screen and (max-width: 1280px) {
  3068. body.is-ie #wrapper section > footer {
  3069. padding: 4rem;
  3070. }
  3071. }