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