index.css 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331
  1. @charset "UTF-8";
  2. /**
  3. * @file
  4. * Presentational styles for Drupal stark theme layout.
  5. *
  6. * It is left empty for testing purposes.
  7. *
  8. * @see https://www.drupal.org/project/drupal/issues/2349711
  9. */
  10. @font-face {
  11. font-family: "dukefill";
  12. src: url("../fonts/duke_fill-webfont.woff") format("woff"), url("../fonts/duke_fill-webfont.woff2") format("woff2");
  13. font-weight: normal;
  14. font-style: normal; }
  15. @font-face {
  16. font-family: "cormorantBold";
  17. src: url("../fonts/Cormorant-Bold-webfont.woff") format("woff");
  18. font-weight: normal;
  19. font-style: normal; }
  20. @font-face {
  21. font-family: "cormorantBoldItalic";
  22. src: url("../fonts/Cormorant-BoldItalic-webfont.woff") format("woff");
  23. font-weight: lighter;
  24. font-style: normal; }
  25. @font-face {
  26. font-family: "truenolight";
  27. src: url("../fonts/trueno/truenolt-webfont.woff") format("woff"), url("../fonts/trueno/truenolt-webfont.woff2") format("woff2");
  28. font-weight: normal;
  29. font-style: normal; }
  30. @font-face {
  31. font-family: "truenolight_italic";
  32. src: url("../fonts/trueno/truenoltit-webfont.woff") format("woff"), url("../fonts/trueno/truenoltit-webfont.woff2") format("woff2");
  33. font-weight: normal;
  34. font-style: normal; }
  35. @font-face {
  36. font-family: "truenoregular";
  37. src: url("../fonts/trueno/truenorg-webfont.woff") format("woff"), url("../fonts/trueno/truenorg-webfont.woff2") format("woff2");
  38. font-weight: normal;
  39. font-style: normal; }
  40. @font-face {
  41. font-family: "truenoregular_italic";
  42. src: url("../fonts/trueno/truenorgit-webfont.woff") format("woff"), url("../fonts/trueno/truenorgit-webfont.woff2") format("woff2");
  43. font-weight: normal;
  44. font-style: normal; }
  45. @font-face {
  46. font-family: "truenobold";
  47. src: url("../fonts/trueno/truenobd-webfont.woff") format("woff"), url("../fonts/trueno/truenobd-webfont.woff2") format("woff2");
  48. font-weight: normal;
  49. font-style: normal; }
  50. @font-face {
  51. font-family: "truenobold_italic";
  52. src: url("../fonts/trueno/truenobdit-webfont.woff") format("woff"), url("../fonts/trueno/truenobdit-webfont.woff2") format("woff2");
  53. font-weight: normal;
  54. font-style: normal; }
  55. /*marianne*/
  56. @font-face {
  57. font-family: 'Mariannethin';
  58. src: url("../fonts/Marianne/Marianne-Thin.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin.woff") format("woff");
  59. font-weight: 300;
  60. font-style: normal; }
  61. @font-face {
  62. font-family: 'Mariannethin_italic';
  63. src: url("../fonts/Marianne/Marianne-Thin_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin_Italic.woff") format("woff");
  64. font-weight: 300;
  65. font-style: italic; }
  66. @font-face {
  67. font-family: 'Mariannelight';
  68. src: url("../fonts/Marianne/Marianne-Light.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light.woff") format("woff");
  69. font-weight: 400;
  70. font-style: normal; }
  71. @font-face {
  72. font-family: 'Mariannelight_italic';
  73. src: url("../fonts/Marianne/Marianne-Light_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light_Italic.woff") format("woff");
  74. font-weight: 400;
  75. font-style: italic; }
  76. @font-face {
  77. font-family: 'Marianneregular';
  78. src: url("../fonts/Marianne/Marianne-Regular.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular.woff") format("woff");
  79. font-weight: 600;
  80. font-style: normal; }
  81. @font-face {
  82. font-family: 'Marianneregular_italic';
  83. src: url("../fonts/Marianne/Marianne-Regular_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular_Italic.woff") format("woff");
  84. font-weight: 600;
  85. font-style: italic; }
  86. @font-face {
  87. font-family: 'Mariannemedium';
  88. src: url("../fonts/Marianne/Marianne-Medium.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium.woff") format("woff");
  89. font-weight: 800;
  90. font-style: normal; }
  91. @font-face {
  92. font-family: 'Mariannemedium_italic';
  93. src: url("../fonts/Marianne/Marianne-Medium_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium_Italic.woff") format("woff");
  94. font-weight: 800;
  95. font-style: italic; }
  96. @font-face {
  97. font-family: 'Mariannebold';
  98. src: url("../fonts/Marianne/Marianne-Bold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold.woff") format("woff");
  99. font-weight: 900;
  100. font-style: normal; }
  101. @font-face {
  102. font-family: 'Mariannebold_italic';
  103. src: url("../fonts/Marianne/Marianne-Bold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold_Italic.woff") format("woff");
  104. font-weight: 900;
  105. font-style: italic; }
  106. @font-face {
  107. font-family: 'Marianneextrabold';
  108. src: url("../fonts/Marianne/Marianne-ExtraBold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold.woff") format("woff");
  109. font-weight: 1000;
  110. font-style: normal; }
  111. @font-face {
  112. font-family: 'Marianneextrabold_italic';
  113. src: url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff") format("woff");
  114. font-weight: 1000;
  115. font-style: italic; }
  116. #block-colloque2024-renderedsitesettingsblock-2 .site_setting_entity h1 {
  117. font-family: 'Marianneregular';
  118. font-size: 2rem;
  119. line-height: 2rem;
  120. text-transform: uppercase;
  121. text-align: right;
  122. align-self: stretch;
  123. margin: auto; }
  124. #block-colloque2024-renderedsitesettingsblock-2 .site_setting_entity .__info_colloque > div:first-child {
  125. font-family: "Marianneregular";
  126. font-size: 0.9rem; }
  127. #block-colloque2024-renderedsitesettingsblock-2 .site_setting_entity .__info_colloque > div:last-child {
  128. font-family: "Marianneregular";
  129. font-weight: bold;
  130. font-size: 0.7rem;
  131. line-height: 1; }
  132. form label {
  133. font-family: "Mariannelight"; }
  134. form .select-items div {
  135. font-family: "Mariannelight"; }
  136. form .select-selected {
  137. font-family: "Marianneregular"; }
  138. form input {
  139. font-family: "Mariannelight"; }
  140. .thumbnails.programme .__content {
  141. font-family: "Mariannebold";
  142. font-size: 1rem;
  143. text-transform: uppercase; }
  144. .thumbnails.publications .__content div {
  145. font-family: "Mariannebold";
  146. font-size: 1.2rem; }
  147. .thumbnails.publications .__content span {
  148. font-family: "Mariannebold_italic";
  149. font-size: 1.2rem; }
  150. .thumbnails.interviews .__content div {
  151. font-family: "Mariannebold";
  152. font-size: 1.2rem; }
  153. .thumbnails.interviews .__content span {
  154. font-family: "Mariannebold_italic";
  155. font-size: 1.2rem; }
  156. .thumbnails.bibliographie {
  157. background: transparent; }
  158. .thumbnails.bibliographie div,
  159. .thumbnails.bibliographie p {
  160. font-family: "Mariannebold";
  161. font-size: 1.2rem; }
  162. .thumbnails.bibliographie span {
  163. font-family: "Mariannebold_italic";
  164. font-size: 1.2rem; }
  165. .thumbnails_participants figure img {
  166. box-shadow: none;
  167. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  168. .thumbnails_participants figure:hover > div img {
  169. transform: scale(1.05);
  170. transition: 0.3s all ease;
  171. box-shadow: 0px 0px 13px 0px #038788; }
  172. .thumbnails_participants .__name {
  173. font-family: "Marianneregular";
  174. font-size: 1rem;
  175. color: black;
  176. padding-bottom: 0.5rem; }
  177. .thumbnails_participants .__qualite {
  178. font-family: "Marianneregular_italic";
  179. font-size: 0.8rem;
  180. color: #038788; }
  181. .paragraph--type--role-de-l-intervenant .___title_inter div {
  182. font-family: "Mariannebold";
  183. font-size: 0.8rem;
  184. text-transform: uppercase; }
  185. article.participant_full .__auteur h2 {
  186. font-family: "Marianneregular";
  187. font-size: 2rem;
  188. line-height: 1;
  189. letter-spacing: normal; }
  190. article.participant_full .status div {
  191. font-family: "Marianneregular_italic";
  192. color: #038788;
  193. font-size: 1rem;
  194. line-height: 1.2rem;
  195. text-align: center; }
  196. @media screen and (min-width: 768px) {
  197. article.participant_full .status div {
  198. text-align: left; } }
  199. body, html {
  200. font-size: 16px;
  201. font-family: 'Marianne', "sans-serif";
  202. line-height: 1.2; }
  203. body .is-active, html .is-active {
  204. overflow: hidden; }
  205. main {
  206. min-height: calc(100vh - 150px); }
  207. header {
  208. background: white; }
  209. ul, li, ol {
  210. list-style: none; }
  211. h1, h2, h3, h4 {
  212. margin: 0;
  213. padding: 0; }
  214. h2 {
  215. font-family: 'Marianne';
  216. font-size: 2.5rem;
  217. line-height: 2.5rem;
  218. color: black; }
  219. @media screen and (min-width: 768px) {
  220. h2 {
  221. font-size: 3rem;
  222. line-height: 3.5rem; } }
  223. h2 a {
  224. color: black; }
  225. h3 {
  226. margin: 1rem 0;
  227. font-family: 'Mariannebold';
  228. font-size: 2rem;
  229. color: #038788; }
  230. @media screen and (min-width: 768px) {
  231. h3 {
  232. font-size: 2.5rem;
  233. line-height: 3.5rem; } }
  234. p + h3 {
  235. margin: 0.5rem 0 1.5rem 0; }
  236. p {
  237. font-size: 1rem;
  238. line-height: 1.5rem;
  239. font-family: 'Marianneregular'; }
  240. p strong {
  241. font-family: 'Mariannebold'; }
  242. p strong em {
  243. font-family: 'Mariannebold_italic'; }
  244. p em {
  245. font-family: 'Marianneregular_italic'; }
  246. p a {
  247. display: inline;
  248. background: rgba(185, 206, 0, 0.8); }
  249. a {
  250. color: black;
  251. text-decoration: none; }
  252. a:hover {
  253. color: black;
  254. text-decoration: none; }
  255. blockquote {
  256. margin: 2rem 1rem 2rem 1rem;
  257. color: #6f6d7dff; }
  258. @media screen and (min-width: 768px) {
  259. blockquote {
  260. margin: 3.5rem 2rem 4rem 2rem; }
  261. blockquote p {
  262. margin-top: 1rem; } }
  263. blockquote p {
  264. font-family: 'Mariannebold';
  265. font-size: 2rem;
  266. line-height: 2.5rem;
  267. font-weight: lighter;
  268. margin-top: 0.5rem; }
  269. img {
  270. width: 100%;
  271. height: 100%;
  272. object-fit: cover; }
  273. button {
  274. outline: 0;
  275. border: 0; }
  276. button:focus {
  277. outline: 0;
  278. border: 0; }
  279. footer * {
  280. font-family: 'Marianne';
  281. color: black; }
  282. footer h2 {
  283. text-transform: uppercase;
  284. font-size: 1rem;
  285. line-height: 1.5rem; }
  286. @keyframes pulse {
  287. 0% {
  288. transform: scale(0); }
  289. 100% {
  290. transform: scale(0.5); } }
  291. @keyframes slidein {
  292. from {
  293. transform: translateX(0%); }
  294. to {
  295. transform: translateX(100%); } }
  296. @keyframes dropDown {
  297. from {
  298. transform: translateY(0%); }
  299. to {
  300. transform: translateY(100%); } }
  301. @keyframes translateAnimation {
  302. 0% {
  303. transform: translateX(0);
  304. /* Start translation */ }
  305. 50% {
  306. transform: translateX(200); }
  307. 100% {
  308. transform: translateX(500px);
  309. /* End translation */ } }
  310. @keyframes changeColor {
  311. 0% {
  312. fill: #b9ce00;
  313. /* Initial fill color */ }
  314. 100% {
  315. fill: #ff804d;
  316. /* Final fill color */ } }
  317. @keyframes changeColor2 {
  318. 0% {
  319. fill: #038788;
  320. /* Initial fill color */ }
  321. 100% {
  322. fill: #349a84;
  323. /* Final fill color */ } }
  324. @keyframes traceAppear {
  325. 0% {
  326. opacity: 0; }
  327. 80% {
  328. opacity: 0; }
  329. 100% {
  330. opacity: 1; } }
  331. /*!
  332. * Hamburgers
  333. * @description Tasty CSS-animated hamburgers
  334. * @author Jonathan Suh @jonsuh
  335. * @site https://jonsuh.com/hamburgers
  336. * @link https://github.com/jonsuh/hamburgers
  337. */
  338. .hamburger {
  339. padding: 0px 0px;
  340. display: inline-block;
  341. cursor: pointer;
  342. transition-property: opacity, filter;
  343. transition-duration: 0.15s;
  344. transition-timing-function: linear;
  345. font: inherit;
  346. color: inherit;
  347. text-transform: none;
  348. background-color: transparent;
  349. border: 0;
  350. margin: 0;
  351. overflow: visible; }
  352. .hamburger:hover {
  353. opacity: 0.7; }
  354. .hamburger.is-active:hover {
  355. opacity: 0.7; }
  356. .hamburger.is-active .hamburger-inner,
  357. .hamburger.is-active .hamburger-inner::before,
  358. .hamburger.is-active .hamburger-inner::after {
  359. background-color: #000; }
  360. .hamburger-box {
  361. width: 30px;
  362. height: 21px;
  363. display: inline-block;
  364. position: relative; }
  365. .hamburger-inner {
  366. display: block;
  367. top: 50%;
  368. margin-top: -1.5px; }
  369. .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  370. width: 30px;
  371. height: 3px;
  372. background-color: #000;
  373. border-radius: 4px;
  374. position: absolute;
  375. transition-property: transform;
  376. transition-duration: 0.15s;
  377. transition-timing-function: ease; }
  378. .hamburger-inner::before, .hamburger-inner::after {
  379. content: "";
  380. display: block; }
  381. .hamburger-inner::before {
  382. top: -9px; }
  383. .hamburger-inner::after {
  384. bottom: -9px; }
  385. /*
  386. * Collapse
  387. */
  388. .hamburger--collapse .hamburger-inner {
  389. top: auto;
  390. bottom: 0;
  391. transition-duration: 0.13s;
  392. transition-delay: 0.13s;
  393. transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  394. .hamburger--collapse .hamburger-inner::after {
  395. top: -18px;
  396. transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  397. .hamburger--collapse .hamburger-inner::before {
  398. transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  399. .hamburger--collapse.is-active .hamburger-inner {
  400. transform: translate3d(0, -9px, 0) rotate(-45deg);
  401. transition-delay: 0.22s;
  402. transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  403. .hamburger--collapse.is-active .hamburger-inner::after {
  404. top: 0;
  405. opacity: 0;
  406. transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  407. .hamburger--collapse.is-active .hamburger-inner::before {
  408. top: 0;
  409. transform: rotate(-90deg);
  410. transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }
  411. /*
  412. * Collapse Reverse
  413. */
  414. .hamburger--collapse-r .hamburger-inner {
  415. top: auto;
  416. bottom: 0;
  417. transition-duration: 0.13s;
  418. transition-delay: 0.13s;
  419. transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  420. .hamburger--collapse-r .hamburger-inner::after {
  421. top: -18px;
  422. transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  423. .hamburger--collapse-r .hamburger-inner::before {
  424. transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  425. .hamburger--collapse-r.is-active .hamburger-inner {
  426. transform: translate3d(0, -9px, 0) rotate(45deg);
  427. transition-delay: 0.22s;
  428. transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  429. .hamburger--collapse-r.is-active .hamburger-inner::after {
  430. top: 0;
  431. opacity: 0;
  432. transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  433. .hamburger--collapse-r.is-active .hamburger-inner::before {
  434. top: 0;
  435. transform: rotate(90deg);
  436. transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }
  437. @media screen and (min-width: 768px) {
  438. main:not(.home) {
  439. padding: 1.5rem 0 !important; } }
  440. @media screen and (min-width: 992px) {
  441. main:not(.home) {
  442. padding: 4rem 0 !important; } }
  443. body #content-ontop {
  444. position: relative;
  445. padding-top: 5rem; }
  446. @media screen and (max-width: 300px) {
  447. body #content-ontop {
  448. padding-top: 2rem; } }
  449. body #background-animated {
  450. width: 100VW;
  451. z-index: -1;
  452. position: absolute; }
  453. article.publications, article.interviews {
  454. margin-top: 1rem; }
  455. article.publications .paragraph--type--images img, article.interviews .paragraph--type--images img {
  456. max-width: 100%;
  457. max-height: 400px;
  458. object-fit: contain; }
  459. @media screen and (min-width: 992px) {
  460. article.publications .paragraph--type--images img, article.interviews .paragraph--type--images img {
  461. width: 100%; } }
  462. #main-content-node .__img-hero {
  463. display: none; }
  464. header #block-colloque2024-mainnavigation ul li {
  465. font-size: 0.8rem; }
  466. header #block-colloque2024-mainnavigation ul li a {
  467. color: black;
  468. font-family: "Marianneregular"; }
  469. header #block-colloque2024-mainnavigation ul li a.is-active {
  470. font-family: "Mariannebold";
  471. color: black;
  472. text-decoration: none; }
  473. header #block-colloque2024-mainnavigation ul li a:hover {
  474. font-family: "Mariannebold";
  475. color: black;
  476. text-decoration: none; }
  477. #txt_present {
  478. margin: 3rem 0; }
  479. @media screen and (min-width: 992px) {
  480. #txt_present {
  481. margin: 5rem 0; } }
  482. #txt_present * {
  483. color: black; }
  484. #txt_present > div {
  485. min-width: 80% !important; }
  486. #txt_present .__title-present h2 {
  487. font-size: 1.9rem;
  488. font-family: "Marianneregular";
  489. line-height: normal; }
  490. #txt_present .__sub-title-present p {
  491. font-family: "Marianneregular_italic";
  492. font-size: 0.9rem;
  493. line-height: 1.3rem; }
  494. #txt_present .__body-present p {
  495. font-family: "Mariannelight";
  496. font-size: 1.5rem;
  497. line-height: 1.8rem; }
  498. #txt_present .more_link {
  499. padding: 0rem 1rem 0.2rem 1rem;
  500. background: white; }
  501. #txt_present .more_link a {
  502. font-size: 0.7rem;
  503. color: #038788; }
  504. #block-colloque2024-views-block-dernieres-publications-block-1 .views section:not(.wrap_head),
  505. #block-colloque2024-views-block-slide-interviews-block-1 .views section:not(.wrap_head) {
  506. margin: 1rem 0; }
  507. @media screen and (min-width: 768px) {
  508. #block-colloque2024-views-block-dernieres-publications-block-1 .views section:not(.wrap_head),
  509. #block-colloque2024-views-block-slide-interviews-block-1 .views section:not(.wrap_head) {
  510. margin: 1rem calc(0rem - 0.5rem); } }
  511. #block-colloque2024-views-block-gallerie-block-1 section:not(.wrap_head) {
  512. display: flex;
  513. flex-wrap: wrap;
  514. margin: 0 -1rem !important; }
  515. #block-colloque2024-views-block-gallerie-block-1 section:not(.wrap_head) figure {
  516. padding: 1rem;
  517. margin: 0;
  518. width: 100%;
  519. max-height: 400px; }
  520. @media screen and (min-width: 768px) {
  521. #block-colloque2024-views-block-gallerie-block-1 section:not(.wrap_head) figure {
  522. width: calc(100% / 3);
  523. max-height: 300px; } }
  524. @media screen and (min-width: 1024px) {
  525. #block-colloque2024-views-block-gallerie-block-1 section:not(.wrap_head) figure {
  526. width: calc(100% / 6);
  527. max-height: 200px; } }
  528. #block-colloque2024-views-block-gallerie-block-1 section:not(.wrap_head) figure img {
  529. width: 100%;
  530. height: 100%;
  531. object-fit: cover; }
  532. #block-colloque2024-views-block-gallerie-block-1 .pager {
  533. text-align: center;
  534. margin: 2rem; }
  535. #block-colloque2024-views-block-gallerie-block-1 .pager .wrap--btn a {
  536. box-shadow: none;
  537. transition: 0.3s transform ease, 0.3s box-shadow ease;
  538. background: white;
  539. width: fit-content;
  540. margin: auto;
  541. padding: 0.5rem 1rem;
  542. font-size: 12px;
  543. display: block;
  544. font-family: "Mariannebold";
  545. color: #1d378eff; }
  546. #block-colloque2024-views-block-gallerie-block-1 .pager .wrap--btn a:hover {
  547. transform: scale(1.05);
  548. box-shadow: 0px 0px 13px 0px #038788;
  549. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  550. .lightbox {
  551. position: fixed !important;
  552. top: 50% !important;
  553. transform: translateY(-50%) !important; }
  554. .lb-dataContainer {
  555. width: 100%;
  556. background: white; }
  557. .lb-dataContainer .lb-details {
  558. width: 100%; }
  559. .lb-dataContainer span {
  560. display: block;
  561. text-align: center;
  562. color: black; }
  563. .lb-dataContainer .lb-number {
  564. font-family: "Mariannebold";
  565. padding-bottom: 0; }
  566. #block-colloque2024-views-block-gallerie-block-1,
  567. #block-colloque2024-views-block-slide-programme-block-1,
  568. #block-colloque2024-views-block-dernieres-publications-block-1,
  569. #block-colloque2024-views-block-slide-interviews-block-1 {
  570. margin: 2rem 0; }
  571. @media screen and (min-width: 992px) {
  572. #block-colloque2024-views-block-gallerie-block-1,
  573. #block-colloque2024-views-block-slide-programme-block-1,
  574. #block-colloque2024-views-block-dernieres-publications-block-1,
  575. #block-colloque2024-views-block-slide-interviews-block-1 {
  576. margin: 5rem 0; } }
  577. #block-colloque2024-views-block-gallerie-block-1 h3,
  578. #block-colloque2024-views-block-slide-programme-block-1 h3,
  579. #block-colloque2024-views-block-dernieres-publications-block-1 h3,
  580. #block-colloque2024-views-block-slide-interviews-block-1 h3 {
  581. margin: 0;
  582. font-family: "Mariannebold";
  583. font-size: 2.5rem;
  584. letter-spacing: 0.1rem;
  585. color: #038788; }
  586. #block-colloque2024-views-block-slide-programme-block-1 h3::after {
  587. display: inline-flex;
  588. width: 60px;
  589. height: 60px;
  590. vertical-align: middle;
  591. margin-left: 20px; }
  592. #mainHome {
  593. max-width: 100vw;
  594. margin: 0;
  595. display: flex; }
  596. #mainHome .layout-content {
  597. margin: auto;
  598. max-width: 1140px; }
  599. #block-colloque2024-renderedsitesettingsblock-6 {
  600. display: flex;
  601. margin: auto; }
  602. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity {
  603. display: grid;
  604. grid-template-columns: repeat(7, 1fr);
  605. margin: auto; }
  606. @media screen and (max-width: 550px) {
  607. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity {
  608. display: flex;
  609. flex-direction: column; } }
  610. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(1) {
  611. font-size: 7rem;
  612. font-family: 'Mariannebold';
  613. line-height: 95%;
  614. grid-column: 1 / span 5;
  615. grid-row: 2;
  616. margin-bottom: 2rem; }
  617. @media screen and (max-width: 550px) {
  618. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(1) {
  619. font-size: 4.5rem;
  620. order: 3; } }
  621. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(2) {
  622. grid-column: 1 / 4;
  623. grid-row: 3;
  624. font-size: 2.5rem; }
  625. @media screen and (max-width: 550px) {
  626. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(2) {
  627. font-size: 1.5rem;
  628. order: 4; } }
  629. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(4) {
  630. text-transform: uppercase;
  631. font-family: 'Mariannebold';
  632. font-size: 3.5rem;
  633. grid-column: 5 / span 7;
  634. grid-row: 3; }
  635. @media screen and (max-width: 550px) {
  636. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(4) {
  637. font-size: 1.5rem;
  638. order: 2; } }
  639. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(3) {
  640. text-transform: uppercase;
  641. grid-column: 5 / span 7;
  642. grid-row: 1;
  643. font-size: 2rem; }
  644. @media screen and (max-width: 550px) {
  645. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(3) {
  646. font-size: 1.5rem;
  647. order: 1; } }
  648. #txt_present .medias {
  649. display: none; }
  650. #block-colloque2024-views-block-slide-interviews-block-1 {
  651. display: none; }
  652. #block-colloque2024-views-block-gallerie-block-1 {
  653. display: none; }
  654. #block-colloque2024-views-block-dernieres-publications-block-1 {
  655. display: none; }
  656. #presentation {
  657. margin-top: 0.5rem; }
  658. #presentation .__title h2 {
  659. color: #038788 !important; }
  660. @media screen and (min-width: 768px) {
  661. #presentation .__title {
  662. margin: 1rem 0; } }
  663. @media screen and (min-width: 992px) {
  664. #presentation .__title {
  665. margin: 2rem 0; } }
  666. #presentation .__wrapper {
  667. margin-top: 1rem; }
  668. #presentation.main {
  669. max-width: 100vw;
  670. margin: 0;
  671. display: flex; }
  672. .layout {
  673. display: flex;
  674. flex-direction: row; }
  675. .layout #aside-animated {
  676. display: flex;
  677. z-index: -1;
  678. position: absolute;
  679. width: 25%;
  680. top: 0;
  681. left: 0;
  682. margin: auto;
  683. padding: auto; }
  684. .layout #aside-animated svg {
  685. margin: auto; }
  686. .container.programme {
  687. padding-top: 1.5rem; }
  688. @media screen and (min-width: 768px) {
  689. .container.programme {
  690. padding-top: 0rem; } }
  691. .container.programme h2 {
  692. position: relative;
  693. color: #038788; }
  694. .container.programme h2::after {
  695. display: inline-flex;
  696. position: absolute;
  697. right: 0;
  698. width: 100px;
  699. height: 100px;
  700. vertical-align: middle; }
  701. @media screen and (min-width: 768px) {
  702. .container.programme h2::after {
  703. width: 150px;
  704. height: 150px; } }
  705. .container.programme h3 {
  706. font-size: 1.5rem;
  707. font-family: 'Mariannelight';
  708. color: black;
  709. text-transform: uppercase; }
  710. .container.programme .views section .row .__wrap_side {
  711. margin: 0 0 1rem 0; }
  712. @media screen and (min-width: 768px) {
  713. .container.programme .views section .row .__wrap_side {
  714. margin: 0.5rem 0 0rem 0; } }
  715. @media screen and (min-width: 768px) {
  716. .container.programme .views section .row > div:not(.__wrap_side) {
  717. padding-left: 0;
  718. margin: 0 calc(0rem - 0.5rem); } }
  719. .container.programme .views section:not(:last-child) > .d-flex {
  720. padding: 0 0 2rem 0; }
  721. @media screen and (min-width: 768px) {
  722. .publications .views section,
  723. .bibliographie .views section,
  724. .interviews .views section {
  725. margin: 0 calc(0rem - 0.5rem); } }
  726. #block-colloque2024-submenu .is-active {
  727. color: white;
  728. background: #1d378eff; }
  729. #block-colloque2024-page-title {
  730. margin: 1.5rem auto; }
  731. @media screen and (min-width: 768px) {
  732. #block-colloque2024-page-title {
  733. margin: 0 auto 1.5rem auto; } }
  734. #info_prat_title {
  735. position: relative;
  736. color: #038788; }
  737. #info_prat_title::after {
  738. display: inline-flex;
  739. position: absolute;
  740. right: 0px;
  741. top: 0px;
  742. width: 50px;
  743. height: 50px;
  744. vertical-align: middle; }
  745. @media screen and (min-width: 768px) {
  746. #info_prat_title::after {
  747. right: -20px;
  748. top: 10px;
  749. width: 150px;
  750. height: 150px; } }
  751. .geolocation-map-wrapper {
  752. height: 400px; }
  753. .geolocation-map-wrapper .geolocation-map-container {
  754. height: inherit !important; }
  755. #moments h4, #moments h2 {
  756. color: #038788; }
  757. #moments .__wrapper .__title {
  758. margin: 0.5rem 0; }
  759. #moments .__wrap_side {
  760. margin-top: 0.5rem; }
  761. #moments .__wrap_content .__head {
  762. margin: 0.5rem 0; }
  763. #moments .__wrap_content .__head div > div {
  764. font-family: 'Marianneregular';
  765. font-size: 0.8rem;
  766. padding-right: 0.5rem; }
  767. #moments .__wrap_content .__head div > div:not(:first-child) {
  768. padding-left: 0.5rem; }
  769. #moments .__wrap_content .__content {
  770. max-height: calc(1.5rem * 12);
  771. overflow: hidden; }
  772. #moments .__wrap_content .__content.is_active {
  773. max-height: 100% !important; }
  774. @media screen and (min-width: 576px) {
  775. #moments .__wrap_content .__content {
  776. max-height: 100%; } }
  777. #moments .__wrap_content .more_link.is_active {
  778. display: none !important; }
  779. article.publications .__wrap_content .__head * {
  780. color: black; }
  781. article.publications .__wrap_content .__head .__auteur div {
  782. font-family: 'Mariannebold';
  783. font-size: 1.5rem; }
  784. article.publications .__wrap_content .__head .__titre span {
  785. font-family: 'Mariannebold_italic';
  786. font-size: 1.5rem; }
  787. article.publications .__wrap_content .__head .__info {
  788. margin: 1rem 0; }
  789. article.publications .__wrap_content .__head .__info div {
  790. font-family: 'Mariannebold';
  791. font-size: 1rem; }
  792. .container.les_intervenants {
  793. padding-top: 1.5rem; }
  794. .container.les_intervenants h2 {
  795. color: #038788; }
  796. @media screen and (min-width: 768px) {
  797. .container.les_intervenants {
  798. padding-top: 0; } }
  799. .container.les_intervenants .views-element-container {
  800. margin-top: 1rem; }
  801. @media screen and (min-width: 768px) {
  802. .container.les_intervenants .views-element-container {
  803. margin-top: 0rem; } }
  804. .container.les_intervenants .wrap-anchor-letter {
  805. margin-bottom: 3rem; }
  806. .container.les_intervenants .wrap-anchor-letter a {
  807. font-size: 1.5rem;
  808. font-family: 'Marianne';
  809. color: black; }
  810. .container.les_intervenants .letter-sort {
  811. font-size: 3rem;
  812. font-family: 'Marianne';
  813. color: black; }
  814. .container.les_intervenants section.row {
  815. margin-top: 2rem;
  816. margin-bottom: 6rem; }
  817. .participant_full .__wrap_content {
  818. margin: 3rem auto; }
  819. .participant_full .__publications,
  820. .participant_full .__bibliographie,
  821. .participant_full .__interviews {
  822. margin: 3rem auto; }
  823. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 h4, #block-colloque2024-views-block-bibliographie-node-intervenant-block-1 h4 {
  824. color: #038788; }
  825. .search section > div {
  826. width: 100%;
  827. display: flex;
  828. flex-wrap: wrap; }
  829. .search section > div h3 {
  830. width: 100%; }
  831. #block-colloque2024-local-tasks ul {
  832. display: flex;
  833. margin-top: 2rem;
  834. margin-bottom: 0;
  835. padding: 0; }
  836. #block-colloque2024-local-tasks ul li {
  837. margin: 0.5rem; }
  838. #toolbar-administration {
  839. z-index: 99999;
  840. position: fixed; }
  841. form.user-login-form {
  842. padding: 2rem;
  843. background: white;
  844. width: 100%;
  845. max-width: 300px;
  846. margin: auto; }
  847. form.user-login-form > div:not(:last-child) {
  848. margin-bottom: 2rem; }
  849. form.user-login-form > div .js-form-required {
  850. margin-bottom: 0;
  851. font-family: 'Marianneregular'; }
  852. form.user-login-form > div label {
  853. font-size: 0.9rem; }
  854. form.user-login-form > div input {
  855. border: 2px solid #1d378eff;
  856. border-radius: 10px;
  857. padding: 0.5rem;
  858. width: 100%; }
  859. form.user-login-form > div input:focus {
  860. border: 2px solid #b9a47eff;
  861. border-radius: 10px !important;
  862. padding: 0.5rem !important;
  863. outline: none !important; }
  864. form.user-login-form > div .description {
  865. font-size: 0.6rem;
  866. margin-top: 0.4rem;
  867. font-family: 'Mariannelight'; }
  868. form.user-login-form #edit-actions {
  869. display: flex; }
  870. form.user-login-form #edit-actions input {
  871. margin: auto;
  872. background: white; }
  873. form.user-login-form #edit-actions input:hover {
  874. box-shadow: none;
  875. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  876. form.user-login-form #edit-actions input:hover:hover {
  877. transform: scale(1.05);
  878. box-shadow: 0px 0px 13px 0px #038788;
  879. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  880. header {
  881. max-height: 125px; }
  882. header .row {
  883. background: white;
  884. max-height: inherit;
  885. border-bottom: 1px solid black;
  886. padding-left: 40px; }
  887. @media screen and (max-width: 300px) {
  888. header .row {
  889. padding-left: 20px;
  890. flex-wrap: nowrap; } }
  891. @media screen and (max-width: 550px) {
  892. header .row {
  893. flex-wrap: nowrap; } }
  894. header .row #block-colloque2024-logorepublique, header .row #block-colloque2024-logoepau {
  895. max-height: inherit; }
  896. header .row #block-colloque2024-logorepublique > div, header .row #block-colloque2024-logoepau > div {
  897. max-height: inherit; }
  898. header .row #block-colloque2024-logorepublique > div a, header .row #block-colloque2024-logoepau > div a {
  899. display: block;
  900. max-height: inherit; }
  901. header .row #block-colloque2024-logorepublique > div a img, header .row #block-colloque2024-logoepau > div a img {
  902. width: auto;
  903. height: 125px;
  904. padding-bottom: 0.5rem;
  905. padding-top: 0.5rem; }
  906. @media screen and (max-width: 300px) {
  907. header .row #block-colloque2024-logorepublique > div a img, header .row #block-colloque2024-logoepau > div a img {
  908. width: 100px;
  909. object-fit: contain; } }
  910. @media screen and (max-width: 550px) {
  911. header .row #block-colloque2024-logorepublique > div a img, header .row #block-colloque2024-logoepau > div a img {
  912. width: 100px;
  913. object-fit: contain; } }
  914. header .row #block-colloque2024-logorepublique.is-active, header .row #block-colloque2024-logoepau.is-active {
  915. z-index: 10000; }
  916. header .row #block-colloque2024-logoepau {
  917. margin-right: 2rem; }
  918. header .row #block-renderedsitesettingsblock-2 {
  919. width: 25%;
  920. border-left: 1px solid black;
  921. padding: 0;
  922. justify-content: end; }
  923. @media screen and (max-width: 300px) {
  924. header .row #block-renderedsitesettingsblock-2 {
  925. display: none; } }
  926. header .row #block-renderedsitesettingsblock-2 a {
  927. display: flex;
  928. margin: auto;
  929. margin-left: 1rem; }
  930. @media screen and (min-width: 1200px) {
  931. header .row #block-renderedsitesettingsblock-2 {
  932. display: flex; } }
  933. header .row #block-renderedsitesettingsblock-2 .site_setting_entity {
  934. display: flex;
  935. flex-direction: column; }
  936. header .row #block-renderedsitesettingsblock-2 .site_setting_entity h1 {
  937. order: 2;
  938. width: 60%;
  939. color: black;
  940. padding-right: 1rem;
  941. font-size: 1.6rem;
  942. text-align: left;
  943. margin: auto 0;
  944. line-height: 0.95; }
  945. header .row #block-renderedsitesettingsblock-2 .site_setting_entity .__info_colloque {
  946. width: fit-content;
  947. order: 1;
  948. height: auto;
  949. display: flex;
  950. flex-direction: row; }
  951. header .row #block-renderedsitesettingsblock-2 .site_setting_entity .__info_colloque > div {
  952. height: auto; }
  953. header .row #block-renderedsitesettingsblock-2 .site_setting_entity .__info_colloque > div:first-child {
  954. order: 2;
  955. color: black;
  956. white-space: nowrap;
  957. font-family: "Mariannebold";
  958. text-transform: uppercase;
  959. padding-left: 0.5rem; }
  960. header .row #block-renderedsitesettingsblock-2 .site_setting_entity .__info_colloque > div:last-child {
  961. order: 1;
  962. color: black;
  963. width: min-content;
  964. margin-bottom: 0;
  965. text-transform: uppercase; }
  966. header .row #block-colloque2024-mainnavigation {
  967. width: max-content; }
  968. header .row #block-colloque2024-mainnavigation .burger {
  969. padding-top: 0.25rem;
  970. z-index: 9999; }
  971. header .row #block-colloque2024-mainnavigation .nav-main {
  972. display: none; }
  973. @media screen and (min-width: 1200px) {
  974. header .row #block-colloque2024-mainnavigation .nav-main {
  975. display: block; }
  976. header .row #block-colloque2024-mainnavigation .nav-main ul {
  977. margin-bottom: 0;
  978. flex-wrap: wrap; }
  979. header .row #block-colloque2024-mainnavigation .nav-main ul li {
  980. margin: 0 0.5rem;
  981. font-size: 1.3rem !important; }
  982. header .row #block-colloque2024-mainnavigation .nav-main ul li:not(:last-child):after {
  983. display: inline-block;
  984. content: "|";
  985. margin-left: 0.5rem; } }
  986. header .row #block-colloque2024-mainnavigation .nav-main.is-active {
  987. display: block;
  988. position: fixed;
  989. width: 100vw;
  990. height: 100vh;
  991. left: 0;
  992. top: 0;
  993. background: white;
  994. z-index: 9999; }
  995. @media screen and (min-width: 576px) {
  996. header .row #block-colloque2024-mainnavigation .nav-main.is-active {
  997. height: auto; }
  998. header .row #block-colloque2024-mainnavigation .nav-main.is-active ul {
  999. margin: 130px 0 50px 0; }
  1000. header .row #block-colloque2024-mainnavigation .nav-main.is-active li {
  1001. font-size: 1.7rem;
  1002. line-height: 3rem;
  1003. padding: 0 15px; } }
  1004. header .row #block-colloque2024-mainnavigation .nav-main.is-active ul {
  1005. display: flex;
  1006. justify-content: center;
  1007. flex-direction: column;
  1008. height: 100%;
  1009. align-items: center; }
  1010. header .row #block-colloque2024-mainnavigation .nav-main.is-active ul li {
  1011. font-size: 1.5rem;
  1012. line-height: 3rem;
  1013. padding: 0 15px; }
  1014. @media screen and (min-width: 360px) {
  1015. header .row #block-colloque2024-mainnavigation .nav-main.is-active ul li {
  1016. width: 100%; }
  1017. header .row #block-colloque2024-mainnavigation .nav-main.is-active ul li::before {
  1018. display: inline-block;
  1019. content: " ";
  1020. width: 0%;
  1021. transition: width 1s ease;
  1022. height: 1px;
  1023. background: #038788; }
  1024. header .row #block-colloque2024-mainnavigation .nav-main.is-active ul li:hover::before {
  1025. width: 10%;
  1026. transition: all 1s ease; } }
  1027. #block-colloque2024-mainnavigation {
  1028. display: flex;
  1029. align-items: center;
  1030. justify-content: flex-end; }
  1031. #block-colloque2024-mainnavigation .burger {
  1032. display: block;
  1033. margin: auto; }
  1034. @media screen and (min-width: 1200px) {
  1035. #block-colloque2024-mainnavigation .burger {
  1036. display: none; } }
  1037. #block-colloque2024-mainnavigation .burger.is-active {
  1038. z-index: 999; }
  1039. #block-colloque2024-mainnavigation .nav-main {
  1040. display: none;
  1041. height: auto; }
  1042. @media screen and (min-width: 1200px) {
  1043. #block-colloque2024-mainnavigation .nav-main {
  1044. display: flex; } }
  1045. header.front #block-colloque2024-branding {
  1046. width: 21rem;
  1047. position: relative;
  1048. z-index: 9999; }
  1049. header.front #block-colloque2024-branding a {
  1050. max-height: 8rem !important; }
  1051. header.front #block-colloque2024-branding.is-active {
  1052. overflow: inherit; }
  1053. header.front #block-colloque2024-branding.is-active > div {
  1054. max-height: 115px; }
  1055. header.front #block-renderedsitesettingsblock-2 {
  1056. display: none; }
  1057. #block-colloque2024-submenu {
  1058. margin: 1rem auto; }
  1059. #block-colloque2024-submenu ul {
  1060. display: flex;
  1061. flex-wrap: wrap;
  1062. padding: 0;
  1063. margin: 0 -1rem; }
  1064. #block-colloque2024-submenu ul li {
  1065. padding: 1rem;
  1066. width: 100%;
  1067. text-align: center; }
  1068. @media screen and (min-width: 576px) {
  1069. #block-colloque2024-submenu ul li {
  1070. width: auto !important; } }
  1071. #block-colloque2024-submenu ul li a {
  1072. display: block;
  1073. padding: 0.5rem 1rem;
  1074. border: 1px solid #038788;
  1075. color: #038788;
  1076. background: white;
  1077. transition: color 0.3s ease, background 0.3s ease;
  1078. font-size: 2rem;
  1079. font-family: "Marianne";
  1080. letter-spacing: 0.05rem;
  1081. text-transform: uppercase; }
  1082. @media screen and (min-width: 768px) {
  1083. #block-colloque2024-submenu ul li a {
  1084. font-size: 2.5rem; } }
  1085. #block-colloque2024-submenu ul li a:hover {
  1086. text-decoration: none;
  1087. color: white;
  1088. background: #038788;
  1089. transition: all 0.3s ease; }
  1090. #views-exposed-form-publications-page-1,
  1091. #views-exposed-form-bibliographie-page-1 {
  1092. margin: 2rem 0;
  1093. display: flex;
  1094. flex-wrap: wrap; }
  1095. #views-exposed-form-publications-page-1 > div,
  1096. #views-exposed-form-bibliographie-page-1 > div {
  1097. width: 100%; }
  1098. @media screen and (min-width: 768px) {
  1099. #views-exposed-form-publications-page-1 > div,
  1100. #views-exposed-form-bibliographie-page-1 > div {
  1101. width: calc((100% / 2) - ( 0.5rem * 2)); } }
  1102. @media screen and (min-width: 992px) {
  1103. #views-exposed-form-publications-page-1 > div,
  1104. #views-exposed-form-bibliographie-page-1 > div {
  1105. width: auto; } }
  1106. @media screen and (min-width: 992px) {
  1107. #views-exposed-form-publications-page-1 > div,
  1108. #views-exposed-form-bibliographie-page-1 > div {
  1109. margin-right: 2rem; } }
  1110. #views-exposed-form-publications-page-1 > div:not(:last-child),
  1111. #views-exposed-form-bibliographie-page-1 > div:not(:last-child) {
  1112. margin-bottom: 1rem; }
  1113. @media screen and (min-width: 768px) {
  1114. #views-exposed-form-publications-page-1 > div:not(:last-child),
  1115. #views-exposed-form-bibliographie-page-1 > div:not(:last-child) {
  1116. margin-right: calc(0.5rem * 2); } }
  1117. @media screen and (min-width: 992px) {
  1118. #views-exposed-form-publications-page-1 > div:not(:last-child),
  1119. #views-exposed-form-bibliographie-page-1 > div:not(:last-child) {
  1120. margin-bottom: 0rem; } }
  1121. #views-exposed-form-publications-page-1 > div label,
  1122. #views-exposed-form-bibliographie-page-1 > div label {
  1123. min-width: max-content; }
  1124. #views-exposed-form-publications-page-1 > div .select-selected,
  1125. #views-exposed-form-bibliographie-page-1 > div .select-selected {
  1126. width: 100%;
  1127. min-width: 150px;
  1128. background-color: white;
  1129. color: #1d378eff !important; }
  1130. #views-exposed-form-publications-page-1 > div .select-selected::after,
  1131. #views-exposed-form-bibliographie-page-1 > div .select-selected::after {
  1132. position: absolute;
  1133. content: "";
  1134. top: 14px;
  1135. right: 10px;
  1136. width: 0;
  1137. height: 0;
  1138. border: 6px solid transparent;
  1139. border-color: #1d378eff transparent transparent transparent; }
  1140. #views-exposed-form-publications-page-1 > div .select-selected.select-arrow-active:after,
  1141. #views-exposed-form-bibliographie-page-1 > div .select-selected.select-arrow-active:after {
  1142. transform: rotate(180deg);
  1143. top: 7px; }
  1144. #views-exposed-form-publications-page-1 > div .select-items,
  1145. #views-exposed-form-bibliographie-page-1 > div .select-items {
  1146. position: absolute;
  1147. background-color: #1d378eff;
  1148. top: 100%;
  1149. right: 0;
  1150. z-index: 99;
  1151. min-width: 150px;
  1152. width: 100%; }
  1153. @media screen and (min-width: 768px) {
  1154. #views-exposed-form-publications-page-1 #edit-actions,
  1155. #views-exposed-form-bibliographie-page-1 #edit-actions {
  1156. display: flex;
  1157. flex-wrap: nowrap;
  1158. width: 100%; } }
  1159. @media screen and (min-width: 992px) {
  1160. #views-exposed-form-publications-page-1 #edit-actions,
  1161. #views-exposed-form-bibliographie-page-1 #edit-actions {
  1162. width: auto; } }
  1163. #views-exposed-form-publications-page-1 #edit-actions input,
  1164. #views-exposed-form-bibliographie-page-1 #edit-actions input {
  1165. width: 100%;
  1166. height: auto;
  1167. background: #1d378eff;
  1168. color: white;
  1169. border: none;
  1170. outline: none;
  1171. margin-top: 1rem;
  1172. padding: 0.5rem 1rem; }
  1173. @media screen and (min-width: 768px) {
  1174. #views-exposed-form-publications-page-1 #edit-actions input,
  1175. #views-exposed-form-bibliographie-page-1 #edit-actions input {
  1176. max-width: 50%;
  1177. margin-right: 1rem; } }
  1178. @media screen and (min-width: 992px) {
  1179. #views-exposed-form-publications-page-1 #edit-actions input,
  1180. #views-exposed-form-bibliographie-page-1 #edit-actions input {
  1181. max-width: 100%;
  1182. margin-right: 0;
  1183. margin-top: 0; } }
  1184. #views-exposed-form-publications-page-1 #edit-actions input:focus,
  1185. #views-exposed-form-bibliographie-page-1 #edit-actions input:focus {
  1186. border: none;
  1187. outline: none; }
  1188. @media screen and (min-width: 768px) {
  1189. #views-exposed-form-publications-page-1 #edit-actions input#edit-submit-publications,
  1190. #views-exposed-form-bibliographie-page-1 #edit-actions input#edit-submit-publications {
  1191. margin-right: calc(0.5rem * 2); } }
  1192. #views-exposed-form-publications-page-1 #edit-actions input.form-submit,
  1193. #views-exposed-form-bibliographie-page-1 #edit-actions input.form-submit {
  1194. margin-right: 0.75rem; }
  1195. #block-formulaireexposesearchpage-1 input {
  1196. width: 100%;
  1197. height: auto;
  1198. background: white;
  1199. color: #1d378eff;
  1200. border: none;
  1201. outline: none;
  1202. margin-top: 1rem;
  1203. padding: 0.5rem 1rem; }
  1204. @media screen and (min-width: 768px) {
  1205. #block-formulaireexposesearchpage-1 input {
  1206. max-width: 100%;
  1207. margin-right: 1rem; } }
  1208. @media screen and (min-width: 992px) {
  1209. #block-formulaireexposesearchpage-1 input {
  1210. max-width: 100%;
  1211. margin-right: 0;
  1212. margin-top: 0; } }
  1213. #block-formulaireexposesearchpage-1 input:focus {
  1214. border: none;
  1215. outline: none; }
  1216. @media screen and (min-width: 768px) {
  1217. #block-formulaireexposesearchpage-1 input#edit-submit-publications {
  1218. margin-right: calc(0.5rem * 2); } }
  1219. #block-formulaireexposesearchpage-1 input.form-submit {
  1220. background: #1d378eff;
  1221. color: white; }
  1222. #block-formulaireexposesearchpage-1 #views-exposed-form-search-page-1 {
  1223. display: flex;
  1224. flex-wrap: wrap;
  1225. margin: 2rem 0; }
  1226. #block-formulaireexposesearchpage-1 #views-exposed-form-search-page-1 > div {
  1227. width: 100%; }
  1228. @media screen and (min-width: 768px) {
  1229. #block-formulaireexposesearchpage-1 #views-exposed-form-search-page-1 > div:first-child {
  1230. width: 75%; }
  1231. #block-formulaireexposesearchpage-1 #views-exposed-form-search-page-1 > div:last-child {
  1232. width: 25%; } }
  1233. @media screen and (min-width: 992px) {
  1234. #block-formulaireexposesearchpage-1 #views-exposed-form-search-page-1 > div:first-child {
  1235. max-width: 350px; }
  1236. #block-formulaireexposesearchpage-1 #views-exposed-form-search-page-1 > div:last-child {
  1237. max-width: max-content; } }
  1238. .js-form-type-select {
  1239. position: relative;
  1240. font-family: Arial;
  1241. display: inline-flex;
  1242. align-items: baseline; }
  1243. .js-form-type-select label {
  1244. margin-right: 1rem; }
  1245. .js-form-type-select select {
  1246. display: none; }
  1247. .select-selected.select-arrow-active:after {
  1248. border-color: transparent transparent #1d378eff transparent;
  1249. top: 7px; }
  1250. .select-items div, .select-selected {
  1251. color: #ffffff;
  1252. padding: 8px 30px 8px 16px;
  1253. border: 1px solid transparent;
  1254. border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  1255. cursor: pointer; }
  1256. .select-hide {
  1257. display: none; }
  1258. .select-items div:hover, .same-as-selected {
  1259. background-color: rgba(0, 0, 0, 0.1); }
  1260. body {
  1261. overflow-x: hidden; }
  1262. .home .__img-hero {
  1263. display: none;
  1264. width: 100vw;
  1265. position: relative;
  1266. left: 50%;
  1267. right: 50%;
  1268. margin-left: -50vw;
  1269. margin-right: -50vw; }
  1270. .__img-hero {
  1271. height: 300px;
  1272. width: 100vw;
  1273. position: relative;
  1274. left: 50%;
  1275. right: 50%;
  1276. margin-left: -50vw;
  1277. margin-right: -50vw; }
  1278. .__img-hero img {
  1279. width: 100%;
  1280. height: 100%;
  1281. object-fit: cover; }
  1282. .participant_full {
  1283. flex-direction: column;
  1284. margin-top: 2rem; }
  1285. @media screen and (min-width: 992px) {
  1286. .participant_full {
  1287. margin-top: 0rem; } }
  1288. .participant_full .hero figure {
  1289. width: 100%; }
  1290. .participant_full .hero figure .__img > div {
  1291. margin: auto;
  1292. width: 250px;
  1293. height: 250px; }
  1294. .participant_full .hero figure .__img img {
  1295. border-radius: 100%;
  1296. width: 100%;
  1297. height: 100%;
  1298. object-fit: cover; }
  1299. .participant_full .hero figure figcaption {
  1300. align-self: center;
  1301. text-align: center;
  1302. margin: 2rem 0; }
  1303. @media screen and (min-width: 768px) {
  1304. .__img-hero {
  1305. height: 500px;
  1306. width: auto;
  1307. position: relative;
  1308. left: 0;
  1309. right: 0;
  1310. margin-left: auto;
  1311. margin-right: auto; } }
  1312. @media screen and (min-width: 768px) {
  1313. .participant_full .hero figure {
  1314. width: 100%; }
  1315. .participant_full .hero figure .__img {
  1316. margin-right: 2rem; }
  1317. .participant_full .hero figure .__img > div {
  1318. width: 300px;
  1319. height: 300px; }
  1320. .participant_full .hero figure .__img img {
  1321. border-radius: 100%;
  1322. width: 100%;
  1323. height: 100%;
  1324. object-fit: cover; }
  1325. .participant_full .hero figure figcaption {
  1326. align-self: center;
  1327. text-align: left; } }
  1328. .dl_ressource {
  1329. font-size: 0.9rem;
  1330. line-height: 1.2;
  1331. font-family: 'Marianneregular';
  1332. text-align: left;
  1333. margin: 1.5rem .25rem 0 .25rem; }
  1334. @media screen and (min-width: 768px) {
  1335. .dl_ressource {
  1336. margin-top: 1.5rem;
  1337. text-align: center;
  1338. font-size: 0.5rem; } }
  1339. .dl_ressource a::before {
  1340. content: "";
  1341. display: inline-block;
  1342. background-image: url("../images/douwnload.svg");
  1343. background-repeat: no-repeat;
  1344. background-size: contain;
  1345. width: 25px;
  1346. height: 25px;
  1347. vertical-align: middle;
  1348. margin-right: 0.5rem; }
  1349. @media screen and (min-width: 768px) {
  1350. .dl_ressource a::before {
  1351. margin-right: 0; } }
  1352. .dl_ressource a > span {
  1353. display: inline-block; }
  1354. @media screen and (min-width: 992px) {
  1355. .dl_ressource a > span {
  1356. display: inline-block !important;
  1357. margin-top: 0.5rem; } }
  1358. @media screen and (min-width: 768px) {
  1359. .dl_ressource a > span {
  1360. display: none; } }
  1361. .__rs > div {
  1362. width: 25px;
  1363. height: 25px;
  1364. margin: 0 0.25rem; }
  1365. @media screen and (min-width: 768px) {
  1366. .__rs:not(.moment) {
  1367. margin: auto; }
  1368. .__rs:not(.moment) > div {
  1369. margin: 0 auto 0.5rem auto; } }
  1370. @media screen and (min-width: 992px) {
  1371. .__rs.moment {
  1372. margin: auto; }
  1373. .__rs.moment > div {
  1374. margin: 0 auto 0.5rem auto; } }
  1375. .paragraph--type--role-de-l-intervenant {
  1376. margin-bottom: 5rem; }
  1377. .___title_inter {
  1378. border-bottom: 1px solid black;
  1379. margin-bottom: 2rem; }
  1380. /*! Flickity v2.2.1
  1381. https://flickity.metafizzy.co
  1382. ---------------------------------------------- */
  1383. .flickity-enabled {
  1384. position: relative; }
  1385. .flickity-enabled:focus {
  1386. outline: 0; }
  1387. .flickity-viewport {
  1388. overflow: hidden;
  1389. position: relative;
  1390. height: 100%; }
  1391. .flickity-slider {
  1392. position: absolute;
  1393. width: 100%;
  1394. height: 100%; }
  1395. .flickity-enabled.is-draggable {
  1396. -webkit-tap-highlight-color: transparent;
  1397. -webkit-user-select: none;
  1398. -moz-user-select: none;
  1399. -ms-user-select: none;
  1400. user-select: none; }
  1401. .flickity-enabled.is-draggable .flickity-viewport {
  1402. cursor: move;
  1403. cursor: -webkit-grab;
  1404. cursor: grab; }
  1405. .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  1406. cursor: -webkit-grabbing;
  1407. cursor: grabbing; }
  1408. .flickity-button {
  1409. position: absolute;
  1410. background: rgba(255, 255, 255, 0.75);
  1411. border: none;
  1412. color: #333; }
  1413. .flickity-button:hover {
  1414. background: #fff;
  1415. cursor: pointer; }
  1416. .flickity-button:focus {
  1417. outline: 0;
  1418. box-shadow: 0 0 0 5px #19f; }
  1419. .flickity-button:active {
  1420. opacity: .6; }
  1421. .flickity-button:disabled {
  1422. opacity: .3;
  1423. cursor: auto;
  1424. pointer-events: none; }
  1425. .flickity-button-icon {
  1426. fill: currentColor; }
  1427. .flickity-prev-next-button {
  1428. top: 50%;
  1429. width: 44px;
  1430. height: 44px;
  1431. border-radius: 50%;
  1432. transform: translateY(-50%); }
  1433. .flickity-prev-next-button.previous {
  1434. left: 10px; }
  1435. .flickity-prev-next-button.next {
  1436. right: 10px; }
  1437. .flickity-rtl .flickity-prev-next-button.previous {
  1438. left: auto;
  1439. right: 10px; }
  1440. .flickity-rtl .flickity-prev-next-button.next {
  1441. right: auto;
  1442. left: 10px; }
  1443. .flickity-prev-next-button .flickity-button-icon {
  1444. position: absolute;
  1445. left: 20%;
  1446. top: 20%;
  1447. width: 60%;
  1448. height: 60%; }
  1449. .flickity-page-dots {
  1450. position: absolute;
  1451. width: 100%;
  1452. bottom: -25px;
  1453. padding: 0;
  1454. margin: 0;
  1455. list-style: none;
  1456. text-align: center;
  1457. line-height: 1; }
  1458. .flickity-rtl .flickity-page-dots {
  1459. direction: rtl; }
  1460. .flickity-page-dots .dot {
  1461. display: inline-block;
  1462. width: 10px;
  1463. height: 10px;
  1464. margin: 0 8px;
  1465. background: #333;
  1466. border-radius: 50%;
  1467. opacity: .25;
  1468. cursor: pointer; }
  1469. .flickity-page-dots .dot.is-selected {
  1470. opacity: 1; }
  1471. .flickity-button {
  1472. background: transparent; }
  1473. .flickity-button:hover {
  1474. background: transparent; }
  1475. .flickity-button-icon {
  1476. fill: black; }
  1477. .flickity-button:disabled {
  1478. display: none; }
  1479. #block-colloque2024-views-block-slide-programme-block-1 .__slide article,
  1480. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article {
  1481. width: calc(100% - 30px);
  1482. height: 325px;
  1483. display: flex;
  1484. flex-direction: column;
  1485. margin: 3rem 0.5rem 1.5rem 0.5rem; }
  1486. @media screen and (min-width: 768px) {
  1487. #block-colloque2024-views-block-slide-programme-block-1 .__slide article,
  1488. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article {
  1489. width: calc(100% / 2 - 0.5rem * 2); } }
  1490. @media screen and (min-width: 992px) {
  1491. #block-colloque2024-views-block-slide-programme-block-1 .__slide article,
  1492. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article {
  1493. width: calc(100% / 3 - 0.5rem * 2); } }
  1494. @media screen and (min-width: 1200px) {
  1495. #block-colloque2024-views-block-slide-programme-block-1 .__slide article,
  1496. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article {
  1497. width: calc(100% / 4 - 0.5rem * 1); } }
  1498. #block-colloque2024-views-block-slide-programme-block-1 .__slide article a,
  1499. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article a {
  1500. width: 100%;
  1501. height: 100%;
  1502. background: white;
  1503. box-shadow: none;
  1504. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1505. #block-colloque2024-views-block-slide-programme-block-1 .__slide article a:hover,
  1506. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article a:hover {
  1507. transform: scale(1.05);
  1508. box-shadow: 0px 0px 13px 0px #038788;
  1509. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1510. #block-colloque2024-views-block-slide-programme-block-1 .__slide article a .__wrap,
  1511. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article a .__wrap {
  1512. background: white; }
  1513. #block-colloque2024-views-block-slide-programme-block-1 .__slide article.first > span,
  1514. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article.first > span {
  1515. font-family: "Mariannelight";
  1516. position: absolute;
  1517. top: -2.5rem;
  1518. width: max-content;
  1519. font-size: 1.2rem;
  1520. line-height: 1.2;
  1521. text-transform: uppercase; }
  1522. #block-colloque2024-views-block-slide-programme-block-1 .__slide article.first:not(:first-child)::before,
  1523. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article.first:not(:first-child)::before {
  1524. position: absolute;
  1525. display: block;
  1526. content: " ";
  1527. width: 1px;
  1528. height: calc(100% + 3rem);
  1529. margin: -2.5rem 0 0 0;
  1530. background: #b9a47eff;
  1531. left: -0.5rem;
  1532. top: 0; }
  1533. #block-colloque2024-views-block-gallerie-block-1 section:not(.wrap_head),
  1534. #block-colloque2024-views-block-slide-programme-block-1 section:not(.wrap_head),
  1535. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 section:not(.wrap_head),
  1536. #block-colloque2024-views-block-dernieres-publications-block-1 section:not(.wrap_head),
  1537. #block-colloque2024-views-block-slide-interviews-block-1 section:not(.wrap_head) {
  1538. margin: 1rem 0; }
  1539. #block-colloque2024-views-block-gallerie-block-1 .views section.wrap_head .head,
  1540. #block-colloque2024-views-block-slide-programme-block-1 .views section.wrap_head .head,
  1541. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .views section.wrap_head .head,
  1542. #block-colloque2024-views-block-dernieres-publications-block-1 .views section.wrap_head .head,
  1543. #block-colloque2024-views-block-slide-interviews-block-1 .views section.wrap_head .head {
  1544. display: flex;
  1545. flex-direction: row;
  1546. align-items: center;
  1547. position: relative; }
  1548. @media (max-width: 550px) {
  1549. #block-colloque2024-views-block-gallerie-block-1 .views section.wrap_head .head,
  1550. #block-colloque2024-views-block-slide-programme-block-1 .views section.wrap_head .head,
  1551. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .views section.wrap_head .head,
  1552. #block-colloque2024-views-block-dernieres-publications-block-1 .views section.wrap_head .head,
  1553. #block-colloque2024-views-block-slide-interviews-block-1 .views section.wrap_head .head {
  1554. flex-wrap: wrap; } }
  1555. #block-colloque2024-views-block-gallerie-block-1 .views section.wrap_head .head h3,
  1556. #block-colloque2024-views-block-slide-programme-block-1 .views section.wrap_head .head h3,
  1557. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .views section.wrap_head .head h3,
  1558. #block-colloque2024-views-block-dernieres-publications-block-1 .views section.wrap_head .head h3,
  1559. #block-colloque2024-views-block-slide-interviews-block-1 .views section.wrap_head .head h3 {
  1560. display: flex;
  1561. flex-direction: row;
  1562. align-items: center; }
  1563. #block-colloque2024-views-block-gallerie-block-1 .views section.wrap_head .head h3:after,
  1564. #block-colloque2024-views-block-slide-programme-block-1 .views section.wrap_head .head h3:after,
  1565. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .views section.wrap_head .head h3:after,
  1566. #block-colloque2024-views-block-dernieres-publications-block-1 .views section.wrap_head .head h3:after,
  1567. #block-colloque2024-views-block-slide-interviews-block-1 .views section.wrap_head .head h3:after {
  1568. display: block;
  1569. content: "";
  1570. max-width: fit-content;
  1571. width: 100%;
  1572. /* Étendre la ligne sur toute la largeur */
  1573. border-bottom: 1px solid #000;
  1574. /* Couleur et style de la ligne */ }
  1575. @media screen and (min-width: 576px) {
  1576. #block-colloque2024-views-block-gallerie-block-1 .views section .head,
  1577. #block-colloque2024-views-block-slide-programme-block-1 .views section .head,
  1578. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .views section .head,
  1579. #block-colloque2024-views-block-dernieres-publications-block-1 .views section .head,
  1580. #block-colloque2024-views-block-slide-interviews-block-1 .views section .head {
  1581. display: flex !important;
  1582. width: 100%;
  1583. justify-content: space-between;
  1584. align-items: center; } }
  1585. .paragraph--type--role-de-l-intervenant {
  1586. margin-bottom: 2rem; }
  1587. .paragraph--type--role-de-l-intervenant .__slide:after {
  1588. content: "flickity";
  1589. display: none; }
  1590. @media screen and (min-width: 768px) {
  1591. .paragraph--type--role-de-l-intervenant .__slide:after {
  1592. content: ""; } }
  1593. .paragraph--type--role-de-l-intervenant .__slide .flickity-viewport {
  1594. overflow: initial; }
  1595. .paragraph--type--role-de-l-intervenant .__slide .flickity-slider > div {
  1596. width: 70%;
  1597. padding: 0 0.5rem; }
  1598. @media screen and (min-width: 768px) {
  1599. .paragraph--type--role-de-l-intervenant .__slide .flickity-slider > div {
  1600. width: 100%; } }
  1601. .flickity-slider {
  1602. position: absolute;
  1603. width: 100%;
  1604. height: 100%;
  1605. margin-left: 10px; }
  1606. html.sr.js body div.dialog-off-canvas-main-canvas div.layout-container main#mainHome.d-flex.container.home div.layout-content div#content-ontop div div div div#block-colloque2024-views-block-slide-programme-block-1.views-element-container {
  1607. opacity: 1 !important; }
  1608. html.sr.js body div.dialog-off-canvas-main-canvas div.layout-container main#mainHome.d-flex.container.home div.layout-content div#content-ontop div div div article#txt_present {
  1609. opacity: 1 !important; }
  1610. section article.thumbnails.programme {
  1611. border: 1px solid #6f6d7dff;
  1612. width: calc(100% / 4 - 0.5rem * 2);
  1613. overflow: hidden; }
  1614. section article.thumbnails.programme:hover {
  1615. border: none;
  1616. box-shadow: none;
  1617. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1618. section article.thumbnails.programme:hover:hover {
  1619. transform: scale(1.05);
  1620. box-shadow: 0px 0px 13px 0px #038788;
  1621. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1622. section article.thumbnails.programme .d-flex {
  1623. color: #ff804d; }
  1624. section article.thumbnails.programme .__content span {
  1625. color: #038788 !important;
  1626. font-size: 0.8rem;
  1627. font-family: "Marianneregular_italic";
  1628. text-transform: none !important; }
  1629. section article.thumbnails.programme .__content span strong {
  1630. font-family: "Mariannebold_italic"; }
  1631. section > div:not(.__slide) article.thumbnails.programme a {
  1632. display: block;
  1633. width: 100%;
  1634. height: 100%;
  1635. background: white;
  1636. box-shadow: none;
  1637. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1638. section > div:not(.__slide) article.thumbnails.programme a:hover {
  1639. transform: scale(1.05);
  1640. box-shadow: 0px 0px 13px 0px #038788;
  1641. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1642. .thumbnails {
  1643. width: 100%;
  1644. height: auto;
  1645. background: white;
  1646. margin: calc(0.5rem) 0; }
  1647. @media screen and (min-width: 768px) {
  1648. .thumbnails {
  1649. margin: calc(0.5rem); } }
  1650. .thumbnails:not(.bibliographie):not(.programme) {
  1651. box-shadow: none;
  1652. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1653. .thumbnails:not(.bibliographie):not(.programme):hover {
  1654. transform: scale(1.05);
  1655. box-shadow: 0px 0px 13px 0px #038788;
  1656. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1657. .thumbnails figure {
  1658. height: 150px;
  1659. margin: 0; }
  1660. .thumbnails .__wrap {
  1661. padding: 1rem; }
  1662. .thumbnails .__wrap time,
  1663. .thumbnails .__wrap .type_moment {
  1664. font-family: "Marianneregular";
  1665. font-size: 0.8rem;
  1666. text-transform: uppercase; }
  1667. .thumbnails .__wrap > .d-flex {
  1668. margin-bottom: 0.5rem; }
  1669. @media screen and (min-width: 768px) {
  1670. .thumbnails.publications {
  1671. width: calc(100% / 2 - 0.5rem * 2); } }
  1672. @media screen and (min-width: 992px) {
  1673. .thumbnails.publications {
  1674. width: calc(100% / 3 - 0.5rem * 2); } }
  1675. @media screen and (min-width: 1200px) {
  1676. .thumbnails.publications {
  1677. width: calc(100% / 4 - 0.5rem * 2); } }
  1678. .thumbnails.publications .__media {
  1679. padding: 0.5rem 0 0.5rem 0.5rem; }
  1680. .thumbnails.publications .__media .__img {
  1681. width: 100px; }
  1682. .thumbnails.publications .__wrap {
  1683. padding: 0.5rem; }
  1684. .thumbnails.publications > div {
  1685. height: 100%; }
  1686. .thumbnails.publications div > * {
  1687. color: black; }
  1688. .thumbnails.publications a {
  1689. display: block;
  1690. height: 100%; }
  1691. .thumbnails.bibliographie {
  1692. background: white !important;
  1693. padding: 0.5rem; }
  1694. .thumbnails.bibliographie.link_ext {
  1695. box-shadow: none;
  1696. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1697. .thumbnails.bibliographie.link_ext:hover {
  1698. transform: scale(1.05);
  1699. box-shadow: 0px 0px 13px 0px #038788;
  1700. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1701. @media screen and (min-width: 768px) {
  1702. .thumbnails.bibliographie {
  1703. width: calc(100% / 2 - 0.5rem * 2); } }
  1704. @media screen and (min-width: 992px) {
  1705. .thumbnails.bibliographie {
  1706. width: calc(100% / 3 - 0.5rem * 2); } }
  1707. @media screen and (min-width: 1200px) {
  1708. .thumbnails.bibliographie {
  1709. width: calc(100% / 4 - 0.5rem * 2); } }
  1710. .thumbnails.bibliographie > div * {
  1711. color: black; }
  1712. .thumbnails.bibliographie > div *.__auteur * {
  1713. font-size: 1.4rem; }
  1714. .thumbnails.bibliographie > div *.__body {
  1715. margin: 1rem 0; }
  1716. .thumbnails.bibliographie a {
  1717. text-decoration: underline;
  1718. color: #038788; }
  1719. @media screen and (min-width: 768px) {
  1720. .thumbnails.interviews {
  1721. width: calc(100% / 2 - 0.5rem * 2); } }
  1722. @media screen and (min-width: 992px) {
  1723. .thumbnails.interviews {
  1724. width: calc(100% / 3 - 0.5rem * 2); } }
  1725. @media screen and (min-width: 1200px) {
  1726. .thumbnails.interviews {
  1727. width: calc(100% / 4 - 0.5rem * 2); } }
  1728. .thumbnails.interviews .__media {
  1729. padding: 0.5rem 0 0.5rem 0.5rem;
  1730. max-width: 50%; }
  1731. .thumbnails.interviews .__media .__img {
  1732. width: 100px; }
  1733. .thumbnails.interviews .__wrap {
  1734. padding: 0.5rem; }
  1735. .thumbnails.interviews > div {
  1736. height: 100%; }
  1737. .thumbnails.interviews div > * {
  1738. color: black; }
  1739. .thumbnails.interviews a {
  1740. display: block;
  1741. height: 100%; }
  1742. @media screen and (min-width: 768px) {
  1743. .container.programme .thumbnails {
  1744. width: calc(100% / 2 - 0.5rem * 2);
  1745. margin: 0.5rem; } }
  1746. @media screen and (min-width: 992px) {
  1747. .container.programme .thumbnails {
  1748. width: calc(100% / 3 - 0.5rem * 2); } }
  1749. .container.programme .thumbnails .inter {
  1750. margin-top: 0.5rem; }
  1751. .container.programme .thumbnails .inter span {
  1752. color: #038788;
  1753. font-size: 0.8rem;
  1754. font-family: "Marianneregular_italic";
  1755. text-transform: none !important; }
  1756. .container.programme .thumbnails .inter span strong {
  1757. font-family: "Mariannebold_italic"; }
  1758. .__ressources .__publications .publications .__media {
  1759. padding: 0.5rem 0 0.5rem 0.5rem; }
  1760. .__ressources .__publications .publications .__wrap {
  1761. padding: 0.5rem; }
  1762. @media screen and (min-width: 768px) {
  1763. .__ressources .__publications .publications {
  1764. width: calc(100% / 2 - 0.5rem * 2); } }
  1765. @media screen and (min-width: 992px) {
  1766. .__ressources .__publications .publications {
  1767. width: calc(100% / 2 - 0.5rem * 2); } }
  1768. @media screen and (min-width: 1200px) {
  1769. .__ressources .__publications .publications {
  1770. width: calc(100% / 2 - 0.5rem * 2); } }
  1771. .__ressources .__bibliographie .thumbnails {
  1772. background: transparent; }
  1773. .__ressources .__bibliographie .thumbnails a > div div,
  1774. .__ressources .__bibliographie .thumbnails a > div span,
  1775. .__ressources .__bibliographie .thumbnails a > div p {
  1776. display: inline;
  1777. background: white; }
  1778. @media screen and (min-width: 768px) {
  1779. .__ressources .__bibliographie .thumbnails {
  1780. width: calc(100% / 2 - 0.5rem * 2); } }
  1781. @media screen and (min-width: 992px) {
  1782. .__ressources .__bibliographie .thumbnails {
  1783. width: calc(100% / 2 - 0.5rem * 2); } }
  1784. @media screen and (min-width: 1200px) {
  1785. .__ressources .__bibliographie .thumbnails {
  1786. width: calc(100% / 2 - 0.5rem * 2); } }
  1787. .__ressources .__interviews .interviews .__media {
  1788. padding: 0.5rem 0 0.5rem 0.5rem; }
  1789. .__ressources .__interviews .interviews .__wrap {
  1790. padding: 0.5rem; }
  1791. @media screen and (min-width: 768px) {
  1792. .__ressources .__interviews .interviews {
  1793. width: calc(100% / 2 - 0.5rem * 2); } }
  1794. @media screen and (min-width: 992px) {
  1795. .__ressources .__interviews .interviews {
  1796. width: calc(100% / 2 - 0.5rem * 2); } }
  1797. @media screen and (min-width: 1200px) {
  1798. .__ressources .__interviews .interviews {
  1799. width: calc(100% / 2 - 0.5rem * 2); } }
  1800. .thumbnails_participants figure > div {
  1801. width: 100px;
  1802. height: 100px;
  1803. margin-left: 0.5rem; }
  1804. .thumbnails_participants figure > div img {
  1805. border-radius: 50%;
  1806. width: 100%;
  1807. height: 100%;
  1808. object-fit: cover; }
  1809. .thumbnails_participants figure figcaption {
  1810. border: 1px solid #038788; }
  1811. .thumbnails_participants figure figcaption.__info {
  1812. padding: 4rem 0.5rem 0.5rem 0.5rem;
  1813. margin-top: -3rem;
  1814. background: white; }
  1815. .thumbnails_participants figure figcaption.__info .__name {
  1816. text-transform: uppercase;
  1817. color: black !important; }
  1818. .__ressources h4 {
  1819. text-transform: uppercase;
  1820. margin: 1rem 0;
  1821. font-family: 'Marianne';
  1822. font-size: 2rem;
  1823. letter-spacing: 0.1rem;
  1824. color: #1d378eff; }
  1825. @media screen and (min-width: 768px) {
  1826. .__ressources > section > div {
  1827. margin: 0 calc(0rem - 0.5rem) !important; } }
  1828. .__ressources section .row {
  1829. padding: 0rem 0rem 2rem 0rem; }
  1830. .__ressources .views-element-container {
  1831. margin: 4rem auto; }
  1832. .more_link {
  1833. padding: 0rem 1rem 0.2rem 1rem;
  1834. background: white;
  1835. border: 1px solid #038788;
  1836. border-radius: 0; }
  1837. .more_link a {
  1838. font-family: 'Mariannebold';
  1839. font-size: 0.6rem;
  1840. color: #038788; }
  1841. .more_link a span {
  1842. padding-left: 0.5rem; }
  1843. #block-colloque2024-views-block-slide-programme-block-1 .more_link,
  1844. #block-colloque2024-views-block-dernieres-publications-block-1 .more_link {
  1845. margin: 0.5rem 0;
  1846. width: fit-content; }
  1847. @media screen and (min-width: 576px) {
  1848. #block-colloque2024-views-block-slide-programme-block-1 .more_link,
  1849. #block-colloque2024-views-block-dernieres-publications-block-1 .more_link {
  1850. margin: 0; } }
  1851. .link_live {
  1852. margin: auto;
  1853. width: 100%; }
  1854. .link_live > div {
  1855. margin: 4rem auto; }
  1856. .link_live > div a {
  1857. padding: 0.7rem 2rem;
  1858. background: #1d378eff;
  1859. color: white !important;
  1860. font-family: 'Marianneregular';
  1861. text-transform: uppercase;
  1862. font-size: 1rem; }
  1863. .link_live > div a:hover {
  1864. box-shadow: none;
  1865. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1866. .link_live > div a:hover:hover {
  1867. transform: scale(1.05);
  1868. box-shadow: 0px 0px 13px 0px #038788;
  1869. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1870. @media screen and (min-width: 576px) {
  1871. .link_live > div a {
  1872. font-size: 1rem;
  1873. padding: 0.7rem 4rem; } }
  1874. footer {
  1875. background: white;
  1876. border-top: 1px solid black;
  1877. width: 100%;
  1878. height: auto;
  1879. margin-top: 2rem; }
  1880. footer .container {
  1881. max-width: 90vw; }
  1882. footer > .d-flex > div {
  1883. margin-bottom: 1.5rem;
  1884. padding-top: 2rem;
  1885. padding-left: 2rem !important;
  1886. padding-right: 2rem !important; }
  1887. footer > .d-flex > div:not(:last-of-type) {
  1888. border-right: 1px solid black; }
  1889. @media screen and (min-width: 300px) {
  1890. footer > .d-flex > div:not(:last-of-type) {
  1891. border-right: none; } }
  1892. @media (min-width: 992px) {
  1893. footer .d-lg-block {
  1894. display: block !important; } }
  1895. footer #block-renderedsitesettingsblock-5 {
  1896. max-width: 30%; }
  1897. @media screen and (max-width: 550px) {
  1898. footer #block-renderedsitesettingsblock-5 {
  1899. max-width: 80%; } }
  1900. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid {
  1901. display: grid;
  1902. grid-template-columns: 1fr 1fr; }
  1903. @media (max-width: 992px) {
  1904. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid {
  1905. display: flex;
  1906. flex-direction: row;
  1907. flex-wrap: wrap; } }
  1908. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid div:nth-of-type(1) {
  1909. grid-column: 1;
  1910. grid-row: 1 / span 3; }
  1911. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid div:nth-of-type(2) {
  1912. grid-column: 2;
  1913. grid-row: 1; }
  1914. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid div:nth-of-type(3) {
  1915. grid-column: 2;
  1916. grid-row: 2;
  1917. margin-left: 1rem; }
  1918. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid div:nth-of-type(3) a img {
  1919. width: 90%;
  1920. margin: auto; }
  1921. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid div:nth-of-type(4) {
  1922. grid-column: 2;
  1923. grid-row: 3;
  1924. margin-top: 2rem;
  1925. margin-left: 1rem; }
  1926. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid div:nth-of-type(4) a img {
  1927. width: 60%; }
  1928. @media screen and (max-width: 300px) {
  1929. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid {
  1930. display: flex;
  1931. flex-direction: column; } }
  1932. @media (min-width: 992px) {
  1933. footer #block-renderedsitesettingsblock-4 .d-lg-block {
  1934. display: block !important; } }
  1935. footer #block-renderedsitesettingsblock-4 .site_setting_entity > div {
  1936. margin: 1rem 0; }
  1937. footer #block-renderedsitesettingsblock-4 .site_setting_entity > div:first-child::after, footer #block-renderedsitesettingsblock-4 .site_setting_entity > div:first-child:before {
  1938. margin: 0.5rem 0;
  1939. display: block;
  1940. content: " ";
  1941. width: 1rem;
  1942. height: 1px;
  1943. background: black; }
  1944. footer #block-renderedsitesettingsblock-4 .site_setting_entity .sub-title {
  1945. font-size: 1rem; }
  1946. footer #block-renderedsitesettingsblock-4 .site_setting_entity .d-flex {
  1947. margin-top: 1rem; }
  1948. footer #block-renderedsitesettingsblock-4 .site_setting_entity .d-flex > div {
  1949. width: 30px;
  1950. margin-right: 1rem; }
  1951. footer .site_setting_entity img {
  1952. height: auto; }
  1953. footer > div {
  1954. display: flex;
  1955. flex-wrap: nowrap; }
  1956. footer > div .__slide .flickity-slider > div {
  1957. width: max-content;
  1958. margin: 0 1rem; }
  1959. footer > div .__slide .flickity-slider > div img {
  1960. width: auto !important;
  1961. height: 100px;
  1962. max-width: 70px;
  1963. object-fit: contain; }
  1964. footer #block-renderedsitesettingsblock-3 {
  1965. display: none; }
  1966. .leaflet-popup-content p {
  1967. font-size: 0.9rem;
  1968. line-height: 1.5;
  1969. font-family: 'Marianneregular'; }
  1970. .leaflet-popup-content p strong {
  1971. color: #1d378eff;
  1972. line-height: 2; }
  1973. .medias .paragraph--type--images {
  1974. width: 100%; }
  1975. .medias .paragraph--type--video {
  1976. margin: 4rem 0; }
  1977. .medias .paragraph--type--video > div {
  1978. font-family: "Marianne";
  1979. font-size: 2rem;
  1980. line-height: normal;
  1981. text-align: center;
  1982. margin-bottom: 1rem;
  1983. text-transform: uppercase; }
  1984. @media screen and (min-width: 768px) {
  1985. .medias .paragraph--type--video > div {
  1986. text-align: left; } }
  1987. .video-embed-field-provider-youtube.video-embed-field-responsive-video {
  1988. display: flex; }
  1989. .no-flexbox .box {
  1990. color: red; }
  1991. .flexbox .box {
  1992. color: green; }
  1993. article img,
  1994. .side_notes img {
  1995. width: 100%;
  1996. height: 100%;
  1997. object-fit: cover; }
  1998. .layout-content {
  1999. width: 100%; }
  2000. #presentation .__wrapper .__wrap_side {
  2001. position: inherit; }
  2002. @media screen and (min-width: 768px) {
  2003. #presentation .__wrapper .__wrap_side {
  2004. position: relative; } }
  2005. #presentation .__wrapper .__wrap_side .notes > div {
  2006. position: absolute;
  2007. margin-top: 2rem; }
  2008. @media screen and (min-width: 768px) {
  2009. #presentation .__wrapper .__wrap_side .notes > div {
  2010. margin-top: -2rem; } }
  2011. #presentation .__wrapper .__wrap_side .notes > div > div {
  2012. background: white;
  2013. padding: 0.5rem; }
  2014. #presentation .__wrapper .__wrap_side .notes > div > div p {
  2015. font-family: 'cormorantBold';
  2016. margin: 0;
  2017. color: #1d378eff; }
  2018. #presentation .__wrapper .__wrap_side .notes .close {
  2019. cursor: pointer;
  2020. background: #1d378eff;
  2021. position: absolute;
  2022. top: -12px;
  2023. left: -15px;
  2024. width: 30px;
  2025. height: 27px; }
  2026. #presentation .__wrapper .__wrap_side .notes .close::after {
  2027. content: "+";
  2028. color: white;
  2029. display: block;
  2030. margin: auto;
  2031. text-align: center;
  2032. transform: rotate(45deg);
  2033. margin-top: -6px; }
  2034. .side_notes {
  2035. position: absolute;
  2036. width: calc(100% - 30px);
  2037. left: 30px;
  2038. width: calc(100% - 45px); }
  2039. @media screen and (min-width: 768px) {
  2040. .side_notes {
  2041. margin-top: -3rem; } }
  2042. .side_notes .wrap {
  2043. position: relative;
  2044. width: max-content; }
  2045. .side_notes .wrap .__hero {
  2046. margin: 0 !important;
  2047. height: 200px;
  2048. max-width: 300px; }
  2049. .side_notes .wrap .__hero .__img {
  2050. height: 200px; }
  2051. .side_notes .wrap .__hero .__img img {
  2052. width: auto;
  2053. height: 100%; }
  2054. .side_notes .wrap .__head {
  2055. background: white;
  2056. padding: 0.5rem;
  2057. width: max-content;
  2058. min-width: 300px; }
  2059. .side_notes .wrap .__head > * {
  2060. font-family: 'cormorantBold';
  2061. color: #1d378eff;
  2062. display: inline; }
  2063. .side_notes .wrap .thumbnails.bibliographie {
  2064. width: 100%; }
  2065. .side_notes .close {
  2066. cursor: pointer;
  2067. background: #1d378eff;
  2068. position: absolute;
  2069. top: -12px;
  2070. left: -15px;
  2071. width: 30px;
  2072. height: 27px; }
  2073. .side_notes .close::after {
  2074. content: "+";
  2075. color: white;
  2076. display: block;
  2077. margin: auto;
  2078. text-align: center;
  2079. transform: rotate(45deg); }
  2080. .side_notes * {
  2081. margin: 0 0 0 0;
  2082. padding: 0;
  2083. flex: 100%;
  2084. max-width: 100%; }
  2085. #tarteaucitronRoot #tarteaucitronDisclaimerAlert,
  2086. #tarteaucitronRoot #tarteaucitronPersonalize,
  2087. #tarteaucitronRoot #tarteaucitronCloseAlert,
  2088. #tarteaucitronRoot #tarteaucitronPrivacyUrl,
  2089. #tarteaucitronRoot #tarteaucitronInfo,
  2090. #tarteaucitronRoot .tarteaucitronH1,
  2091. #tarteaucitronRoot .tarteaucitronH2,
  2092. #tarteaucitronRoot button,
  2093. #tarteaucitronRoot li span,
  2094. #tarteaucitronRoot li a {
  2095. font-family: "truenoregular" !important; }
  2096. .__img-hero,
  2097. .participant_full .__img,
  2098. .participant_full figcaption,
  2099. .home #txt_present, article#presentation,
  2100. #block-shadow_participantsviews-block-slide-programme-block-1,
  2101. #block-shadow_participantsviews-block-dernieres-publications-block-1,
  2102. .__ressources > *,
  2103. article#presentation p,
  2104. .letter-sort,
  2105. .participant_full .content > *,
  2106. .programme.container,
  2107. .programme .thumbnails,
  2108. .views.__publications .thumbnails,
  2109. .les_intervenants .thumbnails_participants,
  2110. #moments .__title,
  2111. #moments .__wrapper,
  2112. #moments .__wrap_content .__content > *,
  2113. #moments .__wrap_side {
  2114. visibility: hidden; }