styles.css 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691
  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 {
  2167. margin-left: 13%;
  2168. margin-right: 20%;
  2169. width: 60%; }
  2170. .path-webform .region-content [role="contentinfo"] {
  2171. display: none; }
  2172. .path-webform .region-content .block-system-main-block h2 {
  2173. display: none; }
  2174. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form {
  2175. display: flex;
  2176. flex-direction: row;
  2177. flex-wrap: wrap;
  2178. flex-basis: auto;
  2179. justify-content: space-between;
  2180. margin-top: 10vh; }
  2181. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-processed-text {
  2182. width: 100%; }
  2183. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document {
  2184. margin-top: 2rem;
  2185. width: 100%; }
  2186. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input {
  2187. width: 100%;
  2188. height: 5rem; }
  2189. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input:after {
  2190. content: "*";
  2191. color: red; }
  2192. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- {
  2193. margin-top: 2rem;
  2194. width: 100%; }
  2195. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- input {
  2196. width: 100%; }
  2197. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution {
  2198. margin-top: 2rem;
  2199. width: 45%; }
  2200. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution input {
  2201. width: 100%; }
  2202. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages {
  2203. margin-top: 2rem;
  2204. width: 45%; }
  2205. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages input {
  2206. width: 100%; }
  2207. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur {
  2208. width: 100%;
  2209. margin-top: 2rem; }
  2210. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur input {
  2211. width: 100%; }
  2212. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- {
  2213. margin-top: 2rem;
  2214. width: 100%; }
  2215. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- input {
  2216. width: 100%; }
  2217. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource {
  2218. width: 100%;
  2219. margin-top: 2rem; }
  2220. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource textarea {
  2221. width: 100%; }
  2222. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet {
  2223. margin-top: 2rem; }
  2224. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet input {
  2225. width: 100%; }
  2226. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet {
  2227. margin-top: 2rem; }
  2228. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet input {
  2229. width: 100%; }
  2230. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel {
  2231. margin-top: 2rem;
  2232. width: 45%; }
  2233. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel input {
  2234. width: 100%; }
  2235. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone {
  2236. margin-top: 2rem;
  2237. width: 45%; }
  2238. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone input {
  2239. width: 100%; }
  2240. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions {
  2241. width: 100%; }
  2242. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions input {
  2243. width: 30%;
  2244. align-self: flex-end;
  2245. background-color: #009ee3;
  2246. text-transform: uppercase;
  2247. color: white;
  2248. font-size: 1.2rem;
  2249. font-weight: 600;
  2250. float: right;
  2251. margin-top: 1rem;
  2252. border: none; }
  2253. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after {
  2254. 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>'); }
  2255. .path-webform .region-content #webform-submission-offre-de-service-add-form {
  2256. display: flex;
  2257. flex-direction: row;
  2258. flex-wrap: wrap;
  2259. flex-basis: auto;
  2260. justify-content: space-between;
  2261. margin-top: 10vh; }
  2262. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-processed-text {
  2263. width: 100%; }
  2264. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service {
  2265. margin-top: 2rem;
  2266. width: 100%; }
  2267. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service input {
  2268. width: 100%;
  2269. height: 5rem; }
  2270. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure {
  2271. margin-top: 2rem;
  2272. width: 100%; }
  2273. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure input {
  2274. width: 100%; }
  2275. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation {
  2276. margin-top: 2rem;
  2277. width: 100%; }
  2278. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation input {
  2279. width: 100%; }
  2280. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description {
  2281. margin-top: 2rem;
  2282. width: 100%; }
  2283. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description textarea {
  2284. width: 100%; }
  2285. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper {
  2286. width: 100%; }
  2287. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url {
  2288. margin-top: 2rem;
  2289. width: 100%; }
  2290. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url input {
  2291. width: 100%; }
  2292. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel {
  2293. margin-top: 2rem;
  2294. width: 45%; }
  2295. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel input {
  2296. width: 100%; }
  2297. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone {
  2298. margin-top: 2rem;
  2299. width: 45%; }
  2300. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone input {
  2301. width: 100%; }
  2302. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions {
  2303. width: 100%; }
  2304. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions input {
  2305. width: 30%;
  2306. align-self: flex-end;
  2307. background-color: #009ee3;
  2308. text-transform: uppercase;
  2309. color: white;
  2310. font-size: 1.2rem;
  2311. font-weight: 600;
  2312. float: right;
  2313. margin-top: 1rem;
  2314. border: none; }
  2315. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions #edit-actions-submit:after {
  2316. 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>'); }
  2317. .path-webform .region-content #webform-submission-question-add-form {
  2318. display: flex;
  2319. flex-direction: row;
  2320. flex-wrap: wrap;
  2321. flex-basis: auto;
  2322. justify-content: space-between;
  2323. margin-top: 10vh; }
  2324. .path-webform .region-content #webform-submission-question-add-form #edit-couriel--wrapper {
  2325. width: 100%; }
  2326. .path-webform .region-content #webform-submission-question-add-form #edit-couriel--wrapper .form-item-couriel-mail-1 {
  2327. margin-top: 2rem;
  2328. width: 100%; }
  2329. .path-webform .region-content #webform-submission-question-add-form #edit-couriel--wrapper .form-item-couriel-mail-1 input {
  2330. width: 100%; }
  2331. .path-webform .region-content #webform-submission-question-add-form #edit-couriel--wrapper .form-item-couriel-mail-2 {
  2332. margin-top: 2rem;
  2333. width: 100%; }
  2334. .path-webform .region-content #webform-submission-question-add-form #edit-couriel--wrapper .form-item-couriel-mail-2 input {
  2335. width: 100%; }
  2336. .path-webform .region-content #webform-submission-question-add-form .form-item-question {
  2337. margin-top: 2rem;
  2338. width: 100%; }
  2339. .path-webform .region-content #webform-submission-question-add-form .form-item-question textarea {
  2340. width: 100%; }
  2341. .path-webform .region-content #webform-submission-question-add-form #edit-actions {
  2342. width: 100%; }
  2343. .path-webform .region-content #webform-submission-question-add-form #edit-actions input {
  2344. width: 30%;
  2345. align-self: flex-end;
  2346. background-color: #009ee3;
  2347. text-transform: uppercase;
  2348. color: white;
  2349. font-size: 1.2rem;
  2350. font-weight: 600;
  2351. float: right;
  2352. margin-top: 1rem;
  2353. border: none; }
  2354. .path-webform .region-content #webform-submission-question-add-form #edit-actions #edit-actions-submit:after {
  2355. 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>'); }
  2356. /*partials*/
  2357. .layout-container {
  2358. position: relative; }
  2359. .layout-container header {
  2360. width: 100%;
  2361. position: fixed;
  2362. z-index: 99; }
  2363. #header-top {
  2364. height: 7rem;
  2365. background-color: white;
  2366. box-shadow: 1px 0px 8px black;
  2367. display: flex;
  2368. flex-direction: row;
  2369. justify-content: space-between;
  2370. color: black;
  2371. top: 0%;
  2372. scroll-margin: 8rem; }
  2373. #header-top .region-header-top-left {
  2374. display: flex;
  2375. flex-direction: row;
  2376. padding: 1rem;
  2377. padding-left: 4%;
  2378. align-items: center;
  2379. color: black;
  2380. font-weight: 800;
  2381. flex: 1; }
  2382. #header-top .region-header-top-left #block-logogouv {
  2383. display: flex;
  2384. height: 100%;
  2385. align-items: center; }
  2386. #header-top .region-header-top-left #block-logogouv img {
  2387. width: 80%;
  2388. height: auto; }
  2389. #header-top .region-header-top-left #block-logoeql {
  2390. display: flex;
  2391. height: 100%;
  2392. align-items: center; }
  2393. #header-top .region-header-top-left #block-logoeql img {
  2394. width: 80%;
  2395. height: auto; }
  2396. #header-top .region-header-top-left #block-headermenu {
  2397. align-self: baseline;
  2398. width: 70%; }
  2399. #header-top .region-header-top-left ul {
  2400. font-size: 1rem;
  2401. list-style: none;
  2402. display: flex;
  2403. flex-direction: row;
  2404. justify-content: space-between;
  2405. background-color: white;
  2406. width: 100%;
  2407. padding: 1rem; }
  2408. #header-top .region-header-top-left ul .is-active {
  2409. color: #009ee3; }
  2410. #header-top .region-header-top-left ul ul {
  2411. display: flex;
  2412. flex-direction: column;
  2413. display: none; }
  2414. #header-top .region-header-top-left ul ul .is-active {
  2415. color: #009ee3; }
  2416. #header-top .region-header-top-left ul li {
  2417. display: flex;
  2418. flex-direction: column;
  2419. background-color: white;
  2420. padding-bottom: 0.8rem;
  2421. min-width: 30%;
  2422. align-items: center; }
  2423. #header-top .region-header-top-left ul li .menuOpen {
  2424. display: flex; }
  2425. #header-top .region-header-top-left ul li a {
  2426. color: black; }
  2427. #header-top .region-header-top-left ul li .is-active {
  2428. color: #009ee3; }
  2429. #header-top .region-header-top-left ul li :hover {
  2430. color: #009ee3; }
  2431. #header-top .region-header-top-left ul:hover ul {
  2432. display: block; }
  2433. #header-top #block-socialnetwork-2 {
  2434. position: relative;
  2435. top: -33px;
  2436. align-self: flex-end;
  2437. margin-left: auto; }
  2438. #header-top #block-socialnetwork-2 .field--name-body {
  2439. min-height: 75px;
  2440. margin-right: 1rem; }
  2441. #header-top #block-socialnetwork-2 p {
  2442. display: flex;
  2443. flex-direction: row-reverse;
  2444. margin-bottom: 0;
  2445. min-height: 65px;
  2446. justify-content: space-around;
  2447. width: 120%; }
  2448. #header-top #block-socialnetwork-2 p a {
  2449. color: white;
  2450. font-size: 0; }
  2451. #header-top #block-socialnetwork-2 p svg.ext {
  2452. display: none; }
  2453. #header-top #block-socialnetwork-2 p .link-twitter {
  2454. display: flex;
  2455. background-color: black;
  2456. width: 40px;
  2457. justify-content: center;
  2458. align-items: flex-end; }
  2459. #header-top #block-socialnetwork-2 p .link-twitter:before {
  2460. content: url("../images/pictos/twitter_white.svg");
  2461. min-width: 30px;
  2462. padding-bottom: 0.3rem; }
  2463. #header-top #block-socialnetwork-2 p .link-youtube {
  2464. display: flex;
  2465. background-color: black;
  2466. min-width: 40px;
  2467. justify-content: center;
  2468. align-items: flex-end; }
  2469. #header-top #block-socialnetwork-2 p .link-youtube:before {
  2470. content: url("../images/pictos/youtube_white.svg");
  2471. min-width: 25px;
  2472. padding-bottom: 0.5rem; }
  2473. #header-top #block-socialnetwork-2 p .link-linkedin {
  2474. display: flex;
  2475. background-color: black;
  2476. min-width: 40px;
  2477. justify-content: center;
  2478. align-items: flex-end; }
  2479. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  2480. content: url("../images/pictos/linkedin_white.svg");
  2481. min-width: 35px;
  2482. padding-bottom: 0.2rem; }
  2483. #header-top #block-burger {
  2484. z-index: 1;
  2485. background-color: #009ee3;
  2486. font-size: 0.7rem;
  2487. color: white;
  2488. display: block;
  2489. width: 7rem;
  2490. height: 100%;
  2491. margin-top: 0; }
  2492. #header-top #block-burger :hover {
  2493. cursor: pointer; }
  2494. #header-top #block-burger h2 {
  2495. padding-top: 1rem; }
  2496. #header-top #block-burger h2:after {
  2497. display: block;
  2498. margin: auto;
  2499. height: 70px;
  2500. 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>'); }
  2501. #header-top #block-burger #block-burger-menu {
  2502. display: block;
  2503. margin: 0;
  2504. align-self: center;
  2505. text-align: center; }
  2506. #header-top #block-burger .ul1:not(.sous-liste) {
  2507. width: 300%;
  2508. position: relative;
  2509. right: 260px;
  2510. margin: 0;
  2511. padding-top: 2rem;
  2512. padding-bottom: 2rem;
  2513. z-index: 99; }
  2514. #header-top #block-burger ul {
  2515. display: none;
  2516. background-color: #009ee3;
  2517. line-height: 2rem;
  2518. list-style: none; }
  2519. #header-top #block-burger ul .ul1 .sous-liste a {
  2520. opacity: 1; }
  2521. #header-top #block-burger ul a {
  2522. opacity: 0.6;
  2523. color: white;
  2524. font-weight: 800;
  2525. font-size: 1rem; }
  2526. #header-top #block-burger.opened ul {
  2527. display: block; }
  2528. #fotter-bottom {
  2529. box-shadow: 1px 0px 8px black;
  2530. display: flex;
  2531. flex: 1 1 120px;
  2532. flex-direction: row;
  2533. background-color: white;
  2534. padding-top: 3rem; }
  2535. @media (max-width: 810px) {
  2536. #fotter-bottom {
  2537. flex-direction: column;
  2538. padding-right: 1rem; } }
  2539. #fotter-bottom .region {
  2540. display: block;
  2541. padding-left: 2rem;
  2542. padding-right: 1rem;
  2543. padding-bottom: 1rem;
  2544. border-left: #009ee3 solid 1px; }
  2545. #fotter-bottom .region h2 {
  2546. margin-top: 0;
  2547. color: #09398b;
  2548. font-size: 1.2rem; }
  2549. #fotter-bottom .region-footer-bottom-left {
  2550. margin-left: 3rem;
  2551. border: none;
  2552. width: 20%; }
  2553. @media (max-width: 810px) {
  2554. #fotter-bottom .region-footer-bottom-left {
  2555. width: 100%;
  2556. margin-left: 0rem; } }
  2557. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  2558. display: flex;
  2559. flex-direction: row;
  2560. justify-content: flex-start;
  2561. flex-wrap: wrap;
  2562. padding-top: 1rem; }
  2563. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  2564. padding-right: 1rem;
  2565. padding-bottom: 1rem; }
  2566. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  2567. width: auto;
  2568. height: 30px; }
  2569. #fotter-bottom .region-footer-bottom-right {
  2570. width: 30%;
  2571. display: flex;
  2572. flex-direction: column-reverse;
  2573. justify-content: flex-end; }
  2574. @media (max-width: 810px) {
  2575. #fotter-bottom .region-footer-bottom-right {
  2576. width: 100%; } }
  2577. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  2578. margin-bottom: 1rem; }
  2579. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  2580. margin-top: 0;
  2581. display: flex;
  2582. flex-direction: row-reverse;
  2583. justify-content: flex-end; }
  2584. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  2585. color: white;
  2586. font-size: 0;
  2587. padding-left: 1rem; }
  2588. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  2589. display: none; }
  2590. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  2591. display: flex; }
  2592. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  2593. content: url("../images/pictos/twitter_black.svg");
  2594. min-width: 50px; }
  2595. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  2596. display: flex; }
  2597. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  2598. content: url("../images/pictos/youtube_black.svg");
  2599. min-width: 50px; }
  2600. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  2601. display: flex; }
  2602. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  2603. content: url("../images/pictos/linkedin_black.svg");
  2604. min-width: 50px; }
  2605. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  2606. margin-top: 0;
  2607. color: #09398b;
  2608. font-weight: 800;
  2609. list-style: none;
  2610. padding-left: 0; }
  2611. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  2612. color: #09398b;
  2613. font-size: 1.2rem;
  2614. text-decoration: underline;
  2615. margin-top: 0; }
  2616. #fotter-bottom .region-footer-bottom-middle {
  2617. width: 60%; }
  2618. @media (max-width: 810px) {
  2619. #fotter-bottom .region-footer-bottom-middle {
  2620. width: 100%; } }
  2621. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .view-content {
  2622. display: flex;
  2623. flex-direction: row;
  2624. justify-content: flex-start;
  2625. flex-wrap: wrap; }
  2626. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  2627. padding-right: 1rem;
  2628. padding-bottom: 1rem; }