styles.css 165 KB

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