styles.css 117 KB

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