styles.css 135 KB

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