styles.css 157 KB

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