styles.css 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385
  1. /*eql*/
  2. /*global*/
  3. @font-face {
  4. font-family: 'Font Awesome';
  5. src: url("../fonts/Font Awesome/fontawesome-webfont.woff2") format("woff2");
  6. font-weight: 400;
  7. font-style: normal; }
  8. /*marianne*/
  9. @font-face {
  10. font-family: 'Marianne';
  11. src: url("../fonts/Marianne/Marianne-Thin.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin.woff") format("woff");
  12. font-weight: 300;
  13. font-style: normal; }
  14. @font-face {
  15. font-family: 'Marianne';
  16. src: url("../fonts/Marianne/Marianne-Thin_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin_Italic.woff") format("woff");
  17. font-weight: 300;
  18. font-style: italic; }
  19. @font-face {
  20. font-family: 'Marianne';
  21. src: url("../fonts/Marianne/Marianne-Light.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light.woff") format("woff");
  22. font-weight: 400;
  23. font-style: normal; }
  24. @font-face {
  25. font-family: 'Marianne';
  26. src: url("../fonts/Marianne/Marianne-Light_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light_Italic.woff") format("woff");
  27. font-weight: 400;
  28. font-style: italic; }
  29. @font-face {
  30. font-family: 'Marianne';
  31. src: url("../fonts/Marianne/Marianne-Regular.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular.woff") format("woff");
  32. font-weight: 600;
  33. font-style: normal; }
  34. @font-face {
  35. font-family: 'Marianne';
  36. src: url("../fonts/Marianne/Marianne-Regular_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular_Italic.woff") format("woff");
  37. font-weight: 600;
  38. font-style: italic; }
  39. @font-face {
  40. font-family: 'Marianne';
  41. src: url("../fonts/Marianne/Marianne-Medium.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium.woff") format("woff");
  42. font-weight: 800;
  43. font-style: normal; }
  44. @font-face {
  45. font-family: 'Marianne';
  46. src: url("../fonts/Marianne/Marianne-Medium_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium_Italic.woff") format("woff");
  47. font-weight: 800;
  48. font-style: italic; }
  49. @font-face {
  50. font-family: 'Marianne';
  51. src: url("../fonts/Marianne/Marianne-Bold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold.woff") format("woff");
  52. font-weight: 900;
  53. font-style: normal; }
  54. @font-face {
  55. font-family: 'Marianne';
  56. src: url("../fonts/Marianne/Marianne-Bold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold_Italic.woff") format("woff");
  57. font-weight: 900;
  58. font-style: italic; }
  59. @font-face {
  60. font-family: 'Marianne';
  61. src: url("../fonts/Marianne/Marianne-ExtraBold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold.woff") format("woff");
  62. font-weight: 1000;
  63. font-style: normal; }
  64. @font-face {
  65. font-family: 'Marianne';
  66. src: url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff") format("woff");
  67. font-weight: 1000;
  68. font-style: italic; }
  69. /* Source Code Pro */
  70. @font-face {
  71. font-family: 'Source Code Pro';
  72. src: url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff") format("woff");
  73. font-weight: 500;
  74. font-style: normal; }
  75. @font-face {
  76. font-family: 'Source Code Pro';
  77. src: url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff") format("woff");
  78. font-weight: 1000;
  79. font-style: normal; }
  80. /* Colors used for EQL */
  81. .layout-container {
  82. font-family: "Marianne", sans-serif;
  83. margin: none;
  84. top: 0%;
  85. left: 0%;
  86. width: 100%;
  87. overflow: hidden;
  88. display: flex;
  89. flex-flow: row wrap; }
  90. .layout-container header {
  91. flex: 0 0 100%; }
  92. .layout-container main {
  93. position: relative; }
  94. .layout-container footer {
  95. flex: 0 0 100%; }
  96. .layout-content {
  97. padding-top: 7rem;
  98. padding-bottom: 6rem; }
  99. .path-frontpage {
  100. margin: 0; }
  101. .path-node {
  102. margin: 0; }
  103. .path-faq {
  104. margin: 0; }
  105. .path-ressources {
  106. margin: 0; }
  107. .path-webform {
  108. margin: 0; }
  109. .main-content {
  110. margin-top: 7rem; }
  111. .field--name-field-titre .field__item {
  112. color: #09398b;
  113. font-weight: 900;
  114. font-size: 2rem; }
  115. .field--name-field-titre .field__label {
  116. visibility: hidden; }
  117. .inter-titre {
  118. color: #009ee3; }
  119. a {
  120. text-decoration: none; }
  121. @media (max-width: 959px) {
  122. #block-headermenu {
  123. display: none; }
  124. .page-node-type-static .layout__region--top {
  125. height: 23vh; }
  126. .page-node-type-static .layout__region--top .block-entity-fieldnodetitle {
  127. margin-top: 11vh; }
  128. .page-node-type-static .node-id-20 .field--name-field-partenaires .paragraph--type--partenaire {
  129. display: flex;
  130. flex-direction: column; }
  131. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  132. width: 70%; }
  133. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static div:first-child:not(.field__item):not(.field) {
  134. display: flex;
  135. flex-direction: column; }
  136. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  137. width: 100%; } }
  138. @media (max-width: 479px) {
  139. #header-top #block-logogouv img {
  140. min-width: 60px;
  141. width: 70%;
  142. height: auto; }
  143. #header-top #block-logoeql img {
  144. min-width: 60px;
  145. width: 80%;
  146. height: auto; }
  147. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content {
  148. display: flex;
  149. flex-direction: column; } }
  150. /*pages*/
  151. /*
  152. @import "pages/partials/header_footer";
  153. @import "pages/home";*/
  154. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  155. padding-bottom: 3rem;
  156. height: 30vh; }
  157. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  158. width: fit-content;
  159. margin-left: 13%;
  160. margin-top: 15vh; }
  161. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle .field--name-title {
  162. font-family: 'Source Code Pro';
  163. font-size: 2rem;
  164. font-weight: 800;
  165. text-transform: uppercase; }
  166. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first {
  167. position: relative; }
  168. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  169. display: flex;
  170. justify-content: end;
  171. position: sticky;
  172. top: 7rem; }
  173. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  174. display: flex;
  175. width: 50%;
  176. background-color: white;
  177. padding-right: 2rem; }
  178. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  179. display: flex;
  180. font-size: 1rem;
  181. font-weight: 1000;
  182. color: #09398b;
  183. border-bottom: 1px solid #009ee3;
  184. padding-bottom: 0.8rem;
  185. padding-right: 1rem;
  186. margin-top: 1rem; }
  187. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  188. text-decoration: underline; }
  189. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes {
  190. background-color: white; }
  191. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  192. font-size: 1.5rem;
  193. font-weight: 1000;
  194. font-family: 'Source Code Pro';
  195. color: #09398b;
  196. text-transform: uppercase;
  197. margin-top: 2rem;
  198. margin-bottom: 0.8rem; }
  199. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 {
  200. text-transform: none !important; }
  201. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  202. width: 100%;
  203. height: auto; }
  204. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  205. padding-right: 2rem; }
  206. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes p {
  207. margin-top: 0; }
  208. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  209. display: flex;
  210. flex-direction: column;
  211. width: 70%; }
  212. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  213. height: fit-content;
  214. border: 2px solid #009ee3;
  215. background-color: white; }
  216. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .field--name-field-fichiers {
  217. min-height: 4rem;
  218. background: white;
  219. color: #009ee3;
  220. padding-left: 0.8rem;
  221. padding-top: 1rem;
  222. margin-bottom: 1rem; }
  223. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  224. display: none; }
  225. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  226. height: inherit;
  227. margin: auto; }
  228. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  229. content: url("../images/pictos/noun_Download_file_307900.svg");
  230. min-width: 40px;
  231. height: auto;
  232. padding-right: 0.5rem;
  233. display: inline-flex;
  234. align-items: center; }
  235. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  236. hyphens: auto;
  237. display: inline-flex;
  238. align-items: center;
  239. color: #009ee3;
  240. font-weight: 800; }
  241. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  242. margin: auto;
  243. height: fit-content;
  244. border: 2px solid #009ee3;
  245. min-height: 4rem;
  246. background: white;
  247. color: #009ee3;
  248. padding-left: 0.8rem;
  249. padding-top: 1rem;
  250. margin-bottom: 1rem; }
  251. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  252. display: inline-flex;
  253. align-items: center;
  254. justify-items: center;
  255. color: #009ee3;
  256. font-weight: 800; }
  257. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  258. content: url("../images/pictos/noun_External Link_674151.svg");
  259. min-width: 40px;
  260. height: auto;
  261. padding-right: 0.5rem;
  262. display: inline-flex;
  263. align-items: center; }
  264. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  265. display: none; }
  266. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  267. margin-top: 3rem; }
  268. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  269. font-size: 0.8rem;
  270. color: black;
  271. font-weight: 900; }
  272. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  273. display: flex;
  274. flex-direction: column;
  275. border: 2px solid #009ee3;
  276. padding: 1rem;
  277. height: fit-content;
  278. margin-bottom: 1rem;
  279. background-color: white; }
  280. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type {
  281. border-top: 1px solid #009ee3;
  282. padding-top: 1rem; }
  283. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type::after {
  284. content: url("../images/pictos/noun_Arrow_3771902.svg");
  285. align-self: end; }
  286. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-title a {
  287. color: black;
  288. font-size: 1.4rem;
  289. font-weight: 600; }
  290. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- {
  291. font-weight: 800; }
  292. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- p {
  293. margin: 0; }
  294. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  295. display: none; }
  296. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition p {
  297. margin: 0; }
  298. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition .field__label {
  299. display: none; }
  300. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images {
  301. display: none;
  302. width: 50%; }
  303. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images img {
  304. width: 100%;
  305. height: auto; }
  306. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-type-de-ressource {
  307. display: inline-flex;
  308. margin-top: 2rem;
  309. background: #09398b;
  310. margin-right: 1rem;
  311. padding-left: 0.3rem;
  312. padding-right: 0.3rem;
  313. color: white;
  314. font-weight: 800;
  315. vertical-align: middle; }
  316. .path-frontpage .block-region-content {
  317. display: grid;
  318. grid-template-areas: "presentation presentation presentation presentation presentation presentation" "presentation presentation presentation presentation presentation presentation" "actus actus actus actus actus actus" "actus actus actus actus actus actus" "programme programme programme programme programme programme" "programme programme programme programme programme programme" "programme programme programme programme programme programme";
  319. grid-template-rows: auto auto auto;
  320. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  321. min-height: 100vh; }
  322. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 {
  323. grid-area: presentation;
  324. grid-row: 1;
  325. background: url("../images/pictos/forme_home_2.svg");
  326. background-size: 75%;
  327. background-position-y: bottom;
  328. background-position-x: left;
  329. background-repeat: no-repeat; }
  330. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child {
  331. display: grid;
  332. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  333. grid-template-rows: repeat(4, auto); }
  334. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-field-images {
  335. display: none; }
  336. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-field-accroche {
  337. grid-column: 2 /span 3;
  338. grid-row: 2 / span 2;
  339. font-size: 5rem;
  340. font-weight: 900;
  341. color: #009ee3;
  342. line-height: 6.9rem;
  343. margin-top: 2rem;
  344. margin-bottom: 5rem;
  345. width: fit-content; }
  346. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-field-accroche p {
  347. margin-top: 4rem;
  348. margin-bottom: 0; }
  349. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-field-accroche span {
  350. background-color: white; }
  351. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-title {
  352. grid-column: 4;
  353. grid-row: 2;
  354. margin-top: 3rem; }
  355. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-title h2 {
  356. background-color: white; }
  357. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-title h2 a {
  358. color: #e1000f;
  359. font-weight: 900;
  360. text-transform: uppercase;
  361. font-family: "Source Code Pro";
  362. display: table;
  363. margin: 0px auto 0px auto; }
  364. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .links.inline {
  365. grid-column: 2;
  366. grid-row: 4;
  367. max-width: 70%;
  368. min-width: fit-content;
  369. height: 1.5rem;
  370. padding: 0.4rem 1rem;
  371. font-size: 0.8rem;
  372. margin-bottom: 2.5rem;
  373. background-color: white;
  374. border: 2px solid #009ee3;
  375. list-style: none;
  376. text-align: center !important; }
  377. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .links.inline a {
  378. display: inline-flex;
  379. text-transform: uppercase;
  380. font-weight: 700;
  381. color: #009ee3;
  382. align-items: center; }
  383. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .links.inline a:after {
  384. display: block;
  385. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>'); }
  386. @media (max-width: 375px) {
  387. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child {
  388. display: grid;
  389. grid-template-columns: 1fr;
  390. grid-template-rows: repeat(4, auto); }
  391. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-field-images {
  392. display: none; }
  393. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-field-accroche {
  394. grid-column: 2 /span 3;
  395. grid-row: 2 / span 2;
  396. font-size: 5rem;
  397. font-weight: 900;
  398. color: #009ee3;
  399. line-height: 6.9rem;
  400. margin-top: 2rem;
  401. margin-bottom: 5rem;
  402. width: fit-content; }
  403. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-field-accroche p {
  404. margin-top: 4rem;
  405. margin-bottom: 0; }
  406. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-field-accroche span {
  407. background-color: white; }
  408. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-title {
  409. grid-column: 4;
  410. grid-row: 2;
  411. margin-top: 3rem; }
  412. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-title h2 {
  413. background-color: white; }
  414. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-title h2 a {
  415. color: #e1000f;
  416. font-weight: 900;
  417. text-transform: uppercase;
  418. font-family: "Source Code Pro";
  419. display: table;
  420. margin: 0px auto 0px auto; }
  421. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .links.inline {
  422. grid-column: 2;
  423. grid-row: 4;
  424. max-width: 70%;
  425. min-width: fit-content;
  426. height: 1.5rem;
  427. padding: 0.4rem 1rem;
  428. font-size: 0.8rem;
  429. margin-bottom: 2.5rem;
  430. background-color: white;
  431. border: 2px solid #009ee3;
  432. list-style: none;
  433. text-align: center !important; }
  434. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .links.inline a {
  435. display: inline-flex;
  436. text-transform: uppercase;
  437. font-weight: 700;
  438. color: #009ee3;
  439. align-items: center; }
  440. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .links.inline a:after {
  441. display: block;
  442. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>'); } }
  443. .path-frontpage .block-region-content .block-block-content9448ca2a-90e3-488b-89cf-8ec6a986a9ca {
  444. grid-area: presentation;
  445. grid-column: 3 /span 4;
  446. grid-row: 1;
  447. align-self: end;
  448. margin-bottom: 2.5rem;
  449. max-width: 25%;
  450. min-width: fit-content; }
  451. .path-frontpage .block-region-content .block-block-content9448ca2a-90e3-488b-89cf-8ec6a986a9ca .field--type-link {
  452. grid-column: 3;
  453. position: relative;
  454. height: 1.5rem;
  455. padding: 0.4rem 1rem;
  456. font-size: 0.8rem;
  457. margin: 0;
  458. background-color: white;
  459. border: 2px solid #009ee3;
  460. list-style: none;
  461. top: -200%;
  462. text-align: center !important; }
  463. .path-frontpage .block-region-content .block-block-content9448ca2a-90e3-488b-89cf-8ec6a986a9ca .field--type-link a {
  464. display: inline-flex;
  465. text-transform: uppercase;
  466. font-weight: 700;
  467. color: #009ee3;
  468. align-items: center; }
  469. .path-frontpage .block-region-content .block-block-content9448ca2a-90e3-488b-89cf-8ec6a986a9ca .field--type-link a .ext {
  470. display: none; }
  471. .path-frontpage .block-region-content .block-block-content9448ca2a-90e3-488b-89cf-8ec6a986a9ca .field--type-link a::after {
  472. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>'); }
  473. .path-frontpage .block-region-content .block-block-content1bb9024b-d95f-4137-894c-362abf10a483 {
  474. grid-area: presentation;
  475. grid-column: 5;
  476. grid-row: 1;
  477. background-color: #009ee3;
  478. height: fit-content;
  479. align-self: end; }
  480. .path-frontpage .block-region-content .block-block-content1bb9024b-d95f-4137-894c-362abf10a483 .field--name-field-lien {
  481. text-align: center; }
  482. .path-frontpage .block-region-content .block-block-content1bb9024b-d95f-4137-894c-362abf10a483 .field--name-field-lien:before {
  483. margin-top: 1rem;
  484. display: block;
  485. content: url("../images/pictos/picto_faq.svg"); }
  486. .path-frontpage .block-region-content .block-block-content1bb9024b-d95f-4137-894c-362abf10a483 .field--name-field-lien a {
  487. font-size: 0.8rem;
  488. font-weight: 1000;
  489. color: #09398b;
  490. text-transform: uppercase; }
  491. .path-frontpage .block-region-content .block-block-content1bb9024b-d95f-4137-894c-362abf10a483 .field--name-field-description {
  492. margin-bottom: 1rem; }
  493. .path-frontpage .block-region-content .block-block-content1bb9024b-d95f-4137-894c-362abf10a483 .field--name-field-description p {
  494. margin-top: 0;
  495. margin-bottom: 0;
  496. margin-left: 1.5rem;
  497. margin-right: 1.5rem;
  498. text-align: center; }
  499. .path-frontpage .block-region-content .block-block-content1bb9024b-d95f-4137-894c-362abf10a483 .field--name-field-description p a {
  500. font-weight: 800;
  501. color: white;
  502. font-size: 1.3rem; }
  503. .path-frontpage .block-region-content .block-block-content7db64d87-3e22-4fbd-9c11-2b95f5bef695 {
  504. grid-column: 5;
  505. grid-row: 1;
  506. height: fit-content;
  507. display: flex;
  508. justify-self: end;
  509. width: 50%;
  510. margin-top: 3rem; }
  511. .path-frontpage .block-region-content .block-block-content7db64d87-3e22-4fbd-9c11-2b95f5bef695 .field--name-body {
  512. justify-content: right;
  513. display: flex;
  514. flex-direction: column;
  515. text-transform: uppercase;
  516. text-align: right;
  517. font-size: 1.3rem; }
  518. .path-frontpage .block-region-content .block-block-content7db64d87-3e22-4fbd-9c11-2b95f5bef695 .field--name-body :nth-child(1):after {
  519. display: block;
  520. content: url("../images/pictos/noun_Arrow_3771902-rouge.svg");
  521. transform: rotate(90deg);
  522. height: fit-content;
  523. position: relative;
  524. top: -30px;
  525. right: -60px; }
  526. .path-frontpage .block-region-content .block-block-content7db64d87-3e22-4fbd-9c11-2b95f5bef695 .field--name-body :nth-child(2) {
  527. font-size: 2.5rem;
  528. font-weight: 900; }
  529. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 {
  530. grid-area: actus;
  531. width: 100vw;
  532. border-bottom: 5px solid #009ee3;
  533. border-top: 5px solid #009ee3;
  534. background: rgba(0, 158, 227, 0.2); }
  535. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content {
  536. display: grid;
  537. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  538. margin: auto;
  539. padding-top: 2rem;
  540. padding-bottom: 4rem; }
  541. @media (max-width: 479px) {
  542. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content {
  543. display: flex;
  544. padding-left: 1rem;
  545. width: 80%; } }
  546. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .views-row:nth-of-type(1) {
  547. grid-column: 2; }
  548. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite {
  549. color: black;
  550. line-height: 1.5rem;
  551. padding: 0.5rem; }
  552. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite div:first-child {
  553. display: flex;
  554. flex-direction: column; }
  555. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite div:first-child :nth-child(1) {
  556. order: 1; }
  557. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite div:first-child :nth-child(4) {
  558. order: 2; }
  559. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite div:first-child :nth-child(5) {
  560. order: 3; }
  561. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite .field--name-field-images .field__item img {
  562. max-width: 95%;
  563. max-height: 150px;
  564. object-fit: cover;
  565. width: 100%;
  566. padding-bottom: 1rem; }
  567. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite .field--name-field-date {
  568. display: flex;
  569. flex-direction: row-reverse;
  570. justify-content: flex-end; }
  571. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite .field--name-field-date:not(:last-child):after {
  572. padding-right: 1rem;
  573. content: "|"; }
  574. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite .field--name-field-date time {
  575. font-size: 0.9rem;
  576. font-weight: 800;
  577. padding-right: 1rem;
  578. width: fit-content; }
  579. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite .field:not(.field--name-field-images) {
  580. width: 100%; }
  581. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite h2 {
  582. margin: 0; }
  583. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite a {
  584. color: black; }
  585. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite .inline.links {
  586. padding-top: none !important;
  587. list-style: none;
  588. width: fit-content;
  589. align-self: flex-end;
  590. padding-right: 1rem; }
  591. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite .inline.links a {
  592. display: none; }
  593. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content .node-type-actualite .field--name-field-actu-type {
  594. padding-top: 1rem; }
  595. .path-frontpage .block-region-content .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  596. grid-area: actus;
  597. grid-row: 4;
  598. grid-column: 5 / span 6;
  599. max-width: 50%;
  600. min-width: fit-content;
  601. margin-bottom: 2rem;
  602. align-self: end; }
  603. @media (max-width: 479px) {
  604. .path-frontpage .block-region-content .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  605. grid-column: 3 / span 6; } }
  606. .path-frontpage .block-region-content .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--type-link {
  607. width: fit-content;
  608. height: fit-content;
  609. padding: 0.4rem 1rem;
  610. font-size: 0.8rem;
  611. margin: 0;
  612. background-color: white;
  613. border: 2px solid #009ee3;
  614. list-style: none;
  615. display: inline-flex; }
  616. .path-frontpage .block-region-content .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--type-link a {
  617. text-transform: uppercase;
  618. font-weight: 700;
  619. color: #009ee3;
  620. display: inline-flex;
  621. align-items: center; }
  622. .path-frontpage .block-region-content .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--type-link a::after {
  623. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>'); }
  624. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-2 {
  625. grid-area: programme; }
  626. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) {
  627. padding-top: 2rem;
  628. background: url("../images/pictos/carre-contour-bleu.svg");
  629. background-repeat: no-repeat;
  630. max-width: 100vw;
  631. background-size: cover; }
  632. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  633. width: 70%;
  634. margin: auto; }
  635. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static div:first-child:not(.field__item):not(.field) {
  636. display: flex;
  637. flex-direction: row;
  638. flex-wrap: wrap; }
  639. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static div:first-child:not(.field__item):not(.field) :nth-child(4) {
  640. order: 3; }
  641. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links {
  642. z-index: 95;
  643. align-self: flex-end;
  644. width: fit-content;
  645. height: fit-content;
  646. padding: 0.4rem 1rem;
  647. font-size: 0.8rem;
  648. margin: 0;
  649. background-color: white;
  650. border: 2px solid #009ee3;
  651. list-style: none; }
  652. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a {
  653. text-transform: uppercase;
  654. font-weight: 700;
  655. color: #009ee3;
  656. display: inline-flex;
  657. align-items: center; }
  658. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a:after {
  659. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>'); }
  660. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-images .field__item img {
  661. width: 15rem;
  662. height: auto; }
  663. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-title {
  664. display: none; }
  665. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche {
  666. flex: 1 1 50px;
  667. padding-left: 1rem; }
  668. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  669. background-color: white;
  670. font-size: 1.5rem;
  671. width: 110%;
  672. padding-bottom: 2rem;
  673. margin-block-start: 0;
  674. text-align: start !important; }
  675. .path-frontpage .block-region-content .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-videos {
  676. flex: 0 0 80%;
  677. padding-top: 4rem;
  678. margin: auto; }
  679. .node-id-20 {
  680. background: url("../images/pictos/carre-contour-bleu_partenaire.svg");
  681. background-repeat: repeat;
  682. background-position-y: 7rem;
  683. max-width: 100vw;
  684. background-size: contain; }
  685. .node-id-20 .layout__region--top {
  686. padding-bottom: 3rem;
  687. height: 30vh; }
  688. .node-id-20 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  689. font-family: 'Source Code Pro';
  690. font-size: 2rem;
  691. font-weight: 800;
  692. color: white;
  693. background-color: #009ee3;
  694. text-transform: uppercase; }
  695. .field--name-field-partenaires {
  696. padding-top: 3rem; }
  697. .field--name-field-partenaires .paragraph--type--partenaire {
  698. background-color: white;
  699. width: 100%;
  700. padding-bottom: 3rem;
  701. display: grid;
  702. grid-template-columns: repeat(7, 1fr);
  703. grid-template-rows: repeat(auto-fill); }
  704. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-logo {
  705. grid-column: 1 / 2;
  706. grid-row: 2;
  707. margin-top: 2rem;
  708. padding-right: 1rem; }
  709. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-titre {
  710. grid-column: 2 / 8;
  711. grid-row: 1;
  712. font-weight: 800; }
  713. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-texte {
  714. grid-column: 2 / 8;
  715. grid-row: 2; }
  716. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-lien {
  717. grid-column: 2 / 8;
  718. grid-row: 3; }
  719. .field--name-field-partenaires a {
  720. color: black;
  721. font-weight: 800; }
  722. .field--name-field-partenaires a svg {
  723. display: none; }
  724. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  725. background-color: rgba(0, 158, 227, 0.2);
  726. height: 40vh;
  727. padding-right: 1rem; }
  728. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top {
  729. display: grid;
  730. grid-template-columns: 1fr repeat(8, 1fr) 1fr;
  731. padding-top: 2rem; }
  732. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-actu-type {
  733. grid-column: 2; }
  734. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  735. grid-column: 2 /span 7;
  736. margin: 0; }
  737. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  738. font-family: "Source Code Pro";
  739. font-size: 3rem;
  740. font-weight: 500; }
  741. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date {
  742. grid-column: 2 / span 3;
  743. text-transform: uppercase;
  744. color: #09398b;
  745. font-size: 1.2rem;
  746. font-weight: 800; }
  747. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date .field--name-field-date {
  748. display: flex;
  749. flex-direction: row;
  750. justify-content: flex-start; }
  751. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date .field--name-field-date .field__item:not(:last-child):after {
  752. padding-right: 1rem;
  753. padding-left: 1rem;
  754. content: "|"; }
  755. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  756. grid-column-start: 5;
  757. grid-column-end: 9; }
  758. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  759. padding-top: 2rem;
  760. width: 600px;
  761. max-height: 360px;
  762. object-fit: cover; }
  763. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first {
  764. margin-top: 18rem; }
  765. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  766. display: flex;
  767. justify-content: end; }
  768. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  769. display: flex;
  770. justify-content: end;
  771. width: 50%;
  772. background-color: white;
  773. padding-right: 2rem; }
  774. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  775. display: flex;
  776. font-size: 1rem;
  777. font-weight: 1000;
  778. color: #09398b;
  779. border-bottom: 1px solid #009ee3;
  780. padding-bottom: 0.5rem;
  781. padding-right: 1rem;
  782. margin-bottom: 0.8rem; }
  783. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  784. text-decoration: underline; }
  785. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  786. flex: 0 1 50%;
  787. margin-top: 18rem; }
  788. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  789. width: 90%; }
  790. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody p {
  791. margin-top: 0; }
  792. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes {
  793. background-color: white; }
  794. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--name-field-titre {
  795. font-size: 1.5rem;
  796. font-weight: 1000;
  797. font-family: 'Source Code Pro';
  798. color: #09398b;
  799. text-transform: uppercase;
  800. margin-top: 2rem;
  801. margin-bottom: 0.8rem; }
  802. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 {
  803. text-transform: none !important; }
  804. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 img {
  805. width: 100%;
  806. height: auto; }
  807. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--type-text-long {
  808. padding-right: 2rem; }
  809. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes p {
  810. margin-top: 0; }
  811. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a {
  812. color: black;
  813. text-decoration: underline; }
  814. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a svg {
  815. display: none; }
  816. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .panel-body #outputtext {
  817. overflow-y: visible !important; }
  818. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third {
  819. margin-top: 18rem; }
  820. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  821. display: flex;
  822. flex-direction: column;
  823. width: 65%; }
  824. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  825. height: fit-content;
  826. border: 2px solid #009ee3;
  827. background-color: white;
  828. margin-bottom: 1rem;
  829. min-height: 4rem;
  830. color: #009ee3;
  831. padding-left: 1rem;
  832. padding-top: 1rem; }
  833. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  834. display: none; }
  835. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  836. height: inherit;
  837. margin: auto; }
  838. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  839. content: url("../images/pictos/noun_Download_file_307900.svg");
  840. min-width: 40px;
  841. height: auto;
  842. padding-right: 1rem; }
  843. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  844. hyphens: auto;
  845. display: inline-flex;
  846. align-items: center;
  847. color: #009ee3;
  848. font-weight: 800; }
  849. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  850. margin: auto;
  851. height: fit-content;
  852. border: 2px solid #009ee3;
  853. min-height: 4rem;
  854. background: white;
  855. color: #009ee3;
  856. padding-left: 1rem;
  857. padding-top: 1rem;
  858. margin-bottom: 1rem; }
  859. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  860. display: inline-flex;
  861. align-items: center;
  862. color: #009ee3;
  863. font-weight: 800; }
  864. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  865. content: url("../images/pictos/noun_External Link_674151.svg");
  866. min-width: 40px;
  867. height: auto;
  868. padding-right: 1rem; }
  869. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  870. display: none; }
  871. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  872. margin-top: 3rem; }
  873. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  874. font-size: 0.8rem;
  875. color: black;
  876. font-weight: 900; }
  877. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  878. display: flex;
  879. flex-direction: column;
  880. border: 2px solid #009ee3;
  881. padding: 1rem;
  882. height: fit-content;
  883. margin-bottom: 1rem;
  884. background-color: white; }
  885. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type {
  886. border-top: 1px solid #009ee3;
  887. padding-top: 1rem; }
  888. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type::after {
  889. content: url("../images/pictos/noun_Arrow_3771902.svg");
  890. align-self: end; }
  891. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-title a {
  892. color: black;
  893. font-size: 1.4rem;
  894. font-weight: 600; }
  895. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- {
  896. font-weight: 800; }
  897. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- p {
  898. margin: 0; }
  899. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  900. display: none; }
  901. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition p {
  902. margin: 0; }
  903. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition .field__label {
  904. display: none; }
  905. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images {
  906. width: 50%; }
  907. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images img {
  908. width: 100%;
  909. height: auto; }
  910. .node-id-35 .region-content {
  911. background: url("../images/pictos/carre-contour-bleu_gouvernance.svg");
  912. background-repeat: no-repeat;
  913. max-width: 100vw;
  914. background-size: contain; }
  915. .node-id-35 .layout__region--top {
  916. padding-bottom: 3rem;
  917. height: 30vh; }
  918. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  919. display: none;
  920. height: inherit; }
  921. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  922. font-family: 'Source Code Pro';
  923. font-size: 2rem;
  924. font-weight: 800;
  925. color: white;
  926. background-color: #009ee3;
  927. text-transform: uppercase; }
  928. .node-id-3 {
  929. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  930. background-repeat: no-repeat;
  931. background-position-y: 7rem;
  932. max-width: 100vw;
  933. background-size: contain; }
  934. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  935. display: none;
  936. height: inherit; }
  937. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  938. color: #009ee3;
  939. background-color: white; }
  940. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  941. background: #009ee3 !important;
  942. color: white !important; }
  943. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item a {
  944. color: white !important; }
  945. .node-id-3 .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  946. background: #009ee3;
  947. color: white; }
  948. .node-id-3 .block-entity-fieldnodefield-ress {
  949. margin-top: 3rem; }
  950. .node-id-3 .block-entity-fieldnodefield-ress h2 {
  951. font-size: 0.8rem;
  952. color: black;
  953. font-weight: 900; }
  954. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource {
  955. display: flex;
  956. flex-direction: column;
  957. border: 2px solid #009ee3;
  958. padding: 1rem;
  959. height: fit-content;
  960. margin-bottom: 1rem;
  961. background-color: white; }
  962. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type {
  963. border-top: 1px solid #009ee3;
  964. padding-top: 1rem; }
  965. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type::after {
  966. content: url("../images/pictos/noun_Arrow_3771902.svg");
  967. align-self: end; }
  968. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-title a {
  969. color: black;
  970. font-size: 1.4rem;
  971. font-weight: 600; }
  972. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- {
  973. font-weight: 800; }
  974. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- p {
  975. margin: 0; }
  976. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  977. display: none; }
  978. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition p {
  979. margin: 0; }
  980. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition .field__label {
  981. display: none; }
  982. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images {
  983. display: none;
  984. width: 50%; }
  985. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images img {
  986. width: 100%;
  987. height: auto; }
  988. .path-actualites {
  989. background-color: rgba(0, 158, 227, 0.2);
  990. margin: 0; }
  991. .path-actualites .block-region-content {
  992. display: grid;
  993. grid-template-columns: 1fr 8fr 1fr;
  994. margin: auto;
  995. padding-top: 3rem; }
  996. .path-actualites .block-region-content .block-views {
  997. grid-column: 2; }
  998. .path-actualites .block-region-content .block-views .view-content {
  999. display: flex;
  1000. flex-direction: row;
  1001. flex-wrap: wrap; }
  1002. .path-actualites .block-region-content .block-views .view-content .views-row {
  1003. width: 25%;
  1004. flex: 0 0 25%; }
  1005. .path-actualites .block-region-content .block-views .view-display-id-block_2 {
  1006. padding-top: 0; }
  1007. .path-actualites .block-region-content .block-views .node-type-actualite {
  1008. color: #09398b;
  1009. line-height: 1.5rem;
  1010. padding: 0.5rem;
  1011. padding-right: 1rem;
  1012. padding-left: 1rem; }
  1013. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child {
  1014. display: flex;
  1015. flex-direction: column; }
  1016. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child :nth-child(1) {
  1017. order: 1; }
  1018. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child :nth-child(4) {
  1019. order: 2; }
  1020. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child :nth-child(5) {
  1021. order: 3; }
  1022. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child a {
  1023. color: #09398b; }
  1024. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  1025. width: 100%;
  1026. max-height: 175px;
  1027. object-fit: cover; }
  1028. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images::after {
  1029. display: block;
  1030. content: url('data:image/svg+xml,<svg width="160" height="40" xmlns="http://www.w3.org/2000/svg" version="1.1"> <line x1="0" x2="80" y1="20" y2="20" stroke-linecap="cube" stroke="rgb(9,57,139)" stroke-width="5"/></svg>'); }
  1031. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date {
  1032. display: flex;
  1033. flex-direction: row-reverse;
  1034. justify-content: flex-end; }
  1035. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date:not(:last-child):after {
  1036. padding-right: 1rem;
  1037. content: "|"; }
  1038. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date time {
  1039. font-size: 0.9rem;
  1040. font-weight: 800;
  1041. padding-right: 1rem;
  1042. width: fit-content; }
  1043. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field:not(.field--name-field-images) {
  1044. width: 100%; }
  1045. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child h2 {
  1046. margin: 0; }
  1047. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links {
  1048. padding-top: none !important;
  1049. list-style: none;
  1050. width: fit-content;
  1051. align-self: flex-end;
  1052. padding-right: 1rem; }
  1053. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links a {
  1054. display: none; }
  1055. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-actu-type {
  1056. padding-top: 1rem; }
  1057. .node-id-4 {
  1058. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  1059. background-repeat: no-repeat;
  1060. background-position-y: 7rem;
  1061. max-width: 100vw;
  1062. background-size: contain; }
  1063. .node-id-4 #block-contenudelapageprincipale {
  1064. scroll-margin: 8rem; }
  1065. .node-id-4 .layout__region--top {
  1066. padding-bottom: 3rem;
  1067. height: 30vh; }
  1068. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1069. display: none;
  1070. height: inherit; }
  1071. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1072. font-family: 'Source Code Pro';
  1073. font-size: 2rem;
  1074. font-weight: 800;
  1075. color: white;
  1076. background-color: #009ee3;
  1077. text-transform: uppercase; }
  1078. .node-id-4 .layout__region--second {
  1079. width: 25%; }
  1080. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes {
  1081. background-color: white; }
  1082. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  1083. font-size: 1.5rem;
  1084. font-weight: 1000;
  1085. font-family: 'Source Code Pro';
  1086. color: #09398b;
  1087. text-transform: uppercase; }
  1088. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  1089. text-transform: none !important; }
  1090. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  1091. padding-right: 2rem; }
  1092. .node-id-5 .region-content {
  1093. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  1094. background-repeat: no-repeat;
  1095. max-width: 100vw;
  1096. background-size: contain; }
  1097. .node-id-5 .layout__region--top {
  1098. padding-bottom: 3rem;
  1099. height: 30vh; }
  1100. .node-id-5 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1101. font-family: 'Source Code Pro';
  1102. font-size: 2rem;
  1103. font-weight: 800;
  1104. color: white;
  1105. background-color: #009ee3;
  1106. text-transform: uppercase; }
  1107. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  1108. color: black;
  1109. text-decoration: underline; }
  1110. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  1111. display: none; }
  1112. .path-faq #block-contenudelapageprincipale h2 {
  1113. font-family: 'Source Code Pro';
  1114. font-size: 2rem;
  1115. font-weight: 800;
  1116. color: #009ee3;
  1117. background-color: white;
  1118. text-transform: uppercase;
  1119. width: fit-content;
  1120. margin-left: 10%;
  1121. margin-top: 8rem; }
  1122. .path-faq #block-contenudelapageprincipale .block-region-content {
  1123. display: grid;
  1124. grid-template-columns: 1fr repeat(4, 2fr) 1fr; }
  1125. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  1126. grid-column: 2 / span 3; }
  1127. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  1128. grid-column: 5;
  1129. display: flex;
  1130. flex-direction: column;
  1131. max-width: fit-content;
  1132. margin-left: 2rem;
  1133. padding: 1rem;
  1134. background-color: #009ee3; }
  1135. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  1136. text-align: center; }
  1137. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  1138. margin-top: 1rem;
  1139. display: block;
  1140. content: url("../images/pictos/picto_faq.svg"); }
  1141. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  1142. font-size: 0.8rem;
  1143. font-weight: 1000;
  1144. color: #09398b;
  1145. text-transform: uppercase; }
  1146. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p {
  1147. display: flex;
  1148. flex-direction: column;
  1149. margin-top: 0;
  1150. margin-left: 1.5rem;
  1151. margin-right: 1.5rem;
  1152. text-align: center; }
  1153. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p a {
  1154. font-weight: 800;
  1155. color: white;
  1156. font-size: 1.3rem; }
  1157. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p:after {
  1158. margin-left: auto;
  1159. padding-top: 1rem;
  1160. display: block;
  1161. content: url("../images/pictos/noun_Arrow_3771902.svg"); }
  1162. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  1163. grid-column: 2 / span 3;
  1164. display: grid;
  1165. grid-template-columns: 1fr 1fr 1fr; }
  1166. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child {
  1167. grid-column: 1 / span 3; }
  1168. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  1169. border-bottom: 1px solid #009ee3;
  1170. padding-bottom: 2rem; }
  1171. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-title {
  1172. display: none; }
  1173. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p {
  1174. font-family: 'Source Code Pro';
  1175. font-weight: 500;
  1176. color: #09398b;
  1177. font-size: 1.5rem; }
  1178. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p:after {
  1179. display: inline-flex;
  1180. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" rotate="-45" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>');
  1181. justify-self: flex-end; }
  1182. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-reponse {
  1183. display: none; }
  1184. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .opened {
  1185. display: block; }
  1186. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers span:nth-of-type(2) {
  1187. display: none; }
  1188. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers .file--mime-application-pdf span:nth-of-type(2) {
  1189. display: none; }
  1190. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers .file--mime-application-pdf ::before {
  1191. display: inline-block;
  1192. content: url("../images/pictos/noun_Download_file_307900.svg");
  1193. width: 30px;
  1194. height: 30px;
  1195. padding-right: 0.8rem; }
  1196. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers .file--mime-application-pdf a {
  1197. display: inline-flex;
  1198. align-items: center;
  1199. color: black;
  1200. font-weight: 800; }
  1201. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a {
  1202. display: flex;
  1203. flex-direction: row;
  1204. justify-content: left;
  1205. align-items: center;
  1206. color: black;
  1207. font-weight: 800; }
  1208. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a:before {
  1209. display: inline-block;
  1210. content: url("../images/pictos/noun_External Link_674151.svg");
  1211. width: 30px;
  1212. height: 30px;
  1213. padding-right: 0.8rem; }
  1214. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens svg {
  1215. display: none; }
  1216. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress {
  1217. margin-top: 0.5rem; }
  1218. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress a {
  1219. color: black;
  1220. text-decoration: underline;
  1221. font-weight: 800; }
  1222. .node-id-6 {
  1223. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  1224. background-repeat: no-repeat;
  1225. background-position-y: 7rem;
  1226. max-width: 100vw;
  1227. background-size: contain; }
  1228. .node-id-6 .layout__region--top {
  1229. padding-bottom: 3rem;
  1230. height: 30vh; }
  1231. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1232. display: none;
  1233. height: inherit; }
  1234. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1235. font-family: 'Source Code Pro';
  1236. font-size: 2rem;
  1237. font-weight: 800;
  1238. color: white;
  1239. background-color: #009ee3;
  1240. text-transform: uppercase; }
  1241. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  1242. color: black;
  1243. text-decoration: underline; }
  1244. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  1245. display: none; }
  1246. .path-ressources.basededonnees .layout-content {
  1247. width: 100vw; }
  1248. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale span {
  1249. padding-top: 3rem;
  1250. padding-bottom: 3rem;
  1251. vertical-align: middle; }
  1252. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale span h2 {
  1253. margin: 0;
  1254. padding-top: 2rem;
  1255. height: 4rem;
  1256. color: white;
  1257. font-family: "Source Code Pro";
  1258. text-transform: uppercase;
  1259. background: #009ee3;
  1260. padding-left: 13%; }
  1261. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  1262. position: relative;
  1263. background: url("../images/pictos/carre-contour-bleu_bdd.svg");
  1264. background-repeat: no-repeat;
  1265. background-position-y: 30vh;
  1266. max-width: 100vw;
  1267. background-size: cover; }
  1268. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 {
  1269. background: rgba(0, 158, 227, 0.2);
  1270. height: fit-content;
  1271. display: flex; }
  1272. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 div {
  1273. width: 100%; }
  1274. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 .view-id-collections {
  1275. height: 100%;
  1276. display: flex;
  1277. width: 60%;
  1278. margin: auto; }
  1279. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 .view-id-collections .view-content {
  1280. display: flex;
  1281. flex-direction: row;
  1282. margin: auto;
  1283. margin-top: 2rem;
  1284. margin-bottom: 2rem;
  1285. justify-content: space-between;
  1286. align-items: center; }
  1287. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 .view-id-collections .view-content .views-row {
  1288. background: white;
  1289. width: 46%;
  1290. height: 80%;
  1291. padding: 1rem; }
  1292. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 .view-id-collections .view-content .views-row a {
  1293. color: black;
  1294. font-size: 1.5rem;
  1295. font-weight: 600; }
  1296. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 .view-id-collections .view-content .views-row:hover {
  1297. background: #09398b; }
  1298. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 .view-id-collections .view-content .views-row:hover a {
  1299. color: white; }
  1300. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  1301. margin: 2rem; }
  1302. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  1303. width: 65%;
  1304. margin: auto;
  1305. background: white; }
  1306. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 {
  1307. margin: auto;
  1308. width: 60%; }
  1309. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters {
  1310. display: none;
  1311. background-color: white;
  1312. margin-top: 2rem;
  1313. margin-bottom: 2rem; }
  1314. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters .views-exposed-form-base-de-donnees-block-1 {
  1315. width: fit-content;
  1316. display: flex; }
  1317. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters .views-exposed-form-base-de-donnees-block-1 .js-form-item.form-item.js-form-type-select.form-item-field-type-de-ressource-target-id.js-form-item-field-type-de-ressource-target-id {
  1318. width: fit-content; }
  1319. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters .views-exposed-form-base-de-donnees-block-1 .form-item {
  1320. width: fit-content; }
  1321. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters .views-exposed-form-base-de-donnees-block-1 .form-item-field-type-de-ressource-target-id {
  1322. width: fit-content; }
  1323. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content {
  1324. display: flex;
  1325. flex-direction: row;
  1326. flex-wrap: wrap;
  1327. justify-content: space-between;
  1328. margin-top: 3rem; }
  1329. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row {
  1330. width: 49%;
  1331. min-height: 300px;
  1332. border: 2px solid #009ee3;
  1333. background-color: white;
  1334. margin-bottom: 1rem; }
  1335. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row:hover {
  1336. background-color: #009ee3; }
  1337. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource {
  1338. display: flex;
  1339. flex-direction: column;
  1340. padding: 1rem; }
  1341. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-type-de-ressource {
  1342. text-transform: uppercase; }
  1343. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-type-de-ressource a {
  1344. color: #009ee3;
  1345. font-weight: 900;
  1346. font-size: 0.8rem; }
  1347. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-title h2 {
  1348. margin: 0; }
  1349. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-title h2 a {
  1350. color: black;
  1351. font-size: 1.4rem;
  1352. font-weight: 600; }
  1353. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-auteur-s- {
  1354. font-weight: 800; }
  1355. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-auteur-s- p {
  1356. margin: 0; }
  1357. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-auteur-s- .field__label {
  1358. display: none; }
  1359. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-edition p {
  1360. margin: 0; }
  1361. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-edition .field__label {
  1362. display: none; }
  1363. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-images {
  1364. display: none;
  1365. width: 50%; }
  1366. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-images img {
  1367. width: 100%;
  1368. height: auto; }
  1369. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-mots-clefs {
  1370. display: flex;
  1371. margin-top: 2rem;
  1372. flex-direction: row;
  1373. flex-wrap: wrap; }
  1374. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-mots-clefs .field__item {
  1375. margin-right: 1rem;
  1376. padding-left: 0.3rem;
  1377. padding-right: 0.3rem; }
  1378. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-mots-clefs .field__item a {
  1379. background: #09398b;
  1380. color: white;
  1381. font-weight: 800;
  1382. vertical-align: super;
  1383. padding-left: 0.1rem;
  1384. padding-right: 0.1rem;
  1385. display: inline-flex; }
  1386. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource ul.links.inline {
  1387. display: none; }
  1388. .page-node-type-ressource .layout__region--top .block-region-top {
  1389. margin-top: 2rem;
  1390. margin-left: 13%; }
  1391. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  1392. color: #009ee3;
  1393. text-transform: uppercase;
  1394. font-weight: 800; }
  1395. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1396. font-size: 2rem;
  1397. font-weight: 600; }
  1398. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  1399. margin-bottom: 0; }
  1400. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  1401. font-size: 1.5rem;
  1402. font-weight: 800; }
  1403. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  1404. margin: 0; }
  1405. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  1406. display: inline-flex;
  1407. margin-top: 2rem; }
  1408. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  1409. background: #09398b;
  1410. margin-right: 1rem;
  1411. padding-left: 0.3rem;
  1412. padding-right: 0.3rem;
  1413. color: white;
  1414. font-weight: 800;
  1415. vertical-align: middle; }
  1416. .page-node-type-ressource .layout__region--first {
  1417. margin-top: 3rem;
  1418. position: relative; }
  1419. .page-node-type-ressource .layout__region--first .block-region-first {
  1420. display: flex;
  1421. justify-content: end;
  1422. position: sticky;
  1423. top: 7rem; }
  1424. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  1425. display: flex;
  1426. width: 50%;
  1427. background-color: white;
  1428. padding-right: 2rem; }
  1429. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  1430. display: flex;
  1431. font-size: 1rem;
  1432. font-weight: 1000;
  1433. color: #09398b;
  1434. border-bottom: 1px solid #009ee3;
  1435. padding-bottom: 0.5rem;
  1436. padding-right: 1rem; }
  1437. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  1438. text-decoration: underline; }
  1439. .page-node-type-ressource .layout__region--second {
  1440. margin-top: 3rem; }
  1441. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  1442. background-color: white; }
  1443. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  1444. font-size: 1.5rem;
  1445. font-weight: 1000;
  1446. font-family: 'Source Code Pro';
  1447. color: #09398b;
  1448. text-transform: uppercase; }
  1449. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  1450. text-transform: none !important; }
  1451. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  1452. width: 100%;
  1453. height: auto; }
  1454. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  1455. padding-right: 2rem; }
  1456. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  1457. margin-top: 0; }
  1458. .page-node-type-ressource .layout__region--third {
  1459. margin-top: 3rem; }
  1460. .page-node-type-ressource .layout__region--third .block-region-third {
  1461. display: flex;
  1462. flex-direction: column;
  1463. width: 70%; }
  1464. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  1465. height: fit-content;
  1466. border: 2px solid #009ee3;
  1467. background-color: white; }
  1468. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  1469. min-height: 4rem;
  1470. background: white;
  1471. color: #009ee3;
  1472. padding-left: 1rem;
  1473. padding-top: 1rem;
  1474. margin-bottom: 1rem; }
  1475. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  1476. display: none; }
  1477. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  1478. height: inherit;
  1479. margin: auto; }
  1480. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  1481. content: url("../images/pictos/noun_Download_file_307900.svg");
  1482. min-width: 50px;
  1483. height: auto;
  1484. padding-right: 1rem; }
  1485. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  1486. hyphens: auto;
  1487. display: inline-flex;
  1488. align-items: center;
  1489. color: #009ee3;
  1490. font-weight: 800; }
  1491. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  1492. margin: auto;
  1493. height: fit-content;
  1494. border: 2px solid #009ee3;
  1495. min-height: 4rem;
  1496. background: white;
  1497. color: #009ee3;
  1498. padding-left: 1rem;
  1499. padding-top: 1rem;
  1500. margin-bottom: 1rem; }
  1501. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  1502. display: inline-flex;
  1503. align-items: center;
  1504. color: #009ee3;
  1505. font-weight: 800; }
  1506. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  1507. content: url("../images/pictos/noun_External Link_674151.svg");
  1508. min-width: 50px;
  1509. height: auto;
  1510. padding-right: 1rem; }
  1511. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  1512. display: none; }
  1513. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  1514. margin-top: 3rem; }
  1515. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  1516. font-size: 0.8rem;
  1517. color: black;
  1518. font-weight: 900;
  1519. margin-bottom: 1rem; }
  1520. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  1521. display: flex;
  1522. flex-direction: column;
  1523. border: 2px solid #009ee3;
  1524. padding: 1rem;
  1525. height: fit-content;
  1526. margin-bottom: 1rem;
  1527. background-color: white; }
  1528. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource:first-of-type {
  1529. border-top: 1px solid #009ee3;
  1530. padding-top: 1rem; }
  1531. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource:first-of-type::after {
  1532. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1533. align-self: end; }
  1534. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-title h2 {
  1535. margin: 0; }
  1536. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-title a {
  1537. color: black;
  1538. font-size: 1.4rem;
  1539. font-weight: 600; }
  1540. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-auteur-s- {
  1541. font-weight: 800; }
  1542. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-auteur-s- p {
  1543. margin: 0; }
  1544. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  1545. display: none; }
  1546. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-edition p {
  1547. margin: 0; }
  1548. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-edition .field__label {
  1549. display: none; }
  1550. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-images {
  1551. display: none;
  1552. width: 50%; }
  1553. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-images img {
  1554. width: 100%;
  1555. height: auto; }
  1556. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-type-de-ressource {
  1557. text-transform: uppercase; }
  1558. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-type-de-ressource a {
  1559. color: #009ee3;
  1560. font-weight: 900;
  1561. font-size: 0.8rem; }
  1562. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-mots-clefs {
  1563. display: flex;
  1564. margin-top: 2rem;
  1565. flex-direction: row;
  1566. flex-wrap: wrap; }
  1567. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-mots-clefs .field__item {
  1568. margin-right: 1rem;
  1569. padding-left: 0.3rem;
  1570. padding-right: 0.3rem; }
  1571. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-mots-clefs .field__item a {
  1572. background: #09398b;
  1573. color: white;
  1574. font-weight: 800;
  1575. vertical-align: super;
  1576. padding-left: 0.1rem;
  1577. padding-right: 0.1rem;
  1578. display: inline-flex; }
  1579. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource ul.links.inline {
  1580. display: none; }
  1581. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale {
  1582. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  1583. background-repeat: no-repeat;
  1584. background-position-y: 20vh;
  1585. max-width: 100vw;
  1586. background-size: cover; }
  1587. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  1588. padding-top: 3rem;
  1589. padding-bottom: 3rem;
  1590. vertical-align: middle;
  1591. color: white; }
  1592. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  1593. font-family: 'Source Code Pro';
  1594. font-size: 2rem;
  1595. font-weight: 800;
  1596. color: white;
  1597. background-color: #009ee3;
  1598. text-transform: uppercase;
  1599. width: fit-content;
  1600. margin-left: 10%;
  1601. margin-top: 8rem; }
  1602. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  1603. margin: 2rem;
  1604. margin-top: 4rem; }
  1605. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  1606. width: 65%;
  1607. margin: auto;
  1608. background: white; }
  1609. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  1610. width: 65%;
  1611. margin: auto; }
  1612. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  1613. display: none;
  1614. background: white; }
  1615. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  1616. display: flex;
  1617. flex-wrap: wrap;
  1618. margin-top: 3rem; }
  1619. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  1620. width: 50%; }
  1621. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service {
  1622. border: 2px solid #009ee3;
  1623. padding: 1rem;
  1624. height: fit-content;
  1625. margin-bottom: 1rem;
  1626. background-color: white;
  1627. margin-right: 1rem;
  1628. height: 200px; }
  1629. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type {
  1630. display: grid;
  1631. grid-template-columns: 1fr auto 1fr;
  1632. grid-template-rows: repeat(6 auto); }
  1633. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-type-de-protagoniste {
  1634. grid-column: 1 / span 3;
  1635. grid-row: 1;
  1636. margin-bottom: 1rem;
  1637. text-transform: uppercase;
  1638. font-weight: 800;
  1639. font-size: 00.8rem; }
  1640. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-photo {
  1641. grid-column: 1;
  1642. grid-row: 2 / span 6;
  1643. margin-right: 1rem;
  1644. max-height: 170px; }
  1645. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-photo img {
  1646. max-width: 100%;
  1647. object-fit: cover;
  1648. height: auto;
  1649. max-height: 95%; }
  1650. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-prenom {
  1651. grid-column: 2;
  1652. grid-row: 2;
  1653. padding-right: 0.5rem;
  1654. text-transform: uppercase;
  1655. font-weight: 800;
  1656. font-size: 1rem; }
  1657. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-nom {
  1658. grid-column: 3;
  1659. grid-row: 2;
  1660. text-transform: uppercase;
  1661. font-weight: 800;
  1662. font-size: 1rem; }
  1663. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-structure {
  1664. grid-column: 2 / span 3;
  1665. grid-row: 3;
  1666. text-transform: uppercase;
  1667. font-weight: 800;
  1668. font-size: 0.8rem; }
  1669. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-title {
  1670. grid-column: 2 / span 3;
  1671. grid-row: 4;
  1672. font-size: 1.3rem; }
  1673. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-title a {
  1674. color: black; }
  1675. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-localisation {
  1676. grid-column: 2 / span 3;
  1677. grid-row: 5;
  1678. text-transform: uppercase;
  1679. font-weight: 800;
  1680. font-size: 00.8rem; }
  1681. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-date-de-proposition {
  1682. display: inline-flex;
  1683. grid-column: 2 / span 3;
  1684. grid-row: 6;
  1685. font-size: 0.8rem;
  1686. padding-top: 1rem;
  1687. justify-content: space-between;
  1688. align-items: center; }
  1689. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-date-de-proposition::after {
  1690. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1691. align-self: end; }
  1692. .page-node-type-offre-de-service {
  1693. background: url("../images/pictos/carre-contour-bleu-offre.svg");
  1694. background-repeat: no-repeat;
  1695. background-position-y: 7rem;
  1696. max-width: 100vw;
  1697. background-size: contain; }
  1698. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  1699. margin-top: 2rem;
  1700. margin-left: 13%;
  1701. display: grid;
  1702. grid-template-columns: auto auto 1fr;
  1703. grid-template-rows: repeat(6 auto); }
  1704. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  1705. width: fit-content;
  1706. grid-column: 1;
  1707. grid-row: 1 / span 6;
  1708. width: 250px;
  1709. height: 250px;
  1710. margin-right: 2rem; }
  1711. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo img {
  1712. width: 100%;
  1713. height: auto; }
  1714. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste {
  1715. background: white;
  1716. width: fit-content;
  1717. grid-column: 2 /span 3;
  1718. grid-row: 1;
  1719. text-transform: uppercase;
  1720. color: #a01a27;
  1721. font-weight: 900;
  1722. font-size: 0.8rem; }
  1723. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-prenom {
  1724. background: white;
  1725. width: fit-content;
  1726. grid-column: 2;
  1727. grid-row: 2;
  1728. padding-right: 0.5rem;
  1729. text-transform: uppercase;
  1730. font-weight: 900;
  1731. font-size: 1.5rem; }
  1732. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-nom {
  1733. background: white;
  1734. width: fit-content;
  1735. grid-column: 3;
  1736. grid-row: 2;
  1737. text-transform: uppercase;
  1738. font-weight: 900;
  1739. font-size: 1.5rem; }
  1740. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure {
  1741. background: white;
  1742. width: fit-content;
  1743. grid-column: 2 / span 3;
  1744. grid-row: 3;
  1745. text-transform: uppercase;
  1746. font-weight: 800;
  1747. font-size: 0.8rem;
  1748. margin-top: 0.5rem; }
  1749. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure::after {
  1750. content: url('data:image/svg+xml,<svg width="160" height="30" xmlns="http://www.w3.org/2000/svg" version="1.1"> <line x1="0" x2="80" y1="20" y2="20" stroke-linecap="cube" stroke="rgb(0,158,227)" stroke-width="3"/></svg>'); }
  1751. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1752. background: white;
  1753. width: fit-content;
  1754. grid-column: 2 / span 3;
  1755. grid-row: 4;
  1756. font-size: 2.5rem;
  1757. font-family: "Source Code Pro"; }
  1758. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle a {
  1759. color: black; }
  1760. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-localisation {
  1761. background: white;
  1762. width: fit-content;
  1763. grid-column: 2 / span 3;
  1764. grid-row: 5;
  1765. text-transform: uppercase;
  1766. font-weight: 800;
  1767. font-size: 00.8rem; }
  1768. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-proposition {
  1769. background: white;
  1770. width: fit-content;
  1771. grid-column: 2 / span 3;
  1772. grid-row: 6;
  1773. font-size: 0.8rem;
  1774. padding-top: 1rem; }
  1775. .page-node-type-offre-de-service .layout__region--second {
  1776. margin-top: 3rem;
  1777. margin-left: 20%;
  1778. margin-right: 2rem; }
  1779. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary {
  1780. background: white; }
  1781. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary p {
  1782. margin: 0; }
  1783. .page-node-type-offre-de-service .layout__region--third {
  1784. margin-top: 3rem; }
  1785. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  1786. display: flex;
  1787. flex-direction: column;
  1788. width: 70%; }
  1789. .page-node-type-offre-de-service .layout__region--third .block-region-third .title-contact {
  1790. background: #009ee3;
  1791. color: white;
  1792. text-transform: uppercase;
  1793. font-weight: 900;
  1794. font-size: 0.8rem;
  1795. padding-top: 1rem;
  1796. padding-left: 1rem;
  1797. padding-right: 1rem; }
  1798. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel {
  1799. background: #009ee3;
  1800. color: white;
  1801. font-weight: 600;
  1802. padding-left: 1rem;
  1803. padding-right: 1rem; }
  1804. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-telephone {
  1805. background: #009ee3;
  1806. color: white;
  1807. font-weight: 600;
  1808. padding-left: 1rem;
  1809. padding-right: 1rem;
  1810. padding-bottom: 1rem; }
  1811. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  1812. height: fit-content;
  1813. border: 2px solid #009ee3;
  1814. background-color: white;
  1815. margin-top: 1rem; }
  1816. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers {
  1817. min-height: 4rem;
  1818. background: white;
  1819. color: #009ee3;
  1820. padding-left: 1rem;
  1821. padding-top: 1rem;
  1822. margin-bottom: 1rem; }
  1823. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  1824. display: none; }
  1825. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  1826. height: inherit;
  1827. margin: auto; }
  1828. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  1829. content: url("../images/pictos/noun_Download_file_307900.svg");
  1830. min-width: 50px;
  1831. height: auto;
  1832. padding-right: 1rem; }
  1833. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  1834. hyphens: auto;
  1835. display: inline-flex;
  1836. align-items: center;
  1837. color: #009ee3;
  1838. font-weight: 800; }
  1839. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  1840. margin-top: 1rem; }
  1841. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  1842. margin: auto;
  1843. height: fit-content;
  1844. border: 2px solid #009ee3;
  1845. min-height: 4rem;
  1846. background: white;
  1847. color: #009ee3;
  1848. padding-left: 1rem;
  1849. padding-top: 1rem;
  1850. margin-bottom: 1rem; }
  1851. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  1852. display: inline-flex;
  1853. align-items: center;
  1854. color: #009ee3;
  1855. font-weight: 800; }
  1856. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  1857. content: url("../images/pictos/noun_External Link_674151.svg");
  1858. min-width: 50px;
  1859. height: auto;
  1860. padding-right: 1rem; }
  1861. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  1862. display: none; }
  1863. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  1864. margin-top: 3rem; }
  1865. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  1866. font-size: 0.8rem;
  1867. color: black;
  1868. font-weight: 900;
  1869. margin-bottom: 1rem; }
  1870. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  1871. display: flex;
  1872. flex-direction: column;
  1873. border: 2px solid #009ee3;
  1874. padding: 1rem;
  1875. height: fit-content;
  1876. margin-bottom: 1rem;
  1877. background-color: white; }
  1878. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource:first-of-type {
  1879. border-top: 1px solid #009ee3;
  1880. padding-top: 1rem; }
  1881. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource:first-of-type::after {
  1882. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1883. align-self: end; }
  1884. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-title h2 {
  1885. margin: 0; }
  1886. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-title a {
  1887. color: black;
  1888. font-size: 1.4rem;
  1889. font-weight: 600; }
  1890. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-auteur-s- {
  1891. font-weight: 800; }
  1892. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-auteur-s- p {
  1893. margin: 0; }
  1894. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  1895. display: none; }
  1896. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-edition p {
  1897. margin: 0; }
  1898. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-edition .field__label {
  1899. display: none; }
  1900. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-images {
  1901. display: none;
  1902. width: 50%; }
  1903. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-images img {
  1904. width: 100%;
  1905. height: auto; }
  1906. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-type-de-ressource {
  1907. display: inline-flex;
  1908. margin-top: 2rem;
  1909. background: #09398b;
  1910. margin-right: 1rem;
  1911. padding-left: 0.3rem;
  1912. padding-right: 0.3rem;
  1913. color: white;
  1914. font-weight: 800;
  1915. vertical-align: middle; }
  1916. .path-ressources.annuairederecherche .layout-content {
  1917. background: url("../images/pictos/carre-contour-bleu_annuairederecherche.svg");
  1918. background-repeat: no-repeat;
  1919. background-position-y: 7rem;
  1920. max-width: 100vw;
  1921. background-size: cover; }
  1922. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span {
  1923. padding-top: 3rem;
  1924. padding-bottom: 3rem;
  1925. vertical-align: middle;
  1926. color: white; }
  1927. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  1928. font-family: 'Source Code Pro';
  1929. font-size: 2rem;
  1930. font-weight: 800;
  1931. color: white;
  1932. background-color: #009ee3;
  1933. text-transform: uppercase;
  1934. width: fit-content;
  1935. margin-left: 10%;
  1936. margin-top: 8rem;
  1937. margin-bottom: 6rem; }
  1938. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  1939. flex: 0 1 50%;
  1940. margin-left: 25%; }
  1941. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-config-pages-block {
  1942. background-color: white;
  1943. margin-bottom: 4rem; }
  1944. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ {
  1945. margin-bottom: 3rem; }
  1946. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div {
  1947. display: grid;
  1948. grid-template-columns: auto auto;
  1949. grid-template-rows: auto auto auto; }
  1950. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-logo {
  1951. grid-column: 1;
  1952. grid-row: 1 /span 3;
  1953. margin-right: 1rem;
  1954. max-height: 8rem; }
  1955. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-logo a {
  1956. height: 8rem;
  1957. width: 8rem; }
  1958. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-logo a img {
  1959. height: 100%;
  1960. width: 100%;
  1961. object-fit: contain; }
  1962. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-title {
  1963. grid-column: 2;
  1964. font-weight: 800;
  1965. background-color: white; }
  1966. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-body {
  1967. background-color: white;
  1968. grid-column: 2; }
  1969. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-body p {
  1970. margin: 0; }
  1971. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-lien {
  1972. background-color: white;
  1973. grid-column: 2; }
  1974. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-lien a {
  1975. color: black;
  1976. text-decoration: underline; }
  1977. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-lien a svg {
  1978. display: none; }
  1979. .path-webform .region-content {
  1980. margin-left: 13%;
  1981. margin-right: 20%;
  1982. width: 60%; }
  1983. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form {
  1984. display: flex;
  1985. flex-direction: row;
  1986. flex-wrap: wrap;
  1987. flex-basis: auto;
  1988. justify-content: space-between;
  1989. margin-top: 20vh; }
  1990. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form input.required::after {
  1991. content: " - Remember this";
  1992. background-color: yellow;
  1993. color: red;
  1994. font-weight: bold; }
  1995. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-processed-text {
  1996. width: 100%; }
  1997. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document {
  1998. margin-top: 2rem;
  1999. width: 100%; }
  2000. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input {
  2001. width: 100%;
  2002. height: 5rem; }
  2003. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- {
  2004. margin-top: 2rem;
  2005. width: 100%; }
  2006. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- input {
  2007. width: 100%; }
  2008. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution {
  2009. margin-top: 2rem;
  2010. width: 45%; }
  2011. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution input {
  2012. width: 100%; }
  2013. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages {
  2014. margin-top: 2rem;
  2015. width: 45%; }
  2016. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages input {
  2017. width: 100%; }
  2018. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur {
  2019. width: 100%;
  2020. margin-top: 2rem; }
  2021. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur input {
  2022. width: 100%; }
  2023. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- {
  2024. margin-top: 2rem;
  2025. width: 100%; }
  2026. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- input {
  2027. width: 100%; }
  2028. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource {
  2029. width: 100%;
  2030. margin-top: 2rem; }
  2031. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource textarea {
  2032. width: 100%; }
  2033. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet {
  2034. margin-top: 2rem; }
  2035. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet input {
  2036. width: 100%; }
  2037. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet {
  2038. margin-top: 2rem; }
  2039. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet input {
  2040. width: 100%; }
  2041. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel {
  2042. margin-top: 2rem;
  2043. width: 45%; }
  2044. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel input {
  2045. width: 100%; }
  2046. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone {
  2047. margin-top: 2rem;
  2048. width: 45%; }
  2049. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone input {
  2050. width: 100%; }
  2051. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions {
  2052. width: 100%; }
  2053. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions input {
  2054. width: 30%;
  2055. align-self: flex-end;
  2056. background-color: #009ee3;
  2057. text-transform: uppercase;
  2058. color: white;
  2059. font-size: 1.2rem;
  2060. font-weight: 600;
  2061. float: right;
  2062. margin-top: 1rem; }
  2063. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after {
  2064. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(255,255,255)" stroke="rgb(255,255,255)" stroke-width="0.7"/></svg>'); }
  2065. /*partials*/
  2066. .layout-container {
  2067. position: relative; }
  2068. .layout-container header {
  2069. width: 100%;
  2070. position: fixed;
  2071. z-index: 99; }
  2072. #header-top {
  2073. height: 7rem;
  2074. background-color: white;
  2075. box-shadow: 1px 0px 8px black;
  2076. display: flex;
  2077. flex-direction: row;
  2078. justify-content: space-between;
  2079. color: black;
  2080. top: 0%;
  2081. scroll-margin: 8rem; }
  2082. #header-top .region-header-top-left {
  2083. display: flex;
  2084. flex-direction: row;
  2085. padding: 1rem;
  2086. padding-left: 4%;
  2087. align-items: center;
  2088. color: black;
  2089. font-weight: 800;
  2090. flex: 1; }
  2091. #header-top .region-header-top-left #block-logogouv {
  2092. display: flex;
  2093. height: 100%;
  2094. align-items: center; }
  2095. #header-top .region-header-top-left #block-logogouv img {
  2096. width: 80%;
  2097. height: auto; }
  2098. #header-top .region-header-top-left #block-logoeql {
  2099. display: flex;
  2100. height: 100%;
  2101. align-items: center; }
  2102. #header-top .region-header-top-left #block-logoeql img {
  2103. width: 80%;
  2104. height: auto; }
  2105. #header-top .region-header-top-left #block-headermenu {
  2106. align-self: baseline;
  2107. width: 70%; }
  2108. #header-top .region-header-top-left ul {
  2109. font-size: 1rem;
  2110. list-style: none;
  2111. display: flex;
  2112. flex-direction: row;
  2113. justify-content: space-between;
  2114. background-color: white;
  2115. width: 100%;
  2116. padding: 1rem; }
  2117. #header-top .region-header-top-left ul .is-active {
  2118. color: #009ee3; }
  2119. #header-top .region-header-top-left ul ul {
  2120. display: flex;
  2121. flex-direction: column;
  2122. display: none; }
  2123. #header-top .region-header-top-left ul ul .is-active {
  2124. color: #009ee3; }
  2125. #header-top .region-header-top-left ul li {
  2126. display: flex;
  2127. flex-direction: column;
  2128. background-color: white;
  2129. padding-bottom: 0.8rem;
  2130. min-width: 30%;
  2131. align-items: center; }
  2132. #header-top .region-header-top-left ul li .menuOpen {
  2133. display: flex; }
  2134. #header-top .region-header-top-left ul li a {
  2135. color: black; }
  2136. #header-top .region-header-top-left ul li .is-active {
  2137. color: #009ee3; }
  2138. #header-top .region-header-top-left ul li :hover {
  2139. color: #009ee3; }
  2140. #header-top .region-header-top-left ul:hover ul {
  2141. display: block; }
  2142. #header-top #block-socialnetwork-2 {
  2143. position: relative;
  2144. top: -33px;
  2145. align-self: flex-end;
  2146. margin-left: auto; }
  2147. #header-top #block-socialnetwork-2 .field--name-body {
  2148. min-height: 75px;
  2149. margin-right: 1rem; }
  2150. #header-top #block-socialnetwork-2 p {
  2151. display: flex;
  2152. flex-direction: row-reverse;
  2153. margin-bottom: 0;
  2154. min-height: 65px;
  2155. justify-content: space-around;
  2156. width: 120%; }
  2157. #header-top #block-socialnetwork-2 p a {
  2158. color: white;
  2159. font-size: 0; }
  2160. #header-top #block-socialnetwork-2 p svg.ext {
  2161. display: none; }
  2162. #header-top #block-socialnetwork-2 p .link-twitter {
  2163. display: flex;
  2164. background-color: black;
  2165. width: 40px;
  2166. justify-content: center;
  2167. align-items: end; }
  2168. #header-top #block-socialnetwork-2 p .link-twitter:before {
  2169. content: url("../images/pictos/twitter_white.svg");
  2170. min-width: 30px;
  2171. padding-bottom: 0.3rem; }
  2172. #header-top #block-socialnetwork-2 p .link-youtube {
  2173. display: flex;
  2174. background-color: black;
  2175. min-width: 40px;
  2176. justify-content: center;
  2177. align-items: end; }
  2178. #header-top #block-socialnetwork-2 p .link-youtube:before {
  2179. content: url("../images/pictos/youtube_white.svg");
  2180. min-width: 25px;
  2181. padding-bottom: 0.5rem; }
  2182. #header-top #block-socialnetwork-2 p .link-linkedin {
  2183. display: flex;
  2184. background-color: black;
  2185. min-width: 40px;
  2186. justify-content: center;
  2187. align-items: end; }
  2188. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  2189. content: url("../images/pictos/linkedin_white.svg");
  2190. min-width: 35px;
  2191. padding-bottom: 0.2rem; }
  2192. #header-top #block-burger {
  2193. z-index: 1;
  2194. background-color: #009ee3;
  2195. font-size: 0.7rem;
  2196. color: white;
  2197. display: block;
  2198. width: 7rem;
  2199. height: 100%;
  2200. margin-top: 0; }
  2201. #header-top #block-burger :hover {
  2202. cursor: pointer; }
  2203. #header-top #block-burger h2 {
  2204. padding-top: 1rem; }
  2205. #header-top #block-burger h2:after {
  2206. display: block;
  2207. margin: auto;
  2208. height: 70px;
  2209. content: url('data:image/svg+xml,<svg width="100" height="70" xmlns="http://www.w3.org/2000/svg" version="1.1"> <path id="path930" d="M 30,13 H 70" stroke-linecap="round" stroke="white" stroke-width="3"/><path id="path930-3" d="M 30,25 H 70" stroke-linecap="round" stroke="white" stroke-width="3"/><path id="path930-6" d="M 30,37 H 70" stroke-linecap="round" stroke="white" stroke-width="3"/></svg>'); }
  2210. #header-top #block-burger #block-burger-menu {
  2211. display: block;
  2212. margin: 0;
  2213. align-self: center;
  2214. text-align: center; }
  2215. #header-top #block-burger .ul1:not(.sous-liste) {
  2216. width: 300%;
  2217. position: relative;
  2218. right: 260px;
  2219. margin: 0;
  2220. padding-top: 2rem;
  2221. padding-bottom: 2rem;
  2222. z-index: 99; }
  2223. #header-top #block-burger ul {
  2224. display: none;
  2225. background-color: #009ee3;
  2226. line-height: 2rem;
  2227. list-style: none; }
  2228. #header-top #block-burger ul .ul1 .sous-liste a {
  2229. opacity: 1; }
  2230. #header-top #block-burger ul a {
  2231. opacity: 0.6;
  2232. color: white;
  2233. font-weight: 800;
  2234. font-size: 1rem; }
  2235. #header-top #block-burger.opened ul {
  2236. display: block; }
  2237. #fotter-bottom {
  2238. box-shadow: 1px 0px 8px black;
  2239. display: flex;
  2240. flex: 1 1 120px;
  2241. flex-direction: row;
  2242. background-color: white;
  2243. padding-top: 3rem; }
  2244. #fotter-bottom .region {
  2245. display: block;
  2246. padding-left: 2rem;
  2247. padding-right: 1rem;
  2248. padding-bottom: 1rem;
  2249. border-left: #009ee3 solid 1px; }
  2250. #fotter-bottom .region h2 {
  2251. margin-top: 0;
  2252. color: #09398b;
  2253. font-size: 1.2rem; }
  2254. #fotter-bottom .region-footer-bottom-left {
  2255. margin-left: 3rem;
  2256. border: none;
  2257. width: 20%; }
  2258. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  2259. display: flex;
  2260. flex-direction: row;
  2261. justify-content: flex-start;
  2262. flex-wrap: wrap;
  2263. padding-top: 1rem; }
  2264. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  2265. padding-right: 1rem;
  2266. padding-bottom: 1rem; }
  2267. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  2268. width: auto;
  2269. height: 30px; }
  2270. #fotter-bottom .region-footer-bottom-right {
  2271. width: 30%;
  2272. display: flex;
  2273. flex-direction: column-reverse;
  2274. justify-content: flex-end; }
  2275. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  2276. margin-bottom: 1rem; }
  2277. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  2278. margin-top: 0;
  2279. display: flex;
  2280. flex-direction: row-reverse;
  2281. justify-content: start; }
  2282. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  2283. color: white;
  2284. font-size: 0;
  2285. padding-left: 1rem; }
  2286. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  2287. display: none; }
  2288. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  2289. display: flex; }
  2290. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  2291. content: url("../images/pictos/twitter_black.svg");
  2292. min-width: 50px; }
  2293. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  2294. display: flex; }
  2295. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  2296. content: url("../images/pictos/youtube_black.svg");
  2297. min-width: 50px; }
  2298. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  2299. display: flex; }
  2300. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  2301. content: url("../images/pictos/linkedin_black.svg");
  2302. min-width: 50px; }
  2303. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  2304. margin-top: 0;
  2305. color: #09398b;
  2306. font-weight: 800;
  2307. list-style: none;
  2308. padding-left: 0; }
  2309. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  2310. color: #09398b;
  2311. font-size: 1.2rem;
  2312. text-decoration: underline;
  2313. margin-top: 0; }
  2314. #fotter-bottom .region-footer-bottom-middle {
  2315. width: 60%; }
  2316. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .view-content {
  2317. display: flex;
  2318. flex-direction: row;
  2319. justify-content: flex-start;
  2320. flex-wrap: wrap; }
  2321. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  2322. padding-right: 1rem;
  2323. padding-bottom: 1rem; }