styles.css 119 KB

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