styles.css 190 KB

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