styles.css 110 KB

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