index.css 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379
  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 (max-width: 576px) {
  480. #txt_present {
  481. margin-bottom: 0; } }
  482. @media screen and (min-width: 992px) {
  483. #txt_present {
  484. margin: 5rem 0; } }
  485. #txt_present * {
  486. color: black; }
  487. #txt_present > div {
  488. min-width: 80% !important; }
  489. #txt_present .paragraph--type--video {
  490. margin-top: 5rem; }
  491. #txt_present .paragraph--type--video div {
  492. font-family: "Mariannebold";
  493. color: #038788;
  494. font-size: 2.5rem;
  495. line-height: 2.3rem;
  496. text-transform: none;
  497. margin-bottom: 2rem;
  498. text-align: left;
  499. margin-bottom: 5rem; }
  500. @media screen and (max-width: 576px) {
  501. #txt_present .paragraph--type--video {
  502. margin: 3rem 0; } }
  503. #txt_present .__title-present h2 {
  504. font-size: 1.9rem;
  505. font-family: "Marianneregular";
  506. line-height: normal; }
  507. #txt_present .__sub-title-present p {
  508. font-family: "Marianneregular_italic";
  509. font-size: 0.9rem;
  510. line-height: 1.3rem; }
  511. #txt_present .__body-present p {
  512. font-family: "Mariannelight";
  513. font-size: 1.5rem;
  514. line-height: 1.8rem; }
  515. #txt_present .more_link {
  516. padding: 0rem 1rem 0.2rem 1rem;
  517. background: white;
  518. margin: auto; }
  519. #txt_present .more_link a {
  520. font-size: 0.7rem;
  521. color: #038788; }
  522. #block-colloque2024-views-block-dernieres-publications-block-1 .views section:not(.wrap_head),
  523. #block-colloque2024-views-block-slide-interviews-block-1 .views section:not(.wrap_head) {
  524. margin: 1rem 0; }
  525. @media screen and (min-width: 768px) {
  526. #block-colloque2024-views-block-dernieres-publications-block-1 .views section:not(.wrap_head),
  527. #block-colloque2024-views-block-slide-interviews-block-1 .views section:not(.wrap_head) {
  528. margin: 1rem calc(0rem - 0.5rem); } }
  529. #block-colloque2024-views-block-gallerie-block-1 section:not(.wrap_head) {
  530. display: flex;
  531. flex-wrap: wrap;
  532. margin: 0 -1rem !important; }
  533. #block-colloque2024-views-block-gallerie-block-1 section:not(.wrap_head) figure {
  534. padding: 1rem;
  535. margin: 0;
  536. width: 100%;
  537. max-height: 400px; }
  538. @media screen and (min-width: 768px) {
  539. #block-colloque2024-views-block-gallerie-block-1 section:not(.wrap_head) figure {
  540. width: calc(100% / 3);
  541. max-height: 300px; } }
  542. @media screen and (min-width: 1024px) {
  543. #block-colloque2024-views-block-gallerie-block-1 section:not(.wrap_head) figure {
  544. width: calc(100% / 6);
  545. max-height: 200px; } }
  546. #block-colloque2024-views-block-gallerie-block-1 section:not(.wrap_head) figure img {
  547. width: 100%;
  548. height: 100%;
  549. object-fit: cover; }
  550. #block-colloque2024-views-block-gallerie-block-1 .pager {
  551. text-align: center;
  552. margin: 2rem; }
  553. #block-colloque2024-views-block-gallerie-block-1 .pager .wrap--btn a {
  554. border: 1px solid #038788;
  555. box-shadow: none;
  556. transition: 0.3s transform ease, 0.3s box-shadow ease;
  557. background: white;
  558. width: fit-content;
  559. margin: auto;
  560. padding: 0.5rem 1rem;
  561. font-size: 12px;
  562. display: block;
  563. font-family: "Mariannebold";
  564. color: #038788; }
  565. #block-colloque2024-views-block-gallerie-block-1 .pager .wrap--btn a:hover {
  566. transform: scale(1.05);
  567. box-shadow: 0px 0px 13px 0px #038788;
  568. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  569. .lightbox {
  570. position: fixed !important;
  571. top: 50% !important;
  572. transform: translateY(-50%) !important; }
  573. .lb-dataContainer {
  574. width: 100%;
  575. background: white; }
  576. .lb-dataContainer .lb-details {
  577. width: 100%; }
  578. .lb-dataContainer span {
  579. display: block;
  580. text-align: center;
  581. color: black; }
  582. .lb-dataContainer .lb-number {
  583. font-family: "Mariannebold";
  584. padding-bottom: 0; }
  585. #block-colloque2024-views-block-gallerie-block-1,
  586. #block-colloque2024-views-block-slide-programme-block-1,
  587. #block-colloque2024-views-block-dernieres-publications-block-1,
  588. #block-colloque2024-views-block-slide-interviews-block-1 {
  589. margin: 2rem 0; }
  590. @media screen and (min-width: 992px) {
  591. #block-colloque2024-views-block-gallerie-block-1,
  592. #block-colloque2024-views-block-slide-programme-block-1,
  593. #block-colloque2024-views-block-dernieres-publications-block-1,
  594. #block-colloque2024-views-block-slide-interviews-block-1 {
  595. margin: 5rem 0; } }
  596. #block-colloque2024-views-block-gallerie-block-1 h3,
  597. #block-colloque2024-views-block-slide-programme-block-1 h3,
  598. #block-colloque2024-views-block-dernieres-publications-block-1 h3,
  599. #block-colloque2024-views-block-slide-interviews-block-1 h3 {
  600. margin: 0;
  601. font-family: "Mariannebold";
  602. font-size: 2.5rem;
  603. letter-spacing: 0.1rem;
  604. color: #038788; }
  605. #block-colloque2024-views-block-slide-programme-block-1 h3::after {
  606. display: inline-flex;
  607. width: 60px;
  608. height: 60px;
  609. vertical-align: middle;
  610. margin-left: 20px; }
  611. @media screen and (max-width: 576px) {
  612. #block-colloque2024-views-block-slide-programme-block-1 {
  613. margin-top: 0; } }
  614. #mainHome {
  615. max-width: 100vw;
  616. margin: 0;
  617. display: flex; }
  618. #mainHome .layout-content {
  619. margin: auto;
  620. max-width: 1140px; }
  621. #block-colloque2024-renderedsitesettingsblock-6 {
  622. display: flex;
  623. margin: auto; }
  624. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity {
  625. display: grid;
  626. grid-template-columns: repeat(7, 1fr);
  627. margin: auto; }
  628. @media screen and (max-width: 550px) {
  629. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity {
  630. display: flex;
  631. flex-direction: column; } }
  632. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(1) {
  633. font-size: 7rem;
  634. font-family: 'Mariannebold';
  635. line-height: 95%;
  636. grid-column: 1 / span 5;
  637. grid-row: 2;
  638. margin-bottom: 2rem; }
  639. @media screen and (max-width: 550px) {
  640. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(1) {
  641. font-size: 4.5rem;
  642. order: 3; } }
  643. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(2) {
  644. grid-column: 1 / 4;
  645. grid-row: 3;
  646. font-size: 2.5rem; }
  647. @media screen and (max-width: 550px) {
  648. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(2) {
  649. font-size: 1.5rem;
  650. order: 4; } }
  651. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(4) {
  652. text-transform: uppercase;
  653. font-family: 'Mariannebold';
  654. font-size: 3.5rem;
  655. grid-column: 5 / span 7;
  656. grid-row: 3; }
  657. @media screen and (max-width: 550px) {
  658. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(4) {
  659. font-size: 1.5rem;
  660. order: 2; } }
  661. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(3) {
  662. text-transform: uppercase;
  663. grid-column: 5 / span 7;
  664. grid-row: 1;
  665. font-size: 2rem; }
  666. @media screen and (max-width: 550px) {
  667. #block-colloque2024-renderedsitesettingsblock-6 .site_setting_entity div:nth-of-type(3) {
  668. font-size: 1.5rem;
  669. order: 1; } }
  670. #block-colloque2024-views-block-slide-interviews-block-1 {
  671. display: none; }
  672. #block-colloque2024-views-block-gallerie-block-1 {
  673. display: none; }
  674. #block-colloque2024-views-block-dernieres-publications-block-1 {
  675. display: none; }
  676. #presentation {
  677. margin-top: 0.5rem; }
  678. #presentation .__title h2 {
  679. color: #038788 !important; }
  680. @media screen and (min-width: 768px) {
  681. #presentation .__title {
  682. margin: 1rem 0; } }
  683. @media screen and (min-width: 992px) {
  684. #presentation .__title {
  685. margin: 2rem 0; } }
  686. #presentation .__wrapper {
  687. margin-top: 1rem; }
  688. #presentation.main {
  689. max-width: 100vw;
  690. margin: 0;
  691. display: flex; }
  692. .layout {
  693. display: flex;
  694. flex-direction: row; }
  695. .layout #aside-animated {
  696. display: flex;
  697. z-index: -1;
  698. position: absolute;
  699. width: 25%;
  700. top: 0;
  701. left: 0;
  702. margin: auto;
  703. padding: auto; }
  704. .layout #aside-animated svg {
  705. margin: auto; }
  706. .container.programme {
  707. padding-top: 1.5rem; }
  708. @media screen and (min-width: 768px) {
  709. .container.programme {
  710. padding-top: 0rem; } }
  711. .container.programme h2 {
  712. position: relative;
  713. color: #038788; }
  714. .container.programme h2::after {
  715. display: inline-flex;
  716. position: absolute;
  717. right: 0;
  718. width: 100px;
  719. height: 100px;
  720. vertical-align: middle; }
  721. @media screen and (min-width: 768px) {
  722. .container.programme h2::after {
  723. width: 150px;
  724. height: 150px; } }
  725. .container.programme h3 {
  726. font-size: 1.5rem;
  727. font-family: 'Mariannelight';
  728. color: black;
  729. text-transform: uppercase; }
  730. .container.programme .views section .row .__wrap_side {
  731. margin: 0 0 1rem 0; }
  732. @media screen and (min-width: 768px) {
  733. .container.programme .views section .row .__wrap_side {
  734. margin: 0.5rem 0 0rem 0; } }
  735. @media screen and (min-width: 768px) {
  736. .container.programme .views section .row > div:not(.__wrap_side) {
  737. padding-left: 0;
  738. margin: 0 calc(0rem - 0.5rem); } }
  739. .container.programme .views section:not(:last-child) > .d-flex {
  740. padding: 0 0 2rem 0; }
  741. @media screen and (min-width: 768px) {
  742. .publications .views section,
  743. .bibliographie .views section,
  744. .interviews .views section {
  745. margin: 0 calc(0rem - 0.5rem); } }
  746. #block-colloque2024-submenu .is-active {
  747. color: white;
  748. background: #1d378eff; }
  749. #block-colloque2024-page-title {
  750. margin: 1.5rem auto; }
  751. @media screen and (min-width: 768px) {
  752. #block-colloque2024-page-title {
  753. margin: 0 auto 1.5rem auto; } }
  754. #info_prat_title {
  755. position: relative;
  756. color: #038788; }
  757. #info_prat_title::after {
  758. display: inline-flex;
  759. position: absolute;
  760. right: 0px;
  761. top: 0px;
  762. width: 50px;
  763. height: 50px;
  764. vertical-align: middle; }
  765. @media screen and (min-width: 768px) {
  766. #info_prat_title::after {
  767. right: -20px;
  768. top: 10px;
  769. width: 150px;
  770. height: 150px; } }
  771. .geolocation-map-wrapper {
  772. height: 400px; }
  773. .geolocation-map-wrapper .geolocation-map-container {
  774. height: inherit !important; }
  775. #moments h4, #moments h2 {
  776. color: #038788; }
  777. #moments .__wrapper .__title {
  778. margin: 0.5rem 0; }
  779. #moments .__wrap_side {
  780. margin-top: 0.5rem; }
  781. #moments .__wrap_content .__head {
  782. margin: 0.5rem 0; }
  783. #moments .__wrap_content .__head div > div {
  784. font-family: 'Marianneregular';
  785. font-size: 0.8rem;
  786. padding-right: 0.5rem; }
  787. #moments .__wrap_content .__head div > div:not(:first-child) {
  788. padding-left: 0.5rem; }
  789. #moments .__wrap_content .__content {
  790. max-height: calc(1.5rem * 12);
  791. overflow: hidden; }
  792. #moments .__wrap_content .__content.is_active {
  793. max-height: 100% !important; }
  794. @media screen and (min-width: 576px) {
  795. #moments .__wrap_content .__content {
  796. max-height: 100%; } }
  797. #moments .__wrap_content .more_link.is_active {
  798. display: none !important; }
  799. article.publications .__wrap_content .__head * {
  800. color: black; }
  801. article.publications .__wrap_content .__head .__auteur div {
  802. font-family: 'Mariannebold';
  803. font-size: 1.5rem; }
  804. article.publications .__wrap_content .__head .__titre span {
  805. font-family: 'Mariannebold_italic';
  806. font-size: 1.5rem; }
  807. article.publications .__wrap_content .__head .__info {
  808. margin: 1rem 0; }
  809. article.publications .__wrap_content .__head .__info div {
  810. font-family: 'Mariannebold';
  811. font-size: 1rem; }
  812. .container.les_intervenants {
  813. padding-top: 1.5rem; }
  814. .container.les_intervenants h2 {
  815. color: #038788; }
  816. @media screen and (min-width: 768px) {
  817. .container.les_intervenants {
  818. padding-top: 0; } }
  819. .container.les_intervenants .views-element-container {
  820. margin-top: 1rem; }
  821. @media screen and (min-width: 768px) {
  822. .container.les_intervenants .views-element-container {
  823. margin-top: 0rem; } }
  824. .container.les_intervenants .wrap-anchor-letter {
  825. margin-bottom: 3rem; }
  826. .container.les_intervenants .wrap-anchor-letter a {
  827. font-size: 1.5rem;
  828. font-family: 'Marianne';
  829. color: black; }
  830. .container.les_intervenants .letter-sort {
  831. font-size: 3rem;
  832. font-family: 'Marianne';
  833. color: black; }
  834. .container.les_intervenants section.row {
  835. margin-top: 2rem;
  836. margin-bottom: 6rem; }
  837. .participant_full .__wrap_content {
  838. margin: 3rem auto; }
  839. .participant_full .__publications,
  840. .participant_full .__bibliographie,
  841. .participant_full .__interviews {
  842. margin: 3rem auto; }
  843. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 h4, #block-colloque2024-views-block-bibliographie-node-intervenant-block-1 h4 {
  844. color: #038788; }
  845. .search section > div {
  846. width: 100%;
  847. display: flex;
  848. flex-wrap: wrap; }
  849. .search section > div h3 {
  850. width: 100%; }
  851. #block-colloque2024-local-tasks ul {
  852. display: flex;
  853. margin-top: 2rem;
  854. margin-bottom: 0;
  855. padding: 0; }
  856. #block-colloque2024-local-tasks ul li {
  857. margin: 0.5rem; }
  858. #toolbar-administration {
  859. z-index: 99999;
  860. position: fixed; }
  861. form.user-login-form {
  862. padding: 2rem;
  863. background: white;
  864. width: 100%;
  865. max-width: 300px;
  866. margin: auto; }
  867. form.user-login-form > div:not(:last-child) {
  868. margin-bottom: 2rem; }
  869. form.user-login-form > div .js-form-required {
  870. margin-bottom: 0;
  871. font-family: 'Marianneregular'; }
  872. form.user-login-form > div label {
  873. font-size: 0.9rem; }
  874. form.user-login-form > div input {
  875. border: 2px solid #1d378eff;
  876. border-radius: 10px;
  877. padding: 0.5rem;
  878. width: 100%; }
  879. form.user-login-form > div input:focus {
  880. border: 2px solid #b9a47eff;
  881. border-radius: 10px !important;
  882. padding: 0.5rem !important;
  883. outline: none !important; }
  884. form.user-login-form > div .description {
  885. font-size: 0.6rem;
  886. margin-top: 0.4rem;
  887. font-family: 'Mariannelight'; }
  888. form.user-login-form #edit-actions {
  889. display: flex; }
  890. form.user-login-form #edit-actions input {
  891. margin: auto;
  892. background: white; }
  893. form.user-login-form #edit-actions input:hover {
  894. box-shadow: none;
  895. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  896. form.user-login-form #edit-actions input:hover:hover {
  897. transform: scale(1.05);
  898. box-shadow: 0px 0px 13px 0px #038788;
  899. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  900. header {
  901. max-height: 125px; }
  902. header .row {
  903. background: white;
  904. max-height: inherit;
  905. border-bottom: 1px solid black;
  906. padding-left: 40px; }
  907. @media screen and (max-width: 550px) {
  908. header .row {
  909. padding-left: 20px;
  910. flex-wrap: nowrap; } }
  911. @media screen and (max-width: 550px) {
  912. header .row {
  913. flex-wrap: nowrap; } }
  914. header .row #block-colloque2024-logorepublique, header .row #block-colloque2024-logoepau {
  915. max-height: inherit; }
  916. header .row #block-colloque2024-logorepublique > div, header .row #block-colloque2024-logoepau > div {
  917. max-height: inherit; }
  918. header .row #block-colloque2024-logorepublique > div a, header .row #block-colloque2024-logoepau > div a {
  919. display: block;
  920. max-height: inherit; }
  921. header .row #block-colloque2024-logorepublique > div a img, header .row #block-colloque2024-logoepau > div a img {
  922. width: auto;
  923. height: 125px;
  924. padding-bottom: 0.5rem;
  925. padding-top: 0.5rem; }
  926. @media screen and (max-width: 300px) {
  927. header .row #block-colloque2024-logorepublique > div a img, header .row #block-colloque2024-logoepau > div a img {
  928. width: 100px;
  929. object-fit: contain; } }
  930. @media screen and (max-width: 550px) {
  931. header .row #block-colloque2024-logorepublique > div a img, header .row #block-colloque2024-logoepau > div a img {
  932. width: 100px;
  933. object-fit: contain; } }
  934. header .row #block-colloque2024-logorepublique.is-active, header .row #block-colloque2024-logoepau.is-active {
  935. z-index: 10000; }
  936. header .row #block-colloque2024-logoepau {
  937. margin-right: 2rem; }
  938. @media screen and (max-width: 550px) {
  939. header .row #block-colloque2024-logoepau {
  940. margin: 0; } }
  941. header .row #block-renderedsitesettingsblock-2 {
  942. width: 25%;
  943. border-left: 1px solid black;
  944. padding: 0;
  945. justify-content: end; }
  946. @media screen and (max-width: 300px) {
  947. header .row #block-renderedsitesettingsblock-2 {
  948. display: none; } }
  949. @media screen and (max-width: 1200px) {
  950. header .row #block-renderedsitesettingsblock-2 {
  951. align-content: center; } }
  952. header .row #block-renderedsitesettingsblock-2 a {
  953. display: flex;
  954. margin: auto;
  955. margin-left: 1rem; }
  956. @media screen and (min-width: 1200px) {
  957. header .row #block-renderedsitesettingsblock-2 {
  958. display: flex; } }
  959. header .row #block-renderedsitesettingsblock-2 .site_setting_entity {
  960. display: flex;
  961. flex-direction: column;
  962. align-content: center; }
  963. header .row #block-renderedsitesettingsblock-2 .site_setting_entity h1 {
  964. order: 2;
  965. width: 60%;
  966. color: black;
  967. padding-right: 1rem;
  968. font-size: 1.6rem;
  969. text-align: left;
  970. margin: auto 0;
  971. line-height: 0.95; }
  972. @media screen and (max-width: 550px) {
  973. header .row #block-renderedsitesettingsblock-2 .site_setting_entity h1 {
  974. font-size: 1rem; } }
  975. @media (max-width: 1370px) {
  976. header .row #block-renderedsitesettingsblock-2 .site_setting_entity h1 {
  977. width: 100%; } }
  978. header .row #block-renderedsitesettingsblock-2 .site_setting_entity .__info_colloque {
  979. width: fit-content;
  980. order: 1;
  981. height: auto;
  982. display: flex;
  983. flex-direction: row; }
  984. @media screen and (max-width: 550px) {
  985. header .row #block-renderedsitesettingsblock-2 .site_setting_entity .__info_colloque {
  986. flex-direction: column; } }
  987. header .row #block-renderedsitesettingsblock-2 .site_setting_entity .__info_colloque > div {
  988. height: auto; }
  989. header .row #block-renderedsitesettingsblock-2 .site_setting_entity .__info_colloque > div:first-child {
  990. order: 2;
  991. color: black;
  992. white-space: nowrap;
  993. font-family: "Mariannebold";
  994. text-transform: uppercase;
  995. padding-left: 0.5rem; }
  996. @media screen and (max-width: 550px) {
  997. header .row #block-renderedsitesettingsblock-2 .site_setting_entity .__info_colloque > div:first-child {
  998. padding-left: 0;
  999. font-size: 0.6rem; } }
  1000. header .row #block-renderedsitesettingsblock-2 .site_setting_entity .__info_colloque > div:last-child {
  1001. order: 1;
  1002. color: black;
  1003. width: min-content;
  1004. margin-bottom: 0;
  1005. text-transform: uppercase; }
  1006. @media screen and (max-width: 550px) {
  1007. header .row #block-renderedsitesettingsblock-2 .site_setting_entity .__info_colloque > div:last-child {
  1008. font-size: 0.6rem; } }
  1009. header .row #block-colloque2024-mainnavigation {
  1010. width: max-content;
  1011. margin: auto; }
  1012. header .row #block-colloque2024-mainnavigation .burger {
  1013. padding-top: 0.25rem;
  1014. z-index: 9999; }
  1015. header .row #block-colloque2024-mainnavigation .nav-main {
  1016. display: none; }
  1017. @media screen and (min-width: 1200px) {
  1018. header .row #block-colloque2024-mainnavigation .nav-main {
  1019. display: block; }
  1020. header .row #block-colloque2024-mainnavigation .nav-main ul {
  1021. margin-bottom: 0;
  1022. flex-wrap: wrap; }
  1023. header .row #block-colloque2024-mainnavigation .nav-main ul li {
  1024. margin: 0 0.5rem;
  1025. font-size: 1.3rem !important; }
  1026. header .row #block-colloque2024-mainnavigation .nav-main ul li:not(:last-child):after {
  1027. display: inline-block;
  1028. content: "|";
  1029. margin-left: 0.5rem; } }
  1030. header .row #block-colloque2024-mainnavigation .nav-main.is-active {
  1031. display: block;
  1032. position: fixed;
  1033. width: 100vw;
  1034. height: 100vh;
  1035. left: 0;
  1036. top: 0;
  1037. background: white;
  1038. z-index: 9999; }
  1039. @media screen and (min-width: 576px) {
  1040. header .row #block-colloque2024-mainnavigation .nav-main.is-active {
  1041. height: auto; }
  1042. header .row #block-colloque2024-mainnavigation .nav-main.is-active ul {
  1043. margin: 130px 0 50px 0; }
  1044. header .row #block-colloque2024-mainnavigation .nav-main.is-active li {
  1045. font-size: 1.7rem;
  1046. line-height: 3rem;
  1047. padding: 0 15px; } }
  1048. header .row #block-colloque2024-mainnavigation .nav-main.is-active ul {
  1049. display: flex;
  1050. justify-content: center;
  1051. flex-direction: column;
  1052. height: 100%;
  1053. align-items: center; }
  1054. header .row #block-colloque2024-mainnavigation .nav-main.is-active ul li {
  1055. font-size: 1.5rem;
  1056. line-height: 3rem;
  1057. padding: 0 15px; }
  1058. @media screen and (min-width: 360px) {
  1059. header .row #block-colloque2024-mainnavigation .nav-main.is-active ul li {
  1060. width: 100%; }
  1061. header .row #block-colloque2024-mainnavigation .nav-main.is-active ul li::before {
  1062. display: inline-block;
  1063. content: " ";
  1064. width: 0%;
  1065. transition: width 1s ease;
  1066. height: 1px;
  1067. background: #038788; }
  1068. header .row #block-colloque2024-mainnavigation .nav-main.is-active ul li:hover::before {
  1069. width: 10%;
  1070. transition: all 1s ease; } }
  1071. #block-colloque2024-mainnavigation {
  1072. display: flex;
  1073. align-items: center;
  1074. justify-content: flex-end; }
  1075. #block-colloque2024-mainnavigation .burger {
  1076. display: block;
  1077. margin: auto; }
  1078. @media screen and (min-width: 1200px) {
  1079. #block-colloque2024-mainnavigation .burger {
  1080. display: none; } }
  1081. #block-colloque2024-mainnavigation .burger.is-active {
  1082. z-index: 999; }
  1083. #block-colloque2024-mainnavigation .nav-main {
  1084. display: none;
  1085. height: auto; }
  1086. @media screen and (min-width: 1200px) {
  1087. #block-colloque2024-mainnavigation .nav-main {
  1088. display: flex; } }
  1089. header.front #block-colloque2024-branding {
  1090. width: 21rem;
  1091. position: relative;
  1092. z-index: 9999; }
  1093. header.front #block-colloque2024-branding a {
  1094. max-height: 8rem !important; }
  1095. header.front #block-colloque2024-branding.is-active {
  1096. overflow: inherit; }
  1097. header.front #block-colloque2024-branding.is-active > div {
  1098. max-height: 115px; }
  1099. header.front #block-renderedsitesettingsblock-2 {
  1100. display: none; }
  1101. #block-colloque2024-submenu {
  1102. margin: 1rem auto; }
  1103. #block-colloque2024-submenu ul {
  1104. display: flex;
  1105. flex-wrap: wrap;
  1106. padding: 0;
  1107. margin: 0 -1rem; }
  1108. #block-colloque2024-submenu ul li {
  1109. padding: 1rem;
  1110. width: 100%;
  1111. text-align: center; }
  1112. @media screen and (min-width: 576px) {
  1113. #block-colloque2024-submenu ul li {
  1114. width: auto !important; } }
  1115. #block-colloque2024-submenu ul li a {
  1116. display: block;
  1117. padding: 0.5rem 1rem;
  1118. border: 1px solid #038788;
  1119. color: #038788;
  1120. background: white;
  1121. transition: color 0.3s ease, background 0.3s ease;
  1122. font-size: 2rem;
  1123. font-family: "Marianne";
  1124. letter-spacing: 0.05rem;
  1125. text-transform: uppercase; }
  1126. @media screen and (min-width: 768px) {
  1127. #block-colloque2024-submenu ul li a {
  1128. font-size: 2.5rem; } }
  1129. #block-colloque2024-submenu ul li a:hover {
  1130. text-decoration: none;
  1131. color: white;
  1132. background: #038788;
  1133. transition: all 0.3s ease; }
  1134. #views-exposed-form-publications-page-1,
  1135. #views-exposed-form-bibliographie-page-1 {
  1136. margin: 2rem 0;
  1137. display: flex;
  1138. flex-wrap: wrap; }
  1139. #views-exposed-form-publications-page-1 > div,
  1140. #views-exposed-form-bibliographie-page-1 > div {
  1141. width: 100%; }
  1142. @media screen and (min-width: 768px) {
  1143. #views-exposed-form-publications-page-1 > div,
  1144. #views-exposed-form-bibliographie-page-1 > div {
  1145. width: calc((100% / 2) - ( 0.5rem * 2)); } }
  1146. @media screen and (min-width: 992px) {
  1147. #views-exposed-form-publications-page-1 > div,
  1148. #views-exposed-form-bibliographie-page-1 > div {
  1149. width: auto; } }
  1150. @media screen and (min-width: 992px) {
  1151. #views-exposed-form-publications-page-1 > div,
  1152. #views-exposed-form-bibliographie-page-1 > div {
  1153. margin-right: 2rem; } }
  1154. #views-exposed-form-publications-page-1 > div:not(:last-child),
  1155. #views-exposed-form-bibliographie-page-1 > div:not(:last-child) {
  1156. margin-bottom: 1rem; }
  1157. @media screen and (min-width: 768px) {
  1158. #views-exposed-form-publications-page-1 > div:not(:last-child),
  1159. #views-exposed-form-bibliographie-page-1 > div:not(:last-child) {
  1160. margin-right: calc(0.5rem * 2); } }
  1161. @media screen and (min-width: 992px) {
  1162. #views-exposed-form-publications-page-1 > div:not(:last-child),
  1163. #views-exposed-form-bibliographie-page-1 > div:not(:last-child) {
  1164. margin-bottom: 0rem; } }
  1165. #views-exposed-form-publications-page-1 > div label,
  1166. #views-exposed-form-bibliographie-page-1 > div label {
  1167. min-width: max-content; }
  1168. #views-exposed-form-publications-page-1 > div .select-selected,
  1169. #views-exposed-form-bibliographie-page-1 > div .select-selected {
  1170. width: 100%;
  1171. min-width: 150px;
  1172. background-color: white;
  1173. color: #1d378eff !important; }
  1174. #views-exposed-form-publications-page-1 > div .select-selected::after,
  1175. #views-exposed-form-bibliographie-page-1 > div .select-selected::after {
  1176. position: absolute;
  1177. content: "";
  1178. top: 14px;
  1179. right: 10px;
  1180. width: 0;
  1181. height: 0;
  1182. border: 6px solid transparent;
  1183. border-color: #1d378eff transparent transparent transparent; }
  1184. #views-exposed-form-publications-page-1 > div .select-selected.select-arrow-active:after,
  1185. #views-exposed-form-bibliographie-page-1 > div .select-selected.select-arrow-active:after {
  1186. transform: rotate(180deg);
  1187. top: 7px; }
  1188. #views-exposed-form-publications-page-1 > div .select-items,
  1189. #views-exposed-form-bibliographie-page-1 > div .select-items {
  1190. position: absolute;
  1191. background-color: #1d378eff;
  1192. top: 100%;
  1193. right: 0;
  1194. z-index: 99;
  1195. min-width: 150px;
  1196. width: 100%; }
  1197. @media screen and (min-width: 768px) {
  1198. #views-exposed-form-publications-page-1 #edit-actions,
  1199. #views-exposed-form-bibliographie-page-1 #edit-actions {
  1200. display: flex;
  1201. flex-wrap: nowrap;
  1202. width: 100%; } }
  1203. @media screen and (min-width: 992px) {
  1204. #views-exposed-form-publications-page-1 #edit-actions,
  1205. #views-exposed-form-bibliographie-page-1 #edit-actions {
  1206. width: auto; } }
  1207. #views-exposed-form-publications-page-1 #edit-actions input,
  1208. #views-exposed-form-bibliographie-page-1 #edit-actions input {
  1209. width: 100%;
  1210. height: auto;
  1211. background: #1d378eff;
  1212. color: white;
  1213. border: none;
  1214. outline: none;
  1215. margin-top: 1rem;
  1216. padding: 0.5rem 1rem; }
  1217. @media screen and (min-width: 768px) {
  1218. #views-exposed-form-publications-page-1 #edit-actions input,
  1219. #views-exposed-form-bibliographie-page-1 #edit-actions input {
  1220. max-width: 50%;
  1221. margin-right: 1rem; } }
  1222. @media screen and (min-width: 992px) {
  1223. #views-exposed-form-publications-page-1 #edit-actions input,
  1224. #views-exposed-form-bibliographie-page-1 #edit-actions input {
  1225. max-width: 100%;
  1226. margin-right: 0;
  1227. margin-top: 0; } }
  1228. #views-exposed-form-publications-page-1 #edit-actions input:focus,
  1229. #views-exposed-form-bibliographie-page-1 #edit-actions input:focus {
  1230. border: none;
  1231. outline: none; }
  1232. @media screen and (min-width: 768px) {
  1233. #views-exposed-form-publications-page-1 #edit-actions input#edit-submit-publications,
  1234. #views-exposed-form-bibliographie-page-1 #edit-actions input#edit-submit-publications {
  1235. margin-right: calc(0.5rem * 2); } }
  1236. #views-exposed-form-publications-page-1 #edit-actions input.form-submit,
  1237. #views-exposed-form-bibliographie-page-1 #edit-actions input.form-submit {
  1238. margin-right: 0.75rem; }
  1239. #block-formulaireexposesearchpage-1 input {
  1240. width: 100%;
  1241. height: auto;
  1242. background: white;
  1243. color: #1d378eff;
  1244. border: none;
  1245. outline: none;
  1246. margin-top: 1rem;
  1247. padding: 0.5rem 1rem; }
  1248. @media screen and (min-width: 768px) {
  1249. #block-formulaireexposesearchpage-1 input {
  1250. max-width: 100%;
  1251. margin-right: 1rem; } }
  1252. @media screen and (min-width: 992px) {
  1253. #block-formulaireexposesearchpage-1 input {
  1254. max-width: 100%;
  1255. margin-right: 0;
  1256. margin-top: 0; } }
  1257. #block-formulaireexposesearchpage-1 input:focus {
  1258. border: none;
  1259. outline: none; }
  1260. @media screen and (min-width: 768px) {
  1261. #block-formulaireexposesearchpage-1 input#edit-submit-publications {
  1262. margin-right: calc(0.5rem * 2); } }
  1263. #block-formulaireexposesearchpage-1 input.form-submit {
  1264. background: #1d378eff;
  1265. color: white; }
  1266. #block-formulaireexposesearchpage-1 #views-exposed-form-search-page-1 {
  1267. display: flex;
  1268. flex-wrap: wrap;
  1269. margin: 2rem 0; }
  1270. #block-formulaireexposesearchpage-1 #views-exposed-form-search-page-1 > div {
  1271. width: 100%; }
  1272. @media screen and (min-width: 768px) {
  1273. #block-formulaireexposesearchpage-1 #views-exposed-form-search-page-1 > div:first-child {
  1274. width: 75%; }
  1275. #block-formulaireexposesearchpage-1 #views-exposed-form-search-page-1 > div:last-child {
  1276. width: 25%; } }
  1277. @media screen and (min-width: 992px) {
  1278. #block-formulaireexposesearchpage-1 #views-exposed-form-search-page-1 > div:first-child {
  1279. max-width: 350px; }
  1280. #block-formulaireexposesearchpage-1 #views-exposed-form-search-page-1 > div:last-child {
  1281. max-width: max-content; } }
  1282. .js-form-type-select {
  1283. position: relative;
  1284. font-family: Arial;
  1285. display: inline-flex;
  1286. align-items: baseline; }
  1287. .js-form-type-select label {
  1288. margin-right: 1rem; }
  1289. .js-form-type-select select {
  1290. display: none; }
  1291. .select-selected.select-arrow-active:after {
  1292. border-color: transparent transparent #1d378eff transparent;
  1293. top: 7px; }
  1294. .select-items div, .select-selected {
  1295. color: #ffffff;
  1296. padding: 8px 30px 8px 16px;
  1297. border: 1px solid transparent;
  1298. border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  1299. cursor: pointer; }
  1300. .select-hide {
  1301. display: none; }
  1302. .select-items div:hover, .same-as-selected {
  1303. background-color: rgba(0, 0, 0, 0.1); }
  1304. body {
  1305. overflow-x: hidden; }
  1306. .home .__img-hero {
  1307. display: none;
  1308. width: 100vw;
  1309. position: relative;
  1310. left: 50%;
  1311. right: 50%;
  1312. margin-left: -50vw;
  1313. margin-right: -50vw; }
  1314. .__img-hero {
  1315. height: 300px;
  1316. width: 100vw;
  1317. position: relative;
  1318. left: 50%;
  1319. right: 50%;
  1320. margin-left: -50vw;
  1321. margin-right: -50vw; }
  1322. .__img-hero img {
  1323. width: 100%;
  1324. height: 100%;
  1325. object-fit: cover; }
  1326. .participant_full {
  1327. flex-direction: column;
  1328. margin-top: 2rem; }
  1329. @media screen and (min-width: 992px) {
  1330. .participant_full {
  1331. margin-top: 0rem; } }
  1332. .participant_full .hero figure {
  1333. width: 100%; }
  1334. .participant_full .hero figure .__img > div {
  1335. margin: auto;
  1336. width: 250px;
  1337. height: 250px; }
  1338. .participant_full .hero figure .__img img {
  1339. border-radius: 100%;
  1340. width: 100%;
  1341. height: 100%;
  1342. object-fit: cover; }
  1343. .participant_full .hero figure figcaption {
  1344. align-self: center;
  1345. text-align: center;
  1346. margin: 2rem 0; }
  1347. @media screen and (min-width: 768px) {
  1348. .__img-hero {
  1349. height: 500px;
  1350. width: auto;
  1351. position: relative;
  1352. left: 0;
  1353. right: 0;
  1354. margin-left: auto;
  1355. margin-right: auto; } }
  1356. @media screen and (min-width: 768px) {
  1357. .participant_full .hero figure {
  1358. width: 100%; }
  1359. .participant_full .hero figure .__img {
  1360. margin-right: 2rem; }
  1361. .participant_full .hero figure .__img > div {
  1362. width: 300px;
  1363. height: 300px; }
  1364. .participant_full .hero figure .__img img {
  1365. border-radius: 100%;
  1366. width: 100%;
  1367. height: 100%;
  1368. object-fit: cover; }
  1369. .participant_full .hero figure figcaption {
  1370. align-self: center;
  1371. text-align: left; } }
  1372. .dl_ressource {
  1373. font-size: 0.9rem;
  1374. line-height: 1.2;
  1375. font-family: 'Marianneregular';
  1376. text-align: left;
  1377. margin: 1.5rem .25rem 0 .25rem; }
  1378. @media screen and (min-width: 768px) {
  1379. .dl_ressource {
  1380. margin-top: 1.5rem;
  1381. text-align: center;
  1382. font-size: 0.5rem; } }
  1383. .dl_ressource a::before {
  1384. content: "";
  1385. display: inline-block;
  1386. background-image: url("../images/douwnload.svg");
  1387. background-repeat: no-repeat;
  1388. background-size: contain;
  1389. width: 25px;
  1390. height: 25px;
  1391. vertical-align: middle;
  1392. margin-right: 0.5rem; }
  1393. @media screen and (min-width: 768px) {
  1394. .dl_ressource a::before {
  1395. margin-right: 0; } }
  1396. .dl_ressource a > span {
  1397. display: inline-block; }
  1398. @media screen and (min-width: 992px) {
  1399. .dl_ressource a > span {
  1400. display: inline-block !important;
  1401. margin-top: 0.5rem; } }
  1402. @media screen and (min-width: 768px) {
  1403. .dl_ressource a > span {
  1404. display: none; } }
  1405. .__rs > div {
  1406. width: 25px;
  1407. height: 25px;
  1408. margin: 0 0.25rem; }
  1409. @media screen and (min-width: 768px) {
  1410. .__rs:not(.moment) {
  1411. margin: auto; }
  1412. .__rs:not(.moment) > div {
  1413. margin: 0 auto 0.5rem auto; } }
  1414. @media screen and (min-width: 992px) {
  1415. .__rs.moment {
  1416. margin: auto; }
  1417. .__rs.moment > div {
  1418. margin: 0 auto 0.5rem auto; } }
  1419. .paragraph--type--role-de-l-intervenant {
  1420. margin-bottom: 5rem; }
  1421. .___title_inter {
  1422. border-bottom: 1px solid black;
  1423. margin-bottom: 2rem; }
  1424. /*! Flickity v2.2.1
  1425. https://flickity.metafizzy.co
  1426. ---------------------------------------------- */
  1427. .flickity-enabled {
  1428. position: relative; }
  1429. .flickity-enabled:focus {
  1430. outline: 0; }
  1431. .flickity-viewport {
  1432. overflow: hidden;
  1433. position: relative;
  1434. height: 100%; }
  1435. .flickity-slider {
  1436. position: absolute;
  1437. width: 100%;
  1438. height: 100%; }
  1439. .flickity-enabled.is-draggable {
  1440. -webkit-tap-highlight-color: transparent;
  1441. -webkit-user-select: none;
  1442. -moz-user-select: none;
  1443. -ms-user-select: none;
  1444. user-select: none; }
  1445. .flickity-enabled.is-draggable .flickity-viewport {
  1446. cursor: move;
  1447. cursor: -webkit-grab;
  1448. cursor: grab; }
  1449. .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  1450. cursor: -webkit-grabbing;
  1451. cursor: grabbing; }
  1452. .flickity-button {
  1453. position: absolute;
  1454. background: rgba(255, 255, 255, 0.75);
  1455. border: none;
  1456. color: #333; }
  1457. .flickity-button:hover {
  1458. background: #fff;
  1459. cursor: pointer; }
  1460. .flickity-button:focus {
  1461. outline: 0;
  1462. box-shadow: 0 0 0 5px #19f; }
  1463. .flickity-button:active {
  1464. opacity: .6; }
  1465. .flickity-button:disabled {
  1466. opacity: .3;
  1467. cursor: auto;
  1468. pointer-events: none; }
  1469. .flickity-button-icon {
  1470. fill: currentColor; }
  1471. .flickity-prev-next-button {
  1472. top: 50%;
  1473. width: 44px;
  1474. height: 44px;
  1475. border-radius: 50%;
  1476. transform: translateY(-50%); }
  1477. .flickity-prev-next-button.previous {
  1478. left: 10px; }
  1479. .flickity-prev-next-button.next {
  1480. right: 10px; }
  1481. .flickity-rtl .flickity-prev-next-button.previous {
  1482. left: auto;
  1483. right: 10px; }
  1484. .flickity-rtl .flickity-prev-next-button.next {
  1485. right: auto;
  1486. left: 10px; }
  1487. .flickity-prev-next-button .flickity-button-icon {
  1488. position: absolute;
  1489. left: 20%;
  1490. top: 20%;
  1491. width: 60%;
  1492. height: 60%; }
  1493. .flickity-page-dots {
  1494. position: absolute;
  1495. width: 100%;
  1496. bottom: -25px;
  1497. padding: 0;
  1498. margin: 0;
  1499. list-style: none;
  1500. text-align: center;
  1501. line-height: 1; }
  1502. .flickity-rtl .flickity-page-dots {
  1503. direction: rtl; }
  1504. .flickity-page-dots .dot {
  1505. display: inline-block;
  1506. width: 10px;
  1507. height: 10px;
  1508. margin: 0 8px;
  1509. background: #333;
  1510. border-radius: 50%;
  1511. opacity: .25;
  1512. cursor: pointer; }
  1513. .flickity-page-dots .dot.is-selected {
  1514. opacity: 1; }
  1515. .flickity-button {
  1516. background: transparent; }
  1517. .flickity-button:hover {
  1518. background: transparent; }
  1519. .flickity-button-icon {
  1520. fill: black; }
  1521. .flickity-button:disabled {
  1522. display: none; }
  1523. #block-colloque2024-views-block-slide-programme-block-1 .__slide article,
  1524. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article {
  1525. width: calc(100% - 30px);
  1526. height: 325px;
  1527. display: flex;
  1528. flex-direction: column;
  1529. margin: 3rem 0.5rem 1.5rem 0.5rem; }
  1530. @media screen and (min-width: 768px) {
  1531. #block-colloque2024-views-block-slide-programme-block-1 .__slide article,
  1532. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article {
  1533. width: calc(100% / 2 - 0.5rem * 2); } }
  1534. @media screen and (min-width: 992px) {
  1535. #block-colloque2024-views-block-slide-programme-block-1 .__slide article,
  1536. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article {
  1537. width: calc(100% / 3 - 0.5rem * 2); } }
  1538. @media screen and (min-width: 1200px) {
  1539. #block-colloque2024-views-block-slide-programme-block-1 .__slide article,
  1540. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article {
  1541. width: calc(100% / 4 - 0.5rem * 1); } }
  1542. #block-colloque2024-views-block-slide-programme-block-1 .__slide article a,
  1543. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article a {
  1544. width: 100%;
  1545. height: 100%;
  1546. background: white;
  1547. box-shadow: none;
  1548. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1549. #block-colloque2024-views-block-slide-programme-block-1 .__slide article a:hover,
  1550. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article a:hover {
  1551. transform: scale(1.05);
  1552. box-shadow: 0px 0px 13px 0px #038788;
  1553. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1554. #block-colloque2024-views-block-slide-programme-block-1 .__slide article a .__wrap,
  1555. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article a .__wrap {
  1556. background: white; }
  1557. #block-colloque2024-views-block-slide-programme-block-1 .__slide article.first > span,
  1558. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article.first > span {
  1559. font-family: "Mariannelight";
  1560. position: absolute;
  1561. top: -2.5rem;
  1562. width: max-content;
  1563. font-size: 1.2rem;
  1564. line-height: 1.2;
  1565. text-transform: uppercase; }
  1566. #block-colloque2024-views-block-slide-programme-block-1 .__slide article.first:not(:first-child)::before,
  1567. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .__slide article.first:not(:first-child)::before {
  1568. position: absolute;
  1569. display: block;
  1570. content: " ";
  1571. width: 1px;
  1572. height: calc(100% + 3rem);
  1573. margin: -2.5rem 0 0 0;
  1574. background: #b9a47eff;
  1575. left: -0.5rem;
  1576. top: 0; }
  1577. #block-colloque2024-views-block-gallerie-block-1 section:not(.wrap_head),
  1578. #block-colloque2024-views-block-slide-programme-block-1 section:not(.wrap_head),
  1579. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 section:not(.wrap_head),
  1580. #block-colloque2024-views-block-dernieres-publications-block-1 section:not(.wrap_head),
  1581. #block-colloque2024-views-block-slide-interviews-block-1 section:not(.wrap_head) {
  1582. margin: 1rem 0; }
  1583. #block-colloque2024-views-block-gallerie-block-1 .views section.wrap_head .head,
  1584. #block-colloque2024-views-block-slide-programme-block-1 .views section.wrap_head .head,
  1585. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .views section.wrap_head .head,
  1586. #block-colloque2024-views-block-dernieres-publications-block-1 .views section.wrap_head .head,
  1587. #block-colloque2024-views-block-slide-interviews-block-1 .views section.wrap_head .head {
  1588. display: flex;
  1589. flex-direction: row;
  1590. align-items: center;
  1591. position: relative; }
  1592. @media (max-width: 550px) {
  1593. #block-colloque2024-views-block-gallerie-block-1 .views section.wrap_head .head,
  1594. #block-colloque2024-views-block-slide-programme-block-1 .views section.wrap_head .head,
  1595. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .views section.wrap_head .head,
  1596. #block-colloque2024-views-block-dernieres-publications-block-1 .views section.wrap_head .head,
  1597. #block-colloque2024-views-block-slide-interviews-block-1 .views section.wrap_head .head {
  1598. flex-wrap: wrap; } }
  1599. #block-colloque2024-views-block-gallerie-block-1 .views section.wrap_head .head h3,
  1600. #block-colloque2024-views-block-slide-programme-block-1 .views section.wrap_head .head h3,
  1601. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .views section.wrap_head .head h3,
  1602. #block-colloque2024-views-block-dernieres-publications-block-1 .views section.wrap_head .head h3,
  1603. #block-colloque2024-views-block-slide-interviews-block-1 .views section.wrap_head .head h3 {
  1604. display: flex;
  1605. flex-direction: row;
  1606. align-items: center; }
  1607. #block-colloque2024-views-block-gallerie-block-1 .views section.wrap_head .head h3:after,
  1608. #block-colloque2024-views-block-slide-programme-block-1 .views section.wrap_head .head h3:after,
  1609. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .views section.wrap_head .head h3:after,
  1610. #block-colloque2024-views-block-dernieres-publications-block-1 .views section.wrap_head .head h3:after,
  1611. #block-colloque2024-views-block-slide-interviews-block-1 .views section.wrap_head .head h3:after {
  1612. display: block;
  1613. content: "";
  1614. max-width: fit-content;
  1615. width: 100%;
  1616. /* Étendre la ligne sur toute la largeur */
  1617. border-bottom: 1px solid #000;
  1618. /* Couleur et style de la ligne */ }
  1619. @media screen and (min-width: 576px) {
  1620. #block-colloque2024-views-block-gallerie-block-1 .views section .head,
  1621. #block-colloque2024-views-block-slide-programme-block-1 .views section .head,
  1622. #block-colloque2024-views-block-slide-programme-node-intervenant-block-1 .views section .head,
  1623. #block-colloque2024-views-block-dernieres-publications-block-1 .views section .head,
  1624. #block-colloque2024-views-block-slide-interviews-block-1 .views section .head {
  1625. display: flex !important;
  1626. width: 100%;
  1627. justify-content: space-between;
  1628. align-items: center; } }
  1629. .paragraph--type--role-de-l-intervenant {
  1630. margin-bottom: 2rem; }
  1631. .paragraph--type--role-de-l-intervenant .__slide:after {
  1632. content: "flickity";
  1633. display: none; }
  1634. @media screen and (min-width: 768px) {
  1635. .paragraph--type--role-de-l-intervenant .__slide:after {
  1636. content: ""; } }
  1637. .paragraph--type--role-de-l-intervenant .__slide .flickity-viewport {
  1638. overflow: initial; }
  1639. .paragraph--type--role-de-l-intervenant .__slide .flickity-slider > div {
  1640. width: 70%;
  1641. padding: 0 0.5rem; }
  1642. @media screen and (min-width: 768px) {
  1643. .paragraph--type--role-de-l-intervenant .__slide .flickity-slider > div {
  1644. width: 100%; } }
  1645. .flickity-slider {
  1646. position: absolute;
  1647. width: 100%;
  1648. height: 100%;
  1649. margin-left: 10px; }
  1650. 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 {
  1651. opacity: 1 !important; }
  1652. 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 {
  1653. opacity: 1 !important; }
  1654. section article.thumbnails.programme {
  1655. overflow: hidden; }
  1656. section article.thumbnails.programme:hover {
  1657. border: none;
  1658. box-shadow: none;
  1659. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1660. section article.thumbnails.programme:hover:hover {
  1661. transform: scale(1.05);
  1662. box-shadow: 0px 0px 13px 0px #038788;
  1663. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1664. section article.thumbnails.programme .d-flex {
  1665. color: #ff804d; }
  1666. section article.thumbnails.programme .__content span {
  1667. color: #038788 !important;
  1668. font-size: 0.8rem;
  1669. font-family: "Marianneregular_italic";
  1670. text-transform: none !important; }
  1671. section article.thumbnails.programme .__content span strong {
  1672. font-family: "Mariannebold_italic"; }
  1673. section > div:not(.__slide) article.thumbnails.programme a {
  1674. display: block;
  1675. width: 100%;
  1676. height: 100%;
  1677. background: white;
  1678. box-shadow: none;
  1679. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1680. section > div:not(.__slide) article.thumbnails.programme a:hover {
  1681. transform: scale(1.05);
  1682. box-shadow: 0px 0px 13px 0px #038788;
  1683. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1684. .thumbnails {
  1685. width: 100%;
  1686. height: auto;
  1687. background: white;
  1688. border: 1px solid #6f6d7dff;
  1689. margin: calc(0.5rem) 0; }
  1690. @media screen and (min-width: 768px) {
  1691. .thumbnails {
  1692. margin: calc(0.5rem); } }
  1693. .thumbnails:not(.bibliographie):not(.programme) {
  1694. box-shadow: none;
  1695. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1696. .thumbnails:not(.bibliographie):not(.programme):hover {
  1697. transform: scale(1.05);
  1698. box-shadow: 0px 0px 13px 0px #038788;
  1699. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1700. .thumbnails figure {
  1701. height: 150px;
  1702. margin: 0; }
  1703. .thumbnails .__wrap {
  1704. padding: 1rem; }
  1705. .thumbnails .__wrap time,
  1706. .thumbnails .__wrap .type_moment {
  1707. font-family: "Marianneregular";
  1708. font-size: 0.8rem;
  1709. text-transform: uppercase; }
  1710. .thumbnails .__wrap > .d-flex {
  1711. margin-bottom: 0.5rem; }
  1712. @media screen and (min-width: 768px) {
  1713. .thumbnails.publications {
  1714. width: calc(100% / 2 - 0.5rem * 2); } }
  1715. @media screen and (min-width: 992px) {
  1716. .thumbnails.publications {
  1717. width: calc(100% / 3 - 0.5rem * 2); } }
  1718. @media screen and (min-width: 1200px) {
  1719. .thumbnails.publications {
  1720. width: calc(100% / 4 - 0.5rem * 2); } }
  1721. .thumbnails.publications .__media {
  1722. padding: 0.5rem 0 0.5rem 0.5rem; }
  1723. .thumbnails.publications .__media .__img {
  1724. width: 100px; }
  1725. .thumbnails.publications .__wrap {
  1726. padding: 0.5rem; }
  1727. .thumbnails.publications > div {
  1728. height: 100%; }
  1729. .thumbnails.publications div > * {
  1730. color: black; }
  1731. .thumbnails.publications a {
  1732. display: block;
  1733. height: 100%; }
  1734. .thumbnails.bibliographie {
  1735. background: white !important;
  1736. padding: 0.5rem; }
  1737. .thumbnails.bibliographie.link_ext {
  1738. box-shadow: none;
  1739. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1740. .thumbnails.bibliographie.link_ext:hover {
  1741. transform: scale(1.05);
  1742. box-shadow: 0px 0px 13px 0px #038788;
  1743. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1744. @media screen and (min-width: 768px) {
  1745. .thumbnails.bibliographie {
  1746. width: calc(100% / 2 - 0.5rem * 2); } }
  1747. @media screen and (min-width: 992px) {
  1748. .thumbnails.bibliographie {
  1749. width: calc(100% / 3 - 0.5rem * 2); } }
  1750. @media screen and (min-width: 1200px) {
  1751. .thumbnails.bibliographie {
  1752. width: calc(100% / 4 - 0.5rem * 2); } }
  1753. .thumbnails.bibliographie > div * {
  1754. color: black; }
  1755. .thumbnails.bibliographie > div *.__auteur * {
  1756. font-size: 1.4rem; }
  1757. .thumbnails.bibliographie > div *.__body {
  1758. margin: 1rem 0; }
  1759. .thumbnails.bibliographie a {
  1760. text-decoration: underline;
  1761. color: #038788; }
  1762. @media screen and (min-width: 768px) {
  1763. .thumbnails.interviews {
  1764. width: calc(100% / 2 - 0.5rem * 2); } }
  1765. @media screen and (min-width: 992px) {
  1766. .thumbnails.interviews {
  1767. width: calc(100% / 3 - 0.5rem * 2); } }
  1768. @media screen and (min-width: 1200px) {
  1769. .thumbnails.interviews {
  1770. width: calc(100% / 4 - 0.5rem * 2); } }
  1771. .thumbnails.interviews .__media {
  1772. padding: 0.5rem 0 0.5rem 0.5rem;
  1773. max-width: 50%; }
  1774. .thumbnails.interviews .__media .__img {
  1775. width: 100px; }
  1776. .thumbnails.interviews .__wrap {
  1777. padding: 0.5rem; }
  1778. .thumbnails.interviews > div {
  1779. height: 100%; }
  1780. .thumbnails.interviews div > * {
  1781. color: black; }
  1782. .thumbnails.interviews a {
  1783. display: block;
  1784. height: 100%; }
  1785. .container.programme .thumbnails {
  1786. height: 325px !important; }
  1787. @media screen and (min-width: 768px) {
  1788. .container.programme .thumbnails {
  1789. width: calc(100% / 2 - 0.5rem * 2);
  1790. margin: 0.5rem; } }
  1791. @media screen and (min-width: 992px) {
  1792. .container.programme .thumbnails {
  1793. width: calc(100% / 3 - 0.5rem * 2); } }
  1794. .container.programme .thumbnails .inter {
  1795. margin-top: 0.5rem; }
  1796. .container.programme .thumbnails .inter span {
  1797. color: #038788;
  1798. font-size: 0.8rem;
  1799. font-family: "Marianneregular_italic";
  1800. text-transform: none !important; }
  1801. .container.programme .thumbnails .inter span strong {
  1802. font-family: "Mariannebold_italic"; }
  1803. .__ressources .__publications .publications .__media {
  1804. padding: 0.5rem 0 0.5rem 0.5rem; }
  1805. .__ressources .__publications .publications .__wrap {
  1806. padding: 0.5rem; }
  1807. @media screen and (min-width: 768px) {
  1808. .__ressources .__publications .publications {
  1809. width: calc(100% / 2 - 0.5rem * 2); } }
  1810. @media screen and (min-width: 992px) {
  1811. .__ressources .__publications .publications {
  1812. width: calc(100% / 2 - 0.5rem * 2); } }
  1813. @media screen and (min-width: 1200px) {
  1814. .__ressources .__publications .publications {
  1815. width: calc(100% / 2 - 0.5rem * 2); } }
  1816. .__ressources .__bibliographie .thumbnails {
  1817. background: transparent; }
  1818. .__ressources .__bibliographie .thumbnails a > div div,
  1819. .__ressources .__bibliographie .thumbnails a > div span,
  1820. .__ressources .__bibliographie .thumbnails a > div p {
  1821. display: inline;
  1822. background: white; }
  1823. @media screen and (min-width: 768px) {
  1824. .__ressources .__bibliographie .thumbnails {
  1825. width: calc(100% / 2 - 0.5rem * 2); } }
  1826. @media screen and (min-width: 992px) {
  1827. .__ressources .__bibliographie .thumbnails {
  1828. width: calc(100% / 2 - 0.5rem * 2); } }
  1829. @media screen and (min-width: 1200px) {
  1830. .__ressources .__bibliographie .thumbnails {
  1831. width: calc(100% / 2 - 0.5rem * 2); } }
  1832. .__ressources .__interviews .interviews .__media {
  1833. padding: 0.5rem 0 0.5rem 0.5rem; }
  1834. .__ressources .__interviews .interviews .__wrap {
  1835. padding: 0.5rem; }
  1836. @media screen and (min-width: 768px) {
  1837. .__ressources .__interviews .interviews {
  1838. width: calc(100% / 2 - 0.5rem * 2); } }
  1839. @media screen and (min-width: 992px) {
  1840. .__ressources .__interviews .interviews {
  1841. width: calc(100% / 2 - 0.5rem * 2); } }
  1842. @media screen and (min-width: 1200px) {
  1843. .__ressources .__interviews .interviews {
  1844. width: calc(100% / 2 - 0.5rem * 2); } }
  1845. .thumbnails_participants figure > div {
  1846. width: 100px;
  1847. height: 100px;
  1848. margin-left: 0.5rem; }
  1849. .thumbnails_participants figure > div img {
  1850. border-radius: 50%;
  1851. width: 100%;
  1852. height: 100%;
  1853. object-fit: cover; }
  1854. .thumbnails_participants figure figcaption {
  1855. border: 1px solid #038788; }
  1856. .thumbnails_participants figure figcaption.__info {
  1857. padding: 4rem 0.5rem 0.5rem 0.5rem;
  1858. margin-top: -3rem;
  1859. background: white; }
  1860. .thumbnails_participants figure figcaption.__info .__name {
  1861. text-transform: uppercase;
  1862. color: black !important; }
  1863. .__ressources h4 {
  1864. text-transform: uppercase;
  1865. margin: 1rem 0;
  1866. font-family: 'Marianne';
  1867. font-size: 2rem;
  1868. letter-spacing: 0.1rem;
  1869. color: #1d378eff; }
  1870. @media screen and (min-width: 768px) {
  1871. .__ressources > section > div {
  1872. margin: 0 calc(0rem - 0.5rem) !important; } }
  1873. .__ressources section .row {
  1874. padding: 0rem 0rem 2rem 0rem; }
  1875. .__ressources .views-element-container {
  1876. margin: 4rem auto; }
  1877. .more_link {
  1878. padding: 0rem 1rem 0.2rem 1rem;
  1879. background: white;
  1880. border: 1px solid #038788;
  1881. border-radius: 0; }
  1882. .more_link a {
  1883. font-family: 'Mariannebold';
  1884. font-size: 0.6rem;
  1885. color: #038788; }
  1886. .more_link a span {
  1887. padding-left: 0.5rem; }
  1888. #block-colloque2024-views-block-slide-programme-block-1 .more_link,
  1889. #block-colloque2024-views-block-dernieres-publications-block-1 .more_link {
  1890. margin: 0.5rem 0;
  1891. width: fit-content; }
  1892. @media screen and (min-width: 576px) {
  1893. #block-colloque2024-views-block-slide-programme-block-1 .more_link,
  1894. #block-colloque2024-views-block-dernieres-publications-block-1 .more_link {
  1895. margin: 0; } }
  1896. .link_live {
  1897. margin: auto;
  1898. width: 100%; }
  1899. .link_live > div {
  1900. margin: auto; }
  1901. .link_live > div a {
  1902. padding: 0.7rem 2rem;
  1903. background: #038788;
  1904. color: white !important;
  1905. font-family: 'Marianneregular';
  1906. text-transform: uppercase;
  1907. font-size: 1rem; }
  1908. .link_live > div a:hover {
  1909. box-shadow: none;
  1910. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1911. .link_live > div a:hover:hover {
  1912. transform: scale(1.05);
  1913. box-shadow: 0px 0px 13px 0px #038788;
  1914. transition: 0.3s transform ease, 0.3s box-shadow ease; }
  1915. @media screen and (min-width: 576px) {
  1916. .link_live > div a {
  1917. font-size: 1rem;
  1918. padding: 0.7rem 4rem; } }
  1919. @media screen and (max-width: 576px) {
  1920. .link_live > div a {
  1921. font-size: 0.8em;
  1922. padding: 0.7rem; } }
  1923. footer {
  1924. background: white;
  1925. border-top: 1px solid black;
  1926. width: 100%;
  1927. height: auto;
  1928. margin-top: 2rem; }
  1929. footer .container {
  1930. max-width: 90vw; }
  1931. footer > .d-flex > div {
  1932. margin-bottom: 1.5rem;
  1933. padding-top: 2rem;
  1934. padding-left: 2rem !important;
  1935. padding-right: 2rem !important; }
  1936. footer > .d-flex > div:not(:last-of-type) {
  1937. border-right: 1px solid black; }
  1938. @media screen and (min-width: 300px) {
  1939. footer > .d-flex > div:not(:last-of-type) {
  1940. border-right: none; } }
  1941. @media (min-width: 992px) {
  1942. footer .d-lg-block {
  1943. display: block !important; } }
  1944. footer #block-renderedsitesettingsblock-5 {
  1945. max-width: 30%;
  1946. padding-top: 1rem; }
  1947. @media screen and (max-width: 550px) {
  1948. footer #block-renderedsitesettingsblock-5 {
  1949. max-width: 80%; } }
  1950. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid {
  1951. display: grid;
  1952. grid-template-columns: 1fr 1fr; }
  1953. @media (max-width: 992px) {
  1954. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid {
  1955. display: flex;
  1956. flex-direction: row;
  1957. flex-wrap: wrap; } }
  1958. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid div:nth-of-type(1) {
  1959. grid-column: 1;
  1960. grid-row: 1 / span 3; }
  1961. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid div:nth-of-type(2) {
  1962. grid-column: 2;
  1963. grid-row: 1; }
  1964. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid div:nth-of-type(3) {
  1965. grid-column: 2;
  1966. grid-row: 2;
  1967. margin-left: 1rem; }
  1968. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid div:nth-of-type(3) a img {
  1969. width: 90%;
  1970. margin: auto; }
  1971. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid div:nth-of-type(4) {
  1972. grid-column: 2;
  1973. grid-row: 3;
  1974. margin-top: 2rem;
  1975. margin-left: 1rem; }
  1976. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid div:nth-of-type(4) a img {
  1977. width: 60%; }
  1978. @media screen and (max-width: 300px) {
  1979. footer #block-renderedsitesettingsblock-5 div.site_setting_entity div.grid {
  1980. display: flex;
  1981. flex-direction: column; } }
  1982. @media (min-width: 992px) {
  1983. footer #block-renderedsitesettingsblock-4 .d-lg-block {
  1984. display: block !important; } }
  1985. footer #block-renderedsitesettingsblock-4 .site_setting_entity > div {
  1986. margin: 1rem 0; }
  1987. footer #block-renderedsitesettingsblock-4 .site_setting_entity > div:first-child::after, footer #block-renderedsitesettingsblock-4 .site_setting_entity > div:first-child:before {
  1988. margin: 0.5rem 0;
  1989. display: block;
  1990. content: " ";
  1991. width: 1rem;
  1992. height: 1px;
  1993. background: black; }
  1994. footer #block-renderedsitesettingsblock-4 .site_setting_entity .sub-title {
  1995. font-size: 1rem; }
  1996. footer #block-renderedsitesettingsblock-4 .site_setting_entity .d-flex {
  1997. margin-top: 1rem; }
  1998. footer #block-renderedsitesettingsblock-4 .site_setting_entity .d-flex > div {
  1999. width: 30px;
  2000. margin-right: 1rem; }
  2001. footer .site_setting_entity img {
  2002. height: auto; }
  2003. footer > div {
  2004. display: flex;
  2005. flex-wrap: nowrap; }
  2006. footer > div .__slide .flickity-slider > div {
  2007. width: max-content;
  2008. margin: 0 1rem; }
  2009. footer > div .__slide .flickity-slider > div img {
  2010. width: auto !important;
  2011. height: 100px;
  2012. max-width: 70px;
  2013. object-fit: contain; }
  2014. footer #block-renderedsitesettingsblock-3 {
  2015. display: none; }
  2016. .leaflet-popup-content p {
  2017. font-size: 0.9rem;
  2018. line-height: 1.5;
  2019. font-family: 'Marianneregular'; }
  2020. .leaflet-popup-content p strong {
  2021. color: #1d378eff;
  2022. line-height: 2; }
  2023. .medias .paragraph--type--images {
  2024. width: 100%; }
  2025. .medias .paragraph--type--video {
  2026. margin: 4rem 0; }
  2027. .medias .paragraph--type--video > div {
  2028. font-family: "Marianne";
  2029. font-size: 2rem;
  2030. line-height: normal;
  2031. text-align: center;
  2032. margin-bottom: 1rem;
  2033. text-transform: uppercase; }
  2034. @media screen and (min-width: 768px) {
  2035. .medias .paragraph--type--video > div {
  2036. text-align: left; } }
  2037. .video-embed-field-provider-youtube.video-embed-field-responsive-video {
  2038. display: flex; }
  2039. .no-flexbox .box {
  2040. color: red; }
  2041. .flexbox .box {
  2042. color: green; }
  2043. article img,
  2044. .side_notes img {
  2045. width: 100%;
  2046. height: 100%;
  2047. object-fit: cover; }
  2048. .layout-content {
  2049. width: 100%; }
  2050. #presentation .__wrapper .__wrap_side {
  2051. position: inherit; }
  2052. @media screen and (min-width: 768px) {
  2053. #presentation .__wrapper .__wrap_side {
  2054. position: relative; } }
  2055. #presentation .__wrapper .__wrap_side .notes > div {
  2056. position: absolute;
  2057. margin-top: 2rem; }
  2058. @media screen and (min-width: 768px) {
  2059. #presentation .__wrapper .__wrap_side .notes > div {
  2060. margin-top: -2rem; } }
  2061. #presentation .__wrapper .__wrap_side .notes > div > div {
  2062. background: white;
  2063. padding: 0.5rem; }
  2064. #presentation .__wrapper .__wrap_side .notes > div > div p {
  2065. font-family: 'cormorantBold';
  2066. margin: 0;
  2067. color: #1d378eff; }
  2068. #presentation .__wrapper .__wrap_side .notes .close {
  2069. cursor: pointer;
  2070. background: #1d378eff;
  2071. position: absolute;
  2072. top: -12px;
  2073. left: -15px;
  2074. width: 30px;
  2075. height: 27px; }
  2076. #presentation .__wrapper .__wrap_side .notes .close::after {
  2077. content: "+";
  2078. color: white;
  2079. display: block;
  2080. margin: auto;
  2081. text-align: center;
  2082. transform: rotate(45deg);
  2083. margin-top: -6px; }
  2084. .side_notes {
  2085. position: absolute;
  2086. width: calc(100% - 30px);
  2087. left: 30px;
  2088. width: calc(100% - 45px); }
  2089. @media screen and (min-width: 768px) {
  2090. .side_notes {
  2091. margin-top: -3rem; } }
  2092. .side_notes .wrap {
  2093. position: relative;
  2094. width: max-content; }
  2095. .side_notes .wrap .__hero {
  2096. margin: 0 !important;
  2097. height: 200px;
  2098. max-width: 300px; }
  2099. .side_notes .wrap .__hero .__img {
  2100. height: 200px; }
  2101. .side_notes .wrap .__hero .__img img {
  2102. width: auto;
  2103. height: 100%; }
  2104. .side_notes .wrap .__head {
  2105. background: white;
  2106. padding: 0.5rem;
  2107. width: max-content;
  2108. min-width: 300px; }
  2109. .side_notes .wrap .__head > * {
  2110. font-family: 'cormorantBold';
  2111. color: #1d378eff;
  2112. display: inline; }
  2113. .side_notes .wrap .thumbnails.bibliographie {
  2114. width: 100%; }
  2115. .side_notes .close {
  2116. cursor: pointer;
  2117. background: #1d378eff;
  2118. position: absolute;
  2119. top: -12px;
  2120. left: -15px;
  2121. width: 30px;
  2122. height: 27px; }
  2123. .side_notes .close::after {
  2124. content: "+";
  2125. color: white;
  2126. display: block;
  2127. margin: auto;
  2128. text-align: center;
  2129. transform: rotate(45deg); }
  2130. .side_notes * {
  2131. margin: 0 0 0 0;
  2132. padding: 0;
  2133. flex: 100%;
  2134. max-width: 100%; }
  2135. #tarteaucitronRoot #tarteaucitronDisclaimerAlert,
  2136. #tarteaucitronRoot #tarteaucitronPersonalize,
  2137. #tarteaucitronRoot #tarteaucitronCloseAlert,
  2138. #tarteaucitronRoot #tarteaucitronPrivacyUrl,
  2139. #tarteaucitronRoot #tarteaucitronInfo,
  2140. #tarteaucitronRoot .tarteaucitronH1,
  2141. #tarteaucitronRoot .tarteaucitronH2,
  2142. #tarteaucitronRoot button,
  2143. #tarteaucitronRoot li span,
  2144. #tarteaucitronRoot li a {
  2145. font-family: "truenoregular" !important; }
  2146. .__img-hero,
  2147. .participant_full .__img,
  2148. .participant_full figcaption,
  2149. .home #txt_present, article#presentation,
  2150. #block-shadow_participantsviews-block-slide-programme-block-1,
  2151. #block-shadow_participantsviews-block-dernieres-publications-block-1,
  2152. .__ressources > *,
  2153. article#presentation p,
  2154. .letter-sort,
  2155. .participant_full .content > *,
  2156. .programme.container,
  2157. .programme .thumbnails,
  2158. .views.__publications .thumbnails,
  2159. .les_intervenants .thumbnails_participants,
  2160. #moments .__title,
  2161. #moments .__wrapper,
  2162. #moments .__wrap_content .__content > *,
  2163. #moments .__wrap_side {
  2164. visibility: hidden; }