styles.css 158 KB

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