styles.css 122 KB

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