styles.css 167 KB

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