styles.css 165 KB

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