index.css 72 KB

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