styles.css 155 KB

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