styles.css 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202
  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 .region-content #block-contenudelapageprincipale span {
  1152. padding-top: 3rem;
  1153. padding-bottom: 3rem;
  1154. vertical-align: middle; }
  1155. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale span h2 {
  1156. margin: 0;
  1157. padding-top: 2rem;
  1158. height: 4rem;
  1159. color: white;
  1160. font-family: "Source Code Pro";
  1161. text-transform: uppercase;
  1162. background: #009ee3;
  1163. padding-left: 13%; }
  1164. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  1165. position: relative;
  1166. background: url("../images/pictos/carre-contour-bleu_bdd.svg");
  1167. background-repeat: no-repeat;
  1168. background-position-y: 30vh;
  1169. max-width: 100vw;
  1170. background-size: cover; }
  1171. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 {
  1172. background: rgba(0, 158, 227, 0.2);
  1173. height: fit-content;
  1174. display: flex; }
  1175. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 div {
  1176. width: 100%; }
  1177. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 .view-id-collections {
  1178. height: 100%;
  1179. display: flex;
  1180. width: 60%;
  1181. margin: auto; }
  1182. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 .view-id-collections .view-content {
  1183. display: flex;
  1184. flex-direction: row;
  1185. margin: auto;
  1186. margin-top: 2rem;
  1187. margin-bottom: 2rem;
  1188. justify-content: space-between;
  1189. align-items: center; }
  1190. .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 {
  1191. background: white;
  1192. width: 46%;
  1193. height: 80%;
  1194. padding: 1rem; }
  1195. .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 {
  1196. color: black;
  1197. font-size: 1.5rem;
  1198. font-weight: 600; }
  1199. .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 {
  1200. background: #09398b; }
  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 a {
  1202. color: white; }
  1203. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  1204. margin: 2rem; }
  1205. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  1206. width: 65%;
  1207. margin: auto;
  1208. background: white; }
  1209. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 {
  1210. margin: auto;
  1211. width: 60%; }
  1212. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters {
  1213. display: none;
  1214. background-color: white;
  1215. margin-top: 2rem;
  1216. margin-bottom: 2rem; }
  1217. .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 {
  1218. width: fit-content;
  1219. display: flex; }
  1220. .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 {
  1221. width: fit-content; }
  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 .form-item {
  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-field-type-de-ressource-target-id {
  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-content {
  1227. display: flex;
  1228. flex-direction: row;
  1229. flex-wrap: wrap;
  1230. justify-content: space-between;
  1231. margin-top: 3rem; }
  1232. .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 {
  1233. width: 49%; }
  1234. .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 {
  1235. display: flex;
  1236. flex-direction: column;
  1237. border: 2px solid #009ee3;
  1238. padding: 1rem;
  1239. height: fit-content;
  1240. margin-bottom: 1rem;
  1241. background-color: white; }
  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:hover {
  1243. background-color: #009ee3; }
  1244. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource:hover .field--name-field-mots-clefs::after {
  1245. content: url("../images/pictos/noun_Arrow_3771902.svg"); }
  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::after {
  1280. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1281. align-self: center; }
  1282. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-mots-clefs .field__item {
  1283. margin-right: 1rem;
  1284. padding-left: 0.3rem;
  1285. padding-right: 0.3rem; }
  1286. .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 {
  1287. background: #09398b;
  1288. color: white;
  1289. font-weight: 800;
  1290. vertical-align: super;
  1291. padding-left: 0.1rem;
  1292. padding-right: 0.1rem;
  1293. display: inline-flex; }
  1294. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource ul.links.inline {
  1295. display: none; }
  1296. .page-node-type-ressource .layout__region--top .block-region-top {
  1297. margin-top: 2rem;
  1298. margin-left: 13%; }
  1299. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  1300. color: #009ee3;
  1301. text-transform: uppercase;
  1302. font-weight: 800; }
  1303. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1304. font-size: 2rem;
  1305. font-weight: 600; }
  1306. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  1307. margin-bottom: 0; }
  1308. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  1309. font-size: 1.5rem;
  1310. font-weight: 800; }
  1311. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  1312. margin: 0; }
  1313. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  1314. display: inline-flex;
  1315. margin-top: 2rem; }
  1316. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  1317. background: #09398b;
  1318. margin-right: 1rem;
  1319. padding-left: 0.3rem;
  1320. padding-right: 0.3rem;
  1321. color: white;
  1322. font-weight: 800;
  1323. vertical-align: middle; }
  1324. .page-node-type-ressource .layout__region--first {
  1325. margin-top: 3rem;
  1326. position: relative; }
  1327. .page-node-type-ressource .layout__region--first .block-region-first {
  1328. display: flex;
  1329. justify-content: end;
  1330. position: sticky;
  1331. top: 7rem; }
  1332. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  1333. display: flex;
  1334. width: 50%;
  1335. background-color: white;
  1336. padding-right: 2rem; }
  1337. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  1338. display: flex;
  1339. font-size: 1rem;
  1340. font-weight: 1000;
  1341. color: #09398b;
  1342. border-bottom: 1px solid #009ee3;
  1343. padding-bottom: 0.5rem;
  1344. padding-right: 1rem; }
  1345. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  1346. text-decoration: underline; }
  1347. .page-node-type-ressource .layout__region--second {
  1348. margin-top: 3rem; }
  1349. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  1350. background-color: white; }
  1351. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  1352. font-size: 1.5rem;
  1353. font-weight: 1000;
  1354. font-family: 'Source Code Pro';
  1355. color: #09398b;
  1356. text-transform: uppercase; }
  1357. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  1358. text-transform: none !important; }
  1359. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  1360. width: 100%;
  1361. height: auto; }
  1362. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  1363. padding-right: 2rem; }
  1364. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  1365. margin-top: 0; }
  1366. .page-node-type-ressource .layout__region--third {
  1367. margin-top: 3rem; }
  1368. .page-node-type-ressource .layout__region--third .block-region-third {
  1369. display: flex;
  1370. flex-direction: column;
  1371. width: 70%; }
  1372. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  1373. height: fit-content;
  1374. border: 2px solid #009ee3;
  1375. background-color: white; }
  1376. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  1377. min-height: 4rem;
  1378. background: white;
  1379. color: #009ee3;
  1380. padding-left: 1rem;
  1381. padding-top: 1rem;
  1382. margin-bottom: 1rem; }
  1383. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  1384. display: none; }
  1385. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  1386. height: inherit;
  1387. margin: auto; }
  1388. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  1389. content: url("../images/pictos/noun_Download_file_307900.svg");
  1390. min-width: 50px;
  1391. height: auto;
  1392. padding-right: 1rem; }
  1393. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  1394. hyphens: auto;
  1395. display: inline-flex;
  1396. align-items: center;
  1397. color: #009ee3;
  1398. font-weight: 800; }
  1399. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  1400. margin: auto;
  1401. height: fit-content;
  1402. border: 2px solid #009ee3;
  1403. min-height: 4rem;
  1404. background: white;
  1405. color: #009ee3;
  1406. padding-left: 1rem;
  1407. padding-top: 1rem;
  1408. margin-bottom: 1rem; }
  1409. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  1410. display: inline-flex;
  1411. align-items: center;
  1412. color: #009ee3;
  1413. font-weight: 800; }
  1414. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  1415. content: url("../images/pictos/noun_External Link_674151.svg");
  1416. min-width: 50px;
  1417. height: auto;
  1418. padding-right: 1rem; }
  1419. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  1420. display: none; }
  1421. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  1422. margin-top: 3rem; }
  1423. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  1424. font-size: 0.8rem;
  1425. color: black;
  1426. font-weight: 900;
  1427. margin-bottom: 1rem; }
  1428. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  1429. display: flex;
  1430. flex-direction: column;
  1431. border: 2px solid #009ee3;
  1432. padding: 1rem;
  1433. height: fit-content;
  1434. margin-bottom: 1rem;
  1435. background-color: white; }
  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 {
  1437. border-top: 1px solid #009ee3;
  1438. padding-top: 1rem; }
  1439. .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 {
  1440. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1441. align-self: end; }
  1442. .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 {
  1443. margin: 0; }
  1444. .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 {
  1445. color: black;
  1446. font-size: 1.4rem;
  1447. font-weight: 600; }
  1448. .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- {
  1449. font-weight: 800; }
  1450. .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 {
  1451. margin: 0; }
  1452. .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 {
  1453. display: none; }
  1454. .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 {
  1455. margin: 0; }
  1456. .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 {
  1457. display: none; }
  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 {
  1459. display: none;
  1460. width: 50%; }
  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-images img {
  1462. width: 100%;
  1463. height: auto; }
  1464. .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 {
  1465. display: inline-flex;
  1466. margin-top: 2rem;
  1467. background: #09398b;
  1468. margin-right: 1rem;
  1469. padding-left: 0.3rem;
  1470. padding-right: 0.3rem;
  1471. color: white;
  1472. font-weight: 800;
  1473. vertical-align: middle; }
  1474. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale {
  1475. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  1476. background-repeat: no-repeat;
  1477. background-position-y: 20vh;
  1478. max-width: 100vw;
  1479. background-size: cover; }
  1480. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  1481. padding-top: 3rem;
  1482. padding-bottom: 3rem;
  1483. vertical-align: middle;
  1484. color: white; }
  1485. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  1486. font-family: 'Source Code Pro';
  1487. font-size: 2rem;
  1488. font-weight: 800;
  1489. color: white;
  1490. background-color: #009ee3;
  1491. text-transform: uppercase;
  1492. width: fit-content;
  1493. margin-left: 10%;
  1494. margin-top: 8rem; }
  1495. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  1496. margin: 2rem;
  1497. margin-top: 4rem; }
  1498. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  1499. width: 65%;
  1500. margin: auto;
  1501. background: white; }
  1502. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  1503. width: 65%;
  1504. margin: auto; }
  1505. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  1506. display: none;
  1507. background: white; }
  1508. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  1509. display: flex;
  1510. flex-wrap: wrap;
  1511. margin-top: 3rem; }
  1512. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  1513. width: 50%; }
  1514. .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 {
  1515. border: 2px solid #009ee3;
  1516. padding: 1rem;
  1517. height: fit-content;
  1518. margin-bottom: 1rem;
  1519. background-color: white;
  1520. margin-right: 1rem;
  1521. height: 200px; }
  1522. .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 {
  1523. display: grid;
  1524. grid-template-columns: 1fr auto 1fr;
  1525. grid-template-rows: repeat(6 auto); }
  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 div:first-of-type .field--name-field-type-de-protagoniste {
  1527. grid-column: 1 / span 3;
  1528. grid-row: 1;
  1529. margin-bottom: 1rem;
  1530. text-transform: uppercase;
  1531. font-weight: 800;
  1532. font-size: 00.8rem; }
  1533. .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 {
  1534. grid-column: 1;
  1535. grid-row: 2 / span 6;
  1536. margin-right: 1rem;
  1537. max-height: 170px; }
  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-photo img {
  1539. max-width: 100%;
  1540. object-fit: cover;
  1541. height: auto;
  1542. max-height: 95%; }
  1543. .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 {
  1544. grid-column: 2;
  1545. grid-row: 2;
  1546. padding-right: 0.5rem;
  1547. text-transform: uppercase;
  1548. font-weight: 800;
  1549. font-size: 1rem; }
  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-nom {
  1551. grid-column: 3;
  1552. grid-row: 2;
  1553. text-transform: uppercase;
  1554. font-weight: 800;
  1555. font-size: 1rem; }
  1556. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-structure {
  1557. grid-column: 2 / span 3;
  1558. grid-row: 3;
  1559. text-transform: uppercase;
  1560. font-weight: 800;
  1561. font-size: 0.8rem; }
  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-title {
  1563. grid-column: 2 / span 3;
  1564. grid-row: 4;
  1565. font-size: 1.3rem; }
  1566. .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 {
  1567. color: black; }
  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-localisation {
  1569. grid-column: 2 / span 3;
  1570. grid-row: 5;
  1571. text-transform: uppercase;
  1572. font-weight: 800;
  1573. font-size: 00.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-field-date-de-proposition {
  1575. display: inline-flex;
  1576. grid-column: 2 / span 3;
  1577. grid-row: 6;
  1578. font-size: 0.8rem;
  1579. padding-top: 1rem;
  1580. justify-content: space-between;
  1581. align-items: center; }
  1582. .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 {
  1583. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1584. align-self: end; }
  1585. .page-node-type-offre-de-service {
  1586. background: url("../images/pictos/carre-contour-bleu-offre.svg");
  1587. background-repeat: no-repeat;
  1588. background-position-y: 7rem;
  1589. max-width: 100vw;
  1590. background-size: contain; }
  1591. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  1592. margin-top: 2rem;
  1593. margin-left: 13%;
  1594. display: grid;
  1595. grid-template-columns: auto auto 1fr;
  1596. grid-template-rows: repeat(6 auto); }
  1597. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  1598. width: fit-content;
  1599. grid-column: 1;
  1600. grid-row: 1 / span 6;
  1601. width: 250px;
  1602. height: 250px;
  1603. margin-right: 2rem; }
  1604. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo img {
  1605. width: 100%;
  1606. height: auto; }
  1607. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste {
  1608. background: white;
  1609. width: fit-content;
  1610. grid-column: 2 /span 3;
  1611. grid-row: 1;
  1612. text-transform: uppercase;
  1613. color: #a01a27;
  1614. font-weight: 900;
  1615. font-size: 0.8rem; }
  1616. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-prenom {
  1617. background: white;
  1618. width: fit-content;
  1619. grid-column: 2;
  1620. grid-row: 2;
  1621. padding-right: 0.5rem;
  1622. text-transform: uppercase;
  1623. font-weight: 900;
  1624. font-size: 1.5rem; }
  1625. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-nom {
  1626. background: white;
  1627. width: fit-content;
  1628. grid-column: 3;
  1629. grid-row: 2;
  1630. text-transform: uppercase;
  1631. font-weight: 900;
  1632. font-size: 1.5rem; }
  1633. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure {
  1634. background: white;
  1635. width: fit-content;
  1636. grid-column: 2 / span 3;
  1637. grid-row: 3;
  1638. text-transform: uppercase;
  1639. font-weight: 800;
  1640. font-size: 0.8rem;
  1641. margin-top: 0.5rem; }
  1642. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure::after {
  1643. 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>'); }
  1644. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1645. background: white;
  1646. width: fit-content;
  1647. grid-column: 2 / span 3;
  1648. grid-row: 4;
  1649. font-size: 2.5rem;
  1650. font-family: "Source Code Pro"; }
  1651. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle a {
  1652. color: black; }
  1653. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-localisation {
  1654. background: white;
  1655. width: fit-content;
  1656. grid-column: 2 / span 3;
  1657. grid-row: 5;
  1658. text-transform: uppercase;
  1659. font-weight: 800;
  1660. font-size: 00.8rem; }
  1661. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-proposition {
  1662. background: white;
  1663. width: fit-content;
  1664. grid-column: 2 / span 3;
  1665. grid-row: 6;
  1666. font-size: 0.8rem;
  1667. padding-top: 1rem; }
  1668. .page-node-type-offre-de-service .layout__region--second {
  1669. margin-top: 3rem;
  1670. margin-left: 20%;
  1671. margin-right: 2rem; }
  1672. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary {
  1673. background: white; }
  1674. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary p {
  1675. margin: 0; }
  1676. .page-node-type-offre-de-service .layout__region--third {
  1677. margin-top: 3rem; }
  1678. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  1679. display: flex;
  1680. flex-direction: column;
  1681. width: 70%; }
  1682. .page-node-type-offre-de-service .layout__region--third .block-region-third .title-contact {
  1683. background: #009ee3;
  1684. color: white;
  1685. text-transform: uppercase;
  1686. font-weight: 900;
  1687. font-size: 0.8rem;
  1688. padding-top: 1rem;
  1689. padding-left: 1rem;
  1690. padding-right: 1rem; }
  1691. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel {
  1692. background: #009ee3;
  1693. color: white;
  1694. font-weight: 600;
  1695. padding-left: 1rem;
  1696. padding-right: 1rem; }
  1697. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-telephone {
  1698. background: #009ee3;
  1699. color: white;
  1700. font-weight: 600;
  1701. padding-left: 1rem;
  1702. padding-right: 1rem;
  1703. padding-bottom: 1rem; }
  1704. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  1705. height: fit-content;
  1706. border: 2px solid #009ee3;
  1707. background-color: white;
  1708. margin-top: 1rem; }
  1709. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers {
  1710. min-height: 4rem;
  1711. background: white;
  1712. color: #009ee3;
  1713. padding-left: 1rem;
  1714. padding-top: 1rem;
  1715. margin-bottom: 1rem; }
  1716. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  1717. display: none; }
  1718. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  1719. height: inherit;
  1720. margin: auto; }
  1721. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  1722. content: url("../images/pictos/noun_Download_file_307900.svg");
  1723. min-width: 50px;
  1724. height: auto;
  1725. padding-right: 1rem; }
  1726. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  1727. hyphens: auto;
  1728. display: inline-flex;
  1729. align-items: center;
  1730. color: #009ee3;
  1731. font-weight: 800; }
  1732. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  1733. margin-top: 1rem; }
  1734. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  1735. margin: auto;
  1736. height: fit-content;
  1737. border: 2px solid #009ee3;
  1738. min-height: 4rem;
  1739. background: white;
  1740. color: #009ee3;
  1741. padding-left: 1rem;
  1742. padding-top: 1rem;
  1743. margin-bottom: 1rem; }
  1744. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  1745. display: inline-flex;
  1746. align-items: center;
  1747. color: #009ee3;
  1748. font-weight: 800; }
  1749. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  1750. content: url("../images/pictos/noun_External Link_674151.svg");
  1751. min-width: 50px;
  1752. height: auto;
  1753. padding-right: 1rem; }
  1754. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  1755. display: none; }
  1756. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  1757. margin-top: 3rem; }
  1758. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  1759. font-size: 0.8rem;
  1760. color: black;
  1761. font-weight: 900;
  1762. margin-bottom: 1rem; }
  1763. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  1764. display: flex;
  1765. flex-direction: column;
  1766. border: 2px solid #009ee3;
  1767. padding: 1rem;
  1768. height: fit-content;
  1769. margin-bottom: 1rem;
  1770. background-color: white; }
  1771. .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 {
  1772. border-top: 1px solid #009ee3;
  1773. padding-top: 1rem; }
  1774. .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 {
  1775. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1776. align-self: end; }
  1777. .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 {
  1778. margin: 0; }
  1779. .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 {
  1780. color: black;
  1781. font-size: 1.4rem;
  1782. font-weight: 600; }
  1783. .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- {
  1784. font-weight: 800; }
  1785. .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 {
  1786. margin: 0; }
  1787. .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 {
  1788. display: none; }
  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-field-edition p {
  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-field-edition .field__label {
  1792. display: none; }
  1793. .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 {
  1794. display: none;
  1795. width: 50%; }
  1796. .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 {
  1797. width: 100%;
  1798. height: auto; }
  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-type-de-ressource {
  1800. display: inline-flex;
  1801. margin-top: 2rem;
  1802. background: #09398b;
  1803. margin-right: 1rem;
  1804. padding-left: 0.3rem;
  1805. padding-right: 0.3rem;
  1806. color: white;
  1807. font-weight: 800;
  1808. vertical-align: middle; }
  1809. .path-ressources.annuairederecherche .layout-content {
  1810. background: url("../images/pictos/carre-contour-bleu_annuairederecherche.svg");
  1811. background-repeat: no-repeat;
  1812. background-position-y: 7rem;
  1813. max-width: 100vw;
  1814. background-size: cover; }
  1815. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span {
  1816. padding-top: 3rem;
  1817. padding-bottom: 3rem;
  1818. vertical-align: middle;
  1819. color: white; }
  1820. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  1821. font-family: 'Source Code Pro';
  1822. font-size: 2rem;
  1823. font-weight: 800;
  1824. color: white;
  1825. background-color: #009ee3;
  1826. text-transform: uppercase;
  1827. width: fit-content;
  1828. margin-left: 10%;
  1829. margin-top: 8rem;
  1830. margin-bottom: 6rem; }
  1831. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  1832. flex: 0 1 50%;
  1833. margin-left: 25%; }
  1834. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-config-pages-block {
  1835. background-color: white;
  1836. margin-bottom: 4rem; }
  1837. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ {
  1838. margin-bottom: 3rem; }
  1839. .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 {
  1840. display: grid;
  1841. grid-template-columns: auto auto;
  1842. grid-template-rows: auto auto auto; }
  1843. .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 {
  1844. grid-column: 1;
  1845. grid-row: 1 /span 3;
  1846. margin-right: 1rem;
  1847. max-height: 8rem; }
  1848. .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 {
  1849. height: 8rem;
  1850. width: 8rem; }
  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 .field--name-field-logo a img {
  1852. height: 100%;
  1853. width: 100%;
  1854. object-fit: contain; }
  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-title {
  1856. grid-column: 2;
  1857. font-weight: 800;
  1858. background-color: white; }
  1859. .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 {
  1860. background-color: white;
  1861. grid-column: 2; }
  1862. .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 {
  1863. margin: 0; }
  1864. .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 {
  1865. background-color: white;
  1866. grid-column: 2; }
  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-field-lien a {
  1868. color: black;
  1869. text-decoration: underline; }
  1870. .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 {
  1871. display: none; }
  1872. /*partials*/
  1873. .layout-container {
  1874. position: relative; }
  1875. .layout-container header {
  1876. width: 100%;
  1877. position: fixed;
  1878. z-index: 99; }
  1879. #header-top {
  1880. height: 7rem;
  1881. background-color: white;
  1882. box-shadow: 1px 0px 8px black;
  1883. display: flex;
  1884. flex-direction: row;
  1885. justify-content: space-between;
  1886. color: black;
  1887. top: 0%;
  1888. scroll-margin: 8rem; }
  1889. #header-top .region-header-top-left {
  1890. display: flex;
  1891. flex-direction: row;
  1892. padding: 1rem;
  1893. padding-left: 4%;
  1894. align-items: center;
  1895. color: black;
  1896. font-weight: 800;
  1897. flex: 1; }
  1898. #header-top .region-header-top-left #block-logogouv {
  1899. display: flex;
  1900. height: 100%;
  1901. align-items: center; }
  1902. #header-top .region-header-top-left #block-logogouv img {
  1903. width: 80%;
  1904. height: auto; }
  1905. #header-top .region-header-top-left #block-logoeql {
  1906. display: flex;
  1907. height: 100%;
  1908. align-items: center; }
  1909. #header-top .region-header-top-left #block-logoeql img {
  1910. width: 80%;
  1911. height: auto; }
  1912. #header-top .region-header-top-left #block-headermenu {
  1913. align-self: baseline;
  1914. width: 70%; }
  1915. #header-top .region-header-top-left ul {
  1916. font-size: 1rem;
  1917. list-style: none;
  1918. display: flex;
  1919. flex-direction: row;
  1920. width: 100%; }
  1921. #header-top .region-header-top-left ul :is(.sous-liste) {
  1922. display: flex;
  1923. flex-direction: column;
  1924. padding: 1rem; }
  1925. #header-top .region-header-top-left ul li a {
  1926. color: black; }
  1927. #header-top .region-header-top-left ul li .is-active {
  1928. color: #009ee3; }
  1929. #header-top .region-header-top-left ul li :hover {
  1930. color: #009ee3; }
  1931. #header-top .region-header-top-left ul div:first-child li div {
  1932. display: none; }
  1933. #header-top .region-header-top-left ul div:nth-child(2) li div {
  1934. display: none; }
  1935. #header-top .region-header-top-left ul:is(.ul1 .sous-liste .ul2) {
  1936. display: none; }
  1937. #header-top .region-header-top-left :hover ul div:first-child li div {
  1938. display: block;
  1939. background-color: white;
  1940. padding: 0.2rem; }
  1941. #header-top .region-header-top-left :hover ul div:first-child li div a {
  1942. color: black; }
  1943. #header-top .region-header-top-left :hover ul div:first-child li div a:hover {
  1944. color: #009ee3; }
  1945. #header-top .region-header-top-left :hover ul div:nth-child(2) li div {
  1946. display: block;
  1947. background-color: white;
  1948. padding: 0.2rem; }
  1949. #header-top .region-header-top-left :hover ul div:nth-child(2) li div a {
  1950. color: black; }
  1951. #header-top .region-header-top-left :hover ul div:nth-child(2) li div a:hover {
  1952. color: #009ee3; }
  1953. #header-top .region-header-top-left :hover ul:is(.ul1 .sous-liste .ul2) {
  1954. display: block;
  1955. background-color: white;
  1956. padding: 0.2rem; }
  1957. #header-top .region-header-top-left :hover ul:is(.ul1 .sous-liste .ul2) a {
  1958. color: black; }
  1959. #header-top .region-header-top-left :hover ul:is(.ul1 .sous-liste .ul2) a:hover {
  1960. color: #009ee3; }
  1961. #header-top #block-socialnetwork-2 {
  1962. position: relative;
  1963. top: -33px;
  1964. align-self: flex-end;
  1965. margin-left: auto; }
  1966. #header-top #block-socialnetwork-2 .field--name-body {
  1967. min-height: 75px;
  1968. margin-right: 1rem; }
  1969. #header-top #block-socialnetwork-2 p {
  1970. display: flex;
  1971. flex-direction: row-reverse;
  1972. margin-bottom: 0;
  1973. min-height: 65px;
  1974. justify-content: space-around;
  1975. width: 120%; }
  1976. #header-top #block-socialnetwork-2 p a {
  1977. color: white;
  1978. font-size: 0; }
  1979. #header-top #block-socialnetwork-2 p svg.ext {
  1980. display: none; }
  1981. #header-top #block-socialnetwork-2 p .link-twitter {
  1982. display: flex;
  1983. background-color: black;
  1984. width: 40px;
  1985. justify-content: center;
  1986. align-items: end; }
  1987. #header-top #block-socialnetwork-2 p .link-twitter:before {
  1988. content: url("../images/pictos/twitter_white.svg");
  1989. min-width: 30px;
  1990. padding-bottom: 0.3rem; }
  1991. #header-top #block-socialnetwork-2 p .link-youtube {
  1992. display: flex;
  1993. background-color: black;
  1994. min-width: 40px;
  1995. justify-content: center;
  1996. align-items: end; }
  1997. #header-top #block-socialnetwork-2 p .link-youtube:before {
  1998. content: url("../images/pictos/youtube_white.svg");
  1999. min-width: 25px;
  2000. padding-bottom: 0.5rem; }
  2001. #header-top #block-socialnetwork-2 p .link-linkedin {
  2002. display: flex;
  2003. background-color: black;
  2004. min-width: 40px;
  2005. justify-content: center;
  2006. align-items: end; }
  2007. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  2008. content: url("../images/pictos/linkedin_white.svg");
  2009. min-width: 35px;
  2010. padding-bottom: 0.2rem; }
  2011. #header-top #block-burger {
  2012. z-index: 1;
  2013. background-color: #009ee3;
  2014. font-size: 0.7rem;
  2015. color: white;
  2016. display: block;
  2017. width: 7rem;
  2018. height: 100%;
  2019. margin-top: 0; }
  2020. #header-top #block-burger :hover {
  2021. cursor: pointer; }
  2022. #header-top #block-burger h2 {
  2023. padding-top: 1rem; }
  2024. #header-top #block-burger h2:after {
  2025. display: block;
  2026. margin: auto;
  2027. height: 70px;
  2028. 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>'); }
  2029. #header-top #block-burger #block-burger-menu {
  2030. display: block;
  2031. margin: 0;
  2032. align-self: center;
  2033. text-align: center; }
  2034. #header-top #block-burger .ul1:not(.sous-liste) {
  2035. width: 300%;
  2036. position: relative;
  2037. right: 260px;
  2038. margin: 0;
  2039. padding-top: 2rem;
  2040. padding-bottom: 2rem;
  2041. z-index: 99; }
  2042. #header-top #block-burger ul {
  2043. display: none;
  2044. background-color: #009ee3;
  2045. line-height: 2rem;
  2046. list-style: none; }
  2047. #header-top #block-burger ul .ul1 .sous-liste a {
  2048. opacity: 1; }
  2049. #header-top #block-burger ul a {
  2050. opacity: 0.6;
  2051. color: white;
  2052. font-weight: 800;
  2053. font-size: 1rem; }
  2054. #header-top #block-burger.opened ul {
  2055. display: block; }
  2056. #fotter-bottom {
  2057. box-shadow: 1px 0px 8px black;
  2058. display: flex;
  2059. flex: 1 1 120px;
  2060. flex-direction: row;
  2061. background-color: white;
  2062. padding-top: 3rem; }
  2063. #fotter-bottom .region {
  2064. display: block;
  2065. padding-left: 2rem;
  2066. padding-right: 1rem;
  2067. padding-bottom: 1rem;
  2068. border-left: #009ee3 solid 1px; }
  2069. #fotter-bottom .region h2 {
  2070. margin-top: 0;
  2071. color: #09398b;
  2072. font-size: 1.2rem; }
  2073. #fotter-bottom .region-footer-bottom-left {
  2074. margin-left: 3rem;
  2075. border: none;
  2076. width: 20%; }
  2077. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  2078. display: flex;
  2079. flex-direction: row;
  2080. justify-content: flex-start;
  2081. flex-wrap: wrap;
  2082. padding-top: 1rem; }
  2083. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  2084. padding-right: 1rem;
  2085. padding-bottom: 1rem; }
  2086. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  2087. width: auto;
  2088. height: 30px; }
  2089. #fotter-bottom .region-footer-bottom-right {
  2090. width: 30%;
  2091. display: flex;
  2092. flex-direction: column-reverse;
  2093. justify-content: flex-end; }
  2094. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  2095. margin-bottom: 1rem; }
  2096. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  2097. margin-top: 0;
  2098. display: flex;
  2099. flex-direction: row-reverse;
  2100. justify-content: start; }
  2101. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  2102. color: white;
  2103. font-size: 0;
  2104. padding-left: 1rem; }
  2105. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  2106. display: none; }
  2107. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  2108. display: flex; }
  2109. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  2110. content: url("../images/pictos/twitter_black.svg");
  2111. min-width: 50px; }
  2112. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  2113. display: flex; }
  2114. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  2115. content: url("../images/pictos/youtube_black.svg");
  2116. min-width: 50px; }
  2117. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  2118. display: flex; }
  2119. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  2120. content: url("../images/pictos/linkedin_black.svg");
  2121. min-width: 50px; }
  2122. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  2123. margin-top: 0;
  2124. color: #09398b;
  2125. font-weight: 800;
  2126. list-style: none;
  2127. padding-left: 0; }
  2128. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  2129. color: #09398b;
  2130. font-size: 1.2rem;
  2131. text-decoration: underline;
  2132. margin-top: 0; }
  2133. #fotter-bottom .region-footer-bottom-middle {
  2134. width: 60%; }
  2135. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .view-content {
  2136. display: flex;
  2137. flex-direction: row;
  2138. justify-content: flex-start;
  2139. flex-wrap: wrap; }
  2140. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  2141. padding-right: 1rem;
  2142. padding-bottom: 1rem; }