index.css 72 KB

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