styles.css 162 KB

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