theme.css 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979
  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. #tarteaucitronBack {
  1244. background: yellow; }
  1245. * {
  1246. box-sizing: border-box; }
  1247. #nos-packs .content, #nos-offres .content {
  1248. margin-top: 0;
  1249. width: 70%;
  1250. margin: auto; }
  1251. #nos-packs .content .section .__intro, #nos-offres .content .section .__intro {
  1252. text-align: center;
  1253. color: #0093a3;
  1254. margin: 100px 0; }
  1255. #nos-packs .content .section .__intro p, #nos-offres .content .section .__intro p {
  1256. font-family: "now_alt_bold";
  1257. font-size: 1.2rem; }
  1258. #nos-packs .content .section .d-flex, #nos-offres .content .section .d-flex {
  1259. display: inline-flex;
  1260. flex-wrap: wrap;
  1261. width: 100%; }
  1262. #nos-packs .content .section .d-flex .__thumbnails, #nos-offres .content .section .d-flex .__thumbnails {
  1263. margin: 0 1rem;
  1264. width: calc((100% / 4) - 2rem);
  1265. display: flex;
  1266. flex-direction: column;
  1267. align-self: baseline; }
  1268. #nos-packs .content .section .d-flex .__thumbnails .__title, #nos-offres .content .section .d-flex .__thumbnails .__title {
  1269. text-align: center;
  1270. margin-bottom: 1rem; }
  1271. #nos-packs .content .section .d-flex .__thumbnails .__title .__d-inline, #nos-offres .content .section .d-flex .__thumbnails .__title .__d-inline {
  1272. display: inline-block;
  1273. border-bottom: 3px solid #b5cb3a;
  1274. width: max-content;
  1275. max-width: 100%;
  1276. padding-bottom: 0.5rem; }
  1277. #nos-packs .content .section .d-flex .__thumbnails .__title .__d-inline span, #nos-offres .content .section .d-flex .__thumbnails .__title .__d-inline span {
  1278. display: block;
  1279. text-align: center;
  1280. padding: 0 1.5rem 0.2rem 1.5rem;
  1281. font-size: 0.8rem;
  1282. font-family: "now_alt_medium"; }
  1283. #nos-packs .content .section .d-flex .__thumbnails .__thumb, #nos-offres .content .section .d-flex .__thumbnails .__thumb {
  1284. position: relative; }
  1285. #nos-packs .content .section .d-flex .__thumbnails .__thumb .__images, #nos-offres .content .section .d-flex .__thumbnails .__thumb .__images {
  1286. position: relative;
  1287. height: 100%;
  1288. max-height: 500px;
  1289. overflow: hidden; }
  1290. #nos-packs .content .section .d-flex .__thumbnails .__thumb .__images img, #nos-offres .content .section .d-flex .__thumbnails .__thumb .__images img {
  1291. width: 100%;
  1292. height: 100%;
  1293. object-fit: cover; }
  1294. #nos-packs .content .section .dl_brochure, #nos-offres .content .section .dl_brochure {
  1295. width: 100%;
  1296. margin: 100px 0; }
  1297. #nos-packs .content .section .dl_brochure a, #nos-offres .content .section .dl_brochure a {
  1298. font-size: 1.5rem;
  1299. font-family: "now_alt_medium";
  1300. display: block;
  1301. text-align: center;
  1302. text-transform: uppercase;
  1303. color: #0093a3; }
  1304. #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 {
  1305. transition: 0.3s transform ease; }
  1306. #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 {
  1307. outline: none;
  1308. border: 0; }
  1309. #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 {
  1310. transform: scale(1.015);
  1311. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1312. #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 {
  1313. box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  1314. transition: 0.3s box-shadow ease; }
  1315. #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 {
  1316. transition: 0.5s filter ease;
  1317. filter: grayscale(0%); }
  1318. #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 {
  1319. filter: grayscale(100%);
  1320. transition: 0.5s filter ease; }
  1321. #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 {
  1322. opacity: 0;
  1323. position: absolute;
  1324. top: 50%;
  1325. left: 0;
  1326. transform: translateY(0%);
  1327. text-align: center;
  1328. color: white;
  1329. padding: 1rem;
  1330. transition: 0.5s transform ease, 1s opacity ease; }
  1331. #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 {
  1332. font-size: 1rem;
  1333. font-family: "now_alt_medium"; }
  1334. #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 {
  1335. color: white;
  1336. display: block;
  1337. padding: 0.7rem 0;
  1338. margin-top: 1rem;
  1339. font-size: 0.8rem;
  1340. font-family: "now_alt_medium";
  1341. text-align: center; }
  1342. #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 {
  1343. position: absolute;
  1344. z-index: -1;
  1345. bottom: 0;
  1346. left: 50%;
  1347. transform: translate(-50%, 0%);
  1348. display: inline-block;
  1349. height: 0;
  1350. width: 0;
  1351. border-top: 20px solid;
  1352. border-right: 15px solid transparent;
  1353. border-left: 15px solid transparent;
  1354. transition: 0.1s transform ease; }
  1355. #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 {
  1356. transform: translate(-50%, 90%);
  1357. transition: 0.1s transform ease; }
  1358. #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 {
  1359. border-top: 20px solid #0093a3; }
  1360. #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 {
  1361. border-top: 20px solid #b5cb3a; }
  1362. #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 {
  1363. border-top: 20px solid #9e0027; }
  1364. #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 {
  1365. background: #0093a3; }
  1366. #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 {
  1367. background: #b5cb3a; }
  1368. #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 {
  1369. background: #9e0027; }
  1370. #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 {
  1371. background: #6e6f70; }
  1372. #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 {
  1373. opacity: 1;
  1374. transform: translateY(-50%);
  1375. transition: 0.5s transform ease, 1s opacity ease; }
  1376. #nos-packs .content .section:last-child, #nos-offres .content .section:last-child {
  1377. margin-bottom: 100px; }
  1378. #nos-packs .content .section .__thumbnails:nth-child(1) .__more, #nos-offres .content .section .__thumbnails:nth-child(1) .__more {
  1379. width: calc(100% * 4 + 6rem); }
  1380. #nos-packs .content .section .__thumbnails:nth-child(2) .__more, #nos-offres .content .section .__thumbnails:nth-child(2) .__more {
  1381. width: calc(100% * 4 + 6rem);
  1382. transform: translateX(calc((-100% / 4) - 0.5rem)); }
  1383. #nos-packs .content .section .__thumbnails:nth-child(3) .__more, #nos-offres .content .section .__thumbnails:nth-child(3) .__more {
  1384. width: calc(100% * 4 + 6rem);
  1385. transform: translateX(calc((-100% / 2) - 1rem)); }
  1386. #nos-packs .content .section .__more, #nos-offres .content .section .__more {
  1387. display: none;
  1388. position: relative;
  1389. left: 0;
  1390. right: 0;
  1391. margin: 0;
  1392. margin: 2rem 0rem; }
  1393. #nos-packs .content .section .__more .__wrap-content, #nos-offres .content .section .__more .__wrap-content {
  1394. background-size: cover; }
  1395. #nos-packs .content .section .__more .__txt.black p, #nos-offres .content .section .__more .__txt.black p {
  1396. color: black !important; }
  1397. #nos-packs .content .section .__more.__blue .__title, #nos-offres .content .section .__more.__blue .__title {
  1398. color: #0093a3; }
  1399. #nos-packs .content .section .__more.__blue .__txt p, #nos-offres .content .section .__more.__blue .__txt p {
  1400. color: #0093a3; }
  1401. #nos-packs .content .section .__more.__green .__title, #nos-offres .content .section .__more.__green .__title {
  1402. color: #b5cb3a; }
  1403. #nos-packs .content .section .__more.__green .__txt p, #nos-offres .content .section .__more.__green .__txt p {
  1404. color: #b5cb3a; }
  1405. #nos-packs .content .section .__more.__red .__title, #nos-offres .content .section .__more.__red .__title {
  1406. color: #9e0027; }
  1407. #nos-packs .content .section .__more.__red .__txt p, #nos-offres .content .section .__more.__red .__txt p {
  1408. color: #9e0027; }
  1409. #nos-packs .content .section .__more.visible, #nos-offres .content .section .__more.visible {
  1410. display: block; }
  1411. #nos-packs .content .section .__more .__details, #nos-offres .content .section .__more .__details {
  1412. position: relative; }
  1413. #nos-packs .content .section .__more .__image-background, #nos-offres .content .section .__more .__image-background {
  1414. width: 100%;
  1415. height: auto; }
  1416. #nos-packs .content .section .__more .__image-background img, #nos-offres .content .section .__more .__image-background img {
  1417. width: 100%;
  1418. height: 100%;
  1419. object-fit: cover; }
  1420. #nos-packs .content .section .__more .__wrap-content, #nos-offres .content .section .__more .__wrap-content {
  1421. z-index: 999;
  1422. width: 100%;
  1423. height: auto;
  1424. padding: 2rem;
  1425. display: flex;
  1426. justify-content: flex-end; }
  1427. #nos-packs .content .section .__more .__wrap-content .__content, #nos-offres .content .section .__more .__wrap-content .__content {
  1428. background: white;
  1429. width: 50%;
  1430. height: auto;
  1431. padding: 2rem;
  1432. position: relative; }
  1433. #nos-packs .content .section .__more .__wrap-content .__content .close, #nos-offres .content .section .__more .__wrap-content .__content .close {
  1434. position: absolute;
  1435. top: 1rem;
  1436. right: 1rem;
  1437. cursor: pointer; }
  1438. #nos-packs .content .section .__more .__wrap-content .__content .__title, #nos-offres .content .section .__more .__wrap-content .__content .__title {
  1439. text-align: left; }
  1440. #nos-packs .content .section .__more .__wrap-content .__content .__title h6, #nos-offres .content .section .__more .__wrap-content .__content .__title h6 {
  1441. margin: 0;
  1442. font-size: 1.3rem;
  1443. font-family: "now_alt_medium"; }
  1444. #nos-packs .content .section .__more .__wrap-content .__content .__txt p, #nos-offres .content .section .__more .__wrap-content .__content .__txt p {
  1445. font-size: 0.9rem;
  1446. font-family: "now_alt_medium"; }
  1447. #nos-packs .content .section .__more .__wrap-content .__content .__txt.__color, #nos-offres .content .section .__more .__wrap-content .__content .__txt.__color {
  1448. color: #0093a3;
  1449. margin-bottom: 1rem; }
  1450. #nos-packs .content .section .__more .__wrap-content .__content .__btn, #nos-offres .content .section .__more .__wrap-content .__content .__btn {
  1451. display: inline-flex;
  1452. margin-top: 1rem;
  1453. width: 100%; }
  1454. #nos-packs .content .section .__more .__wrap-content .__content .__btn a, #nos-offres .content .section .__more .__wrap-content .__content .__btn a {
  1455. display: block;
  1456. text-align: center;
  1457. width: 50%;
  1458. background: #0093a3;
  1459. margin: 0;
  1460. transition: 0.3s transform ease, 0.3s box-shadow ease;
  1461. padding: 0.5rem 1.5rem;
  1462. font-family: "now_alt_medium";
  1463. font-size: 0.7rem;
  1464. color: white; }
  1465. #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) {
  1466. margin-left: 1rem; }
  1467. #nos-packs .content .section .__more .__wrap-content .__content .__btn a:hover, #nos-offres .content .section .__more .__wrap-content .__content .__btn a:hover {
  1468. transform: scale(1.015);
  1469. box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  1470. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1471. #nos-packs .content .section .__more .__wrap-content .__content .__btn a.__blue, #nos-offres .content .section .__more .__wrap-content .__content .__btn a.__blue {
  1472. background: #0093a3; }
  1473. #nos-packs .content .section .__more .__wrap-content .__content .__btn a.__green, #nos-offres .content .section .__more .__wrap-content .__content .__btn a.__green {
  1474. background: #b5cb3a; }
  1475. #nos-packs .content .section .__more .__wrap-content .__content .__btn a.__red, #nos-offres .content .section .__more .__wrap-content .__content .__btn a.__red {
  1476. background: #9e0027; }
  1477. #nos-packs .content .section .__more.open, #nos-offres .content .section .__more.open {
  1478. display: block; }
  1479. @media screen and (max-width: 1200px) {
  1480. #nos-packs .content .section .__intro, #nos-offres .content .section .__intro {
  1481. margin: 70px 0; }
  1482. #nos-packs .content .section .__intro p, #nos-offres .content .section .__intro p {
  1483. padding: 0 !important; }
  1484. #nos-packs .content .section .d-flex .__thumbnails, #nos-offres .content .section .d-flex .__thumbnails {
  1485. width: calc((100% / 3) - 2rem);
  1486. margin-bottom: 2rem; }
  1487. #nos-packs .content .section .d-flex .__thumbnails .__more, #nos-offres .content .section .d-flex .__thumbnails .__more {
  1488. width: calc(100% * 3 + 4rem); }
  1489. #nos-packs .content .section .d-flex .__thumbnails .__more .__content, #nos-offres .content .section .d-flex .__thumbnails .__more .__content {
  1490. width: 100%; }
  1491. #nos-packs .content .section .d-flex .__thumbnails:nth-child(2) .__more, #nos-offres .content .section .d-flex .__thumbnails:nth-child(2) .__more {
  1492. transform: translateX(calc((-100% / 3) - 0.5rem)); }
  1493. #nos-packs .content .section .d-flex .__thumbnails:nth-child(3) .__more, #nos-offres .content .section .d-flex .__thumbnails:nth-child(3) .__more {
  1494. transform: translateX(calc((-100% / 1.5) - 1rem)); } }
  1495. @media screen and (max-width: 1024px) {
  1496. #nos-packs .content .section .__intro, #nos-offres .content .section .__intro {
  1497. margin: 50px 0; }
  1498. #nos-packs .content .section .d-flex .__thumbnails, #nos-offres .content .section .d-flex .__thumbnails {
  1499. width: calc((100% / 2) - 2rem);
  1500. margin-bottom: 2rem; }
  1501. #nos-packs .content .section .d-flex .__thumbnails .__more, #nos-offres .content .section .d-flex .__thumbnails .__more {
  1502. width: calc(100% * 2 + 2rem); }
  1503. #nos-packs .content .section .d-flex .__thumbnails .__more .__content, #nos-offres .content .section .d-flex .__thumbnails .__more .__content {
  1504. width: 100%; }
  1505. #nos-packs .content .section .d-flex .__thumbnails:nth-child(2) .__more, #nos-offres .content .section .d-flex .__thumbnails:nth-child(2) .__more {
  1506. transform: translateX(calc((-100% / 2) - 1rem)); }
  1507. #nos-packs .content .section .d-flex .__thumbnails:nth-child(3) .__more, #nos-offres .content .section .d-flex .__thumbnails:nth-child(3) .__more {
  1508. transform: translateX(0%); } }
  1509. @media screen and (max-width: 750px) {
  1510. .__details .__content p {
  1511. padding: 0 !important; } }
  1512. @media screen and (max-width: 530px) {
  1513. #nos-packs .content .section .__intro, #nos-offres .content .section .__intro {
  1514. margin: 20px 0; }
  1515. #nos-packs .content .section .d-flex .__thumbnails, #nos-offres .content .section .d-flex .__thumbnails {
  1516. width: calc((100%) - 2rem);
  1517. margin-bottom: 2rem; }
  1518. #nos-packs .content .section .d-flex .__thumbnails .__title, #nos-offres .content .section .d-flex .__thumbnails .__title {
  1519. margin-bottom: 0.5rem; }
  1520. #nos-packs .content .section .d-flex .__thumbnails .__title .__d-inline, #nos-offres .content .section .d-flex .__thumbnails .__title .__d-inline {
  1521. padding-bottom: 0.2rem; }
  1522. #nos-packs .content .section .d-flex .__thumbnails .__title .__d-inline span, #nos-offres .content .section .d-flex .__thumbnails .__title .__d-inline span {
  1523. padding: 0 1.5rem;
  1524. font-size: 1rem; }
  1525. #nos-packs .content .section .d-flex .__thumbnails .__more, #nos-offres .content .section .d-flex .__thumbnails .__more {
  1526. width: calc(100%); }
  1527. #nos-packs .content .section .d-flex .__thumbnails .__more .__details, #nos-offres .content .section .d-flex .__thumbnails .__more .__details {
  1528. padding: 0rem; }
  1529. #nos-packs .content .section .d-flex .__thumbnails .__more .__details .__content, #nos-offres .content .section .d-flex .__thumbnails .__more .__details .__content {
  1530. width: 100%;
  1531. padding: 1rem; }
  1532. #nos-packs .content .section .d-flex .__thumbnails .__more .__details .__content p, #nos-offres .content .section .d-flex .__thumbnails .__more .__details .__content p {
  1533. padding: 0 !important; }
  1534. #nos-packs .content .section .d-flex .__thumbnails .__more .__details .__content .close, #nos-offres .content .section .d-flex .__thumbnails .__more .__details .__content .close {
  1535. top: 0.5rem;
  1536. right: 0.5rem; }
  1537. #nos-packs .content .section .d-flex .__thumbnails .__more .__details .__wrap-content, #nos-offres .content .section .d-flex .__thumbnails .__more .__details .__wrap-content {
  1538. padding: 0.5rem; }
  1539. #nos-packs .content .section .d-flex .__thumbnails .__more .__btn, #nos-offres .content .section .d-flex .__thumbnails .__more .__btn {
  1540. flex-direction: column; }
  1541. #nos-packs .content .section .d-flex .__thumbnails .__more .__btn > a, #nos-offres .content .section .d-flex .__thumbnails .__more .__btn > a {
  1542. margin: auto 0 1rem 0 !important;
  1543. width: 100%; }
  1544. #nos-packs .content .section .d-flex .__thumbnails:nth-child(2) .__more, #nos-offres .content .section .d-flex .__thumbnails:nth-child(2) .__more {
  1545. transform: translateX(0%); }
  1546. #nos-packs .content .section .d-flex .__thumbnails:nth-child(3) .__more, #nos-offres .content .section .d-flex .__thumbnails:nth-child(3) .__more {
  1547. transform: translateX(0%); } }
  1548. .bandeau_partenaires {
  1549. display: flex;
  1550. flex-direction: row;
  1551. flex-wrap: nowrap;
  1552. margin-bottom: 3rem;
  1553. justify-content: center;
  1554. align-items: center;
  1555. align-content: space-around; }
  1556. .bandeau_partenaires img {
  1557. height: 4rem;
  1558. width: auto;
  1559. margin-right: 2rem; }
  1560. @media only screen and (max-width: 400px) {
  1561. .bandeau_partenaires {
  1562. align-self: center;
  1563. justify-content: center;
  1564. margin: 1rem; }
  1565. .bandeau_partenaires img {
  1566. height: 3rem;
  1567. margin-right: 1rem;
  1568. margin-bottom: 1rem; } }
  1569. .gal {
  1570. margin-left: 15%; }
  1571. .gal .content_gal {
  1572. width: 2.2% !important; }
  1573. .gal .content_gal[aria-hidden="false"] .title_gal {
  1574. opacity: 1;
  1575. right: 70px;
  1576. transition: right 1s ease, opacity 1s ease; }
  1577. .gal .title_gal {
  1578. position: absolute;
  1579. right: 50px;
  1580. max-width: 50%;
  1581. background: #0093a3;
  1582. padding: 25px;
  1583. bottom: 20%;
  1584. color: #ffffff;
  1585. opacity: 0; }
  1586. .cat {
  1587. height: 50px;
  1588. z-index: 999;
  1589. margin: 20px 0; }
  1590. .cat .btn-group {
  1591. display: -webkit-inline-box;
  1592. display: -ms-inline-flexbox;
  1593. display: inline-flex;
  1594. -ms-flex-wrap: wrap;
  1595. flex-wrap: wrap; }
  1596. .cat .btn-group:nth-of-type(1) label {
  1597. margin-right: 20px; }
  1598. .cat .btn-group:nth-of-type(2) {
  1599. float: right; }
  1600. .cat label {
  1601. padding: 10px;
  1602. cursor: pointer; }
  1603. .cat label.tous {
  1604. border-top: 2px solid #b5cb3a;
  1605. border-bottom: 2px solid #b5cb3a; }
  1606. .cat label.professionnels {
  1607. border-top: 2px solid #9e0027;
  1608. border-bottom: 2px solid #9e0027; }
  1609. .cat label.grand_public {
  1610. border-top: 2px solid #0093a3;
  1611. border-bottom: 2px solid #0093a3; }
  1612. .cat label.formations {
  1613. border-top: 2px solid #6e6f70;
  1614. border-bottom: 2px solid #6e6f70; }
  1615. .cat label.archive {
  1616. border-top: 2px solid #00407d;
  1617. border-bottom: 2px solid #00407d; }
  1618. .cat input {
  1619. visibility: hidden;
  1620. position: absolute; }
  1621. .bandeau {
  1622. width: 100%;
  1623. height: auto;
  1624. max-height: 500px;
  1625. position: relative;
  1626. overflow: hidden; }
  1627. .bandeau::before {
  1628. position: absolute;
  1629. display: block;
  1630. content: ' ';
  1631. background-image: url("/user/themes/lecampus/images/Trame-bleu2.svg");
  1632. background-repeat: repeat;
  1633. width: 100%;
  1634. height: 100%;
  1635. top: 0;
  1636. z-index: -1; }
  1637. .bandeau .img {
  1638. width: 70%;
  1639. margin: auto; }
  1640. .bandeau .title_gal {
  1641. position: absolute;
  1642. right: 25%;
  1643. max-width: 50%;
  1644. background: #0093a3;
  1645. padding: 25px;
  1646. top: 20vw;
  1647. color: #ffffff; }
  1648. .bandeau .title_gal p {
  1649. font-family: now_alt_bold;
  1650. font-size: 1.2rem;
  1651. font-weight: 400;
  1652. line-height: 2.2rem; }
  1653. .container > .title {
  1654. background: #9e0027;
  1655. border-radius: 30px;
  1656. width: auto;
  1657. float: left;
  1658. padding: 10px 20px;
  1659. color: white; }
  1660. .start {
  1661. min-height: calc(100vh - 325px); }
  1662. .start:not(#home) .entete {
  1663. border-bottom: 10px solid #0093a3; }
  1664. .start:not(#form)#calendrier, .start:not(#form)#archive, .start:not(#form)#articles {
  1665. width: 70%;
  1666. margin: 40px auto 40px auto; }
  1667. .start:not(#form)#calendrier .header-wrapper .title, .start:not(#form)#archive .header-wrapper .title, .start:not(#form)#articles .header-wrapper .title {
  1668. display: flex; }
  1669. .start:not(#form)#calendrier .header-wrapper .title h1, .start:not(#form)#archive .header-wrapper .title h1, .start:not(#form)#articles .header-wrapper .title h1 {
  1670. width: auto;
  1671. margin-bottom: 20px;
  1672. background: #9e0027;
  1673. border-radius: 30px;
  1674. padding: 10px 20px;
  1675. color: white;
  1676. font-size: 1.2rem; }
  1677. .start:not(#form)#event {
  1678. margin: 40px auto 40px auto; }
  1679. .start:not(#form)#event .title {
  1680. display: flex; }
  1681. .start:not(#form)#event .title h1 {
  1682. width: auto;
  1683. margin-bottom: 20px;
  1684. background: #9e0027;
  1685. border-radius: 30px;
  1686. padding: 10px 20px;
  1687. color: white;
  1688. font-size: 1.2rem; }
  1689. .start:not(#form) .body-wrapper {
  1690. display: -webkit-inline-box;
  1691. display: -ms-inline-flexbox;
  1692. display: inline-flex;
  1693. -ms-flex-wrap: wrap;
  1694. flex-wrap: wrap;
  1695. justify-content: center;
  1696. width: 100%;
  1697. position: relative; }
  1698. .start:not(#form) .body-wrapper .card {
  1699. width: calc( (100% / 3) - 27px);
  1700. min-width: 200px;
  1701. margin: 0 0 40px 0;
  1702. max-width: 1200px; }
  1703. .start:not(#form) .body-wrapper .card .card-header {
  1704. position: relative;
  1705. width: 100%;
  1706. right: 0;
  1707. text-align: right; }
  1708. .start:not(#form) .body-wrapper .card .card-header.professionnels {
  1709. background-color: #9e0027; }
  1710. .start:not(#form) .body-wrapper .card .card-header.grand_public {
  1711. background-color: #0093a3; }
  1712. .start:not(#form) .body-wrapper .card .card-header.formations {
  1713. background-color: #6e6f70; }
  1714. .start:not(#form) .body-wrapper .card .card-header .publics {
  1715. padding: 2.5px 10px;
  1716. color: white; }
  1717. .start:not(#form) .body-wrapper .card .card-body {
  1718. padding: 15px;
  1719. background-image: url("/user/themes/lecampus/images/Trame-bleu2.svg");
  1720. background-repeat: repeat; }
  1721. .start:not(#form) .body-wrapper .event {
  1722. width: 45%; }
  1723. .start:not(#form) .body-wrapper .event .card-content .reso {
  1724. display: -webkit-inline-box;
  1725. display: -ms-inline-flexbox;
  1726. display: inline-flex;
  1727. -ms-flex-wrap: wrap;
  1728. flex-wrap: wrap;
  1729. flex-wrap: nowrap;
  1730. justify-content: space-between; }
  1731. .start:not(#form) .body-wrapper .event .card-content .reso > div, .start:not(#form) .body-wrapper .event .card-content .reso > a {
  1732. margin-right: 15px; }
  1733. .start:not(#form) .body-wrapper .event .card-content .reso a {
  1734. display: block;
  1735. margin-bottom: 10px; }
  1736. .start:not(#form) .body-wrapper .event .card-content .reso a img {
  1737. margin-left: 10px;
  1738. width: 20px; }
  1739. .start:not(#form) .body-wrapper .event .card-content .txt {
  1740. width: 80%; }
  1741. #articles .cat label:not(.active) {
  1742. border: none; }
  1743. #articles .cat label.active, #articles .cat label:hover {
  1744. border-top: 1px solid #0093a3;
  1745. border-bottom: 2px solid #b5cb3a; }
  1746. #articles .articles-listing {
  1747. flex-direction: column; }
  1748. #articles .articles-listing .card {
  1749. width: 100% !important; }
  1750. #articles .articles-listing .card > a {
  1751. display: grid;
  1752. grid-template-columns: minmax(300px, 25%) minmax(400px, calc(75% - 40px));
  1753. grid-template-rows: 250px;
  1754. grid-column-gap: 40px;
  1755. position: relative; }
  1756. #articles .articles-listing .card > a .card-image {
  1757. grid-column-start: 1;
  1758. grid-row-start: 1;
  1759. object-fit: contain;
  1760. overflow: hidden;
  1761. display: inline-flex;
  1762. justify-content: center; }
  1763. #articles .articles-listing .card > a .card-image img {
  1764. display: inline-block;
  1765. height: 250px;
  1766. width: auto; }
  1767. #articles .articles-listing .card > a .wrapper-content {
  1768. grid-column-start: 2;
  1769. grid-row-start: 1;
  1770. background-image: url(/user/themes/lecampus/images/Trame-bleu2.svg);
  1771. background-repeat: repeat;
  1772. padding: 20px 20px;
  1773. width: 100%;
  1774. height: 100%; }
  1775. #articles .articles-listing .card > a .wrapper-content .date {
  1776. float: left; }
  1777. #articles .articles-listing .card > a .wrapper-content .cat {
  1778. margin-left: 3px; }
  1779. #articles .articles-listing .card > a .wrapper-content .readmore {
  1780. float: right; }
  1781. #articles .articles-listing .card .card-content {
  1782. overflow: hidden;
  1783. height: 7.7rem; }
  1784. #articles .articles-listing .card .card-content h2 {
  1785. font-size: 0.9rem; }
  1786. #articles .articles-listing .card:last-child {
  1787. margin-bottom: 0; }
  1788. .paginations {
  1789. max-width: 1200px; }
  1790. .paginations > ul > li {
  1791. border: none; }
  1792. .paginations > ul > li > span.active::after {
  1793. content: " ";
  1794. width: 100%;
  1795. height: 5px;
  1796. display: block;
  1797. background: #b5cb3a; }
  1798. .paginations > ul > li span, .paginations > ul > li a {
  1799. padding: 4px 5px; }
  1800. .paginations > ul > li:first-child {
  1801. float: left; }
  1802. .paginations > ul > li:first-child > a::before, .paginations > ul > li:first-child > span::before {
  1803. content: "<";
  1804. margin-right: 10px;
  1805. display: inline-block;
  1806. transform: translateX(0px);
  1807. transition: 0.3s transform ease; }
  1808. .paginations > ul > li:first-child > a:hover::before {
  1809. transform: translateX(-3px);
  1810. transition: 0.3s transform ease; }
  1811. .paginations > ul > li:last-child {
  1812. float: right; }
  1813. .paginations > ul > li:last-child > a::after, .paginations > ul > li:last-child > span::after {
  1814. content: ">";
  1815. margin-left: 10px;
  1816. display: inline-block;
  1817. transform: translateX(0px);
  1818. transition: 0.3s transform ease; }
  1819. .paginations > ul > li:last-child > a:hover::after {
  1820. transform: translateX(3px);
  1821. transition: 0.3s transform ease; }
  1822. .start#form .entete {
  1823. border-top: 1px solid #0093a3; }
  1824. .start#form h2 {
  1825. margin-top: 0; }
  1826. .start#form .body-wrapper {
  1827. width: 100%;
  1828. min-width: 250px;
  1829. margin: auto auto 140px auto; }
  1830. .start#form .body-wrapper form {
  1831. width: calc( (100% / 2));
  1832. margin-top: 20px;
  1833. margin: auto; }
  1834. .start#form .body-wrapper form > div {
  1835. width: 100%;
  1836. margin: 20px 0;
  1837. border-bottom: 1px solid #9e0027; }
  1838. .start#form .body-wrapper form > div .form-data {
  1839. display: -webkit-inline-box;
  1840. display: -ms-inline-flexbox;
  1841. display: inline-flex;
  1842. -ms-flex-wrap: wrap;
  1843. flex-wrap: wrap;
  1844. margin: 20px 0px; }
  1845. .start#form .body-wrapper form > div .form-data > div {
  1846. overflow: hidden;
  1847. margin: 10px 10px;
  1848. min-width: 100px;
  1849. border: 2px solid #9e0027;
  1850. border-radius: 30px;
  1851. padding: 10px 20px; }
  1852. .start#form .body-wrapper form > div .form-data > div.check {
  1853. background: #9e0027;
  1854. color: white; }
  1855. .start#form .body-wrapper form > div .form-data > div input {
  1856. border: none; }
  1857. .start#form .body-wrapper form > div .form-data > div input[type='radio'] {
  1858. visibility: hidden;
  1859. position: absolute; }
  1860. .start#form .body-wrapper form > div .form-data > div label {
  1861. cursor: pointer; }
  1862. .start#form .body-wrapper form > div:nth-of-type(n+5):not(:nth-of-type(n+12)) {
  1863. width: 50%;
  1864. float: left;
  1865. border-bottom: 0px; }
  1866. .start#form .body-wrapper form > div:nth-of-type(n+5):not(:nth-of-type(n+12)) .form-data {
  1867. width: 100%; }
  1868. .start#form .body-wrapper form > div:nth-of-type(n+5):not(:nth-of-type(n+12)) .form-data > div {
  1869. width: 100%; }
  1870. .start#form .body-wrapper form > div:nth-of-type(11) {
  1871. border-bottom: 1px solid #9e0027 !important;
  1872. width: 100% !important; }
  1873. .start#form .body-wrapper form > div:nth-of-type(11) .form-data {
  1874. width: 50% !important; }
  1875. .start#form .body-wrapper form > div.button-wrapper {
  1876. background: #9e0027;
  1877. height: 100px;
  1878. position: absolute;
  1879. left: 0;
  1880. width: 100%; }
  1881. .start#form .body-wrapper form > div.button-wrapper button {
  1882. margin-right: 25%;
  1883. position: absolute;
  1884. right: 0;
  1885. top: 50%;
  1886. -webkit-transform: translateY(-50%);
  1887. transform: translateY(-50%);
  1888. background: white;
  1889. border-radius: 30px;
  1890. padding: 10px 35px;
  1891. box-shadow: none;
  1892. border: 0; }
  1893. .start#form .body-wrapper #send-valide {
  1894. -webkit-transform: translate(-50%, -50%);
  1895. transform: translate(-50%, -50%);
  1896. background: #9e0027;
  1897. border-radius: 20px;
  1898. position: fixed;
  1899. width: 30%;
  1900. min-height: 30%;
  1901. left: 50%;
  1902. top: 50%;
  1903. padding: 50px; }
  1904. .start#form .body-wrapper #send-valide .toast {
  1905. position: relative;
  1906. text-align: center;
  1907. color: white; }
  1908. .start#form .body-wrapper #send-valide .ok {
  1909. color: white;
  1910. position: absolute;
  1911. right: 20px;
  1912. bottom: 20px; }
  1913. .header-wrapper .title h2 {
  1914. width: auto;
  1915. margin-bottom: 20px;
  1916. background: #9e0027;
  1917. border-radius: 30px;
  1918. width: auto;
  1919. padding: 10px 20px;
  1920. color: white;
  1921. font-size: 1.2rem;
  1922. width: 115px; }
  1923. .content {
  1924. width: 50%;
  1925. margin: 4rem auto; }
  1926. .content p {
  1927. margin: 10px 0; }
  1928. .content_s {
  1929. margin: auto !important; }
  1930. .entete {
  1931. display: -webkit-inline-box;
  1932. display: -ms-inline-flexbox;
  1933. display: inline-flex;
  1934. -ms-flex-wrap: wrap;
  1935. flex-wrap: wrap;
  1936. padding: 20px;
  1937. background-image: url("/user/themes/lecampus/images/Trame-bleu2.svg");
  1938. background-repeat: repeat;
  1939. height: auto;
  1940. border-top: 10px solid #b5cb3a; }
  1941. .entete .entete_c {
  1942. display: -webkit-inline-box;
  1943. display: -ms-inline-flexbox;
  1944. display: inline-flex;
  1945. -ms-flex-wrap: wrap;
  1946. flex-wrap: wrap;
  1947. text-align: center;
  1948. width: 70%;
  1949. margin: 50px auto;
  1950. position: relative; }
  1951. .entete .entete_c h1 {
  1952. width: auto;
  1953. margin-bottom: 20px;
  1954. background: #9e0027;
  1955. border-radius: 30px;
  1956. width: auto;
  1957. padding: 10px 20px; }
  1958. .body-wrapper .content h4:not(:first-of-type) {
  1959. border-top: 1px solid black;
  1960. padding-top: 30px;
  1961. margin: 30px 0 0 0; }
  1962. .body-wrapper .sub-content {
  1963. border-top: 1px solid black;
  1964. margin-bottom: 20px;
  1965. margin-top: 20px; }
  1966. .body-wrapper .sub-content > img {
  1967. width: 33%;
  1968. float: left;
  1969. margin: 20px 10px 0px 0px; }
  1970. #event {
  1971. margin-bottom: 20px; }
  1972. #event .content {
  1973. margin-top: 50px; }
  1974. #event .content h2 {
  1975. float: left;
  1976. margin-right: 20px; }
  1977. #event .content .reso {
  1978. display: -webkit-inline-box;
  1979. display: -ms-inline-flexbox;
  1980. display: inline-flex;
  1981. -ms-flex-wrap: wrap;
  1982. flex-wrap: wrap;
  1983. flex-wrap: nowrap;
  1984. width: 50px;
  1985. height: 25px; }
  1986. #event .sidebar {
  1987. margin-top: 50px; }
  1988. #event p a {
  1989. text-decoration: underline; }
  1990. .sidebar {
  1991. position: absolute;
  1992. right: 0;
  1993. width: 20%;
  1994. margin: -55px auto 0 20px; }
  1995. .sidebar h2 {
  1996. background: #9e0027;
  1997. border-radius: 100px;
  1998. width: 100px;
  1999. height: 100px; }
  2000. .sidebar .side-agenda {
  2001. padding: 10px 20px 10px 0; }
  2002. .sidebar .side-agenda:not(:nth-of-type(1)) {
  2003. border-top: 1px solid #0093a3; }
  2004. .sidebar .side-agenda:not(:nth-of-type(1))::before {
  2005. content: " ";
  2006. display: block;
  2007. position: absolute;
  2008. width: 5px;
  2009. height: 5px;
  2010. margin-top: -13px;
  2011. border-radius: 10px;
  2012. background: #0093a3; }
  2013. .sidebar .side-agenda:nth-of-type(3) {
  2014. margin-bottom: 10px; }
  2015. .sidebar .side-all-agenda {
  2016. background: white;
  2017. width: auto;
  2018. padding: 10px 20px;
  2019. margin-bottom: 10px;
  2020. float: left;
  2021. border: 2px solid #9e0027;
  2022. border-radius: 30px;
  2023. transition: background-color 0.3s ease; }
  2024. .sidebar .side-all-agenda a {
  2025. color: black; }
  2026. .sidebar .side-all-agenda:hover {
  2027. background-color: #9e0027;
  2028. transition: background-color 0.3s ease; }
  2029. .sidebar .side-all-agenda:hover a {
  2030. color: white; }
  2031. #newsletter {
  2032. padding: 20px 0;
  2033. background: #0093a3;
  2034. /* LOADER */ }
  2035. #newsletter .ml-form-embedSubmitLoad {
  2036. display: inline-block;
  2037. width: 20px;
  2038. height: 20px; }
  2039. #newsletter .ml-form-embedSubmitLoad:after {
  2040. content: " ";
  2041. display: block;
  2042. width: 11px;
  2043. height: 11px;
  2044. margin: 1px;
  2045. border-radius: 50%;
  2046. border: 4px solid #fff;
  2047. border-color: #ffffff #ffffff #ffffff transparent;
  2048. -webkit-animation: ml-form-embedSubmitLoad 1.2s linear infinite;
  2049. animation: ml-form-embedSubmitLoad 1.2s linear infinite; }
  2050. @-webkit-keyframes ml-form-embedSubmitLoad {
  2051. 0% {
  2052. -webkit-transform: rotate(0deg);
  2053. transform: rotate(0deg); }
  2054. 100% {
  2055. -webkit-transform: rotate(360deg);
  2056. transform: rotate(360deg); } }
  2057. @keyframes ml-form-embedSubmitLoad {
  2058. 0% {
  2059. -webkit-transform: rotate(0deg);
  2060. transform: rotate(0deg); }
  2061. 100% {
  2062. -webkit-transform: rotate(360deg);
  2063. transform: rotate(360deg); } }
  2064. #newsletter #mlb2-985974.ml-form-embedContainer {
  2065. box-sizing: border-box;
  2066. display: table;
  2067. height: 100%;
  2068. margin: 0 auto;
  2069. width: 100% !important; }
  2070. #newsletter #mlb2-985974.ml-form-embedContainer h4,
  2071. #newsletter #mlb2-985974.ml-form-embedContainer p,
  2072. #newsletter #mlb2-985974.ml-form-embedContainer span,
  2073. #newsletter #mlb2-985974.ml-form-embedContainer button {
  2074. text-transform: none !important;
  2075. letter-spacing: normal !important; }
  2076. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper {
  2077. display: inline-block !important;
  2078. margin: 0;
  2079. padding: 0;
  2080. position: relative; }
  2081. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
  2082. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedDefault {
  2083. width: 400px; }
  2084. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  2085. width: 750px; }
  2086. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-align-left {
  2087. text-align: left; }
  2088. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-align-center {
  2089. text-align: center; }
  2090. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-align-default {
  2091. display: table-cell !important;
  2092. vertical-align: middle !important;
  2093. text-align: center !important; }
  2094. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-align-right {
  2095. text-align: right; }
  2096. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {
  2097. border-top-left-radius: 4px;
  2098. border-top-right-radius: 4px;
  2099. height: auto;
  2100. width: 100%; }
  2101. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
  2102. padding-bottom: 0;
  2103. justify-content: center;
  2104. display: flex;
  2105. border: 1px solid white;
  2106. border-radius: 30px;
  2107. overflow: hidden; }
  2108. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
  2109. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  2110. width: 100%; }
  2111. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  2112. color: white; }
  2113. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  2114. color: white;
  2115. text-align: center;
  2116. font-family: "Regular"; }
  2117. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent label {
  2118. color: white;
  2119. white-space: nowrap;
  2120. padding: 0 20px;
  2121. line-height: 40px; }
  2122. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
  2123. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  2124. color: #000000;
  2125. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  2126. font-size: 14px;
  2127. font-weight: 400;
  2128. margin: 0 0 10px 0;
  2129. text-align: left;
  2130. text-align: center;
  2131. color: white; }
  2132. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,
  2133. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,
  2134. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,
  2135. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {
  2136. color: #000000;
  2137. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  2138. font-size: 14px; }
  2139. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,
  2140. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {
  2141. color: #000000;
  2142. text-decoration: underline; }
  2143. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
  2144. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
  2145. margin: 0; }
  2146. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
  2147. margin: 0;
  2148. width: 100%; }
  2149. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
  2150. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  2151. margin: 0 0 20px 0;
  2152. width: 100%; }
  2153. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
  2154. margin: 0; }
  2155. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  2156. margin: 0 0 10px 0;
  2157. width: 100%; }
  2158. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
  2159. margin: 0; }
  2160. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {
  2161. margin: 0; }
  2162. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  2163. background-color: #ffffff !important;
  2164. color: #333333 !important;
  2165. border-color: #cccccc !important;
  2166. border-radius: 4px !important;
  2167. border-style: solid !important;
  2168. border-width: 1px !important;
  2169. font-size: 14px !important;
  2170. line-height: 20px !important;
  2171. padding: 10px 10px !important;
  2172. width: 100% !important;
  2173. box-sizing: border-box !important;
  2174. max-width: 100% !important; }
  2175. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder {
  2176. color: #333333; }
  2177. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder {
  2178. color: #333333; }
  2179. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder {
  2180. color: #333333; }
  2181. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder {
  2182. color: #333333; }
  2183. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {
  2184. height: 40px;
  2185. display: flex; }
  2186. #newsletter .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal {
  2187. width: 100%; }
  2188. #newsletter .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal {
  2189. width: auto;
  2190. margin-left: -45px; }
  2191. #newsletter .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
  2192. box-sizing: border-box;
  2193. float: left; }
  2194. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
  2195. background-color: #ffffff;
  2196. color: #333333;
  2197. border-radius: 30px;
  2198. border-style: solid;
  2199. border-width: 0px;
  2200. font-size: 14px;
  2201. line-height: 20px;
  2202. padding: 10px 10px;
  2203. width: 100%;
  2204. box-sizing: border-box; }
  2205. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
  2206. background-color: transparent;
  2207. border-color: transparent;
  2208. border-style: solid;
  2209. box-shadow: none;
  2210. color: black !important;
  2211. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  2212. font-size: 14px !important;
  2213. font-weight: 700;
  2214. line-height: 20px;
  2215. padding: 10px !important;
  2216. width: 100%; }
  2217. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type="checkbox"] {
  2218. display: inline-block;
  2219. float: left;
  2220. margin: 1px 0 0 0;
  2221. opacity: 1;
  2222. visibility: visible;
  2223. appearance: checkbox !important;
  2224. -moz-appearance: checkbox !important;
  2225. -webkit-appearance: checkbox !important;
  2226. position: relative;
  2227. height: 14px;
  2228. width: 14px; }
  2229. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
  2230. color: #000000;
  2231. display: block;
  2232. font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  2233. font-size: 12px;
  2234. text-align: left;
  2235. padding-left: 25px; }
  2236. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {
  2237. font-weight: normal;
  2238. margin: 0;
  2239. padding: 0; }
  2240. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {
  2241. color: #000000;
  2242. text-decoration: underline; }
  2243. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {
  2244. color: #000000 !important;
  2245. font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
  2246. font-size: 12px !important;
  2247. font-weight: normal !important;
  2248. line-height: 18px !important;
  2249. padding: 0 !important;
  2250. margin: 0 5px 0 0 !important; }
  2251. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
  2252. margin: 0; }
  2253. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  2254. margin: 0 0 20px 0; }
  2255. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  2256. background-color: #000000 !important;
  2257. border: none !important;
  2258. border-radius: 4px !important;
  2259. box-shadow: none !important;
  2260. color: #ffffff !important;
  2261. font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
  2262. font-size: 14px !important;
  2263. font-weight: 700 !important;
  2264. line-height: 20px !important;
  2265. padding: 10px !important;
  2266. width: 100% !important;
  2267. box-sizing: border-box !important; }
  2268. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  2269. background-color: #333333 !important; }
  2270. #newsletter .ml-subscribe-close {
  2271. width: 30px;
  2272. height: 30px;
  2273. background: url(https://bucket.mlcdn.com/images/default/modal_close.png) no-repeat;
  2274. background-size: 30px;
  2275. cursor: pointer;
  2276. margin-top: -10px;
  2277. margin-right: -10px;
  2278. position: absolute;
  2279. top: 0;
  2280. right: 0; }
  2281. #newsletter .ml-error input {
  2282. background: url(https://bucket.mlcdn.com/images/default/error-icon.png) 98% center no-repeat #ffffff !important;
  2283. background-size: 24px 24px !important; }
  2284. #newsletter .ml-error .label-description {
  2285. color: #ff0000 !important; }
  2286. #newsletter .ml-error .label-description p {
  2287. color: #ff0000 !important; }
  2288. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
  2289. #newsletter #mlb2-985974.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
  2290. color: #ff0000 !important; }
  2291. @media only screen and (max-width: 400px) {
  2292. #newsletter .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
  2293. margin-bottom: 10px !important;
  2294. width: 100% !important; } }
  2295. #newsletter #mc_embed_signup {
  2296. width: 600px;
  2297. margin: auto;
  2298. padding: 0 0 0 10px;
  2299. border-radius: 100px;
  2300. border: 1px solid #ffffff; }
  2301. #newsletter #mc_embed_signup form {
  2302. display: -webkit-inline-box;
  2303. display: -ms-inline-flexbox;
  2304. display: inline-flex;
  2305. -ms-flex-wrap: wrap;
  2306. flex-wrap: wrap;
  2307. width: 100%; }
  2308. #newsletter #mc_embed_signup form #mc_embed_signup_scroll {
  2309. display: -webkit-inline-box;
  2310. display: -ms-inline-flexbox;
  2311. display: inline-flex;
  2312. -ms-flex-wrap: wrap;
  2313. flex-wrap: wrap;
  2314. width: 100%;
  2315. margin: auto; }
  2316. #newsletter #mc_embed_signup form #mc_embed_signup_scroll label {
  2317. text-align: center;
  2318. color: #ffffff;
  2319. margin-right: 10px;
  2320. width: 260px; }
  2321. #newsletter #mc_embed_signup form #mc_embed_signup_scroll > input {
  2322. width: 315px;
  2323. padding-left: 20px; }
  2324. #newsletter #mc_embed_signup form #mc_embed_signup_scroll input {
  2325. border-radius: 30px;
  2326. height: 31px;
  2327. box-shadow: none;
  2328. border: none; }
  2329. #newsletter #mc_embed_signup form #mc_embed_signup_scroll .clear input {
  2330. background: #ffffff;
  2331. margin-left: -30px; }
  2332. #home .content {
  2333. display: -webkit-inline-box;
  2334. display: -ms-inline-flexbox;
  2335. display: inline-flex;
  2336. -ms-flex-wrap: wrap;
  2337. flex-wrap: wrap; }
  2338. #home .content > p {
  2339. position: relative;
  2340. width: calc(100% / 3);
  2341. padding: 50px 20px;
  2342. margin-top: 10px; }
  2343. #home .content > p img {
  2344. position: absolute;
  2345. width: auto;
  2346. height: 50px;
  2347. top: -20px;
  2348. left: 50%;
  2349. -webkit-transform: translate(-50%);
  2350. transform: translate(-50%); }
  2351. #home .content > p:nth-of-type(n+4) {
  2352. width: calc(100% / 4); }
  2353. #home .content > p:last-child {
  2354. width: auto !important;
  2355. margin-top: 0 !important;
  2356. margin: auto; }
  2357. #home .content > p:last-child a {
  2358. display: block;
  2359. padding: 10px 20px;
  2360. text-align: center;
  2361. border: 2px solid #b5cb3a;
  2362. border-radius: 30px;
  2363. margin: auto;
  2364. transition: background-color 0.3s ease; }
  2365. #item .item-wrapper, #item-article .item-wrapper {
  2366. width: 45%;
  2367. margin: auto; }
  2368. #item .item-wrapper .title-wrapper, #item-article .item-wrapper .title-wrapper {
  2369. display: inline-flex;
  2370. align-items: baseline;
  2371. width: 100%;
  2372. margin: 40px 0; }
  2373. #item .item-wrapper .title-wrapper .back, #item-article .item-wrapper .title-wrapper .back {
  2374. margin-right: 10px;
  2375. margin-left: -80px; }
  2376. #item .item-wrapper .title-wrapper .back::before, #item-article .item-wrapper .title-wrapper .back::before {
  2377. content: "<";
  2378. display: inline-block;
  2379. margin-right: 5px; }
  2380. #item .item-wrapper .title-wrapper .title, #item-article .item-wrapper .title-wrapper .title {
  2381. width: auto;
  2382. margin: 0; }
  2383. #item .item-wrapper .title-wrapper .title h1, #item-article .item-wrapper .title-wrapper .title h1 {
  2384. width: auto;
  2385. padding: 10px 20px;
  2386. border-radius: 30px;
  2387. background: #9e0027; }
  2388. #item .item-wrapper .info-wrapper, #item-article .item-wrapper .info-wrapper {
  2389. display: inline-flex;
  2390. width: 100%;
  2391. flex-direction: column;
  2392. align-items: flex-end; }
  2393. #item .item-wrapper .info-wrapper .date, #item-article .item-wrapper .info-wrapper .date {
  2394. width: 100%;
  2395. background-image: url("/user/themes/lecampus/images/Trame-bleu2.svg");
  2396. background-repeat: repeat;
  2397. padding: 5px 10px;
  2398. text-align: right;
  2399. margin-bottom: 20px; }
  2400. #item .item-wrapper .info-wrapper .reso, #item-article .item-wrapper .info-wrapper .reso {
  2401. display: inline-flex;
  2402. margin-bottom: 20px; }
  2403. #item .item-wrapper .info-wrapper .reso a, #item-article .item-wrapper .info-wrapper .reso a {
  2404. display: inline-flex;
  2405. margin: 0 0 0 10px;
  2406. align-items: center; }
  2407. #item .item-wrapper .info-wrapper .reso a img, #item-article .item-wrapper .info-wrapper .reso a img {
  2408. margin-left: 5px;
  2409. width: 20px;
  2410. height: auto; }
  2411. #item .item-wrapper .body-wrapper .card-image, #item-article .item-wrapper .body-wrapper .card-image {
  2412. width: 100%; }
  2413. #item .item-wrapper .body-wrapper .card-content, #item-article .item-wrapper .body-wrapper .card-content {
  2414. margin: 40px 0; }
  2415. #item .item-wrapper .body-wrapper .card-content .txt p, #item-article .item-wrapper .body-wrapper .card-content .txt p {
  2416. margin: 0 0 1.2rem 0;
  2417. line-height: 1.5rem; }
  2418. #item .item-wrapper .body-wrapper .card-content .txt h2, #item-article .item-wrapper .body-wrapper .card-content .txt h2 {
  2419. font-size: 1.2rem;
  2420. font-family: "bold";
  2421. font-weight: normal;
  2422. margin: 0; }
  2423. #item .item-wrapper .body-wrapper .card-content .txt ul, #item-article .item-wrapper .body-wrapper .card-content .txt ul {
  2424. margin-bottom: 1.2rem; }
  2425. #item .item-wrapper .body-wrapper .card-content .txt ul li::before, #item-article .item-wrapper .body-wrapper .card-content .txt ul li::before {
  2426. content: " ";
  2427. width: 5px;
  2428. height: 5px;
  2429. border-radius: 10px;
  2430. display: inline-block;
  2431. vertical-align: middle;
  2432. background: #9e0027;
  2433. margin-right: 5px; }
  2434. #item .content, #item-article .content {
  2435. display: -webkit-inline-box;
  2436. display: -ms-inline-flexbox;
  2437. display: inline-flex;
  2438. -ms-flex-wrap: wrap;
  2439. flex-wrap: wrap; }
  2440. #item .content .images_s, #item-article .content .images_s {
  2441. width: 40%;
  2442. align-self: center;
  2443. margin-right: 15px; }
  2444. #item .content .images_s img, #item-article .content .images_s img {
  2445. margin-bottom: 15px; }
  2446. #item .content .content_s, #item-article .content .content_s {
  2447. width: calc(60% - 30px); }
  2448. #item .content .icones, #item-article .content .icones {
  2449. margin: 70px 0;
  2450. display: -webkit-inline-box;
  2451. display: -ms-inline-flexbox;
  2452. display: inline-flex;
  2453. -ms-flex-wrap: wrap;
  2454. flex-wrap: wrap;
  2455. justify-content: space-around;
  2456. width: 100%; }
  2457. #item .content .icones .icon, #item-article .content .icones .icon {
  2458. height: 50px;
  2459. width: auto;
  2460. max-width: 200px; }
  2461. #item .content .icones .icon img, #item-article .content .icones .icon img {
  2462. height: 50px;
  2463. width: 100%; }
  2464. #item .content .icones .icon p, #item-article .content .icones .icon p {
  2465. text-align: center; }
  2466. #devis {
  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: center;
  2473. align-items: center;
  2474. background-image: url("/user/themes/lecampus/images/Trame-bleu2.svg");
  2475. background-repeat: repeat;
  2476. width: 100%; }
  2477. #devis .title {
  2478. visibility: hidden;
  2479. width: 200px;
  2480. height: 200px;
  2481. background: #9e0027;
  2482. border-radius: 200px;
  2483. -webkit-transform: translateX(80px);
  2484. transform: translateX(80px); }
  2485. #devis .title h4 {
  2486. text-align: center;
  2487. color: white;
  2488. margin: 50% 10px 0 10px;
  2489. -webkit-transform: translateY(-50%);
  2490. transform: translateY(-50%); }
  2491. #devis .txt {
  2492. display: -webkit-inline-box;
  2493. display: -ms-inline-flexbox;
  2494. display: inline-flex;
  2495. -ms-flex-wrap: wrap;
  2496. flex-wrap: wrap;
  2497. background: white;
  2498. width: 25%;
  2499. margin-right: 20px;
  2500. height: auto; }
  2501. #devis .txt p {
  2502. padding: 20px 20px 20px 20px;
  2503. color: black;
  2504. text-align: left; }
  2505. #devis .txt p strong {
  2506. font-size: 1.3rem; }
  2507. #devis .demander-votre-devis {
  2508. margin-top: 0;
  2509. -webkit-transform: translate(50%, -125%);
  2510. transform: translate(50%, -125%); }
  2511. #devis .img {
  2512. width: 400px;
  2513. height: 300px;
  2514. position: relative; }
  2515. #devis .img .content-img {
  2516. width: auto;
  2517. height: auto;
  2518. overflow: hidden; }
  2519. #devis .img .content-img > img {
  2520. width: 100%;
  2521. height: 100%; }
  2522. #devis.item, #devis.sublog, #devis.item-article {
  2523. background: #9e0027;
  2524. height: auto;
  2525. padding: 20px 0; }
  2526. #devis.item a, #devis.sublog a, #devis.item-article a {
  2527. color: white; }
  2528. #devis.item a .title, #devis.sublog a .title, #devis.item-article a .title {
  2529. vertical-align: baseline;
  2530. border-radius: 30px;
  2531. border: 1px solid white;
  2532. padding: 5px 20px;
  2533. height: 35px;
  2534. width: auto;
  2535. -webkit-transform: translateX(0);
  2536. transform: translateX(0); }
  2537. #devis.item a:hover, #devis.sublog a:hover, #devis.item-article a:hover {
  2538. color: black; }
  2539. #devis.item a:hover .title, #devis.sublog a:hover .title, #devis.item-article a:hover .title {
  2540. background: white;
  2541. transition: background 0.3s ease; }
  2542. #reco {
  2543. background: #00407d; }
  2544. #reco .title {
  2545. display: flex;
  2546. cursor: pointer;
  2547. width: 100%;
  2548. padding: 10px; }
  2549. #reco .title h2 {
  2550. width: auto;
  2551. margin: auto;
  2552. color: white;
  2553. padding: 10px;
  2554. text-align: center;
  2555. border-top: 1px solid white;
  2556. border-bottom: 1px solid white;
  2557. font-size: 1rem; }
  2558. #reco .title h2::after {
  2559. display: inline-flex;
  2560. margin-left: 10px;
  2561. content: " ";
  2562. background: url("../images/fleche-top.svg");
  2563. background-size: 15px 18px;
  2564. background-repeat: no-repeat;
  2565. width: 15px;
  2566. height: 18px; }
  2567. #reco .title.open h2:after {
  2568. -webkit-transform: rotate(180deg);
  2569. transform: rotate(180deg); }
  2570. #reco .txt {
  2571. z-index: -1;
  2572. position: relative;
  2573. width: 100%;
  2574. display: none; }
  2575. #reco .txt p {
  2576. color: white;
  2577. width: 300px; }
  2578. #reco .txt p a {
  2579. color: white;
  2580. text-decoration: underline; }
  2581. #reco .txt.open {
  2582. display: -webkit-inline-box;
  2583. display: -ms-inline-flexbox;
  2584. display: inline-flex;
  2585. -ms-flex-wrap: wrap;
  2586. flex-wrap: wrap;
  2587. justify-content: center;
  2588. padding-top: 20px;
  2589. z-index: 999;
  2590. background: #00407d; }
  2591. #reco .txt.open .item {
  2592. display: block; }
  2593. #reco .txt h3 {
  2594. color: #b5cb3a; }
  2595. #reco .item {
  2596. margin: 0 0px 20px 20px;
  2597. border-left: 1px solid white;
  2598. padding-left: 20px; }
  2599. #reco .item img {
  2600. width: 50px;
  2601. margin-bottom: 10px; }
  2602. .content_s.map {
  2603. width: 100% !important;
  2604. height: auto; }
  2605. .content_s.map p:last-child {
  2606. height: 500px; }
  2607. .content_s.map a#carte {
  2608. display: block;
  2609. width: 100%;
  2610. height: 100%; }
  2611. #event .title, #item .title, #item-article .title {
  2612. width: 45%;
  2613. margin: auto; }
  2614. #event .head-event .tags, #item .head-event .tags, #item-article .head-event .tags {
  2615. width: 100%; }
  2616. #event .head-event .tags.professionnels, #item .head-event .tags.professionnels, #item-article .head-event .tags.professionnels {
  2617. background-color: #9e0027; }
  2618. #event .head-event .tags.grand_public, #item .head-event .tags.grand_public, #item-article .head-event .tags.grand_public {
  2619. background-color: #0093a3; }
  2620. #event .head-event .tags.formations, #item .head-event .tags.formations, #item-article .head-event .tags.formations {
  2621. background-color: #6e6f70; }
  2622. #event .head-event .tags.publics, #item .head-event .tags.publics, #item-article .head-event .tags.publics {
  2623. padding: 2.5px 10px;
  2624. color: white; }
  2625. #event .card-header, #item .card-header, #item-article .card-header {
  2626. display: -webkit-inline-box;
  2627. display: -ms-inline-flexbox;
  2628. display: inline-flex;
  2629. -ms-flex-wrap: wrap;
  2630. flex-wrap: wrap;
  2631. flex-direction: column;
  2632. width: 100%; }
  2633. #event .card-header.professionnels, #item .card-header.professionnels, #item-article .card-header.professionnels {
  2634. background-color: #9e0027; }
  2635. #event .card-header.grand_public, #item .card-header.grand_public, #item-article .card-header.grand_public {
  2636. background-color: #0093a3; }
  2637. #event .card-header.formations, #item .card-header.formations, #item-article .card-header.formations {
  2638. background-color: #6e6f70; }
  2639. #event .card-header .publics, #item .card-header .publics, #item-article .card-header .publics {
  2640. text-align: right; }
  2641. #event .card-header .publics.publics, #item .card-header .publics.publics, #item-article .card-header .publics.publics {
  2642. padding: 2.5px 10px;
  2643. color: white; }
  2644. #event .card-body, #item .card-body, #item-article .card-body {
  2645. padding: 15px;
  2646. background-image: url("/user/themes/lecampus/images/Trame-bleu2.svg");
  2647. background-repeat: repeat; }
  2648. #event .card-content, #item .card-content, #item-article .card-content {
  2649. margin-top: 20px; }
  2650. .demander-votre-devis {
  2651. padding: 10px;
  2652. z-index: 999;
  2653. -webkit-transform: translate(0, -50%);
  2654. transform: translate(0, -50%);
  2655. background: #9e0027;
  2656. position: absolute;
  2657. width: 200px;
  2658. height: 200px;
  2659. right: 5%;
  2660. color: white;
  2661. text-align: center; }
  2662. .demander-votre-devis strong {
  2663. font-weight: bold !important; }
  2664. .demander-votre-devis a {
  2665. color: white; }
  2666. .demander-votre-devis img {
  2667. margin-top: 10px;
  2668. width: 50px; }
  2669. #sublog .body-wrapper {
  2670. background-image: url("../images/Trame-gris.svg");
  2671. background-repeat: repeat; }
  2672. #sublog .content {
  2673. display: -webkit-inline-box;
  2674. display: -ms-inline-flexbox;
  2675. display: inline-flex;
  2676. -ms-flex-wrap: wrap;
  2677. flex-wrap: wrap;
  2678. width: 90%;
  2679. flex-direction: row-reverse;
  2680. justify-content: space-between; }
  2681. #sublog .content .txt {
  2682. width: 50%; }
  2683. #sublog .content .txt .content_txt {
  2684. width: 50%; }
  2685. #sublog .content .txt > p {
  2686. font-size: 1.2rem;
  2687. font-family: "bold"; }
  2688. #sublog svg {
  2689. pointer-events: none; }
  2690. #sublog .mapsalles {
  2691. width: 50%;
  2692. position: relative; }
  2693. #sublog .mapsalles .contour {
  2694. position: relative;
  2695. z-index: 1;
  2696. pointer-events: none;
  2697. display: inline-block;
  2698. width: 100%;
  2699. vertical-align: middle;
  2700. overflow: hidden; }
  2701. #sublog .mapsalles .fond {
  2702. position: absolute;
  2703. display: inline-block;
  2704. width: 100%;
  2705. vertical-align: middle;
  2706. overflow: hidden;
  2707. z-index: 0;
  2708. left: 0;
  2709. top: 5.3%; }
  2710. #sublog .mapsalles .fond path {
  2711. fill: none;
  2712. pointer-events: all;
  2713. transition: fill 0.3s ease; }
  2714. #sublog .mapsalles .fond path:hover {
  2715. fill: #0093a3 !important;
  2716. transition: fill 0.3s ease; }
  2717. #sublog .content_salle {
  2718. visibility: hidden;
  2719. overflow-x: hidden;
  2720. position: absolute;
  2721. left: 50%;
  2722. top: 300px;
  2723. width: 40%;
  2724. background: white; }
  2725. #sublog .content_salle > p {
  2726. padding-left: 10px; }
  2727. #sublog .content_salle .header-salles {
  2728. height: 100%;
  2729. background: #0093a3;
  2730. padding: 5px 10px;
  2731. color: white;
  2732. margin-top: 0;
  2733. width: 100%; }
  2734. #sublog .content_salle .header-salles h3 {
  2735. width: 100%; }
  2736. #sublog .content_salle .header-salles img {
  2737. display: none; }
  2738. #sublog .content_salle .gal-salles {
  2739. height: 100%;
  2740. position: relative; }
  2741. #sublog .content_salle .gal-salles img {
  2742. width: 100%;
  2743. height: 100%; }
  2744. #sublog .content_salle h4 {
  2745. background: #b5cb3a;
  2746. font-size: 1.2rem;
  2747. font-family: "bold";
  2748. padding: 5px 10px;
  2749. margin-top: -1px; }
  2750. #sublog .slidesjs-navigation {
  2751. margin-right: 5px;
  2752. float: left;
  2753. display: block;
  2754. width: 30px;
  2755. height: 30px;
  2756. padding-top: 13px;
  2757. background-position: 0 0;
  2758. overflow: hidden;
  2759. z-index: 999;
  2760. position: absolute;
  2761. top: 50%; }
  2762. #sublog .slidesjs-previous {
  2763. left: 10px;
  2764. background-image: url("/user/themes/lecampus/images/arrow-gal.svg"); }
  2765. #sublog .slidesjs-next {
  2766. background-image: url("/user/themes/lecampus/images/arrow-gal-next.svg");
  2767. right: 10px; }
  2768. #default .header-wrapper {
  2769. width: 45%;
  2770. margin-top: 50px;
  2771. margin: auto; }
  2772. #default .body-wrapper {
  2773. margin-bottom: 50px; }
  2774. #default .title {
  2775. width: 80%;
  2776. margin: auto; }
  2777. #default .txt {
  2778. margin: auto; }
  2779. #default p {
  2780. margin-bottom: 10px; }
  2781. .ok {
  2782. cursor: pointer; }
  2783. .cookie-banner {
  2784. display: none;
  2785. position: fixed;
  2786. top: 0;
  2787. width: 100%; }
  2788. .cookie-banner.active {
  2789. display: block; }
  2790. .cookie-inform-and-ask {
  2791. background-color: green;
  2792. display: none;
  2793. height: 100%;
  2794. left: 0;
  2795. position: fixed;
  2796. top: 0;
  2797. width: 100%; }
  2798. .cookie-inform-and-ask.active {
  2799. display: block; }
  2800. .cookie-inform-and-ask .cookie-dialog {
  2801. left: 50%;
  2802. position: absolute;
  2803. top: 50%;
  2804. -webkit-transform: translate(-50%, -50%);
  2805. transform: translate(-50%, -50%);
  2806. width: 70%; }