styles.css 162 KB

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