styles.css 116 KB

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