theme.css 105 KB

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