theme.css 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060
  1. * {
  2. -webkit-box-sizing: border-box;
  3. box-sizing: border-box; }
  4. /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  5. /* Document
  6. ========================================================================== */
  7. /**
  8. * 1. Correct the line height in all browsers.
  9. * 2. Prevent adjustments of font size after orientation changes in iOS.
  10. */
  11. html {
  12. margin: 0;
  13. padding: 0;
  14. font-size: 16px;
  15. line-height: 1.15;
  16. /* 1 */
  17. -webkit-text-size-adjust: 100%;
  18. /* 2 */
  19. height: 100%;
  20. width: 100%;
  21. font-family: Times, "Times New Roman", Georgia, serif, Verdana, Arial, Helvetica, sans-serif; }
  22. /* Sections
  23. ========================================================================== */
  24. /**
  25. * Remove the margin in all browsers.
  26. */
  27. body {
  28. margin: 0;
  29. padding: 0;
  30. height: 100%;
  31. width: 100%; }
  32. /**
  33. * Render the `main` element consistently in IE.
  34. */
  35. main {
  36. display: block; }
  37. /**
  38. * Correct the font size and margin on `h1` elements within `section` and
  39. * `article` contexts in Chrome, Firefox, and Safari.
  40. */
  41. h1 {
  42. font-size: 2rem;
  43. margin: 0; }
  44. h1, h2, h3, h4, h5, p, em, strong, ul, li, a {
  45. margin: 0;
  46. padding: 0; }
  47. ul, li, ol {
  48. list-style: none; }
  49. /* Grouping content
  50. ========================================================================== */
  51. /**
  52. * 1. Add the correct box sizing in Firefox.
  53. * 2. Show the overflow in Edge and IE.
  54. */
  55. hr {
  56. -webkit-box-sizing: content-box;
  57. box-sizing: content-box;
  58. /* 1 */
  59. height: 0;
  60. /* 1 */
  61. overflow: visible;
  62. /* 2 */ }
  63. /**
  64. * 1. Correct the inheritance and scaling of font size in all browsers.
  65. * 2. Correct the odd `em` font sizing in all browsers.
  66. */
  67. header span {
  68. white-space: nowrap; }
  69. pre {
  70. font-family: monospace, monospace;
  71. /* 1 */
  72. font-size: 1em;
  73. /* 2 */ }
  74. /* Text-level semantics
  75. ========================================================================== */
  76. /**
  77. * Remove the gray background on active links in IE 10.
  78. */
  79. ul {
  80. list-style: none; }
  81. ul, li {
  82. margin: 0;
  83. padding: 0; }
  84. a {
  85. background-color: transparent;
  86. color: black;
  87. text-decoration: none; }
  88. /**
  89. * 1. Remove the bottom border in Chrome 57-
  90. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  91. */
  92. abbr[title] {
  93. border-bottom: none;
  94. /* 1 */
  95. text-decoration: underline;
  96. /* 2 */
  97. -webkit-text-decoration: underline dotted;
  98. text-decoration: underline dotted;
  99. /* 2 */ }
  100. /**
  101. * Add the correct font weight in Chrome, Edge, and Safari.
  102. */
  103. b,
  104. strong {
  105. font-weight: bolder; }
  106. /**
  107. * 1. Correct the inheritance and scaling of font size in all browsers.
  108. * 2. Correct the odd `em` font sizing in all browsers.
  109. */
  110. code,
  111. kbd,
  112. samp {
  113. font-family: monospace, monospace;
  114. /* 1 */
  115. font-size: 1em;
  116. /* 2 */ }
  117. /**
  118. * Add the correct font size in all browsers.
  119. */
  120. small {
  121. font-size: 80%; }
  122. /**
  123. * Prevent `sub` and `sup` elements from affecting the line height in
  124. * all browsers.
  125. */
  126. sub,
  127. sup {
  128. font-size: 75%;
  129. line-height: 0;
  130. position: relative;
  131. vertical-align: baseline; }
  132. sub {
  133. bottom: -0.25em; }
  134. sup {
  135. top: -0.5em; }
  136. /* Embedded content
  137. ========================================================================== */
  138. /**
  139. * Remove the border on images inside links in IE 10.
  140. */
  141. img {
  142. border-style: none;
  143. width: 100%;
  144. height: auto;
  145. vertical-align: bottom; }
  146. iframe {
  147. border: none; }
  148. /* Forms
  149. ========================================================================== */
  150. /**
  151. * 1. Change the font styles in all browsers.
  152. * 2. Remove the margin in Firefox and Safari.
  153. */
  154. button,
  155. input,
  156. optgroup,
  157. select,
  158. textarea {
  159. font-family: inherit;
  160. /* 1 */
  161. font-size: 100%;
  162. /* 1 */
  163. line-height: 1.15;
  164. /* 1 */
  165. margin: 0;
  166. /* 2 */ }
  167. /**
  168. * Show the overflow in IE.
  169. * 1. Show the overflow in Edge.
  170. */
  171. button,
  172. input {
  173. /* 1 */
  174. overflow: visible; }
  175. /**
  176. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  177. * 1. Remove the inheritance of text transform in Firefox.
  178. */
  179. button,
  180. select {
  181. /* 1 */
  182. text-transform: none; }
  183. /**
  184. * Correct the inability to style clickable types in iOS and Safari.
  185. */
  186. button,
  187. [type="button"],
  188. [type="reset"],
  189. [type="submit"] {
  190. -webkit-appearance: button; }
  191. /**
  192. * Remove the inner border and padding in Firefox.
  193. */
  194. button::-moz-focus-inner,
  195. [type="button"]::-moz-focus-inner,
  196. [type="reset"]::-moz-focus-inner,
  197. [type="submit"]::-moz-focus-inner {
  198. border-style: none;
  199. padding: 0; }
  200. /**
  201. * Restore the focus styles unset by the previous rule.
  202. */
  203. button:-moz-focusring,
  204. [type="button"]:-moz-focusring,
  205. [type="reset"]:-moz-focusring,
  206. [type="submit"]:-moz-focusring {
  207. outline: 1px dotted ButtonText; }
  208. /**
  209. * Correct the padding in Firefox.
  210. */
  211. fieldset {
  212. padding: 0.35em 0.75em 0.625em; }
  213. /**
  214. * 1. Correct the text wrapping in Edge and IE.
  215. * 2. Correct the color inheritance from `fieldset` elements in IE.
  216. * 3. Remove the padding so developers are not caught out when they zero out
  217. * `fieldset` elements in all browsers.
  218. */
  219. legend {
  220. -webkit-box-sizing: border-box;
  221. box-sizing: border-box;
  222. /* 1 */
  223. color: inherit;
  224. /* 2 */
  225. display: table;
  226. /* 1 */
  227. max-width: 100%;
  228. /* 1 */
  229. padding: 0;
  230. /* 3 */
  231. white-space: normal;
  232. /* 1 */ }
  233. /**
  234. * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  235. */
  236. progress {
  237. vertical-align: baseline; }
  238. /**
  239. * Remove the default vertical scrollbar in IE 10+.
  240. */
  241. textarea {
  242. overflow: auto; }
  243. /**
  244. * 1. Add the correct box sizing in IE 10.
  245. * 2. Remove the padding in IE 10.
  246. */
  247. [type="checkbox"],
  248. [type="radio"] {
  249. -webkit-box-sizing: border-box;
  250. box-sizing: border-box;
  251. /* 1 */
  252. padding: 0;
  253. /* 2 */ }
  254. /**
  255. * Correct the cursor style of increment and decrement buttons in Chrome.
  256. */
  257. [type="number"]::-webkit-inner-spin-button,
  258. [type="number"]::-webkit-outer-spin-button {
  259. height: auto; }
  260. /**
  261. * 1. Correct the odd appearance in Chrome and Safari.
  262. * 2. Correct the outline style in Safari.
  263. */
  264. [type="search"] {
  265. -webkit-appearance: textfield;
  266. /* 1 */
  267. outline-offset: -2px;
  268. /* 2 */ }
  269. /**
  270. * Remove the inner padding in Chrome and Safari on macOS.
  271. */
  272. [type="search"]::-webkit-search-decoration {
  273. -webkit-appearance: none; }
  274. /**
  275. * 1. Correct the inability to style clickable types in iOS and Safari.
  276. * 2. Change font properties to `inherit` in Safari.
  277. */
  278. ::-webkit-file-upload-button {
  279. -webkit-appearance: button;
  280. /* 1 */
  281. font: inherit;
  282. /* 2 */ }
  283. /* Interactive
  284. ========================================================================== */
  285. /*
  286. * Add the correct display in Edge, IE 10+, and Firefox.
  287. */
  288. details {
  289. display: block; }
  290. /*
  291. * Add the correct display in all browsers.
  292. */
  293. summary {
  294. display: list-item; }
  295. /* Misc
  296. ========================================================================== */
  297. /**
  298. * Add the correct display in IE 10+.
  299. */
  300. template {
  301. display: none; }
  302. /**
  303. * Add the correct display in IE 10.
  304. */
  305. [hidden] {
  306. display: none; }
  307. @font-face {
  308. font-family: "Regular";
  309. src: url("../fonts/aileron_regular/Aileron-Regular-webfont.eot");
  310. src: url("../fonts/aileron_regular/Aileron-Regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/aileron_regular/Aileron-Regular-webfont.woff") format("woff"), url("../fonts/aileron_regular/Aileron-Regular-webfont.ttf") format("truetype"), url("../fonts/aileron_regular/Aileron-Regular-webfont.svg#Regular") format("svg"); }
  311. @font-face {
  312. font-family: "bold";
  313. src: url("../fonts/aileron_bold/Aileron-Bold-webfont.eot");
  314. src: url("../fonts/aileron_bold/Aileron-Bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/aileron_bold/Aileron-Bold-webfont.woff") format("woff"), url("../fonts/aileron_bold/Aileron-Bold-webfont.ttf") format("truetype"), url("../fonts/aileron_bold/Aileron-Bold-webfont.svg#bold") format("svg"); }
  315. @font-face {
  316. font-family: "now_alt_bold";
  317. src: url("../fonts/now_alt/nowalt-bold-webfont.eot");
  318. src: url("../fonts/now_alt/nowalt-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/now_alt/nowalt-bold-webfont.woff") format("woff"), url("../fonts/now_alt/nowalt-bold-webfont.ttf") format("truetype"), url("../fonts/now_alt/nowalt-bold-webfont.svg#now_alt_bold") format("svg"); }
  319. @font-face {
  320. font-family: "now_alt_light";
  321. src: url("../fonts/now_alt/nowalt-light-webfont.eot");
  322. src: url("../fonts/now_alt/nowalt-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/now_alt/nowalt-light-webfont.woff") format("woff"), url("../fonts/now_alt/nowalt-light-webfont.ttf") format("truetype"), url("../fonts/now_alt/nowalt-light-webfont.svg#now_alt_light") format("svg"); }
  323. @font-face {
  324. font-family: "now_alt_medium";
  325. src: url("../fonts/now_alt/nowalt-medium-webfont.eot");
  326. src: url("../fonts/now_alt/nowalt-medium-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/now_alt/nowalt-medium-webfont.woff") format("woff"), url("../fonts/now_alt/nowalt-medium-webfont.ttf") format("truetype"), url("../fonts/now_alt/nowalt-medium-webfont.svg#now_alt_medium") format("svg"); }
  327. .default-animation {
  328. transition: all 0.5s ease; }
  329. .pulse {
  330. -webkit-animation-name: pulse_animation;
  331. animation-name: pulse_animation;
  332. -webkit-animation-duration: 2000ms;
  333. animation-duration: 2000ms;
  334. -webkit-transform-origin: 70% 70%;
  335. transform-origin: 70% 70%;
  336. -webkit-animation-iteration-count: infinite;
  337. animation-iteration-count: infinite;
  338. -webkit-animation-timing-function: linear;
  339. animation-timing-function: linear; }
  340. @-webkit-keyframes pulse_animation {
  341. 0% {
  342. -webkit-transform: scale(1);
  343. transform: scale(1); }
  344. 30% {
  345. -webkit-transform: scale(1);
  346. transform: scale(1); }
  347. 40% {
  348. -webkit-transform: scale(1.08);
  349. transform: scale(1.08); }
  350. 50% {
  351. -webkit-transform: scale(1);
  352. transform: scale(1); }
  353. 60% {
  354. -webkit-transform: scale(1);
  355. transform: scale(1); }
  356. 70% {
  357. -webkit-transform: scale(1.05);
  358. transform: scale(1.05); }
  359. 80% {
  360. -webkit-transform: scale(1);
  361. transform: scale(1); }
  362. 100% {
  363. -webkit-transform: scale(1);
  364. transform: scale(1); } }
  365. @keyframes pulse_animation {
  366. 0% {
  367. -webkit-transform: scale(1);
  368. transform: scale(1); }
  369. 30% {
  370. -webkit-transform: scale(1);
  371. transform: scale(1); }
  372. 40% {
  373. -webkit-transform: scale(1.08);
  374. transform: scale(1.08); }
  375. 50% {
  376. -webkit-transform: scale(1);
  377. transform: scale(1); }
  378. 60% {
  379. -webkit-transform: scale(1);
  380. transform: scale(1); }
  381. 70% {
  382. -webkit-transform: scale(1.05);
  383. transform: scale(1.05); }
  384. 80% {
  385. -webkit-transform: scale(1);
  386. transform: scale(1); }
  387. 100% {
  388. -webkit-transform: scale(1);
  389. transform: scale(1); } }
  390. html, body {
  391. font-family: "Regular";
  392. line-height: 1.35; }
  393. h2 {
  394. font-size: 2rem; }
  395. h4, #thanks {
  396. font-weight: normal;
  397. font-size: 1rem;
  398. font-family: "bold"; }
  399. h5 {
  400. font-weight: normal;
  401. font-size: 1.2rem; }
  402. nav a {
  403. font-family: "bold";
  404. font-size: 0.9rem; }
  405. .container > .title {
  406. font-family: "bold"; }
  407. .card-header .publics {
  408. font-size: 0.8rem;
  409. font-family: "bold"; }
  410. .card-title h2 {
  411. font-family: "now_alt_bold";
  412. font-weight: 400;
  413. font-size: 1.2rem !important; }
  414. .card-title .date {
  415. font-size: 0.8rem; }
  416. .card-content .reso a {
  417. font-family: "bold";
  418. font-weight: 400; }
  419. p {
  420. font-size: 0.9rem; }
  421. p strong {
  422. font-family: "bold";
  423. font-weight: normal; }
  424. .gal p {
  425. font-family: "now_alt_bold";
  426. font-weight: 400;
  427. font-size: 1.2rem;
  428. line-height: 2.2rem; }
  429. .entete h1 {
  430. font-size: 1.2rem;
  431. color: white; }
  432. .entete p {
  433. font-family: "now_alt_bold";
  434. font-weight: 400;
  435. font-size: 1.5rem;
  436. line-height: 2rem; }
  437. #home p:not(:last-child) strong {
  438. font-size: 1.3rem; }
  439. #home .content p strong {
  440. font-family: "now_alt_bold";
  441. font-weight: 400; }
  442. #home .content p:nth-of-type(n+4):not(:last-child) {
  443. text-align: center; }
  444. #home .content p:nth-of-type(n+4):not(:last-child) strong {
  445. color: #9e0027;
  446. font-family: "now_alt_bold";
  447. font-weight: 400; }
  448. #articles .card {
  449. line-height: 1.5rem; }
  450. #articles .card .card-title {
  451. font-family: "bold";
  452. font-weight: normal; }
  453. #articles .card .wrapper-info {
  454. margin: 5px 0;
  455. font-size: 0.8rem;
  456. font-family: "bold";
  457. color: #9e0027; }
  458. #articles .card .wrapper-info .dt {
  459. text-transform: lowercase; }
  460. #articles .card .readmore {
  461. font-family: "bold";
  462. font-size: 0.8rem; }
  463. .paginations {
  464. font-family: "bold";
  465. font-size: 0.8rem; }
  466. #item .title-wrapper .back, #item-article .title-wrapper .back {
  467. font-family: "bold"; }
  468. #item .title-wrapper .title h1, #item-article .title-wrapper .title h1 {
  469. color: white;
  470. font-size: 1.2rem; }
  471. #item .info-wrapper .date, #item-article .info-wrapper .date {
  472. font-family: "bold";
  473. color: #9e0027;
  474. font-size: 0.8rem; }
  475. #item .info-wrapper .date .dt, #item-article .info-wrapper .date .dt {
  476. text-transform: lowercase; }
  477. #item .info-wrapper .reso, #item-article .info-wrapper .reso {
  478. font-size: 0.8rem;
  479. font-family: "bold"; }
  480. #item .body-wrapper .card-content .txt p, #item-article .body-wrapper .card-content .txt p {
  481. line-height: 1.5rem; }
  482. #item .body-wrapper .card-content .txt h2, #item-article .body-wrapper .card-content .txt h2 {
  483. font-size: 1.2rem;
  484. font-family: "bold";
  485. font-weight: normal; }
  486. #item .body-wrapper .card-content .txt ul li, #item-article .body-wrapper .card-content .txt ul li {
  487. font-size: 0.9rem;
  488. line-height: 1.5rem; }
  489. #item .content .content_s h2, #item-article .content .content_s h2 {
  490. font-family: "bold";
  491. font-size: 1.3rem; }
  492. #item .icones p, #item-article .icones p {
  493. font-family: "now_alt_bold";
  494. font-weight: 400;
  495. color: #9e0027;
  496. font-size: 1.2rem; }
  497. .sidebar .date {
  498. font-size: 0.8rem; }
  499. .sidebar h2 {
  500. font-family: "now_alt_bold";
  501. font-weight: 400;
  502. font-size: 1.4rem;
  503. line-height: 100px;
  504. color: white;
  505. text-align: center; }
  506. .sidebar h3 {
  507. font-size: 1.1rem;
  508. font-family: "now_alt_bold";
  509. font-weight: 400; }
  510. .sidebar .date {
  511. color: #6e6f70; }
  512. .sidebar .side-all-agenda a {
  513. font-size: 0.9rem;
  514. font-family: "bold"; }
  515. #newsletter label {
  516. font-size: 1rem;
  517. line-height: 1.9rem;
  518. font-weight: normal;
  519. font-family: "bold"; }
  520. .cat {
  521. width: 100%; }
  522. .cat a, .cat label {
  523. font-family: "bold"; }
  524. .dt {
  525. font-family: "bold";
  526. color: #9e0027; }
  527. #ajax-test-form .form-label {
  528. font-size: 1.2rem;
  529. font-family: "bold"; }
  530. #ajax-test-form .radio .form-radio {
  531. font-size: 1rem;
  532. font-family: "bold"; }
  533. #ajax-test-form .button-wrapper button {
  534. font-family: "bold"; }
  535. #send-valide .toast {
  536. font-size: 1.3rem;
  537. font-family: "bold"; }
  538. #send-valide .ok {
  539. font-family: "bold"; }
  540. #devis h4 {
  541. font-size: 1rem;
  542. font-family: "now_alt_bold";
  543. font-weight: 400; }
  544. #devis p:nth-of-type(1) {
  545. color: white;
  546. text-align: center; }
  547. #devis p strong {
  548. font-family: "now_alt_bold";
  549. font-weight: 400; }
  550. #devis.item .title, #devis.item-article .title {
  551. font-family: "bold"; }
  552. .demander-votre-devis a {
  553. color: white; }
  554. .demander-votre-devis a p:nth-of-type(1) {
  555. font-size: 2rem; }
  556. .demander-votre-devis a strong {
  557. font-family: "now_alt_bold";
  558. font-weight: 400; }
  559. #reco h5 {
  560. font-family: "bold";
  561. font-weight: 400; }
  562. #footer {
  563. font-family: "now_alt_medium";
  564. font-weight: 400; }
  565. #footer p {
  566. font-size: 0.8rem; }
  567. #footer p a {
  568. font-family: "bold"; }
  569. #home .content p:last-child a:hover {
  570. color: white;
  571. background-color: #b5cb3a;
  572. transition: background-color 0.3s ease; }
  573. header {
  574. width: 100%;
  575. display: flex;
  576. height: 105px;
  577. z-index: 999;
  578. border-bottom: 1px solid #0093a3; }
  579. header > nav {
  580. margin: auto;
  581. min-width: 1100px;
  582. width: 70%;
  583. display: inline-flex;
  584. justify-content: space-between; }
  585. header > nav .navTrigger {
  586. display: none; }
  587. header > nav .logo {
  588. width: 150px; }
  589. header > nav .dropmenu {
  590. width: 70%; }
  591. header > nav .dropmenu > ul {
  592. height: 100%; }
  593. header > nav .reso {
  594. display: inline-flex;
  595. width: auto; }
  596. header > nav .reso a {
  597. display: block;
  598. width: 35px;
  599. margin: auto 5px; }
  600. header nav.dropmenu a {
  601. padding: 10px; }
  602. header nav.dropmenu > ul {
  603. display: -webkit-inline-box;
  604. display: -ms-inline-flexbox;
  605. display: inline-flex;
  606. -ms-flex-wrap: wrap;
  607. flex-wrap: wrap;
  608. width: 100%;
  609. -webkit-box-pack: center;
  610. -ms-flex-pack: center;
  611. justify-content: center;
  612. -webkit-box-align: center;
  613. -ms-flex-align: center;
  614. align-items: center; }
  615. header nav.dropmenu > ul > li {
  616. text-align: center;
  617. position: relative;
  618. margin: 0 10px; }
  619. header nav.dropmenu > ul > li > a {
  620. border-top: 1px solid #0093a3;
  621. border-bottom: 3px solid #b5cb3a; }
  622. header nav.dropmenu > ul > li > ul {
  623. display: none;
  624. width: 100%;
  625. position: absolute;
  626. margin-top: 12px;
  627. z-index: 0;
  628. z-index: 999; }
  629. header nav.dropmenu > ul > li > ul li {
  630. background-color: white; }
  631. header nav.dropmenu > ul > li > ul li a {
  632. display: block;
  633. padding: 10px;
  634. position: relative; }
  635. header nav.dropmenu > ul > li > ul li a:before {
  636. content: "";
  637. position: absolute;
  638. width: 100%;
  639. height: 3px;
  640. bottom: 0;
  641. left: 0;
  642. background-color: #b5cb3a;
  643. visibility: hidden;
  644. -webkit-transform: scaleX(0);
  645. transform: scaleX(0);
  646. -webkit-transition: all 0.3s ease-in-out 0s;
  647. transition: all 0.3s ease-in-out 0s; }
  648. header nav.dropmenu > ul > li:hover > ul {
  649. display: block; }
  650. header nav.dropmenu > ul > li:hover > ul li:hover a:hover:before {
  651. visibility: visible;
  652. -webkit-transform: scaleX(1);
  653. transform: scaleX(1); }
  654. #footer {
  655. padding-bottom: 0;
  656. width: 100%;
  657. background: #d8dadbff; }
  658. #footer .block {
  659. display: -webkit-inline-box;
  660. display: -ms-inline-flexbox;
  661. display: inline-flex;
  662. -ms-flex-wrap: wrap;
  663. flex-wrap: wrap;
  664. width: 100%;
  665. margin: 20px 0;
  666. justify-content: center; }
  667. #footer .block p {
  668. padding: 0 20px; }
  669. #footer .block p img {
  670. width: 100%;
  671. max-width: 150px;
  672. height: auto; }
  673. #footer .block p:nth-of-type(1) img {
  674. float: right; }
  675. #footer .block p:not(:nth-of-type(1)) {
  676. border-left: 1px solid black; }
  677. .opt-out {
  678. height: auto;
  679. -webkit-transform: translateY(70%);
  680. transform: translateY(70%);
  681. z-index: 9999;
  682. position: fixed;
  683. bottom: 0;
  684. width: 100%;
  685. background: rgba(255, 255, 255, 0.5);
  686. text-align: center;
  687. font-family: "bold";
  688. transition: background 0.3s ease, -webkit-transform 0.3s ease;
  689. transition: transform 0.3s ease, background 0.3s ease;
  690. transition: transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease; }
  691. .opt-out iframe {
  692. height: 110px; }
  693. .opt-out p {
  694. cursor: pointer;
  695. font-size: 12px; }
  696. .opt-out img {
  697. width: 20px;
  698. height: auto;
  699. cursor: pointer; }
  700. .opt-out.open {
  701. -webkit-transform: translateX(0);
  702. transform: translateX(0);
  703. background: white;
  704. transition: all 0.3s ease; }
  705. .opt-out.open img {
  706. -webkit-transform: rotate(180deg);
  707. transform: rotate(180deg); }
  708. @media screen and (max-width: 1450px) {
  709. header > nav {
  710. width: 90% !important; }
  711. .start:not(#form)#archive, .start:not(#form)#articles, .start:not(#form)#calendrier {
  712. width: 90% !important; } }
  713. @media screen and (max-width: 1150px) {
  714. header > nav {
  715. min-width: auto !important;
  716. width: 100% !important;
  717. margin: auto 10px; } }
  718. @media screen and (max-width: 1024px) {
  719. header nav {
  720. position: relative;
  721. width: 100% !important; }
  722. header nav .dropmenu {
  723. background: white;
  724. display: none;
  725. position: absolute;
  726. left: -10px;
  727. top: 70px;
  728. width: auto !important;
  729. height: auto;
  730. z-index: 999; }
  731. header nav .dropmenu > ul {
  732. -webkit-box-orient: vertical !important;
  733. -webkit-box-direction: normal !important;
  734. -ms-flex-direction: column !important;
  735. flex-direction: column !important;
  736. -webkit-box-align: start;
  737. -ms-flex-align: start;
  738. align-items: flex-start; }
  739. header nav .dropmenu > ul > li {
  740. text-align: left;
  741. padding: 0 20px; }
  742. header nav .dropmenu > ul > li > ul {
  743. margin: auto;
  744. position: relative; }
  745. header nav .dropmenu > ul > li > ul > li {
  746. text-align: left;
  747. margin-left: 10px; }
  748. header nav .dropmenu > ul > li > ul > li a {
  749. font-family: "Regular"; }
  750. header nav .dropmenu > ul > li > a {
  751. border: none;
  752. line-height: 2rem; }
  753. header nav .dropmenu.active {
  754. display: block; }
  755. header nav .logo {
  756. position: absolute;
  757. width: 150px;
  758. margin: auto;
  759. left: 50%;
  760. transform: translate(-50%, -50%);
  761. top: 50%; }
  762. header nav .navTrigger {
  763. display: block;
  764. cursor: pointer;
  765. width: 30px;
  766. height: 25px;
  767. margin: auto 0;
  768. left: 0;
  769. top: 0;
  770. bottom: 0; }
  771. header nav .navTrigger i {
  772. background-color: #0093a3;
  773. border-radius: 2px;
  774. content: '';
  775. display: block;
  776. width: 100%;
  777. height: 4px; }
  778. header nav .navTrigger i:nth-child(1) {
  779. -webkit-animation: outT 0.8s backwards;
  780. animation: outT 0.8s backwards;
  781. -webkit-animation-direction: reverse;
  782. animation-direction: reverse; }
  783. header nav .navTrigger i:nth-child(2) {
  784. margin: 5px 0;
  785. -webkit-animation: outM 0.8s backwards;
  786. animation: outM 0.8s backwards;
  787. -webkit-animation-direction: reverse;
  788. animation-direction: reverse; }
  789. header nav .navTrigger i:nth-child(3) {
  790. -webkit-animation: outBtm 0.8s backwards;
  791. animation: outBtm 0.8s backwards;
  792. -webkit-animation-direction: reverse;
  793. animation-direction: reverse; }
  794. header nav .navTrigger.active i:nth-child(1) {
  795. -webkit-animation: inT 0.8s forwards;
  796. animation: inT 0.8s forwards; }
  797. header nav .navTrigger.active i:nth-child(2) {
  798. -webkit-animation: inM 0.8s forwards;
  799. animation: inM 0.8s forwards; }
  800. header nav .navTrigger.active i:nth-child(3) {
  801. -webkit-animation: inBtm 0.8s forwards;
  802. animation: inBtm 0.8s forwards; }
  803. @-webkit-keyframes inM {
  804. 50% {
  805. -webkit-transform: rotate(0deg); }
  806. 100% {
  807. -webkit-transform: rotate(45deg); } }
  808. @keyframes inM {
  809. 50% {
  810. -webkit-transform: rotate(0deg);
  811. transform: rotate(0deg); }
  812. 100% {
  813. -webkit-transform: rotate(45deg);
  814. transform: rotate(45deg); } }
  815. @-webkit-keyframes outM {
  816. 50% {
  817. -webkit-transform: rotate(0deg); }
  818. 100% {
  819. -webkit-transform: rotate(45deg); } }
  820. @keyframes outM {
  821. 50% {
  822. -webkit-transform: rotate(0deg);
  823. transform: rotate(0deg); }
  824. 100% {
  825. -webkit-transform: rotate(45deg);
  826. transform: rotate(45deg); } }
  827. @-webkit-keyframes inT {
  828. 0% {
  829. -webkit-transform: translateY(0px) rotate(0deg); }
  830. 50% {
  831. -webkit-transform: translateY(9px) rotate(0deg); }
  832. 100% {
  833. -webkit-transform: translateY(9px) rotate(135deg); } }
  834. @keyframes inT {
  835. 0% {
  836. -webkit-transform: translateY(0px) rotate(0deg);
  837. transform: translateY(0px) rotate(0deg); }
  838. 50% {
  839. -webkit-transform: translateY(9px) rotate(0deg);
  840. transform: translateY(9px) rotate(0deg); }
  841. 100% {
  842. -webkit-transform: translateY(9px) rotate(135deg);
  843. transform: translateY(9px) rotate(135deg); } }
  844. @-webkit-keyframes outT {
  845. 0% {
  846. -webkit-transform: translateY(0px) rotate(0deg); }
  847. 50% {
  848. -webkit-transform: translateY(9px) rotate(0deg); }
  849. 100% {
  850. -webkit-transform: translateY(9px) rotate(135deg); } }
  851. @keyframes outT {
  852. 0% {
  853. -webkit-transform: translateY(0px) rotate(0deg);
  854. transform: translateY(0px) rotate(0deg); }
  855. 50% {
  856. -webkit-transform: translateY(9px) rotate(0deg);
  857. transform: translateY(9px) rotate(0deg); }
  858. 100% {
  859. -webkit-transform: translateY(9px) rotate(135deg);
  860. transform: translateY(9px) rotate(135deg); } }
  861. @-webkit-keyframes inBtm {
  862. 0% {
  863. -webkit-transform: translateY(0px) rotate(0deg); }
  864. 50% {
  865. -webkit-transform: translateY(-9px) rotate(0deg); }
  866. 100% {
  867. -webkit-transform: translateY(-9px) rotate(135deg); } }
  868. @keyframes inBtm {
  869. 0% {
  870. -webkit-transform: translateY(0px) rotate(0deg);
  871. transform: translateY(0px) rotate(0deg); }
  872. 50% {
  873. -webkit-transform: translateY(-9px) rotate(0deg);
  874. transform: translateY(-9px) rotate(0deg); }
  875. 100% {
  876. -webkit-transform: translateY(-9px) rotate(135deg);
  877. transform: translateY(-9px) rotate(135deg); } }
  878. @-webkit-keyframes outBtm {
  879. 0% {
  880. -webkit-transform: translateY(0px) rotate(0deg); }
  881. 50% {
  882. -webkit-transform: translateY(-9px) rotate(0deg); }
  883. 100% {
  884. -webkit-transform: translateY(-9px) rotate(135deg); } }
  885. @keyframes outBtm {
  886. 0% {
  887. -webkit-transform: translateY(0px) rotate(0deg);
  888. transform: translateY(0px) rotate(0deg); }
  889. 50% {
  890. -webkit-transform: translateY(-9px) rotate(0deg);
  891. transform: translateY(-9px) rotate(0deg); }
  892. 100% {
  893. -webkit-transform: translateY(-9px) rotate(135deg);
  894. transform: translateY(-9px) rotate(135deg); } }
  895. .gal .title_gal {
  896. max-width: 60% !important; }
  897. #item .content .icones, #item-article .content .icones {
  898. -ms-flex-wrap: nowrap !important;
  899. flex-wrap: nowrap !important; }
  900. #item .demander-votre-devis,
  901. #item-article .demander-votre-devis,
  902. #sublog .demander-votre-devis {
  903. width: 300px !important;
  904. height: 110px !important; }
  905. #item .demander-votre-devis a,
  906. #item-article .demander-votre-devis a,
  907. #sublog .demander-votre-devis a {
  908. display: -webkit-inline-box !important;
  909. display: -ms-inline-flexbox !important;
  910. display: inline-flex !important; }
  911. #item .demander-votre-devis p:nth-of-type(2),
  912. #item-article .demander-votre-devis p:nth-of-type(2),
  913. #sublog .demander-votre-devis p:nth-of-type(2) {
  914. display: none !important; }
  915. #item .demander-votre-devis img,
  916. #item-article .demander-votre-devis img,
  917. #sublog .demander-votre-devis img {
  918. margin-left: 20px !important;
  919. margin-top: 0px !important; }
  920. #devis .txt {
  921. width: 35% !important; }
  922. #devis .demander-votre-devis {
  923. -webkit-transform: translate(0%, -125%) !important;
  924. transform: translate(0%, -125%) !important; } }
  925. @media screen and (max-width: 960px) {
  926. .gal .title_gal {
  927. max-width: 80% !important; }
  928. .gal .content_gal {
  929. width: 2% !important; }
  930. .bandeau .img {
  931. width: 100% !important; }
  932. .bandeau .title_gal {
  933. right: 5% !important;
  934. max-width: 70% !important; }
  935. .entete .entete_c {
  936. width: 95% !important;
  937. margin: 30px auto !important; }
  938. .content {
  939. width: 80% !important; }
  940. .sidebar {
  941. position: relative !important;
  942. width: 350px !important;
  943. margin: 0 auto !important; }
  944. #devis .title {
  945. width: 100% !important;
  946. height: auto !important;
  947. -webkit-transform: translateX(0px) !important;
  948. transform: translateX(0px) !important;
  949. border-radius: 0px !important; }
  950. #devis .title h4 {
  951. font-size: 1.3rem !important;
  952. margin: 15px auto 0 auto !important;
  953. -webkit-transform: translateY(0%) !important;
  954. transform: translateY(0%) !important; }
  955. #devis .txt {
  956. width: 100% !important;
  957. height: auto !important;
  958. background: #9e0027 !important;
  959. margin: auto !important; }
  960. #devis .txt p {
  961. color: white !important;
  962. padding: 15px 55px !important; }
  963. #devis .txt p strong {
  964. font-size: 1rem !important; }
  965. #devis .img {
  966. width: auto !important;
  967. height: auto !important;
  968. min-height: 200px !important; }
  969. #devis.item .title, #devis.sublog .title, #devis.item-article .title {
  970. border-radius: 30px !important; }
  971. #sublog .txt {
  972. width: 100% !important; }
  973. #sublog .txt .content_txt {
  974. width: 100% !important; }
  975. #sublog .txt p {
  976. padding: 0 !important; }
  977. #sublog .content_salle {
  978. width: 70% !important;
  979. z-index: 2;
  980. left: 50% !important;
  981. -webkit-transform: translateX(-50%);
  982. transform: translateX(-50%); }
  983. #sublog .content_salle .header-salles {
  984. display: -webkit-inline-box;
  985. display: -ms-inline-flexbox;
  986. display: inline-flex;
  987. -webkit-box-pack: justify;
  988. -ms-flex-pack: justify;
  989. justify-content: space-between; }
  990. #sublog .content_salle .header-salles img {
  991. display: block !important;
  992. margin: auto;
  993. width: 20px;
  994. height: 20px;
  995. cursor: pointer; }
  996. #sublog .mapsalles {
  997. width: 100% !important; }
  998. #sublog .demander-votre-devis {
  999. width: 300px !important;
  1000. height: 110px !important; }
  1001. #sublog .demander-votre-devis a {
  1002. display: -webkit-inline-box !important;
  1003. display: -ms-inline-flexbox !important;
  1004. display: inline-flex !important; }
  1005. #sublog .demander-votre-devis p:nth-of-type(2) {
  1006. display: none !important; }
  1007. #sublog .demander-votre-devis img {
  1008. margin-left: 20px !important;
  1009. margin-top: 0px !important; }
  1010. #item .demander-votre-devis, #item-article .demander-votre-devis {
  1011. width: 300px !important;
  1012. height: 110px !important; }
  1013. #item .demander-votre-devis a, #item-article .demander-votre-devis a {
  1014. display: -webkit-inline-box !important;
  1015. display: -ms-inline-flexbox !important;
  1016. display: inline-flex !important; }
  1017. #item .demander-votre-devis p:nth-of-type(2), #item-article .demander-votre-devis p:nth-of-type(2) {
  1018. display: none !important; }
  1019. #item .demander-votre-devis img, #item-article .demander-votre-devis img {
  1020. margin-left: 20px !important;
  1021. margin-top: 0px !important; }
  1022. .start:not(#form)#archive, .start:not(#form)#calendrier, .start:not(#form)#articles {
  1023. width: 90% !important; }
  1024. #articles .card {
  1025. width: 100% !important; }
  1026. #articles .card > a {
  1027. grid-template-columns: minmax(300px, 20%) minmax(400px, calc(80% - 40px)) !important; }
  1028. #item .item-wrapper, #item-article .item-wrapper {
  1029. width: 90% !important; }
  1030. #item .item-wrapper .title-wrapper, #item-article .item-wrapper .title-wrapper {
  1031. flex-direction: column !important; }
  1032. #item .item-wrapper .title-wrapper .back, #item-article .item-wrapper .title-wrapper .back {
  1033. margin: 20px 0 !important; }
  1034. .start#form .body-wrapper form {
  1035. width: 90% !important; }
  1036. .start#form .body-wrapper form > div.button-wrapper button {
  1037. margin-right: 5% !important; }
  1038. .sidebar {
  1039. width: 50% !important;
  1040. padding: 20px 0; }
  1041. .sidebar::before {
  1042. display: block;
  1043. width: 100vw;
  1044. height: 100%;
  1045. content: '';
  1046. background-image: url(/user/themes/lecampus/images/Trame-bleu2.svg);
  1047. background-repeat: repeat;
  1048. position: absolute;
  1049. top: 0;
  1050. margin-left: -27vw;
  1051. z-index: -1; }
  1052. .start:not(#form) .body-wrapper .event {
  1053. width: 90% !important; }
  1054. .start:not(#form)#event .title {
  1055. width: 90% !important; }
  1056. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  1057. width: 70% !important; } }
  1058. @media screen and (max-width: 768px) {
  1059. #devis .demander-votre-devis {
  1060. -webkit-transform: translate(50%, -125%) !important;
  1061. transform: translate(50%, -125%) !important; }
  1062. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  1063. width: 80% !important; } }
  1064. @media screen and (max-width: 750px) {
  1065. header > nav .logo {
  1066. position: relative;
  1067. width: auto !important;
  1068. margin: auto !important;
  1069. left: 0 !important;
  1070. transform: none !important;
  1071. top: 0 !important; }
  1072. .start .demander-votre-devis {
  1073. display: none; }
  1074. #item, #item-article {
  1075. width: 100% !important; }
  1076. #item .title-wrapper, #item-article .title-wrapper {
  1077. flex-direction: column; }
  1078. #item .title-wrapper .back, #item-article .title-wrapper .back {
  1079. margin: 0 0 20px 0 !important; }
  1080. #articles .articles-listing .card > a {
  1081. grid-template-columns: 100% !important;
  1082. grid-column-gap: 0 !important;
  1083. grid-template-rows: 100% !important; }
  1084. #articles .articles-listing .card > a .card-image img {
  1085. width: 100% !important;
  1086. height: auto !important; }
  1087. #articles .articles-listing .card > a .wrapper-content {
  1088. grid-column-start: 1 !important;
  1089. grid-row-start: 2 !important; }
  1090. #articles .articles-listing .card > a .wrapper-content .readmore {
  1091. float: right; }
  1092. #item .bandeau .img, #item-article .bandeau .img {
  1093. width: 100%;
  1094. height: auto; }
  1095. #item .body-wrapper .images_s, #item-article .body-wrapper .images_s {
  1096. display: none; }
  1097. #item .body-wrapper .content_s, #item-article .body-wrapper .content_s {
  1098. width: 90% !important; }
  1099. #item .body-wrapper .content_s p, #item-article .body-wrapper .content_s p {
  1100. padding: 0 !important; }
  1101. #item .body-wrapper .icones, #item-article .body-wrapper .icones {
  1102. margin: 20px 0 0 0 !important; }
  1103. #item .body-wrapper .icones .icon, #item-article .body-wrapper .icones .icon {
  1104. height: auto !important;
  1105. max-width: 100% !important; }
  1106. #item .body-wrapper .icones .icon p, #item-article .body-wrapper .icones .icon p {
  1107. padding: 0 !important; }
  1108. .content {
  1109. margin: 2rem auto !important;
  1110. width: 100% !important; }
  1111. .content p {
  1112. padding: 40px 20px !important; }
  1113. .gal .title_gal {
  1114. display: none !important; }
  1115. .entete {
  1116. padding: 0 !important; }
  1117. .entete p {
  1118. font-size: 1.1rem;
  1119. line-height: 1.5rem; }
  1120. #home .content > p {
  1121. width: 100% !important; }
  1122. #home .content > p:not(:last-child) strong {
  1123. font-size: 1.1rem; }
  1124. #reco .item {
  1125. border: none !important;
  1126. margin: 10px 0 !important;
  1127. padding-left: 0 !important; }
  1128. .sidebar {
  1129. width: 90% !important;
  1130. text-align: center; }
  1131. .sidebar:before {
  1132. margin-left: -8vw; }
  1133. .sidebar h2 {
  1134. margin: auto; }
  1135. .sidebar h3 {
  1136. font-size: 1.1rem; }
  1137. .sidebar .side-all-agenda {
  1138. margin: auto;
  1139. float: none !important; }
  1140. #devis .title, #devis .txt {
  1141. padding: 0 5%; }
  1142. #devis .title p, #devis .txt p {
  1143. padding: 15px 0 !important; }
  1144. #devis .demander-votre-devis {
  1145. -webkit-transform: translate(0%, -120%) !important;
  1146. transform: translate(0%, -120%) !important; }
  1147. #newsletter #mc_embed_signup {
  1148. border: none !important;
  1149. width: 280px !important;
  1150. padding: 0 !important; }
  1151. #newsletter #mc_embed_signup #mc_embed_signup_scroll {
  1152. -webkit-box-orient: vertical;
  1153. -webkit-box-direction: normal;
  1154. -ms-flex-direction: column;
  1155. flex-direction: column; }
  1156. #newsletter #mc_embed_signup #mc_embed_signup_scroll input {
  1157. width: 280px !important; }
  1158. #newsletter #mc_embed_signup #form {
  1159. width: auto; }
  1160. #newsletter #mc_embed_signup label {
  1161. width: 280px !important;
  1162. border: 2px solid white;
  1163. border-radius: 20px;
  1164. margin-bottom: 10px; }
  1165. #newsletter #mc_embed_signup > input {
  1166. margin-top: 10px; }
  1167. #newsletter #mc_embed_signup .clear input {
  1168. margin: 10px 0 0 0 !important; }
  1169. #footer .block {
  1170. -webkit-box-orient: vertical;
  1171. -webkit-box-direction: normal;
  1172. -ms-flex-direction: column;
  1173. flex-direction: column; }
  1174. #footer .block p {
  1175. margin-bottom: 10px;
  1176. text-align: center;
  1177. border: none !important; }
  1178. #footer .block p:nth-of-type(1) img {
  1179. float: none; }
  1180. #sublog .bandeau {
  1181. height: auto; }
  1182. #sublog .bandeau .img {
  1183. width: 100%;
  1184. height: auto; }
  1185. #sublog .title_gal {
  1186. display: none; }
  1187. #sublog .content_salle {
  1188. width: 90% !important;
  1189. top: 200px !important; }
  1190. #sublog .content_salle p {
  1191. padding: 0px 10px !important; }
  1192. #sublog .mapsalles {
  1193. width: 100% !important; }
  1194. .start:not(#form)#archive, .start:not(#form)#calendrier, .start:not(#form)#articles {
  1195. width: 90% !important; }
  1196. .start:not(#form)#archive .cat, .start:not(#form)#calendrier .cat, .start:not(#form)#articles .cat {
  1197. height: auto !important; }
  1198. .start:not(#form)#archive .cat .btn-group:nth-child(1), .start:not(#form)#calendrier .cat .btn-group:nth-child(1), .start:not(#form)#articles .cat .btn-group:nth-child(1) {
  1199. width: 100%; }
  1200. .start:not(#form)#archive .cat .btn-group:nth-child(2), .start:not(#form)#calendrier .cat .btn-group:nth-child(2), .start:not(#form)#articles .cat .btn-group:nth-child(2) {
  1201. float: left; }
  1202. .start:not(#form)#archive .cat .btn-group label, .start:not(#form)#calendrier .cat .btn-group label, .start:not(#form)#articles .cat .btn-group label {
  1203. margin-bottom: 10px; }
  1204. .start:not(#form) .body-wrapper .card {
  1205. width: 100% !important; }
  1206. .start:not(#form) .body-wrapper .event .card-content {
  1207. -webkit-box-orient: vertical;
  1208. -webkit-box-direction: normal;
  1209. -ms-flex-direction: column;
  1210. flex-direction: column; }
  1211. .start:not(#form) .body-wrapper .event .card-content .reso {
  1212. width: 100% !important;
  1213. display: -webkit-box;
  1214. display: -ms-flexbox;
  1215. display: flex;
  1216. -ms-flex-pack: distribute;
  1217. justify-content: space-around; }
  1218. .start:not(#form) .body-wrapper .event .card-content .txt {
  1219. width: 100% !important; }
  1220. #default .header-wrapper {
  1221. width: 100% !important;
  1222. text-align: center; }
  1223. #default .header-wrapper .title {
  1224. width: 90% !important; }
  1225. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  1226. width: 90% !important; }
  1227. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
  1228. display: block !important;
  1229. margin-bottom: 1rem; }
  1230. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent label {
  1231. white-space: normal !important; }
  1232. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent {
  1233. border: 1px solid white !important;
  1234. border-radius: 30px;
  1235. margin-bottom: 20px; }
  1236. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
  1237. border: none !important;
  1238. border-radius: 0px !important; }
  1239. #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
  1240. text-align: center; }
  1241. #tarteaucitronRoot #tarteaucitronAlertBig {
  1242. padding: 10px 0 !important; }
  1243. #le_campus #module {
  1244. width: 90% !important;
  1245. padding-right: 0 !important; }
  1246. #le_campus #module .valeurs {
  1247. flex-direction: column !important;
  1248. width: 90%;
  1249. align-self: center; }
  1250. #le_campus #module .valeurs .valeur {
  1251. width: 100% !important;
  1252. text-align: center; }
  1253. #le_campus #module .equipe {
  1254. flex-direction: column !important;
  1255. width: 90%;
  1256. align-self: center; }
  1257. #le_campus #module .equipe .personne {
  1258. width: 100% !important;
  1259. text-align: center; } }
  1260. #tarteaucitronBack {
  1261. background: yellow; }
  1262. * {
  1263. box-sizing: border-box; }
  1264. #nos-packs .content, #nos-offres .content {
  1265. margin-top: 0;
  1266. width: 70%;
  1267. margin: auto; }
  1268. #nos-packs .content .section .__intro, #nos-offres .content .section .__intro {
  1269. text-align: center;
  1270. color: #0093a3;
  1271. margin: 100px 0; }
  1272. #nos-packs .content .section .__intro p, #nos-offres .content .section .__intro p {
  1273. font-family: "now_alt_bold";
  1274. font-size: 1.2rem; }
  1275. #nos-packs .content .section .d-flex, #nos-offres .content .section .d-flex {
  1276. display: inline-flex;
  1277. flex-wrap: wrap;
  1278. width: 100%; }
  1279. #nos-packs .content .section .d-flex .__thumbnails, #nos-offres .content .section .d-flex .__thumbnails {
  1280. margin: 0 1rem;
  1281. width: calc((100% / 4) - 2rem);
  1282. display: flex;
  1283. flex-direction: column;
  1284. align-self: baseline; }
  1285. #nos-packs .content .section .d-flex .__thumbnails .__title, #nos-offres .content .section .d-flex .__thumbnails .__title {
  1286. text-align: center;
  1287. margin-bottom: 1rem; }
  1288. #nos-packs .content .section .d-flex .__thumbnails .__title .__d-inline, #nos-offres .content .section .d-flex .__thumbnails .__title .__d-inline {
  1289. display: inline-block;
  1290. border-bottom: 3px solid #b5cb3a;
  1291. width: max-content;
  1292. max-width: 100%;
  1293. padding-bottom: 0.5rem; }
  1294. #nos-packs .content .section .d-flex .__thumbnails .__title .__d-inline span, #nos-offres .content .section .d-flex .__thumbnails .__title .__d-inline span {
  1295. display: block;
  1296. text-align: center;
  1297. padding: 0 1.5rem 0.2rem 1.5rem;
  1298. font-size: 0.8rem;
  1299. font-family: "now_alt_medium"; }
  1300. #nos-packs .content .section .d-flex .__thumbnails .__thumb, #nos-offres .content .section .d-flex .__thumbnails .__thumb {
  1301. position: relative; }
  1302. #nos-packs .content .section .d-flex .__thumbnails .__thumb .__images, #nos-offres .content .section .d-flex .__thumbnails .__thumb .__images {
  1303. position: relative;
  1304. height: 100%;
  1305. max-height: 500px;
  1306. overflow: hidden; }
  1307. #nos-packs .content .section .d-flex .__thumbnails .__thumb .__images img, #nos-offres .content .section .d-flex .__thumbnails .__thumb .__images img {
  1308. width: 100%;
  1309. height: 100%;
  1310. object-fit: cover; }
  1311. #nos-packs .content .section .dl_brochure, #nos-offres .content .section .dl_brochure {
  1312. width: 100%;
  1313. margin: 100px 0; }
  1314. #nos-packs .content .section .dl_brochure a, #nos-offres .content .section .dl_brochure a {
  1315. font-size: 1.5rem;
  1316. font-family: "now_alt_medium";
  1317. display: block;
  1318. text-align: center;
  1319. text-transform: uppercase;
  1320. color: #0093a3; }
  1321. #nos-packs .content .section.nos_pack .__thumbnails .__thumb.__hover, #nos-packs .content .section.nos_lieux .__thumbnails .__thumb.__hover, #nos-offres .content .section.nos_pack .__thumbnails .__thumb.__hover, #nos-offres .content .section.nos_lieux .__thumbnails .__thumb.__hover {
  1322. transition: 0.3s transform ease; }
  1323. #nos-packs .content .section.nos_pack .__thumbnails .__thumb.__hover a, #nos-packs .content .section.nos_lieux .__thumbnails .__thumb.__hover a, #nos-offres .content .section.nos_pack .__thumbnails .__thumb.__hover a, #nos-offres .content .section.nos_lieux .__thumbnails .__thumb.__hover a {
  1324. outline: none;
  1325. border: 0; }
  1326. #nos-packs .content .section.nos_pack .__thumbnails .__thumb.__hover:hover, #nos-packs .content .section.nos_lieux .__thumbnails .__thumb.__hover:hover, #nos-offres .content .section.nos_pack .__thumbnails .__thumb.__hover:hover, #nos-offres .content .section.nos_lieux .__thumbnails .__thumb.__hover:hover {
  1327. transform: scale(1.015);
  1328. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1329. #nos-packs .content .section.nos_pack .__thumbnails .__thumb.__hover:hover .__images, #nos-packs .content .section.nos_pack .__thumbnails .__thumb.__hover:hover .__btn, #nos-packs .content .section.nos_lieux .__thumbnails .__thumb.__hover:hover .__images, #nos-packs .content .section.nos_lieux .__thumbnails .__thumb.__hover:hover .__btn, #nos-offres .content .section.nos_pack .__thumbnails .__thumb.__hover:hover .__images, #nos-offres .content .section.nos_pack .__thumbnails .__thumb.__hover:hover .__btn, #nos-offres .content .section.nos_lieux .__thumbnails .__thumb.__hover:hover .__images, #nos-offres .content .section.nos_lieux .__thumbnails .__thumb.__hover:hover .__btn {
  1330. box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  1331. transition: 0.3s box-shadow ease; }
  1332. #nos-packs .content .section.nos_pack .__thumbnails .__thumb.__hover:hover .__images, #nos-packs .content .section.nos_lieux .__thumbnails .__thumb.__hover:hover .__images, #nos-offres .content .section.nos_pack .__thumbnails .__thumb.__hover:hover .__images, #nos-offres .content .section.nos_lieux .__thumbnails .__thumb.__hover:hover .__images {
  1333. transition: 0.5s filter ease;
  1334. filter: grayscale(0%); }
  1335. #nos-packs .content .section.nos_pack .__thumbnails .__thumb.__hover:hover .__images img, #nos-packs .content .section.nos_lieux .__thumbnails .__thumb.__hover:hover .__images img, #nos-offres .content .section.nos_pack .__thumbnails .__thumb.__hover:hover .__images img, #nos-offres .content .section.nos_lieux .__thumbnails .__thumb.__hover:hover .__images img {
  1336. filter: grayscale(100%);
  1337. transition: 0.5s filter ease; }
  1338. #nos-packs .content .section.nos_pack .__thumbnails .__images .__sub-title, #nos-packs .content .section.nos_lieux .__thumbnails .__images .__sub-title, #nos-offres .content .section.nos_pack .__thumbnails .__images .__sub-title, #nos-offres .content .section.nos_lieux .__thumbnails .__images .__sub-title {
  1339. opacity: 0;
  1340. position: absolute;
  1341. top: 50%;
  1342. left: 0;
  1343. transform: translateY(0%);
  1344. text-align: center;
  1345. color: white;
  1346. padding: 1rem;
  1347. transition: 0.5s transform ease, 1s opacity ease; }
  1348. #nos-packs .content .section.nos_pack .__thumbnails .__images .__sub-title p, #nos-packs .content .section.nos_lieux .__thumbnails .__images .__sub-title p, #nos-offres .content .section.nos_pack .__thumbnails .__images .__sub-title p, #nos-offres .content .section.nos_lieux .__thumbnails .__images .__sub-title p {
  1349. font-size: 1rem;
  1350. font-family: "now_alt_medium"; }
  1351. #nos-packs .content .section.nos_pack .__thumbnails .__btn, #nos-packs .content .section.nos_lieux .__thumbnails .__btn, #nos-offres .content .section.nos_pack .__thumbnails .__btn, #nos-offres .content .section.nos_lieux .__thumbnails .__btn {
  1352. color: white;
  1353. display: block;
  1354. padding: 0.7rem 0;
  1355. margin-top: 1rem;
  1356. font-size: 0.8rem;
  1357. font-family: "now_alt_medium";
  1358. text-align: center; }
  1359. #nos-packs .content .section.nos_pack .__thumbnails .__btn .triangle, #nos-packs .content .section.nos_lieux .__thumbnails .__btn .triangle, #nos-offres .content .section.nos_pack .__thumbnails .__btn .triangle, #nos-offres .content .section.nos_lieux .__thumbnails .__btn .triangle {
  1360. position: absolute;
  1361. z-index: -1;
  1362. bottom: 0;
  1363. left: 50%;
  1364. transform: translate(-50%, 0%);
  1365. display: inline-block;
  1366. height: 0;
  1367. width: 0;
  1368. border-top: 20px solid;
  1369. border-right: 15px solid transparent;
  1370. border-left: 15px solid transparent;
  1371. transition: 0.1s transform ease; }
  1372. #nos-packs .content .section.nos_pack .__thumbnails .__btn .triangle.visible, #nos-packs .content .section.nos_lieux .__thumbnails .__btn .triangle.visible, #nos-offres .content .section.nos_pack .__thumbnails .__btn .triangle.visible, #nos-offres .content .section.nos_lieux .__thumbnails .__btn .triangle.visible {
  1373. transform: translate(-50%, 90%);
  1374. transition: 0.1s transform ease; }
  1375. #nos-packs .content .section.nos_pack .__thumbnails .__btn .triangle.__blue, #nos-packs .content .section.nos_lieux .__thumbnails .__btn .triangle.__blue, #nos-offres .content .section.nos_pack .__thumbnails .__btn .triangle.__blue, #nos-offres .content .section.nos_lieux .__thumbnails .__btn .triangle.__blue {
  1376. border-top: 20px solid #0093a3; }
  1377. #nos-packs .content .section.nos_pack .__thumbnails .__btn .triangle.__green, #nos-packs .content .section.nos_lieux .__thumbnails .__btn .triangle.__green, #nos-offres .content .section.nos_pack .__thumbnails .__btn .triangle.__green, #nos-offres .content .section.nos_lieux .__thumbnails .__btn .triangle.__green {
  1378. border-top: 20px solid #b5cb3a; }
  1379. #nos-packs .content .section.nos_pack .__thumbnails .__btn .triangle.__red, #nos-packs .content .section.nos_lieux .__thumbnails .__btn .triangle.__red, #nos-offres .content .section.nos_pack .__thumbnails .__btn .triangle.__red, #nos-offres .content .section.nos_lieux .__thumbnails .__btn .triangle.__red {
  1380. border-top: 20px solid #9e0027; }
  1381. #nos-packs .content .section.nos_pack .__thumbnails .__btn.__blue, #nos-packs .content .section.nos_lieux .__thumbnails .__btn.__blue, #nos-offres .content .section.nos_pack .__thumbnails .__btn.__blue, #nos-offres .content .section.nos_lieux .__thumbnails .__btn.__blue {
  1382. background: #0093a3; }
  1383. #nos-packs .content .section.nos_pack .__thumbnails .__btn.__green, #nos-packs .content .section.nos_lieux .__thumbnails .__btn.__green, #nos-offres .content .section.nos_pack .__thumbnails .__btn.__green, #nos-offres .content .section.nos_lieux .__thumbnails .__btn.__green {
  1384. background: #b5cb3a; }
  1385. #nos-packs .content .section.nos_pack .__thumbnails .__btn.__red, #nos-packs .content .section.nos_lieux .__thumbnails .__btn.__red, #nos-offres .content .section.nos_pack .__thumbnails .__btn.__red, #nos-offres .content .section.nos_lieux .__thumbnails .__btn.__red {
  1386. background: #9e0027; }
  1387. #nos-packs .content .section.nos_pack .__thumbnails .__btn.__grey, #nos-packs .content .section.nos_lieux .__thumbnails .__btn.__grey, #nos-offres .content .section.nos_pack .__thumbnails .__btn.__grey, #nos-offres .content .section.nos_lieux .__thumbnails .__btn.__grey {
  1388. background: #6e6f70; }
  1389. #nos-packs .content .section.nos_pack .__thumbnails:hover .__images .__sub-title, #nos-packs .content .section.nos_lieux .__thumbnails:hover .__images .__sub-title, #nos-offres .content .section.nos_pack .__thumbnails:hover .__images .__sub-title, #nos-offres .content .section.nos_lieux .__thumbnails:hover .__images .__sub-title {
  1390. opacity: 1;
  1391. transform: translateY(-50%);
  1392. transition: 0.5s transform ease, 1s opacity ease; }
  1393. #nos-packs .content .section:last-child, #nos-offres .content .section:last-child {
  1394. margin-bottom: 100px; }
  1395. #nos-packs .content .section .__thumbnails:nth-child(1) .__more, #nos-offres .content .section .__thumbnails:nth-child(1) .__more {
  1396. width: calc(100% * 4 + 6rem); }
  1397. #nos-packs .content .section .__thumbnails:nth-child(2) .__more, #nos-offres .content .section .__thumbnails:nth-child(2) .__more {
  1398. width: calc(100% * 4 + 6rem);
  1399. transform: translateX(calc((-100% / 4) - 0.5rem)); }
  1400. #nos-packs .content .section .__thumbnails:nth-child(3) .__more, #nos-offres .content .section .__thumbnails:nth-child(3) .__more {
  1401. width: calc(100% * 4 + 6rem);
  1402. transform: translateX(calc((-100% / 2) - 1rem)); }
  1403. #nos-packs .content .section .__more, #nos-offres .content .section .__more {
  1404. display: none;
  1405. position: relative;
  1406. left: 0;
  1407. right: 0;
  1408. margin: 0;
  1409. margin: 2rem 0rem; }
  1410. #nos-packs .content .section .__more .__wrap-content, #nos-offres .content .section .__more .__wrap-content {
  1411. background-size: cover; }
  1412. #nos-packs .content .section .__more .__txt.black p, #nos-offres .content .section .__more .__txt.black p {
  1413. color: black !important; }
  1414. #nos-packs .content .section .__more.__blue .__title, #nos-offres .content .section .__more.__blue .__title {
  1415. color: #0093a3; }
  1416. #nos-packs .content .section .__more.__blue .__txt p, #nos-offres .content .section .__more.__blue .__txt p {
  1417. color: #0093a3; }
  1418. #nos-packs .content .section .__more.__green .__title, #nos-offres .content .section .__more.__green .__title {
  1419. color: #b5cb3a; }
  1420. #nos-packs .content .section .__more.__green .__txt p, #nos-offres .content .section .__more.__green .__txt p {
  1421. color: #b5cb3a; }
  1422. #nos-packs .content .section .__more.__red .__title, #nos-offres .content .section .__more.__red .__title {
  1423. color: #9e0027; }
  1424. #nos-packs .content .section .__more.__red .__txt p, #nos-offres .content .section .__more.__red .__txt p {
  1425. color: #9e0027; }
  1426. #nos-packs .content .section .__more.visible, #nos-offres .content .section .__more.visible {
  1427. display: block; }
  1428. #nos-packs .content .section .__more .__details, #nos-offres .content .section .__more .__details {
  1429. position: relative; }
  1430. #nos-packs .content .section .__more .__image-background, #nos-offres .content .section .__more .__image-background {
  1431. width: 100%;
  1432. height: auto; }
  1433. #nos-packs .content .section .__more .__image-background img, #nos-offres .content .section .__more .__image-background img {
  1434. width: 100%;
  1435. height: 100%;
  1436. object-fit: cover; }
  1437. #nos-packs .content .section .__more .__wrap-content, #nos-offres .content .section .__more .__wrap-content {
  1438. z-index: 999;
  1439. width: 100%;
  1440. height: auto;
  1441. padding: 2rem;
  1442. display: flex;
  1443. justify-content: flex-end; }
  1444. #nos-packs .content .section .__more .__wrap-content .__content, #nos-offres .content .section .__more .__wrap-content .__content {
  1445. background: white;
  1446. width: 50%;
  1447. height: auto;
  1448. padding: 2rem;
  1449. position: relative; }
  1450. #nos-packs .content .section .__more .__wrap-content .__content .close, #nos-offres .content .section .__more .__wrap-content .__content .close {
  1451. position: absolute;
  1452. top: 1rem;
  1453. right: 1rem;
  1454. cursor: pointer; }
  1455. #nos-packs .content .section .__more .__wrap-content .__content .__title, #nos-offres .content .section .__more .__wrap-content .__content .__title {
  1456. text-align: left; }
  1457. #nos-packs .content .section .__more .__wrap-content .__content .__title h6, #nos-offres .content .section .__more .__wrap-content .__content .__title h6 {
  1458. margin: 0;
  1459. font-size: 1.3rem;
  1460. font-family: "now_alt_medium"; }
  1461. #nos-packs .content .section .__more .__wrap-content .__content .__txt p, #nos-offres .content .section .__more .__wrap-content .__content .__txt p {
  1462. font-size: 0.9rem;
  1463. font-family: "now_alt_medium"; }
  1464. #nos-packs .content .section .__more .__wrap-content .__content .__txt.__color, #nos-offres .content .section .__more .__wrap-content .__content .__txt.__color {
  1465. color: #0093a3;
  1466. margin-bottom: 1rem; }
  1467. #nos-packs .content .section .__more .__wrap-content .__content .__btn, #nos-offres .content .section .__more .__wrap-content .__content .__btn {
  1468. display: inline-flex;
  1469. margin-top: 1rem;
  1470. width: 100%; }
  1471. #nos-packs .content .section .__more .__wrap-content .__content .__btn a, #nos-offres .content .section .__more .__wrap-content .__content .__btn a {
  1472. display: block;
  1473. text-align: center;
  1474. width: 50%;
  1475. background: #0093a3;
  1476. margin: 0;
  1477. transition: 0.3s transform ease, 0.3s box-shadow ease;
  1478. padding: 0.5rem 1.5rem;
  1479. font-family: "now_alt_medium";
  1480. font-size: 0.7rem;
  1481. color: white; }
  1482. #nos-packs .content .section .__more .__wrap-content .__content .__btn a:not(:first-child), #nos-offres .content .section .__more .__wrap-content .__content .__btn a:not(:first-child) {
  1483. margin-left: 1rem; }
  1484. #nos-packs .content .section .__more .__wrap-content .__content .__btn a:hover, #nos-offres .content .section .__more .__wrap-content .__content .__btn a:hover {
  1485. transform: scale(1.015);
  1486. box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  1487. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1488. #nos-packs .content .section .__more .__wrap-content .__content .__btn a.__blue, #nos-offres .content .section .__more .__wrap-content .__content .__btn a.__blue {
  1489. background: #0093a3; }
  1490. #nos-packs .content .section .__more .__wrap-content .__content .__btn a.__green, #nos-offres .content .section .__more .__wrap-content .__content .__btn a.__green {
  1491. background: #b5cb3a; }
  1492. #nos-packs .content .section .__more .__wrap-content .__content .__btn a.__red, #nos-offres .content .section .__more .__wrap-content .__content .__btn a.__red {
  1493. background: #9e0027; }
  1494. #nos-packs .content .section .__more.open, #nos-offres .content .section .__more.open {
  1495. display: block; }
  1496. @media screen and (max-width: 1200px) {
  1497. #nos-packs .content .section .__intro, #nos-offres .content .section .__intro {
  1498. margin: 70px 0; }
  1499. #nos-packs .content .section .__intro p, #nos-offres .content .section .__intro p {
  1500. padding: 0 !important; }
  1501. #nos-packs .content .section .d-flex .__thumbnails, #nos-offres .content .section .d-flex .__thumbnails {
  1502. width: calc((100% / 3) - 2rem);
  1503. margin-bottom: 2rem; }
  1504. #nos-packs .content .section .d-flex .__thumbnails .__more, #nos-offres .content .section .d-flex .__thumbnails .__more {
  1505. width: calc(100% * 3 + 4rem); }
  1506. #nos-packs .content .section .d-flex .__thumbnails .__more .__content, #nos-offres .content .section .d-flex .__thumbnails .__more .__content {
  1507. width: 100%; }
  1508. #nos-packs .content .section .d-flex .__thumbnails:nth-child(2) .__more, #nos-offres .content .section .d-flex .__thumbnails:nth-child(2) .__more {
  1509. transform: translateX(calc((-100% / 3) - 0.5rem)); }
  1510. #nos-packs .content .section .d-flex .__thumbnails:nth-child(3) .__more, #nos-offres .content .section .d-flex .__thumbnails:nth-child(3) .__more {
  1511. transform: translateX(calc((-100% / 1.5) - 1rem)); } }
  1512. @media screen and (max-width: 1024px) {
  1513. #nos-packs .content .section .__intro, #nos-offres .content .section .__intro {
  1514. margin: 50px 0; }
  1515. #nos-packs .content .section .d-flex .__thumbnails, #nos-offres .content .section .d-flex .__thumbnails {
  1516. width: calc((100% / 2) - 2rem);
  1517. margin-bottom: 2rem; }
  1518. #nos-packs .content .section .d-flex .__thumbnails .__more, #nos-offres .content .section .d-flex .__thumbnails .__more {
  1519. width: calc(100% * 2 + 2rem); }
  1520. #nos-packs .content .section .d-flex .__thumbnails .__more .__content, #nos-offres .content .section .d-flex .__thumbnails .__more .__content {
  1521. width: 100%; }
  1522. #nos-packs .content .section .d-flex .__thumbnails:nth-child(2) .__more, #nos-offres .content .section .d-flex .__thumbnails:nth-child(2) .__more {
  1523. transform: translateX(calc((-100% / 2) - 1rem)); }
  1524. #nos-packs .content .section .d-flex .__thumbnails:nth-child(3) .__more, #nos-offres .content .section .d-flex .__thumbnails:nth-child(3) .__more {
  1525. transform: translateX(0%); } }
  1526. @media screen and (max-width: 750px) {
  1527. .__details .__content p {
  1528. padding: 0 !important; } }
  1529. @media screen and (max-width: 530px) {
  1530. #nos-packs .content .section .__intro, #nos-offres .content .section .__intro {
  1531. margin: 20px 0; }
  1532. #nos-packs .content .section .d-flex .__thumbnails, #nos-offres .content .section .d-flex .__thumbnails {
  1533. width: calc((100%) - 2rem);
  1534. margin-bottom: 2rem; }
  1535. #nos-packs .content .section .d-flex .__thumbnails .__title, #nos-offres .content .section .d-flex .__thumbnails .__title {
  1536. margin-bottom: 0.5rem; }
  1537. #nos-packs .content .section .d-flex .__thumbnails .__title .__d-inline, #nos-offres .content .section .d-flex .__thumbnails .__title .__d-inline {
  1538. padding-bottom: 0.2rem; }
  1539. #nos-packs .content .section .d-flex .__thumbnails .__title .__d-inline span, #nos-offres .content .section .d-flex .__thumbnails .__title .__d-inline span {
  1540. padding: 0 1.5rem;
  1541. font-size: 1rem; }
  1542. #nos-packs .content .section .d-flex .__thumbnails .__more, #nos-offres .content .section .d-flex .__thumbnails .__more {
  1543. width: calc(100%); }
  1544. #nos-packs .content .section .d-flex .__thumbnails .__more .__details, #nos-offres .content .section .d-flex .__thumbnails .__more .__details {
  1545. padding: 0rem; }
  1546. #nos-packs .content .section .d-flex .__thumbnails .__more .__details .__content, #nos-offres .content .section .d-flex .__thumbnails .__more .__details .__content {
  1547. width: 100%;
  1548. padding: 1rem; }
  1549. #nos-packs .content .section .d-flex .__thumbnails .__more .__details .__content p, #nos-offres .content .section .d-flex .__thumbnails .__more .__details .__content p {
  1550. padding: 0 !important; }
  1551. #nos-packs .content .section .d-flex .__thumbnails .__more .__details .__content .close, #nos-offres .content .section .d-flex .__thumbnails .__more .__details .__content .close {
  1552. top: 0.5rem;
  1553. right: 0.5rem; }
  1554. #nos-packs .content .section .d-flex .__thumbnails .__more .__details .__wrap-content, #nos-offres .content .section .d-flex .__thumbnails .__more .__details .__wrap-content {
  1555. padding: 0.5rem; }
  1556. #nos-packs .content .section .d-flex .__thumbnails .__more .__btn, #nos-offres .content .section .d-flex .__thumbnails .__more .__btn {
  1557. flex-direction: column; }
  1558. #nos-packs .content .section .d-flex .__thumbnails .__more .__btn > a, #nos-offres .content .section .d-flex .__thumbnails .__more .__btn > a {
  1559. margin: auto 0 1rem 0 !important;
  1560. width: 100%; }
  1561. #nos-packs .content .section .d-flex .__thumbnails:nth-child(2) .__more, #nos-offres .content .section .d-flex .__thumbnails:nth-child(2) .__more {
  1562. transform: translateX(0%); }
  1563. #nos-packs .content .section .d-flex .__thumbnails:nth-child(3) .__more, #nos-offres .content .section .d-flex .__thumbnails:nth-child(3) .__more {
  1564. transform: translateX(0%); } }
  1565. .bandeau_partenaires {
  1566. display: flex;
  1567. flex-direction: row;
  1568. flex-wrap: nowrap;
  1569. margin-bottom: 3rem;
  1570. justify-content: center;
  1571. align-items: center;
  1572. align-content: space-around; }
  1573. .bandeau_partenaires img {
  1574. height: 4rem;
  1575. width: auto;
  1576. margin-right: 2rem; }
  1577. @media only screen and (max-width: 400px) {
  1578. .bandeau_partenaires {
  1579. align-self: center;
  1580. justify-content: center;
  1581. margin: 1rem; }
  1582. .bandeau_partenaires img {
  1583. height: 3rem;
  1584. margin-right: 1rem;
  1585. margin-bottom: 1rem; } }
  1586. .gal {
  1587. margin-left: 15%; }
  1588. .gal .content_gal {
  1589. width: 2.2% !important; }
  1590. .gal .content_gal[aria-hidden="false"] .title_gal {
  1591. opacity: 1;
  1592. right: 70px;
  1593. transition: right 1s ease, opacity 1s ease; }
  1594. .gal .title_gal {
  1595. position: absolute;
  1596. right: 50px;
  1597. max-width: 50%;
  1598. background: #0093a3;
  1599. padding: 25px;
  1600. bottom: 20%;
  1601. color: #ffffff;
  1602. opacity: 0; }
  1603. .cat {
  1604. height: 50px;
  1605. z-index: 999;
  1606. margin: 20px 0; }
  1607. .cat .btn-group {
  1608. display: -webkit-inline-box;
  1609. display: -ms-inline-flexbox;
  1610. display: inline-flex;
  1611. -ms-flex-wrap: wrap;
  1612. flex-wrap: wrap; }
  1613. .cat .btn-group:nth-of-type(1) label {
  1614. margin-right: 20px; }
  1615. .cat .btn-group:nth-of-type(2) {
  1616. float: right; }
  1617. .cat label {
  1618. padding: 10px;
  1619. cursor: pointer; }
  1620. .cat label.tous {
  1621. border-top: 2px solid #b5cb3a;
  1622. border-bottom: 2px solid #b5cb3a; }
  1623. .cat label.professionnels {
  1624. border-top: 2px solid #9e0027;
  1625. border-bottom: 2px solid #9e0027; }
  1626. .cat label.grand_public {
  1627. border-top: 2px solid #0093a3;
  1628. border-bottom: 2px solid #0093a3; }
  1629. .cat label.formations {
  1630. border-top: 2px solid #6e6f70;
  1631. border-bottom: 2px solid #6e6f70; }
  1632. .cat label.archive {
  1633. border-top: 2px solid #00407d;
  1634. border-bottom: 2px solid #00407d; }
  1635. .cat input {
  1636. visibility: hidden;
  1637. position: absolute; }
  1638. .bandeau {
  1639. width: 100%;
  1640. height: auto;
  1641. max-height: 500px;
  1642. position: relative;
  1643. overflow: hidden; }
  1644. .bandeau::before {
  1645. position: absolute;
  1646. display: block;
  1647. content: ' ';
  1648. background-image: url("/user/themes/lecampus/images/Trame-bleu2.svg");
  1649. background-repeat: repeat;
  1650. width: 100%;
  1651. height: 100%;
  1652. top: 0;
  1653. z-index: -1; }
  1654. .bandeau .img {
  1655. width: 70%;
  1656. margin: auto; }
  1657. .bandeau .title_gal {
  1658. position: absolute;
  1659. right: 25%;
  1660. max-width: 50%;
  1661. background: #0093a3;
  1662. padding: 25px;
  1663. top: 20vw;
  1664. color: #ffffff; }
  1665. .bandeau .title_gal p {
  1666. font-family: now_alt_bold;
  1667. font-size: 1.2rem;
  1668. font-weight: 400;
  1669. line-height: 2.2rem; }
  1670. .container > .title {
  1671. background: #9e0027;
  1672. border-radius: 30px;
  1673. width: auto;
  1674. float: left;
  1675. padding: 10px 20px;
  1676. color: white; }
  1677. .start {
  1678. min-height: calc(100vh - 325px); }
  1679. .start:not(#home) .entete {
  1680. border-bottom: 10px solid #0093a3; }
  1681. .start:not(#form)#calendrier, .start:not(#form)#archive, .start:not(#form)#articles {
  1682. width: 70%;
  1683. margin: 40px auto 40px auto; }
  1684. .start:not(#form)#calendrier .header-wrapper .title, .start:not(#form)#archive .header-wrapper .title, .start:not(#form)#articles .header-wrapper .title {
  1685. display: flex; }
  1686. .start:not(#form)#calendrier .header-wrapper .title h1, .start:not(#form)#archive .header-wrapper .title h1, .start:not(#form)#articles .header-wrapper .title h1 {
  1687. width: auto;
  1688. margin-bottom: 20px;
  1689. background: #9e0027;
  1690. border-radius: 30px;
  1691. padding: 10px 20px;
  1692. color: white;
  1693. font-size: 1.2rem; }
  1694. .start:not(#form)#event {
  1695. margin: 40px auto 40px auto; }
  1696. .start:not(#form)#event .title {
  1697. display: flex; }
  1698. .start:not(#form)#event .title h1 {
  1699. width: auto;
  1700. margin-bottom: 20px;
  1701. background: #9e0027;
  1702. border-radius: 30px;
  1703. padding: 10px 20px;
  1704. color: white;
  1705. font-size: 1.2rem; }
  1706. .start:not(#form) .body-wrapper {
  1707. display: -webkit-inline-box;
  1708. display: -ms-inline-flexbox;
  1709. display: inline-flex;
  1710. -ms-flex-wrap: wrap;
  1711. flex-wrap: wrap;
  1712. justify-content: center;
  1713. width: 100%;
  1714. position: relative; }
  1715. .start:not(#form) .body-wrapper .card {
  1716. width: calc( (100% / 3) - 27px);
  1717. min-width: 200px;
  1718. margin: 0 0 40px 0;
  1719. max-width: 1200px; }
  1720. .start:not(#form) .body-wrapper .card .card-header {
  1721. position: relative;
  1722. width: 100%;
  1723. right: 0;
  1724. text-align: right; }
  1725. .start:not(#form) .body-wrapper .card .card-header.professionnels {
  1726. background-color: #9e0027; }
  1727. .start:not(#form) .body-wrapper .card .card-header.grand_public {
  1728. background-color: #0093a3; }
  1729. .start:not(#form) .body-wrapper .card .card-header.formations {
  1730. background-color: #6e6f70; }
  1731. .start:not(#form) .body-wrapper .card .card-header .publics {
  1732. padding: 2.5px 10px;
  1733. color: white; }
  1734. .start:not(#form) .body-wrapper .card .card-body {
  1735. padding: 15px;
  1736. background-image: url("/user/themes/lecampus/images/Trame-bleu2.svg");
  1737. background-repeat: repeat; }
  1738. .start:not(#form) .body-wrapper .event {
  1739. width: 45%; }
  1740. .start:not(#form) .body-wrapper .event .card-content .reso {
  1741. display: -webkit-inline-box;
  1742. display: -ms-inline-flexbox;
  1743. display: inline-flex;
  1744. -ms-flex-wrap: wrap;
  1745. flex-wrap: wrap;
  1746. flex-wrap: nowrap;
  1747. justify-content: space-between; }
  1748. .start:not(#form) .body-wrapper .event .card-content .reso > div, .start:not(#form) .body-wrapper .event .card-content .reso > a {
  1749. margin-right: 15px; }
  1750. .start:not(#form) .body-wrapper .event .card-content .reso a {
  1751. display: block;
  1752. margin-bottom: 10px; }
  1753. .start:not(#form) .body-wrapper .event .card-content .reso a img {
  1754. margin-left: 10px;
  1755. width: 20px; }
  1756. .start:not(#form) .body-wrapper .event .card-content .txt {
  1757. width: 80%; }
  1758. #articles .cat label:not(.active) {
  1759. border: none; }
  1760. #articles .cat label.active, #articles .cat label:hover {
  1761. border-top: 1px solid #0093a3;
  1762. border-bottom: 2px solid #b5cb3a; }
  1763. #articles .articles-listing {
  1764. flex-direction: column; }
  1765. #articles .articles-listing .card {
  1766. width: 100% !important; }
  1767. #articles .articles-listing .card > a {
  1768. display: grid;
  1769. grid-template-columns: minmax(300px, 25%) minmax(400px, calc(75% - 40px));
  1770. grid-template-rows: 250px;
  1771. grid-column-gap: 40px;
  1772. position: relative; }
  1773. #articles .articles-listing .card > a .card-image {
  1774. grid-column-start: 1;
  1775. grid-row-start: 1;
  1776. object-fit: contain;
  1777. overflow: hidden;
  1778. display: inline-flex;
  1779. justify-content: center; }
  1780. #articles .articles-listing .card > a .card-image img {
  1781. display: inline-block;
  1782. height: 250px;
  1783. width: auto; }
  1784. #articles .articles-listing .card > a .wrapper-content {
  1785. grid-column-start: 2;
  1786. grid-row-start: 1;
  1787. background-image: url(/user/themes/lecampus/images/Trame-bleu2.svg);
  1788. background-repeat: repeat;
  1789. padding: 20px 20px;
  1790. width: 100%;
  1791. height: 100%; }
  1792. #articles .articles-listing .card > a .wrapper-content .date {
  1793. float: left; }
  1794. #articles .articles-listing .card > a .wrapper-content .cat {
  1795. margin-left: 3px; }
  1796. #articles .articles-listing .card > a .wrapper-content .readmore {
  1797. float: right; }
  1798. #articles .articles-listing .card .card-content {
  1799. overflow: hidden;
  1800. height: 7.7rem; }
  1801. #articles .articles-listing .card .card-content h2 {
  1802. font-size: 0.9rem; }
  1803. #articles .articles-listing .card:last-child {
  1804. margin-bottom: 0; }
  1805. .paginations {
  1806. max-width: 1200px; }
  1807. .paginations > ul > li {
  1808. border: none; }
  1809. .paginations > ul > li > span.active::after {
  1810. content: " ";
  1811. width: 100%;
  1812. height: 5px;
  1813. display: block;
  1814. background: #b5cb3a; }
  1815. .paginations > ul > li span, .paginations > ul > li a {
  1816. padding: 4px 5px; }
  1817. .paginations > ul > li:first-child {
  1818. float: left; }
  1819. .paginations > ul > li:first-child > a::before, .paginations > ul > li:first-child > span::before {
  1820. content: "<";
  1821. margin-right: 10px;
  1822. display: inline-block;
  1823. transform: translateX(0px);
  1824. transition: 0.3s transform ease; }
  1825. .paginations > ul > li:first-child > a:hover::before {
  1826. transform: translateX(-3px);
  1827. transition: 0.3s transform ease; }
  1828. .paginations > ul > li:last-child {
  1829. float: right; }
  1830. .paginations > ul > li:last-child > a::after, .paginations > ul > li:last-child > span::after {
  1831. content: ">";
  1832. margin-left: 10px;
  1833. display: inline-block;
  1834. transform: translateX(0px);
  1835. transition: 0.3s transform ease; }
  1836. .paginations > ul > li:last-child > a:hover::after {
  1837. transform: translateX(3px);
  1838. transition: 0.3s transform ease; }
  1839. .start#form .entete {
  1840. border-top: 1px solid #0093a3; }
  1841. .start#form h2 {
  1842. margin-top: 0; }
  1843. .start#form .body-wrapper {
  1844. width: 100%;
  1845. min-width: 250px;
  1846. margin: auto auto 140px auto; }
  1847. .start#form .body-wrapper form {
  1848. width: calc( (100% / 2));
  1849. margin-top: 20px;
  1850. margin: auto; }
  1851. .start#form .body-wrapper form > div {
  1852. width: 100%;
  1853. margin: 20px 0;
  1854. border-bottom: 1px solid #9e0027; }
  1855. .start#form .body-wrapper form > div .form-data {
  1856. display: -webkit-inline-box;
  1857. display: -ms-inline-flexbox;
  1858. display: inline-flex;
  1859. -ms-flex-wrap: wrap;
  1860. flex-wrap: wrap;
  1861. margin: 20px 0px; }
  1862. .start#form .body-wrapper form > div .form-data > div {
  1863. overflow: hidden;
  1864. margin: 10px 10px;
  1865. min-width: 100px;
  1866. border: 2px solid #9e0027;
  1867. border-radius: 30px;
  1868. padding: 10px 20px; }
  1869. .start#form .body-wrapper form > div .form-data > div.check {
  1870. background: #9e0027;
  1871. color: white; }
  1872. .start#form .body-wrapper form > div .form-data > div input {
  1873. border: none; }
  1874. .start#form .body-wrapper form > div .form-data > div input[type='radio'] {
  1875. visibility: hidden;
  1876. position: absolute; }
  1877. .start#form .body-wrapper form > div .form-data > div label {
  1878. cursor: pointer; }
  1879. .start#form .body-wrapper form > div:nth-of-type(n+5):not(:nth-of-type(n+12)) {
  1880. width: 50%;
  1881. float: left;
  1882. border-bottom: 0px; }
  1883. .start#form .body-wrapper form > div:nth-of-type(n+5):not(:nth-of-type(n+12)) .form-data {
  1884. width: 100%; }
  1885. .start#form .body-wrapper form > div:nth-of-type(n+5):not(:nth-of-type(n+12)) .form-data > div {
  1886. width: 100%; }
  1887. .start#form .body-wrapper form > div:nth-of-type(11) {
  1888. border-bottom: 1px solid #9e0027 !important;
  1889. width: 100% !important; }
  1890. .start#form .body-wrapper form > div:nth-of-type(11) .form-data {
  1891. width: 50% !important; }
  1892. .start#form .body-wrapper form > div.button-wrapper {
  1893. background: #9e0027;
  1894. height: 100px;
  1895. position: absolute;
  1896. left: 0;
  1897. width: 100%; }
  1898. .start#form .body-wrapper form > div.button-wrapper button {
  1899. margin-right: 25%;
  1900. position: absolute;
  1901. right: 0;
  1902. top: 50%;
  1903. -webkit-transform: translateY(-50%);
  1904. transform: translateY(-50%);
  1905. background: white;
  1906. border-radius: 30px;
  1907. padding: 10px 35px;
  1908. box-shadow: none;
  1909. border: 0; }
  1910. .start#form .body-wrapper #send-valide {
  1911. -webkit-transform: translate(-50%, -50%);
  1912. transform: translate(-50%, -50%);
  1913. background: #9e0027;
  1914. border-radius: 20px;
  1915. position: fixed;
  1916. width: 30%;
  1917. min-height: 30%;
  1918. left: 50%;
  1919. top: 50%;
  1920. padding: 50px; }
  1921. .start#form .body-wrapper #send-valide .toast {
  1922. position: relative;
  1923. text-align: center;
  1924. color: white; }
  1925. .start#form .body-wrapper #send-valide .ok {
  1926. color: white;
  1927. position: absolute;
  1928. right: 20px;
  1929. bottom: 20px; }
  1930. .header-wrapper .title h2 {
  1931. width: auto;
  1932. margin-bottom: 20px;
  1933. background: #9e0027;
  1934. border-radius: 30px;
  1935. width: auto;
  1936. padding: 10px 20px;
  1937. color: white;
  1938. font-size: 1.2rem;
  1939. width: 115px; }
  1940. .content {
  1941. width: 50%;
  1942. margin: 4rem auto; }
  1943. .content p {
  1944. margin: 10px 0; }
  1945. .content_s {
  1946. margin: auto !important; }
  1947. .entete {
  1948. display: -webkit-inline-box;
  1949. display: -ms-inline-flexbox;
  1950. display: inline-flex;
  1951. -ms-flex-wrap: wrap;
  1952. flex-wrap: wrap;
  1953. padding: 20px;
  1954. background-image: url("/user/themes/lecampus/images/Trame-bleu2.svg");
  1955. background-repeat: repeat;
  1956. height: auto;
  1957. border-top: 10px solid #b5cb3a; }
  1958. .entete .entete_c {
  1959. display: -webkit-inline-box;
  1960. display: -ms-inline-flexbox;
  1961. display: inline-flex;
  1962. -ms-flex-wrap: wrap;
  1963. flex-wrap: wrap;
  1964. text-align: center;
  1965. width: 70%;
  1966. margin: 50px auto;
  1967. position: relative; }
  1968. .entete .entete_c h1 {
  1969. width: auto;
  1970. margin-bottom: 20px;
  1971. background: #9e0027;
  1972. border-radius: 30px;
  1973. width: auto;
  1974. padding: 10px 20px; }
  1975. .body-wrapper .content h4:not(:first-of-type) {
  1976. border-top: 1px solid black;
  1977. padding-top: 30px;
  1978. margin: 30px 0 0 0; }
  1979. .body-wrapper .sub-content {
  1980. border-top: 1px solid black;
  1981. margin-bottom: 20px;
  1982. margin-top: 20px; }
  1983. .body-wrapper .sub-content > img {
  1984. width: 33%;
  1985. float: left;
  1986. margin: 20px 10px 0px 0px; }
  1987. #event {
  1988. margin-bottom: 20px; }
  1989. #event .content {
  1990. margin-top: 50px; }
  1991. #event .content h2 {
  1992. float: left;
  1993. margin-right: 20px; }
  1994. #event .content .reso {
  1995. display: -webkit-inline-box;
  1996. display: -ms-inline-flexbox;
  1997. display: inline-flex;
  1998. -ms-flex-wrap: wrap;
  1999. flex-wrap: wrap;
  2000. flex-wrap: nowrap;
  2001. width: 50px;
  2002. height: 25px; }
  2003. #event .sidebar {
  2004. margin-top: 50px; }
  2005. #event p a {
  2006. text-decoration: underline; }
  2007. .sidebar {
  2008. position: absolute;
  2009. right: 0;
  2010. width: 20%;
  2011. margin: -55px auto 0 20px; }
  2012. .sidebar h2 {
  2013. background: #9e0027;
  2014. border-radius: 100px;
  2015. width: 100px;
  2016. height: 100px; }
  2017. .sidebar .side-agenda {
  2018. padding: 10px 20px 10px 0; }
  2019. .sidebar .side-agenda:not(:nth-of-type(1)) {
  2020. border-top: 1px solid #0093a3; }
  2021. .sidebar .side-agenda:not(:nth-of-type(1))::before {
  2022. content: " ";
  2023. display: block;
  2024. position: absolute;
  2025. width: 5px;
  2026. height: 5px;
  2027. margin-top: -13px;
  2028. border-radius: 10px;
  2029. background: #0093a3; }
  2030. .sidebar .side-agenda:nth-of-type(3) {
  2031. margin-bottom: 10px; }
  2032. .sidebar .side-all-agenda {
  2033. background: white;
  2034. width: auto;
  2035. padding: 10px 20px;
  2036. margin-bottom: 10px;
  2037. float: left;
  2038. border: 2px solid #9e0027;
  2039. border-radius: 30px;
  2040. transition: background-color 0.3s ease; }
  2041. .sidebar .side-all-agenda a {
  2042. color: black; }
  2043. .sidebar .side-all-agenda:hover {
  2044. background-color: #9e0027;
  2045. transition: background-color 0.3s ease; }
  2046. .sidebar .side-all-agenda:hover a {
  2047. color: white; }
  2048. #newsletter {
  2049. padding: 20px 0;
  2050. background: #0093a3;
  2051. /* LOADER */ }
  2052. #newsletter .ml-form-embedSubmitLoad {
  2053. display: inline-block;
  2054. width: 20px;
  2055. height: 20px; }
  2056. #newsletter .ml-form-embedSubmitLoad:after {
  2057. content: " ";
  2058. display: block;
  2059. width: 11px;
  2060. height: 11px;
  2061. margin: 1px;
  2062. border-radius: 50%;
  2063. border: 4px solid #fff;
  2064. border-color: #ffffff #ffffff #ffffff transparent;
  2065. -webkit-animation: ml-form-embedSubmitLoad 1.2s linear infinite;
  2066. animation: ml-form-embedSubmitLoad 1.2s linear infinite; }
  2067. @-webkit-keyframes ml-form-embedSubmitLoad {
  2068. 0% {
  2069. -webkit-transform: rotate(0deg);
  2070. transform: rotate(0deg); }
  2071. 100% {
  2072. -webkit-transform: rotate(360deg);
  2073. transform: rotate(360deg); } }
  2074. @keyframes ml-form-embedSubmitLoad {
  2075. 0% {
  2076. -webkit-transform: rotate(0deg);
  2077. transform: rotate(0deg); }
  2078. 100% {
  2079. -webkit-transform: rotate(360deg);
  2080. transform: rotate(360deg); } }
  2081. #newsletter #mlb2-985974.ml-form-embedContainer {
  2082. box-sizing: border-box;
  2083. display: table;
  2084. height: 100%;
  2085. margin: 0 auto;
  2086. width: 100% !important; }
  2087. #newsletter #mlb2-985974.ml-form-embedContainer h4,
  2088. #newsletter #mlb2-985974.ml-form-embedContainer p,
  2089. #newsletter #mlb2-985974.ml-form-embedContainer span,
  2090. #newsletter #mlb2-985974.ml-form-embedContainer button {
  2091. text-transform: none !important;
  2092. letter-spacing: normal !important; }
  2093. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper {
  2094. display: inline-block !important;
  2095. margin: 0;
  2096. padding: 0;
  2097. position: relative; }
  2098. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
  2099. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedDefault {
  2100. width: 400px; }
  2101. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  2102. width: 750px; }
  2103. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-align-left {
  2104. text-align: left; }
  2105. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-align-center {
  2106. text-align: center; }
  2107. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-align-default {
  2108. display: table-cell !important;
  2109. vertical-align: middle !important;
  2110. text-align: center !important; }
  2111. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-align-right {
  2112. text-align: right; }
  2113. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {
  2114. border-top-left-radius: 4px;
  2115. border-top-right-radius: 4px;
  2116. height: auto;
  2117. width: 100%; }
  2118. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
  2119. padding-bottom: 0;
  2120. justify-content: center;
  2121. display: flex;
  2122. border: 1px solid white;
  2123. border-radius: 30px;
  2124. overflow: hidden; }
  2125. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
  2126. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  2127. width: 100%; }
  2128. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  2129. color: white; }
  2130. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  2131. color: white;
  2132. text-align: center;
  2133. font-family: "Regular"; }
  2134. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent label {
  2135. color: white;
  2136. white-space: nowrap;
  2137. padding: 0 20px;
  2138. line-height: 40px; }
  2139. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
  2140. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  2141. color: #000000;
  2142. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  2143. font-size: 14px;
  2144. font-weight: 400;
  2145. margin: 0 0 10px 0;
  2146. text-align: left;
  2147. text-align: center;
  2148. color: white; }
  2149. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,
  2150. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,
  2151. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,
  2152. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {
  2153. color: #000000;
  2154. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  2155. font-size: 14px; }
  2156. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,
  2157. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {
  2158. color: #000000;
  2159. text-decoration: underline; }
  2160. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
  2161. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
  2162. margin: 0; }
  2163. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
  2164. margin: 0;
  2165. width: 100%; }
  2166. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
  2167. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  2168. margin: 0 0 20px 0;
  2169. width: 100%; }
  2170. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
  2171. margin: 0; }
  2172. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  2173. margin: 0 0 10px 0;
  2174. width: 100%; }
  2175. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
  2176. margin: 0; }
  2177. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {
  2178. margin: 0; }
  2179. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  2180. background-color: #ffffff !important;
  2181. color: #333333 !important;
  2182. border-color: #cccccc !important;
  2183. border-radius: 4px !important;
  2184. border-style: solid !important;
  2185. border-width: 1px !important;
  2186. font-size: 14px !important;
  2187. line-height: 20px !important;
  2188. padding: 10px 10px !important;
  2189. width: 100% !important;
  2190. box-sizing: border-box !important;
  2191. max-width: 100% !important; }
  2192. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder {
  2193. color: #333333; }
  2194. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder {
  2195. color: #333333; }
  2196. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder {
  2197. color: #333333; }
  2198. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder {
  2199. color: #333333; }
  2200. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {
  2201. height: 40px;
  2202. display: flex; }
  2203. #newsletter .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal {
  2204. width: 100%; }
  2205. #newsletter .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal {
  2206. width: auto;
  2207. margin-left: -45px; }
  2208. #newsletter .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
  2209. box-sizing: border-box;
  2210. float: left; }
  2211. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
  2212. background-color: #ffffff;
  2213. color: #333333;
  2214. border-radius: 30px;
  2215. border-style: solid;
  2216. border-width: 0px;
  2217. font-size: 14px;
  2218. line-height: 20px;
  2219. padding: 10px 10px;
  2220. width: 100%;
  2221. box-sizing: border-box; }
  2222. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
  2223. background-color: transparent;
  2224. border-color: transparent;
  2225. border-style: solid;
  2226. box-shadow: none;
  2227. color: black !important;
  2228. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  2229. font-size: 14px !important;
  2230. font-weight: 700;
  2231. line-height: 20px;
  2232. padding: 10px !important;
  2233. width: 100%; }
  2234. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type="checkbox"] {
  2235. display: inline-block;
  2236. float: left;
  2237. margin: 1px 0 0 0;
  2238. opacity: 1;
  2239. visibility: visible;
  2240. appearance: checkbox !important;
  2241. -moz-appearance: checkbox !important;
  2242. -webkit-appearance: checkbox !important;
  2243. position: relative;
  2244. height: 14px;
  2245. width: 14px; }
  2246. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
  2247. color: #000000;
  2248. display: block;
  2249. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  2250. font-size: 12px;
  2251. text-align: left;
  2252. padding-left: 25px; }
  2253. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {
  2254. font-weight: normal;
  2255. margin: 0;
  2256. padding: 0; }
  2257. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {
  2258. color: #000000;
  2259. text-decoration: underline; }
  2260. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {
  2261. color: #000000 !important;
  2262. font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
  2263. font-size: 12px !important;
  2264. font-weight: normal !important;
  2265. line-height: 18px !important;
  2266. padding: 0 !important;
  2267. margin: 0 5px 0 0 !important; }
  2268. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
  2269. margin: 0; }
  2270. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  2271. margin: 0 0 20px 0; }
  2272. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  2273. background-color: #000000 !important;
  2274. border: none !important;
  2275. border-radius: 4px !important;
  2276. box-shadow: none !important;
  2277. color: #ffffff !important;
  2278. font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
  2279. font-size: 14px !important;
  2280. font-weight: 700 !important;
  2281. line-height: 20px !important;
  2282. padding: 10px !important;
  2283. width: 100% !important;
  2284. box-sizing: border-box !important; }
  2285. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  2286. background-color: #333333 !important; }
  2287. #newsletter .ml-subscribe-close {
  2288. width: 30px;
  2289. height: 30px;
  2290. background: url(https://bucket.mlcdn.com/images/default/modal_close.png) no-repeat;
  2291. background-size: 30px;
  2292. cursor: pointer;
  2293. margin-top: -10px;
  2294. margin-right: -10px;
  2295. position: absolute;
  2296. top: 0;
  2297. right: 0; }
  2298. #newsletter .ml-error input {
  2299. background: url(https://bucket.mlcdn.com/images/default/error-icon.png) 98% center no-repeat #ffffff !important;
  2300. background-size: 24px 24px !important; }
  2301. #newsletter .ml-error .label-description {
  2302. color: #ff0000 !important; }
  2303. #newsletter .ml-error .label-description p {
  2304. color: #ff0000 !important; }
  2305. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
  2306. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
  2307. color: #ff0000 !important; }
  2308. @media only screen and (max-width: 400px) {
  2309. #newsletter .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
  2310. margin-bottom: 10px !important;
  2311. width: 100% !important; } }
  2312. #newsletter #mc_embed_signup {
  2313. width: 600px;
  2314. margin: auto;
  2315. padding: 0 0 0 10px;
  2316. border-radius: 100px;
  2317. border: 1px solid #ffffff; }
  2318. #newsletter #mc_embed_signup form {
  2319. display: -webkit-inline-box;
  2320. display: -ms-inline-flexbox;
  2321. display: inline-flex;
  2322. -ms-flex-wrap: wrap;
  2323. flex-wrap: wrap;
  2324. width: 100%; }
  2325. #newsletter #mc_embed_signup form #mc_embed_signup_scroll {
  2326. display: -webkit-inline-box;
  2327. display: -ms-inline-flexbox;
  2328. display: inline-flex;
  2329. -ms-flex-wrap: wrap;
  2330. flex-wrap: wrap;
  2331. width: 100%;
  2332. margin: auto; }
  2333. #newsletter #mc_embed_signup form #mc_embed_signup_scroll label {
  2334. text-align: center;
  2335. color: #ffffff;
  2336. margin-right: 10px;
  2337. width: 260px; }
  2338. #newsletter #mc_embed_signup form #mc_embed_signup_scroll > input {
  2339. width: 315px;
  2340. padding-left: 20px; }
  2341. #newsletter #mc_embed_signup form #mc_embed_signup_scroll input {
  2342. border-radius: 30px;
  2343. height: 31px;
  2344. box-shadow: none;
  2345. border: none; }
  2346. #newsletter #mc_embed_signup form #mc_embed_signup_scroll .clear input {
  2347. background: #ffffff;
  2348. margin-left: -30px; }
  2349. #home .content {
  2350. display: -webkit-inline-box;
  2351. display: -ms-inline-flexbox;
  2352. display: inline-flex;
  2353. -ms-flex-wrap: wrap;
  2354. flex-wrap: wrap; }
  2355. #home .content > p {
  2356. position: relative;
  2357. width: calc(100% / 3);
  2358. padding: 50px 20px;
  2359. margin-top: 10px; }
  2360. #home .content > p img {
  2361. position: absolute;
  2362. width: auto;
  2363. height: 50px;
  2364. top: -20px;
  2365. left: 50%;
  2366. -webkit-transform: translate(-50%);
  2367. transform: translate(-50%); }
  2368. #home .content > p:nth-of-type(n+4) {
  2369. width: calc(100% / 4); }
  2370. #home .content > p:last-child {
  2371. width: auto !important;
  2372. margin-top: 0 !important;
  2373. margin: auto; }
  2374. #home .content > p:last-child a {
  2375. display: block;
  2376. padding: 10px 20px;
  2377. text-align: center;
  2378. border: 2px solid #b5cb3a;
  2379. border-radius: 30px;
  2380. margin: auto;
  2381. transition: background-color 0.3s ease; }
  2382. #item .item-wrapper, #item-article .item-wrapper {
  2383. width: 45%;
  2384. margin: auto; }
  2385. #item .item-wrapper .title-wrapper, #item-article .item-wrapper .title-wrapper {
  2386. display: inline-flex;
  2387. align-items: baseline;
  2388. width: 100%;
  2389. margin: 40px 0; }
  2390. #item .item-wrapper .title-wrapper .back, #item-article .item-wrapper .title-wrapper .back {
  2391. margin-right: 10px;
  2392. margin-left: -80px; }
  2393. #item .item-wrapper .title-wrapper .back::before, #item-article .item-wrapper .title-wrapper .back::before {
  2394. content: "<";
  2395. display: inline-block;
  2396. margin-right: 5px; }
  2397. #item .item-wrapper .title-wrapper .title, #item-article .item-wrapper .title-wrapper .title {
  2398. width: auto;
  2399. margin: 0; }
  2400. #item .item-wrapper .title-wrapper .title h1, #item-article .item-wrapper .title-wrapper .title h1 {
  2401. width: auto;
  2402. padding: 10px 20px;
  2403. border-radius: 30px;
  2404. background: #9e0027; }
  2405. #item .item-wrapper .info-wrapper, #item-article .item-wrapper .info-wrapper {
  2406. display: inline-flex;
  2407. width: 100%;
  2408. flex-direction: column;
  2409. align-items: flex-end; }
  2410. #item .item-wrapper .info-wrapper .date, #item-article .item-wrapper .info-wrapper .date {
  2411. width: 100%;
  2412. background-image: url("/user/themes/lecampus/images/Trame-bleu2.svg");
  2413. background-repeat: repeat;
  2414. padding: 5px 10px;
  2415. text-align: right;
  2416. margin-bottom: 20px; }
  2417. #item .item-wrapper .info-wrapper .reso, #item-article .item-wrapper .info-wrapper .reso {
  2418. display: inline-flex;
  2419. margin-bottom: 20px; }
  2420. #item .item-wrapper .info-wrapper .reso a, #item-article .item-wrapper .info-wrapper .reso a {
  2421. display: inline-flex;
  2422. margin: 0 0 0 10px;
  2423. align-items: center; }
  2424. #item .item-wrapper .info-wrapper .reso a img, #item-article .item-wrapper .info-wrapper .reso a img {
  2425. margin-left: 5px;
  2426. width: 20px;
  2427. height: auto; }
  2428. #item .item-wrapper .body-wrapper .card-image, #item-article .item-wrapper .body-wrapper .card-image {
  2429. width: 100%; }
  2430. #item .item-wrapper .body-wrapper .card-content, #item-article .item-wrapper .body-wrapper .card-content {
  2431. margin: 40px 0; }
  2432. #item .item-wrapper .body-wrapper .card-content .txt p, #item-article .item-wrapper .body-wrapper .card-content .txt p {
  2433. margin: 0 0 1.2rem 0;
  2434. line-height: 1.5rem; }
  2435. #item .item-wrapper .body-wrapper .card-content .txt h2, #item-article .item-wrapper .body-wrapper .card-content .txt h2 {
  2436. font-size: 1.2rem;
  2437. font-family: "bold";
  2438. font-weight: normal;
  2439. margin: 0; }
  2440. #item .item-wrapper .body-wrapper .card-content .txt ul, #item-article .item-wrapper .body-wrapper .card-content .txt ul {
  2441. margin-bottom: 1.2rem; }
  2442. #item .item-wrapper .body-wrapper .card-content .txt ul li::before, #item-article .item-wrapper .body-wrapper .card-content .txt ul li::before {
  2443. content: " ";
  2444. width: 5px;
  2445. height: 5px;
  2446. border-radius: 10px;
  2447. display: inline-block;
  2448. vertical-align: middle;
  2449. background: #9e0027;
  2450. margin-right: 5px; }
  2451. #item .content, #item-article .content {
  2452. display: -webkit-inline-box;
  2453. display: -ms-inline-flexbox;
  2454. display: inline-flex;
  2455. -ms-flex-wrap: wrap;
  2456. flex-wrap: wrap; }
  2457. #item .content .images_s, #item-article .content .images_s {
  2458. width: 40%;
  2459. align-self: center;
  2460. margin-right: 15px; }
  2461. #item .content .images_s img, #item-article .content .images_s img {
  2462. margin-bottom: 15px; }
  2463. #item .content .content_s, #item-article .content .content_s {
  2464. width: calc(60% - 30px); }
  2465. #item .content .icones, #item-article .content .icones {
  2466. margin: 70px 0;
  2467. display: -webkit-inline-box;
  2468. display: -ms-inline-flexbox;
  2469. display: inline-flex;
  2470. -ms-flex-wrap: wrap;
  2471. flex-wrap: wrap;
  2472. justify-content: space-around;
  2473. width: 100%; }
  2474. #item .content .icones .icon, #item-article .content .icones .icon {
  2475. height: 50px;
  2476. width: auto;
  2477. max-width: 200px; }
  2478. #item .content .icones .icon img, #item-article .content .icones .icon img {
  2479. height: 50px;
  2480. width: 100%; }
  2481. #item .content .icones .icon p, #item-article .content .icones .icon p {
  2482. text-align: center; }
  2483. #devis.home .title {
  2484. visibility: hidden; }
  2485. #devis {
  2486. display: -webkit-inline-box;
  2487. display: -ms-inline-flexbox;
  2488. display: inline-flex;
  2489. -ms-flex-wrap: wrap;
  2490. flex-wrap: wrap;
  2491. justify-content: center;
  2492. align-items: center;
  2493. background-image: url("/user/themes/lecampus/images/Trame-bleu2.svg");
  2494. background-repeat: repeat;
  2495. width: 100%; }
  2496. #devis .title {
  2497. width: 200px;
  2498. height: 200px;
  2499. background: #9e0027;
  2500. border-radius: 200px;
  2501. -webkit-transform: translateX(80px);
  2502. transform: translateX(80px); }
  2503. #devis .title h4 {
  2504. text-align: center;
  2505. color: white;
  2506. margin: 50% 10px 0 10px;
  2507. -webkit-transform: translateY(-50%);
  2508. transform: translateY(-50%); }
  2509. #devis .txt {
  2510. display: -webkit-inline-box;
  2511. display: -ms-inline-flexbox;
  2512. display: inline-flex;
  2513. -ms-flex-wrap: wrap;
  2514. flex-wrap: wrap;
  2515. background: white;
  2516. width: 25%;
  2517. margin-right: 20px;
  2518. height: auto; }
  2519. #devis .txt p {
  2520. padding: 20px 20px 20px 20px;
  2521. color: black;
  2522. text-align: left; }
  2523. #devis .txt p strong {
  2524. font-size: 1.3rem; }
  2525. #devis .demander-votre-devis {
  2526. margin-top: 0;
  2527. -webkit-transform: translate(50%, -125%);
  2528. transform: translate(50%, -125%); }
  2529. #devis .img {
  2530. width: 400px;
  2531. height: 300px;
  2532. position: relative; }
  2533. #devis .img .content-img {
  2534. width: auto;
  2535. height: auto;
  2536. overflow: hidden; }
  2537. #devis .img .content-img > img {
  2538. width: 100%;
  2539. height: 100%; }
  2540. #devis.item, #devis.sublog, #devis.item-article, #devis.nos-offres, #devis.nos-packs, #devis.le_campus {
  2541. background: #9e0027;
  2542. height: auto;
  2543. padding: 20px 0; }
  2544. #devis.item a, #devis.sublog a, #devis.item-article a, #devis.nos-offres a, #devis.nos-packs a, #devis.le_campus a {
  2545. color: white; }
  2546. #devis.item a .title, #devis.sublog a .title, #devis.item-article a .title, #devis.nos-offres a .title, #devis.nos-packs a .title, #devis.le_campus a .title {
  2547. vertical-align: baseline;
  2548. border-radius: 30px;
  2549. border: 1px solid white;
  2550. padding: 5px 20px;
  2551. height: 35px;
  2552. width: auto;
  2553. -webkit-transform: translateX(0);
  2554. transform: translateX(0); }
  2555. #devis.item a:hover, #devis.sublog a:hover, #devis.item-article a:hover, #devis.nos-offres a:hover, #devis.nos-packs a:hover, #devis.le_campus a:hover {
  2556. color: black; }
  2557. #devis.item a:hover .title, #devis.sublog a:hover .title, #devis.item-article a:hover .title, #devis.nos-offres a:hover .title, #devis.nos-packs a:hover .title, #devis.le_campus a:hover .title {
  2558. background: white;
  2559. transition: background 0.3s ease; }
  2560. #reco {
  2561. background: #00407d; }
  2562. #reco .title {
  2563. display: flex;
  2564. cursor: pointer;
  2565. width: 100%;
  2566. padding: 10px; }
  2567. #reco .title h2 {
  2568. width: auto;
  2569. margin: auto;
  2570. color: white;
  2571. padding: 10px;
  2572. text-align: center;
  2573. border-top: 1px solid white;
  2574. border-bottom: 1px solid white;
  2575. font-size: 1rem; }
  2576. #reco .title h2::after {
  2577. display: inline-flex;
  2578. margin-left: 10px;
  2579. content: " ";
  2580. background: url("../images/fleche-top.svg");
  2581. background-size: 15px 18px;
  2582. background-repeat: no-repeat;
  2583. width: 15px;
  2584. height: 18px; }
  2585. #reco .title.open h2:after {
  2586. -webkit-transform: rotate(180deg);
  2587. transform: rotate(180deg); }
  2588. #reco .txt {
  2589. z-index: -1;
  2590. position: relative;
  2591. width: 100%;
  2592. display: none; }
  2593. #reco .txt p {
  2594. color: white;
  2595. width: 300px; }
  2596. #reco .txt p a {
  2597. color: white;
  2598. text-decoration: underline; }
  2599. #reco .txt.open {
  2600. display: -webkit-inline-box;
  2601. display: -ms-inline-flexbox;
  2602. display: inline-flex;
  2603. -ms-flex-wrap: wrap;
  2604. flex-wrap: wrap;
  2605. justify-content: center;
  2606. padding-top: 20px;
  2607. z-index: 999;
  2608. background: #00407d; }
  2609. #reco .txt.open .item {
  2610. display: block; }
  2611. #reco .txt h3 {
  2612. color: #b5cb3a; }
  2613. #reco .item {
  2614. margin: 0 0px 20px 20px;
  2615. border-left: 1px solid white;
  2616. padding-left: 20px; }
  2617. #reco .item img {
  2618. width: 50px;
  2619. margin-bottom: 10px; }
  2620. .content_s.map {
  2621. width: 100% !important;
  2622. height: auto; }
  2623. .content_s.map p:last-child {
  2624. height: 500px; }
  2625. .content_s.map a#carte {
  2626. display: block;
  2627. width: 100%;
  2628. height: 100%; }
  2629. #event .title, #item .title, #item-article .title {
  2630. width: 45%;
  2631. margin: auto; }
  2632. #event .head-event .tags, #item .head-event .tags, #item-article .head-event .tags {
  2633. width: 100%; }
  2634. #event .head-event .tags.professionnels, #item .head-event .tags.professionnels, #item-article .head-event .tags.professionnels {
  2635. background-color: #9e0027; }
  2636. #event .head-event .tags.grand_public, #item .head-event .tags.grand_public, #item-article .head-event .tags.grand_public {
  2637. background-color: #0093a3; }
  2638. #event .head-event .tags.formations, #item .head-event .tags.formations, #item-article .head-event .tags.formations {
  2639. background-color: #6e6f70; }
  2640. #event .head-event .tags.publics, #item .head-event .tags.publics, #item-article .head-event .tags.publics {
  2641. padding: 2.5px 10px;
  2642. color: white; }
  2643. #event .card-header, #item .card-header, #item-article .card-header {
  2644. display: -webkit-inline-box;
  2645. display: -ms-inline-flexbox;
  2646. display: inline-flex;
  2647. -ms-flex-wrap: wrap;
  2648. flex-wrap: wrap;
  2649. flex-direction: column;
  2650. width: 100%; }
  2651. #event .card-header.professionnels, #item .card-header.professionnels, #item-article .card-header.professionnels {
  2652. background-color: #9e0027; }
  2653. #event .card-header.grand_public, #item .card-header.grand_public, #item-article .card-header.grand_public {
  2654. background-color: #0093a3; }
  2655. #event .card-header.formations, #item .card-header.formations, #item-article .card-header.formations {
  2656. background-color: #6e6f70; }
  2657. #event .card-header .publics, #item .card-header .publics, #item-article .card-header .publics {
  2658. text-align: right; }
  2659. #event .card-header .publics.publics, #item .card-header .publics.publics, #item-article .card-header .publics.publics {
  2660. padding: 2.5px 10px;
  2661. color: white; }
  2662. #event .card-body, #item .card-body, #item-article .card-body {
  2663. padding: 15px;
  2664. background-image: url("/user/themes/lecampus/images/Trame-bleu2.svg");
  2665. background-repeat: repeat; }
  2666. #event .card-content, #item .card-content, #item-article .card-content {
  2667. margin-top: 20px; }
  2668. .demander-votre-devis {
  2669. padding: 10px;
  2670. z-index: 999;
  2671. -webkit-transform: translate(0, -50%);
  2672. transform: translate(0, -50%);
  2673. background: #9e0027;
  2674. position: absolute;
  2675. width: 200px;
  2676. height: 200px;
  2677. right: 5%;
  2678. color: white;
  2679. text-align: center; }
  2680. .demander-votre-devis strong {
  2681. font-weight: bold !important; }
  2682. .demander-votre-devis a {
  2683. color: white; }
  2684. .demander-votre-devis img {
  2685. margin-top: 10px;
  2686. width: 50px; }
  2687. #sublog .body-wrapper {
  2688. background-image: url("../images/Trame-gris.svg");
  2689. background-repeat: repeat; }
  2690. #sublog .content {
  2691. display: -webkit-inline-box;
  2692. display: -ms-inline-flexbox;
  2693. display: inline-flex;
  2694. -ms-flex-wrap: wrap;
  2695. flex-wrap: wrap;
  2696. width: 90%;
  2697. flex-direction: row-reverse;
  2698. justify-content: space-between; }
  2699. #sublog .content .txt {
  2700. width: 50%; }
  2701. #sublog .content .txt .content_txt {
  2702. width: 50%; }
  2703. #sublog .content .txt > p {
  2704. font-size: 1.2rem;
  2705. font-family: "bold"; }
  2706. #sublog svg {
  2707. pointer-events: none; }
  2708. #sublog .mapsalles {
  2709. width: 50%;
  2710. position: relative; }
  2711. #sublog .mapsalles .contour {
  2712. position: relative;
  2713. z-index: 1;
  2714. pointer-events: none;
  2715. display: inline-block;
  2716. width: 100%;
  2717. vertical-align: middle;
  2718. overflow: hidden; }
  2719. #sublog .mapsalles .fond {
  2720. position: absolute;
  2721. display: inline-block;
  2722. width: 100%;
  2723. vertical-align: middle;
  2724. overflow: hidden;
  2725. z-index: 0;
  2726. left: 0;
  2727. top: 5.3%; }
  2728. #sublog .mapsalles .fond path {
  2729. fill: none;
  2730. pointer-events: all;
  2731. transition: fill 0.3s ease; }
  2732. #sublog .mapsalles .fond path:hover {
  2733. fill: #0093a3 !important;
  2734. transition: fill 0.3s ease; }
  2735. #sublog .content_salle {
  2736. visibility: hidden;
  2737. overflow-x: hidden;
  2738. position: absolute;
  2739. left: 50%;
  2740. top: 300px;
  2741. width: 40%;
  2742. background: white; }
  2743. #sublog .content_salle > p {
  2744. padding-left: 10px; }
  2745. #sublog .content_salle .header-salles {
  2746. height: 100%;
  2747. background: #0093a3;
  2748. padding: 5px 10px;
  2749. color: white;
  2750. margin-top: 0;
  2751. width: 100%; }
  2752. #sublog .content_salle .header-salles h3 {
  2753. width: 100%; }
  2754. #sublog .content_salle .header-salles img {
  2755. display: none; }
  2756. #sublog .content_salle .gal-salles {
  2757. height: 100%;
  2758. position: relative; }
  2759. #sublog .content_salle .gal-salles img {
  2760. width: 100%;
  2761. height: 100%; }
  2762. #sublog .content_salle h4 {
  2763. background: #b5cb3a;
  2764. font-size: 1.2rem;
  2765. font-family: "bold";
  2766. padding: 5px 10px;
  2767. margin-top: -1px; }
  2768. #sublog .slidesjs-navigation {
  2769. margin-right: 5px;
  2770. float: left;
  2771. display: block;
  2772. width: 30px;
  2773. height: 30px;
  2774. padding-top: 13px;
  2775. background-position: 0 0;
  2776. overflow: hidden;
  2777. z-index: 999;
  2778. position: absolute;
  2779. top: 50%; }
  2780. #sublog .slidesjs-previous {
  2781. left: 10px;
  2782. background-image: url("/user/themes/lecampus/images/arrow-gal.svg"); }
  2783. #sublog .slidesjs-next {
  2784. background-image: url("/user/themes/lecampus/images/arrow-gal-next.svg");
  2785. right: 10px; }
  2786. #default .header-wrapper {
  2787. width: 45%;
  2788. margin-top: 50px;
  2789. margin: auto; }
  2790. #default .body-wrapper {
  2791. margin-bottom: 50px; }
  2792. #default .title {
  2793. width: 80%;
  2794. margin: auto; }
  2795. #default .txt {
  2796. margin: auto; }
  2797. #default p {
  2798. margin-bottom: 10px; }
  2799. .ok {
  2800. cursor: pointer; }
  2801. .cookie-banner {
  2802. display: none;
  2803. position: fixed;
  2804. top: 0;
  2805. width: 100%; }
  2806. .cookie-banner.active {
  2807. display: block; }
  2808. .cookie-inform-and-ask {
  2809. background-color: green;
  2810. display: none;
  2811. height: 100%;
  2812. left: 0;
  2813. position: fixed;
  2814. top: 0;
  2815. width: 100%; }
  2816. .cookie-inform-and-ask.active {
  2817. display: block; }
  2818. .cookie-inform-and-ask .cookie-dialog {
  2819. left: 50%;
  2820. position: absolute;
  2821. top: 50%;
  2822. -webkit-transform: translate(-50%, -50%);
  2823. transform: translate(-50%, -50%);
  2824. width: 70%; }
  2825. #le_campus #module {
  2826. width: 60%;
  2827. margin: auto;
  2828. margin-top: 4rem;
  2829. margin-bottom: 4rem;
  2830. padding-right: 4rem;
  2831. display: flex;
  2832. flex-direction: column; }
  2833. #le_campus #module .titre-module {
  2834. font-family: "now_alt_bold";
  2835. font-weight: 400;
  2836. font-size: 2rem;
  2837. line-height: 2rem;
  2838. padding-bottom: 2rem;
  2839. text-align: center;
  2840. color: #0093a3; }
  2841. #le_campus #module .valeurs {
  2842. display: flex;
  2843. flex-direction: row; }
  2844. #le_campus #module .valeurs .valeur {
  2845. width: 33%;
  2846. display: flex;
  2847. flex-direction: column;
  2848. padding: 10px; }
  2849. #le_campus #module .valeurs .valeur .images_v {
  2850. width: 100%; }
  2851. #le_campus #module .valeurs .valeur .images_v img {
  2852. padding-bottom: 20px; }
  2853. #le_campus #module .valeurs .valeur h5 {
  2854. padding-top: 20px;
  2855. padding-bottom: 5px;
  2856. font-family: "bold";
  2857. font-size: 1.3rem; }
  2858. #le_campus #module .equipe {
  2859. display: flex;
  2860. flex-direction: row; }
  2861. #le_campus #module .equipe .personne {
  2862. width: 33%;
  2863. display: flex;
  2864. flex-direction: column;
  2865. padding: 10px; }
  2866. #le_campus #module .equipe .personne .images_v {
  2867. width: 100%; }
  2868. #le_campus #module .equipe .personne .images_v img {
  2869. padding-bottom: 20px; }
  2870. #le_campus #module .equipe .personne h5 {
  2871. padding-top: 20px;
  2872. padding-bottom: 5px;
  2873. font-family: "bold";
  2874. font-size: 1.3rem; }
  2875. .module .dl_plaquette {
  2876. width: 60%;
  2877. margin: auto; }
  2878. .module .dl_plaquette p {
  2879. font-family: "now_alt_bold";
  2880. font-weight: 400;
  2881. font-size: 1rem;
  2882. line-height: 2rem;
  2883. padding-bottom: 2rem;
  2884. text-align: center; }