styles.css 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694
  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-right: 5%; } }
  1178. .path-faq #block-contenudelapageprincipale .block-region-content {
  1179. display: grid;
  1180. grid-template-columns: 1fr repeat(4, 2fr) 1fr; }
  1181. @media (max-width: 810px) {
  1182. .path-faq #block-contenudelapageprincipale .block-region-content {
  1183. display: flex;
  1184. flex-direction: column;
  1185. margin: auto; } }
  1186. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  1187. grid-column: 2 / span 3; }
  1188. @media (max-width: 810px) {
  1189. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  1190. width: 80%;
  1191. margin: auto; } }
  1192. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  1193. grid-column: 5;
  1194. grid-row: 1 /span 2;
  1195. height: fit-content;
  1196. display: flex;
  1197. flex-direction: column;
  1198. max-width: fit-content;
  1199. margin-left: 2rem;
  1200. padding: 1rem;
  1201. background-color: #009ee3; }
  1202. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  1203. text-align: center; }
  1204. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  1205. margin-top: 1rem;
  1206. display: block;
  1207. content: url("../images/pictos/picto_faq.svg"); }
  1208. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  1209. font-size: 0.8rem;
  1210. font-weight: 1000;
  1211. color: #09398b;
  1212. text-transform: uppercase; }
  1213. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p {
  1214. display: flex;
  1215. flex-direction: column;
  1216. margin-top: 0;
  1217. margin-left: 1.5rem;
  1218. margin-right: 1.5rem;
  1219. text-align: center; }
  1220. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p a {
  1221. font-weight: 800;
  1222. color: white;
  1223. font-size: 1.3rem; }
  1224. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p:after {
  1225. margin-left: auto;
  1226. padding-top: 1rem;
  1227. display: block;
  1228. content: url("../images/pictos/noun_Arrow_3771902.svg"); }
  1229. @media (max-width: 810px) {
  1230. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  1231. margin: auto;
  1232. padding: 0rem; }
  1233. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  1234. text-align: center; }
  1235. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  1236. margin-top: 1rem;
  1237. display: block;
  1238. content: url("../images/pictos/picto_faq_2.svg"); }
  1239. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  1240. font-size: 0.8rem;
  1241. font-weight: 1000;
  1242. color: #09398b;
  1243. text-transform: uppercase; } }
  1244. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  1245. margin-top: 2rem;
  1246. grid-column: 2 / span 3;
  1247. display: grid;
  1248. grid-template-columns: 1fr 1fr 1fr; }
  1249. @media (max-width: 810px) {
  1250. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  1251. width: 80%;
  1252. margin: auto;
  1253. margin-top: 1rem; } }
  1254. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child {
  1255. grid-column: 1 / span 3; }
  1256. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  1257. border-bottom: 1px solid #009ee3;
  1258. padding-bottom: 2rem; }
  1259. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-title {
  1260. display: none; }
  1261. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p {
  1262. font-family: 'Source Code Pro';
  1263. font-weight: 500;
  1264. color: #09398b;
  1265. font-size: 1.3rem; }
  1266. .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 {
  1267. display: inline-flex;
  1268. 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>');
  1269. justify-self: flex-end;
  1270. float: right; }
  1271. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-reponse {
  1272. display: none; }
  1273. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .opened {
  1274. display: block; }
  1275. .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) {
  1276. display: none; }
  1277. .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) {
  1278. display: none; }
  1279. .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 {
  1280. display: inline-block;
  1281. content: url("../images/pictos/noun_Download_file_307900.svg");
  1282. width: 30px;
  1283. height: 30px;
  1284. padding-right: 0.8rem; }
  1285. .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 {
  1286. display: inline-flex;
  1287. align-items: center;
  1288. color: black;
  1289. font-weight: 800; }
  1290. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a {
  1291. display: flex;
  1292. flex-direction: row;
  1293. justify-content: left;
  1294. align-items: center;
  1295. color: black;
  1296. font-weight: 800; }
  1297. .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 {
  1298. display: inline-block;
  1299. content: url("../images/pictos/noun_External Link_674151.svg");
  1300. width: 30px;
  1301. height: 30px;
  1302. padding-right: 0.8rem; }
  1303. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens svg {
  1304. display: none; }
  1305. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress {
  1306. margin-top: 0.5rem; }
  1307. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress a {
  1308. color: black;
  1309. text-decoration: underline;
  1310. font-weight: 800; }
  1311. .node-id-6 {
  1312. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  1313. background-repeat: no-repeat;
  1314. background-position-y: 7rem;
  1315. max-width: 100vw;
  1316. background-size: contain; }
  1317. .node-id-6 .layout__region--top {
  1318. padding-bottom: 3rem;
  1319. height: 30vh; }
  1320. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1321. display: none;
  1322. height: inherit; }
  1323. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1324. font-family: 'Source Code Pro';
  1325. font-size: 2rem;
  1326. font-weight: 800;
  1327. color: white;
  1328. background-color: #009ee3;
  1329. text-transform: uppercase; }
  1330. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  1331. color: black;
  1332. text-decoration: underline; }
  1333. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  1334. display: none; }
  1335. .path-ressources.basededonnees .layout-content {
  1336. width: 100vw; }
  1337. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale span {
  1338. padding-top: 3rem;
  1339. padding-bottom: 3rem;
  1340. vertical-align: middle; }
  1341. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale span h2 {
  1342. margin: 0;
  1343. padding-top: 2rem;
  1344. height: 4rem;
  1345. color: white;
  1346. font-family: "Source Code Pro";
  1347. text-transform: uppercase;
  1348. background: #009ee3;
  1349. padding-left: 13%; }
  1350. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  1351. position: relative;
  1352. background: url("../images/pictos/carre-contour-bleu_bdd.svg");
  1353. background-repeat: no-repeat;
  1354. background-position-y: 40vh;
  1355. max-width: 100vw;
  1356. background-size: cover;
  1357. display: grid;
  1358. grid-template-columns: 1fr repeat(8, 2fr) 1fr; }
  1359. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 {
  1360. grid-column: 1 / span 10;
  1361. background: rgba(0, 158, 227, 0.2);
  1362. height: fit-content;
  1363. display: flex; }
  1364. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 div:first-of-type {
  1365. width: 100%;
  1366. display: grid;
  1367. grid-template-columns: 1fr repeat(8, 2fr) 1fr; }
  1368. .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 {
  1369. grid-column: 3 / span 8;
  1370. height: 100%;
  1371. display: flex;
  1372. width: 80%; }
  1373. .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 {
  1374. display: flex;
  1375. flex-direction: row;
  1376. margin: auto;
  1377. margin-top: 2rem;
  1378. margin-bottom: 2rem;
  1379. justify-content: space-between;
  1380. align-items: center; }
  1381. .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 {
  1382. display: flex;
  1383. margin: auto;
  1384. background: white;
  1385. width: 46%;
  1386. height: 80%;
  1387. padding: 1rem; }
  1388. .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 {
  1389. grid-column: 3 /span 6; }
  1390. .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 {
  1391. margin: 0;
  1392. padding: 1rem;
  1393. padding-bottom: 2rem; }
  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 a {
  1395. color: black;
  1396. font-size: 1.5rem;
  1397. font-weight: 600; }
  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:hover {
  1399. background: #09398b; }
  1400. .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 {
  1401. color: white; }
  1402. @media (max-width: 810px) {
  1403. .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 {
  1404. flex-direction: column; }
  1405. .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 {
  1406. width: 100%;
  1407. margin-top: 1rem; } }
  1408. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollection--block-1 {
  1409. grid-column: 3 / span 5;
  1410. margin: auto;
  1411. background: white;
  1412. margin-top: 2rem; }
  1413. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  1414. grid-column: 8 / span 9;
  1415. margin-top: 4rem;
  1416. background-color: #009ee3;
  1417. height: fit-content;
  1418. width: 60%;
  1419. margin-left: 2rem; }
  1420. .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 {
  1421. display: flex;
  1422. flex-direction: column;
  1423. margin-top: 2rem;
  1424. margin-bottom: 2rem;
  1425. margin-left: 1.5rem;
  1426. margin-right: 1.5rem;
  1427. text-align: center; }
  1428. .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 {
  1429. font-weight: 800;
  1430. color: white;
  1431. font-size: 1.3rem; }
  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:after {
  1433. margin-left: auto;
  1434. padding-top: 1rem;
  1435. display: block;
  1436. content: url("../images/pictos/noun_Arrow_3771902.svg"); }
  1437. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 {
  1438. width: 80%;
  1439. grid-column: 3 / span 8; }
  1440. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters {
  1441. display: none;
  1442. background-color: white;
  1443. margin-top: 2rem;
  1444. margin-bottom: 2rem; }
  1445. .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 {
  1446. width: fit-content;
  1447. display: flex; }
  1448. .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 {
  1449. width: fit-content; }
  1450. .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 {
  1451. width: fit-content; }
  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 .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-content {
  1455. display: flex;
  1456. flex-direction: row;
  1457. flex-wrap: wrap;
  1458. justify-content: space-between;
  1459. margin-top: 3rem; }
  1460. .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 {
  1461. width: 49%;
  1462. min-height: 300px;
  1463. border: 2px solid #009ee3;
  1464. background-color: white;
  1465. margin-bottom: 1rem; }
  1466. .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 {
  1467. background-color: #009ee3; }
  1468. @media (max-width: 810px) {
  1469. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content {
  1470. flex-direction: column; }
  1471. .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 {
  1472. width: 100%; } }
  1473. .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 {
  1474. display: flex;
  1475. flex-direction: column;
  1476. padding: 1rem; }
  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 .field--name-field-type-de-ressource {
  1478. text-transform: uppercase; }
  1479. .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 {
  1480. color: #009ee3;
  1481. font-weight: 900;
  1482. font-size: 0.8rem; }
  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-title h2 {
  1484. margin: 0; }
  1485. .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 {
  1486. color: black;
  1487. font-size: 1.4rem;
  1488. font-weight: 600; }
  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-field-auteur-s- {
  1490. font-weight: 800; }
  1491. .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 {
  1492. margin: 0; }
  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- .field__label {
  1494. display: none; }
  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-edition 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-edition .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-images {
  1500. display: none;
  1501. width: 50%; }
  1502. .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 {
  1503. width: 100%;
  1504. height: auto; }
  1505. .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 {
  1506. display: flex;
  1507. margin-top: 2rem;
  1508. flex-direction: row;
  1509. flex-wrap: wrap; }
  1510. .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 {
  1511. margin-right: 1rem;
  1512. padding-left: 0.3rem;
  1513. padding-right: 0.3rem; }
  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 a {
  1515. background: #09398b;
  1516. color: white;
  1517. font-weight: 800;
  1518. vertical-align: super;
  1519. padding-left: 0.1rem;
  1520. padding-right: 0.1rem;
  1521. display: inline-flex; }
  1522. .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 {
  1523. display: none; }
  1524. .page-node-type-ressource .layout__region--top .block-region-top {
  1525. margin-top: 2rem;
  1526. margin-left: 13%; }
  1527. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  1528. color: #009ee3;
  1529. text-transform: uppercase;
  1530. font-weight: 800; }
  1531. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1532. font-size: 2rem;
  1533. font-weight: 600; }
  1534. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  1535. margin-bottom: 0; }
  1536. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  1537. font-size: 1.5rem;
  1538. font-weight: 800; }
  1539. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  1540. margin: 0; }
  1541. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  1542. display: inline-flex;
  1543. margin-top: 2rem; }
  1544. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  1545. background: #09398b;
  1546. margin-right: 1rem;
  1547. padding-left: 0.3rem;
  1548. padding-right: 0.3rem;
  1549. color: white;
  1550. font-weight: 800;
  1551. vertical-align: middle; }
  1552. .page-node-type-ressource .layout__region--first {
  1553. margin-top: 3rem;
  1554. position: relative; }
  1555. .page-node-type-ressource .layout__region--first .block-region-first {
  1556. display: flex;
  1557. justify-content: flex-end;
  1558. position: sticky;
  1559. top: 7rem; }
  1560. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  1561. display: flex;
  1562. width: 50%;
  1563. background-color: white;
  1564. padding-right: 2rem; }
  1565. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  1566. display: flex;
  1567. font-size: 1rem;
  1568. font-weight: 1000;
  1569. color: #09398b;
  1570. border-bottom: 1px solid #009ee3;
  1571. padding-bottom: 0.5rem;
  1572. padding-right: 1rem; }
  1573. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  1574. text-decoration: underline; }
  1575. .page-node-type-ressource .layout__region--second {
  1576. margin-top: 3rem; }
  1577. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  1578. background-color: white; }
  1579. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  1580. font-size: 1.5rem;
  1581. font-weight: 1000;
  1582. font-family: 'Source Code Pro';
  1583. color: #09398b;
  1584. text-transform: uppercase; }
  1585. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  1586. text-transform: none !important; }
  1587. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  1588. width: 100%;
  1589. height: auto; }
  1590. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  1591. padding-right: 2rem; }
  1592. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  1593. margin-top: 0; }
  1594. .page-node-type-ressource .layout__region--third {
  1595. margin-top: 3rem; }
  1596. .page-node-type-ressource .layout__region--third .block-region-third {
  1597. display: flex;
  1598. flex-direction: column;
  1599. width: 70%; }
  1600. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  1601. height: fit-content;
  1602. border: 2px solid #009ee3;
  1603. background-color: white; }
  1604. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  1605. min-height: 4rem;
  1606. background: white;
  1607. color: #009ee3;
  1608. padding-left: 1rem;
  1609. padding-top: 1rem;
  1610. margin-bottom: 1rem; }
  1611. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  1612. display: none; }
  1613. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  1614. height: inherit;
  1615. margin: auto; }
  1616. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  1617. content: url("../images/pictos/noun_Download_file_307900.svg");
  1618. min-width: 50px;
  1619. height: auto;
  1620. padding-right: 1rem; }
  1621. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  1622. hyphens: auto;
  1623. display: inline-flex;
  1624. align-items: center;
  1625. color: #009ee3;
  1626. font-weight: 800; }
  1627. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  1628. margin: auto;
  1629. height: fit-content;
  1630. border: 2px solid #009ee3;
  1631. min-height: 4rem;
  1632. background: white;
  1633. color: #009ee3;
  1634. padding-left: 1rem;
  1635. padding-top: 1rem;
  1636. margin-bottom: 1rem; }
  1637. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  1638. display: inline-flex;
  1639. align-items: center;
  1640. color: #009ee3;
  1641. font-weight: 800; }
  1642. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  1643. content: url("../images/pictos/noun_External Link_674151.svg");
  1644. min-width: 50px;
  1645. height: auto;
  1646. padding-right: 1rem; }
  1647. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  1648. display: none; }
  1649. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  1650. margin-top: 3rem; }
  1651. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  1652. font-size: 0.8rem;
  1653. color: black;
  1654. font-weight: 900;
  1655. margin-bottom: 1rem; }
  1656. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  1657. display: flex;
  1658. flex-direction: column;
  1659. border: 2px solid #009ee3;
  1660. padding: 1rem;
  1661. height: fit-content;
  1662. margin-bottom: 1rem;
  1663. background-color: white; }
  1664. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource:first-of-type {
  1665. border-top: 1px solid #009ee3;
  1666. padding-top: 1rem; }
  1667. .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 {
  1668. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1669. align-self: flex-end; }
  1670. .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 {
  1671. margin: 0; }
  1672. .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 {
  1673. color: black;
  1674. font-size: 1.4rem;
  1675. font-weight: 600; }
  1676. .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- {
  1677. font-weight: 800; }
  1678. .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 {
  1679. margin: 0; }
  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- .field__label {
  1681. display: none; }
  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-edition 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-edition .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-images {
  1687. display: none;
  1688. width: 50%; }
  1689. .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 {
  1690. width: 100%;
  1691. height: auto; }
  1692. .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 {
  1693. text-transform: uppercase; }
  1694. .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 {
  1695. color: #009ee3;
  1696. font-weight: 900;
  1697. font-size: 0.8rem; }
  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-mots-clefs {
  1699. display: flex;
  1700. margin-top: 2rem;
  1701. flex-direction: row;
  1702. flex-wrap: wrap; }
  1703. .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 {
  1704. margin-right: 1rem;
  1705. padding-left: 0.3rem;
  1706. padding-right: 0.3rem; }
  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 a {
  1708. background: #09398b;
  1709. color: white;
  1710. font-weight: 800;
  1711. vertical-align: super;
  1712. padding-left: 0.1rem;
  1713. padding-right: 0.1rem;
  1714. display: inline-flex; }
  1715. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource ul.links.inline {
  1716. display: none; }
  1717. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale {
  1718. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  1719. background-repeat: no-repeat;
  1720. background-position-y: 20vh;
  1721. max-width: 100vw;
  1722. background-size: cover; }
  1723. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  1724. padding-top: 3rem;
  1725. padding-bottom: 3rem;
  1726. vertical-align: middle;
  1727. color: white; }
  1728. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  1729. font-family: 'Source Code Pro';
  1730. font-size: 2rem;
  1731. font-weight: 800;
  1732. color: white;
  1733. background-color: #009ee3;
  1734. text-transform: uppercase;
  1735. width: fit-content;
  1736. margin-left: 10%;
  1737. margin-top: 8rem; }
  1738. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  1739. display: grid;
  1740. grid-template-columns: 1fr repeat(4, 2fr) 1fr; }
  1741. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  1742. grid-column: 2 / span 3;
  1743. margin-top: 4rem; }
  1744. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  1745. margin: auto;
  1746. background: white; }
  1747. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction p {
  1748. margin: 0; }
  1749. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  1750. grid-column: 5;
  1751. margin-top: 4rem;
  1752. background-color: #009ee3;
  1753. height: fit-content;
  1754. width: 80%;
  1755. margin-left: 2rem; }
  1756. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien {
  1757. display: flex;
  1758. flex-direction: column;
  1759. margin-top: 2rem;
  1760. margin-bottom: 2rem;
  1761. margin-left: 1.5rem;
  1762. margin-right: 1.5rem;
  1763. text-align: center; }
  1764. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a {
  1765. font-weight: 800;
  1766. color: white;
  1767. font-size: 1.3rem; }
  1768. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien:after {
  1769. margin-left: auto;
  1770. padding-top: 1rem;
  1771. display: block;
  1772. content: url("../images/pictos/noun_Arrow_3771902.svg"); }
  1773. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  1774. grid-column: 2 / span 3; }
  1775. @media (max-width: 810px) {
  1776. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  1777. grid-column: 2 / span 4; } }
  1778. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  1779. margin: auto; }
  1780. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  1781. display: none;
  1782. background: white; }
  1783. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  1784. display: flex;
  1785. flex-wrap: wrap;
  1786. margin-top: 3rem; }
  1787. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  1788. width: 50%; }
  1789. .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 {
  1790. border: 2px solid #009ee3;
  1791. padding: 1rem;
  1792. height: fit-content;
  1793. margin-bottom: 1rem;
  1794. background-color: white;
  1795. margin-right: 1rem; }
  1796. .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 {
  1797. display: grid;
  1798. grid-template-columns: 1fr 1fr 1fr;
  1799. grid-template-rows: repeat(6 auto); }
  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 .field--name-field-type-de-protagoniste {
  1801. grid-column: 1 / span 3;
  1802. grid-row: 1;
  1803. margin-bottom: 1rem;
  1804. text-transform: uppercase;
  1805. font-weight: 800;
  1806. font-size: 00.8rem; }
  1807. .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 {
  1808. grid-column: 1;
  1809. grid-row: 2 / span 6;
  1810. margin-right: 1rem;
  1811. max-height: 170px; }
  1812. .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 {
  1813. max-width: 100%;
  1814. object-fit: cover;
  1815. height: auto;
  1816. max-height: 95%; }
  1817. .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 {
  1818. grid-column: 2;
  1819. grid-row: 2;
  1820. padding-right: 0.5rem;
  1821. text-transform: uppercase;
  1822. font-weight: 800;
  1823. font-size: 1rem; }
  1824. .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 {
  1825. grid-column: 3;
  1826. grid-row: 2;
  1827. text-transform: uppercase;
  1828. font-weight: 800;
  1829. font-size: 1rem; }
  1830. .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 {
  1831. grid-column: 2 / span 3;
  1832. grid-row: 3;
  1833. text-transform: uppercase;
  1834. font-weight: 800;
  1835. font-size: 0.8rem; }
  1836. .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 {
  1837. grid-column: 2 / span 3;
  1838. grid-row: 4;
  1839. font-size: 1.3rem; }
  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 a {
  1841. color: black; }
  1842. .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 {
  1843. grid-column: 2 / span 3;
  1844. grid-row: 5;
  1845. text-transform: uppercase;
  1846. font-weight: 800;
  1847. font-size: 00.8rem; }
  1848. .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 {
  1849. display: inline-flex;
  1850. grid-column: 2 / span 3;
  1851. grid-row: 6;
  1852. font-size: 0.8rem;
  1853. padding-top: 1rem;
  1854. justify-content: space-between;
  1855. align-items: center; }
  1856. .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 {
  1857. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1858. align-self: flex-end; }
  1859. @media (max-width: 810px) {
  1860. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  1861. flex-direction: column; }
  1862. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  1863. width: 100%; } }
  1864. .page-node-type-offre-de-service {
  1865. background: url("../images/pictos/carre-contour-bleu-offre.svg");
  1866. background-repeat: no-repeat;
  1867. background-position-y: 7rem;
  1868. max-width: 100vw;
  1869. background-size: contain; }
  1870. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  1871. margin-top: 2rem;
  1872. margin-left: 13%;
  1873. display: grid;
  1874. grid-template-columns: auto auto 1fr;
  1875. grid-template-rows: repeat(6 auto); }
  1876. @media (max-width: 810px) {
  1877. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  1878. margin-left: 8%; } }
  1879. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  1880. width: fit-content;
  1881. grid-column: 1;
  1882. grid-row: 1 / span 6;
  1883. width: 250px;
  1884. height: 250px;
  1885. margin-right: 2rem; }
  1886. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo img {
  1887. width: 100%;
  1888. height: auto; }
  1889. @media (max-width: 810px) {
  1890. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  1891. width: 90px;
  1892. height: 90px; } }
  1893. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste {
  1894. background: white;
  1895. width: fit-content;
  1896. grid-column: 2 /span 3;
  1897. grid-row: 1;
  1898. text-transform: uppercase;
  1899. color: #a01a27;
  1900. font-weight: 900;
  1901. font-size: 0.8rem; }
  1902. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-prenom {
  1903. background: white;
  1904. width: fit-content;
  1905. grid-column: 2;
  1906. grid-row: 2;
  1907. padding-right: 0.5rem;
  1908. text-transform: uppercase;
  1909. font-weight: 900;
  1910. font-size: 1.5rem; }
  1911. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-nom {
  1912. background: white;
  1913. width: fit-content;
  1914. grid-column: 3;
  1915. grid-row: 2;
  1916. text-transform: uppercase;
  1917. font-weight: 900;
  1918. font-size: 1.5rem; }
  1919. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure {
  1920. background: white;
  1921. width: fit-content;
  1922. grid-column: 2 / span 3;
  1923. grid-row: 3;
  1924. text-transform: uppercase;
  1925. font-weight: 800;
  1926. font-size: 0.8rem;
  1927. margin-top: 0.5rem; }
  1928. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure::after {
  1929. 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>'); }
  1930. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1931. background: white;
  1932. width: fit-content;
  1933. grid-column: 2 / span 3;
  1934. grid-row: 4;
  1935. font-size: 2.5rem;
  1936. font-family: "Source Code Pro"; }
  1937. @media (max-width: 810px) {
  1938. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1939. font-size: 1.2rem; } }
  1940. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle a {
  1941. color: black; }
  1942. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-localisation {
  1943. background: white;
  1944. width: fit-content;
  1945. grid-column: 2 / span 3;
  1946. grid-row: 5;
  1947. text-transform: uppercase;
  1948. font-weight: 800;
  1949. font-size: 00.8rem; }
  1950. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-proposition {
  1951. background: white;
  1952. width: fit-content;
  1953. grid-column: 2 / span 3;
  1954. grid-row: 6;
  1955. font-size: 0.8rem;
  1956. padding-top: 1rem; }
  1957. .page-node-type-offre-de-service .layout__region--second {
  1958. margin-top: 3rem;
  1959. margin-left: 20%;
  1960. margin-right: 2rem; }
  1961. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary {
  1962. background: white; }
  1963. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary p {
  1964. margin: 0; }
  1965. .page-node-type-offre-de-service .layout__region--third {
  1966. margin-top: 3rem; }
  1967. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  1968. display: flex;
  1969. flex-direction: column;
  1970. width: 70%; }
  1971. @media (max-width: 810px) {
  1972. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  1973. margin: auto; } }
  1974. .page-node-type-offre-de-service .layout__region--third .block-region-third .title-contact {
  1975. background: #009ee3;
  1976. color: white;
  1977. text-transform: uppercase;
  1978. font-weight: 900;
  1979. font-size: 0.8rem;
  1980. padding-top: 1rem;
  1981. padding-left: 1rem;
  1982. padding-right: 1rem; }
  1983. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel {
  1984. background: #009ee3;
  1985. color: white;
  1986. font-weight: 600;
  1987. padding-left: 1rem;
  1988. padding-right: 1rem;
  1989. padding-bottom: 1rem; }
  1990. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-telephone {
  1991. display: none;
  1992. background: #009ee3;
  1993. color: white;
  1994. font-weight: 600;
  1995. padding-left: 1rem;
  1996. padding-right: 1rem;
  1997. padding-bottom: 1rem; }
  1998. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  1999. height: fit-content;
  2000. border: 2px solid #009ee3;
  2001. background-color: white;
  2002. margin-top: 1rem; }
  2003. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers {
  2004. min-height: 4rem;
  2005. background: white;
  2006. color: #009ee3;
  2007. padding-left: 1rem;
  2008. padding-top: 1rem;
  2009. margin-bottom: 1rem; }
  2010. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  2011. display: none; }
  2012. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  2013. height: inherit;
  2014. margin: auto; }
  2015. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  2016. content: url("../images/pictos/noun_Download_file_307900.svg");
  2017. min-width: 50px;
  2018. height: auto;
  2019. padding-right: 1rem; }
  2020. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  2021. hyphens: auto;
  2022. display: inline-flex;
  2023. align-items: center;
  2024. color: #009ee3;
  2025. font-weight: 800; }
  2026. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  2027. margin-top: 1rem; }
  2028. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2029. margin: auto;
  2030. height: fit-content;
  2031. border: 2px solid #009ee3;
  2032. min-height: 4rem;
  2033. background: white;
  2034. color: #009ee3;
  2035. padding-left: 1rem;
  2036. padding-top: 1rem;
  2037. margin-bottom: 1rem; }
  2038. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  2039. display: inline-flex;
  2040. align-items: center;
  2041. color: #009ee3;
  2042. font-weight: 800; }
  2043. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  2044. content: url("../images/pictos/noun_External Link_674151.svg");
  2045. min-width: 50px;
  2046. height: auto;
  2047. padding-right: 1rem; }
  2048. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  2049. display: none; }
  2050. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  2051. margin-top: 3rem; }
  2052. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  2053. font-size: 0.8rem;
  2054. color: black;
  2055. font-weight: 900;
  2056. margin-bottom: 1rem; }
  2057. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  2058. display: flex;
  2059. flex-direction: column;
  2060. border: 2px solid #009ee3;
  2061. padding: 1rem;
  2062. height: fit-content;
  2063. margin-bottom: 1rem;
  2064. background-color: white; }
  2065. .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 {
  2066. border-top: 1px solid #009ee3;
  2067. padding-top: 1rem; }
  2068. .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 {
  2069. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2070. align-self: flex-end; }
  2071. .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 {
  2072. margin: 0; }
  2073. .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 {
  2074. color: black;
  2075. font-size: 1.4rem;
  2076. font-weight: 600; }
  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-field-auteur-s- {
  2078. font-weight: 800; }
  2079. .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 {
  2080. margin: 0; }
  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- .field__label {
  2082. display: none; }
  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-edition 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-edition .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-images {
  2088. display: none;
  2089. width: 50%; }
  2090. .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 {
  2091. width: 100%;
  2092. height: auto; }
  2093. .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 {
  2094. display: inline-flex;
  2095. margin-top: 2rem;
  2096. background: #09398b;
  2097. margin-right: 1rem;
  2098. padding-left: 0.3rem;
  2099. padding-right: 0.3rem;
  2100. color: white;
  2101. font-weight: 800;
  2102. vertical-align: middle; }
  2103. .path-ressources.annuairederecherche .layout-content {
  2104. background: url("../images/pictos/carre-contour-bleu_annuairederecherche.svg");
  2105. background-repeat: no-repeat;
  2106. background-position-y: 7rem;
  2107. max-width: 100vw;
  2108. background-size: cover; }
  2109. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span {
  2110. padding-top: 3rem;
  2111. padding-bottom: 3rem;
  2112. vertical-align: middle;
  2113. color: white; }
  2114. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  2115. font-family: 'Source Code Pro';
  2116. font-size: 2rem;
  2117. font-weight: 800;
  2118. color: white;
  2119. background-color: #009ee3;
  2120. text-transform: uppercase;
  2121. width: fit-content;
  2122. margin-left: 10%;
  2123. margin-top: 8rem;
  2124. margin-bottom: 6rem; }
  2125. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  2126. flex: 0 1 50%;
  2127. margin-left: 25%; }
  2128. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-config-pages-block {
  2129. background-color: white;
  2130. margin-bottom: 4rem; }
  2131. .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_ {
  2132. margin-bottom: 3rem; }
  2133. .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 {
  2134. grid-column: 1;
  2135. grid-row: 1 /span 3;
  2136. margin-right: 1rem;
  2137. max-height: 8rem; }
  2138. .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 {
  2139. height: 8rem;
  2140. width: 8rem; }
  2141. .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 {
  2142. height: 100%;
  2143. width: 100%;
  2144. object-fit: contain; }
  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-title {
  2146. grid-column: 2;
  2147. font-weight: 800;
  2148. background-color: white; }
  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-body {
  2150. background-color: white;
  2151. grid-column: 2; }
  2152. .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 {
  2153. margin: 0; }
  2154. .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 {
  2155. background-color: white;
  2156. grid-column: 2; }
  2157. .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 {
  2158. color: black;
  2159. text-decoration: underline; }
  2160. .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 {
  2161. display: none; }
  2162. .path-webform .region-content {
  2163. margin-left: 13%;
  2164. margin-right: 20%;
  2165. width: 60%; }
  2166. .path-webform .region-content [role="contentinfo"] {
  2167. display: none; }
  2168. .path-webform .region-content .block-system-main-block h2 {
  2169. display: none; }
  2170. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form {
  2171. display: flex;
  2172. flex-direction: row;
  2173. flex-wrap: wrap;
  2174. flex-basis: auto;
  2175. justify-content: space-between;
  2176. margin-top: 10vh;
  2177. overflow: visible; }
  2178. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .required {
  2179. border-color: red !important;
  2180. display: block;
  2181. content: " "; }
  2182. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .required::after {
  2183. content: " * "; }
  2184. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-processed-text {
  2185. width: 100%; }
  2186. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document {
  2187. margin-top: 2rem;
  2188. width: 100%; }
  2189. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input {
  2190. overflow: visible;
  2191. width: 100%;
  2192. height: 5rem; }
  2193. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input ::placeholder {
  2194. content: "Titre du document"; }
  2195. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- {
  2196. margin-top: 2rem;
  2197. width: 100%; }
  2198. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- input {
  2199. width: 100%; }
  2200. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution {
  2201. margin-top: 2rem;
  2202. width: 45%; }
  2203. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution input {
  2204. width: 100%; }
  2205. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages {
  2206. margin-top: 2rem;
  2207. width: 45%; }
  2208. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages input {
  2209. width: 100%; }
  2210. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur {
  2211. width: 100%;
  2212. margin-top: 2rem; }
  2213. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur input {
  2214. width: 100%; }
  2215. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- {
  2216. margin-top: 2rem;
  2217. width: 100%; }
  2218. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- input {
  2219. width: 100%; }
  2220. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource {
  2221. width: 100%;
  2222. margin-top: 2rem; }
  2223. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource textarea {
  2224. width: 100%; }
  2225. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet {
  2226. margin-top: 2rem; }
  2227. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet input {
  2228. width: 100%; }
  2229. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet {
  2230. margin-top: 2rem; }
  2231. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet input {
  2232. width: 100%; }
  2233. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel {
  2234. margin-top: 2rem;
  2235. width: 45%; }
  2236. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel input {
  2237. width: 100%; }
  2238. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone {
  2239. margin-top: 2rem;
  2240. width: 45%; }
  2241. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone input {
  2242. width: 100%; }
  2243. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions {
  2244. width: 100%; }
  2245. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions input {
  2246. width: 30%;
  2247. align-self: flex-end;
  2248. background-color: #009ee3;
  2249. text-transform: uppercase;
  2250. color: white;
  2251. font-size: 1.2rem;
  2252. font-weight: 600;
  2253. float: right;
  2254. margin-top: 1rem;
  2255. border: none; }
  2256. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after {
  2257. 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>'); }
  2258. .path-webform .region-content #webform-submission-offre-de-service-add-form {
  2259. display: flex;
  2260. flex-direction: row;
  2261. flex-wrap: wrap;
  2262. flex-basis: auto;
  2263. justify-content: space-between;
  2264. margin-top: 10vh; }
  2265. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-processed-text {
  2266. width: 100%; }
  2267. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service {
  2268. margin-top: 2rem;
  2269. width: 100%; }
  2270. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service input {
  2271. width: 100%;
  2272. height: 5rem; }
  2273. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure {
  2274. margin-top: 2rem;
  2275. width: 100%; }
  2276. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure input {
  2277. width: 100%; }
  2278. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation {
  2279. margin-top: 2rem;
  2280. width: 100%; }
  2281. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation input {
  2282. width: 100%; }
  2283. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description {
  2284. margin-top: 2rem;
  2285. width: 100%; }
  2286. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description textarea {
  2287. width: 100%; }
  2288. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper {
  2289. width: 100%; }
  2290. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url {
  2291. margin-top: 2rem;
  2292. width: 100%; }
  2293. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url input {
  2294. width: 100%; }
  2295. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel {
  2296. margin-top: 2rem;
  2297. width: 45%; }
  2298. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel input {
  2299. width: 100%; }
  2300. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone {
  2301. margin-top: 2rem;
  2302. width: 45%; }
  2303. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone input {
  2304. width: 100%; }
  2305. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions {
  2306. width: 100%; }
  2307. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions input {
  2308. width: 30%;
  2309. align-self: flex-end;
  2310. background-color: #009ee3;
  2311. text-transform: uppercase;
  2312. color: white;
  2313. font-size: 1.2rem;
  2314. font-weight: 600;
  2315. float: right;
  2316. margin-top: 1rem;
  2317. border: none; }
  2318. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions #edit-actions-submit:after {
  2319. 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>'); }
  2320. .path-webform .region-content #webform-submission-question-add-form {
  2321. display: flex;
  2322. flex-direction: row;
  2323. flex-wrap: wrap;
  2324. flex-basis: auto;
  2325. justify-content: space-between;
  2326. margin-top: 10vh; }
  2327. .path-webform .region-content #webform-submission-question-add-form #edit-couriel--wrapper {
  2328. width: 100%; }
  2329. .path-webform .region-content #webform-submission-question-add-form #edit-couriel--wrapper .form-item-couriel-mail-1 {
  2330. margin-top: 2rem;
  2331. width: 100%; }
  2332. .path-webform .region-content #webform-submission-question-add-form #edit-couriel--wrapper .form-item-couriel-mail-1 input {
  2333. width: 100%; }
  2334. .path-webform .region-content #webform-submission-question-add-form #edit-couriel--wrapper .form-item-couriel-mail-2 {
  2335. margin-top: 2rem;
  2336. width: 100%; }
  2337. .path-webform .region-content #webform-submission-question-add-form #edit-couriel--wrapper .form-item-couriel-mail-2 input {
  2338. width: 100%; }
  2339. .path-webform .region-content #webform-submission-question-add-form .form-item-question {
  2340. margin-top: 2rem;
  2341. width: 100%; }
  2342. .path-webform .region-content #webform-submission-question-add-form .form-item-question textarea {
  2343. width: 100%; }
  2344. .path-webform .region-content #webform-submission-question-add-form #edit-actions {
  2345. width: 100%; }
  2346. .path-webform .region-content #webform-submission-question-add-form #edit-actions input {
  2347. width: 30%;
  2348. align-self: flex-end;
  2349. background-color: #009ee3;
  2350. text-transform: uppercase;
  2351. color: white;
  2352. font-size: 1.2rem;
  2353. font-weight: 600;
  2354. float: right;
  2355. margin-top: 1rem;
  2356. border: none; }
  2357. .path-webform .region-content #webform-submission-question-add-form #edit-actions #edit-actions-submit:after {
  2358. 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>'); }
  2359. /*partials*/
  2360. .layout-container {
  2361. position: relative; }
  2362. .layout-container header {
  2363. width: 100%;
  2364. position: fixed;
  2365. z-index: 99; }
  2366. #header-top {
  2367. height: 7rem;
  2368. background-color: white;
  2369. box-shadow: 1px 0px 8px black;
  2370. display: flex;
  2371. flex-direction: row;
  2372. justify-content: space-between;
  2373. color: black;
  2374. top: 0%;
  2375. scroll-margin: 8rem; }
  2376. #header-top .region-header-top-left {
  2377. display: flex;
  2378. flex-direction: row;
  2379. padding: 1rem;
  2380. padding-left: 4%;
  2381. align-items: center;
  2382. color: black;
  2383. font-weight: 800;
  2384. flex: 1; }
  2385. #header-top .region-header-top-left #block-logogouv {
  2386. display: flex;
  2387. height: 100%;
  2388. align-items: center; }
  2389. #header-top .region-header-top-left #block-logogouv img {
  2390. width: 80%;
  2391. height: auto; }
  2392. #header-top .region-header-top-left #block-logoeql {
  2393. display: flex;
  2394. height: 100%;
  2395. align-items: center; }
  2396. #header-top .region-header-top-left #block-logoeql img {
  2397. width: 80%;
  2398. height: auto; }
  2399. #header-top .region-header-top-left #block-headermenu {
  2400. align-self: baseline;
  2401. width: 70%; }
  2402. #header-top .region-header-top-left ul {
  2403. font-size: 1rem;
  2404. list-style: none;
  2405. display: flex;
  2406. flex-direction: row;
  2407. justify-content: space-between;
  2408. background-color: white;
  2409. width: 100%;
  2410. padding: 1rem; }
  2411. #header-top .region-header-top-left ul .is-active {
  2412. color: #009ee3; }
  2413. #header-top .region-header-top-left ul ul {
  2414. display: flex;
  2415. flex-direction: column;
  2416. display: none; }
  2417. #header-top .region-header-top-left ul ul .is-active {
  2418. color: #009ee3; }
  2419. #header-top .region-header-top-left ul li {
  2420. display: flex;
  2421. flex-direction: column;
  2422. background-color: white;
  2423. padding-bottom: 0.8rem;
  2424. min-width: 30%;
  2425. align-items: center; }
  2426. #header-top .region-header-top-left ul li .menuOpen {
  2427. display: flex; }
  2428. #header-top .region-header-top-left ul li a {
  2429. color: black; }
  2430. #header-top .region-header-top-left ul li .is-active {
  2431. color: #009ee3; }
  2432. #header-top .region-header-top-left ul li :hover {
  2433. color: #009ee3; }
  2434. #header-top .region-header-top-left ul:hover ul {
  2435. display: block; }
  2436. #header-top #block-socialnetwork-2 {
  2437. position: relative;
  2438. top: -33px;
  2439. align-self: flex-end;
  2440. margin-left: auto; }
  2441. #header-top #block-socialnetwork-2 .field--name-body {
  2442. min-height: 75px;
  2443. margin-right: 1rem; }
  2444. #header-top #block-socialnetwork-2 p {
  2445. display: flex;
  2446. flex-direction: row-reverse;
  2447. margin-bottom: 0;
  2448. min-height: 65px;
  2449. justify-content: space-around;
  2450. width: 120%; }
  2451. #header-top #block-socialnetwork-2 p a {
  2452. color: white;
  2453. font-size: 0; }
  2454. #header-top #block-socialnetwork-2 p svg.ext {
  2455. display: none; }
  2456. #header-top #block-socialnetwork-2 p .link-twitter {
  2457. display: flex;
  2458. background-color: black;
  2459. width: 40px;
  2460. justify-content: center;
  2461. align-items: flex-end; }
  2462. #header-top #block-socialnetwork-2 p .link-twitter:before {
  2463. content: url("../images/pictos/twitter_white.svg");
  2464. min-width: 30px;
  2465. padding-bottom: 0.3rem; }
  2466. #header-top #block-socialnetwork-2 p .link-youtube {
  2467. display: flex;
  2468. background-color: black;
  2469. min-width: 40px;
  2470. justify-content: center;
  2471. align-items: flex-end; }
  2472. #header-top #block-socialnetwork-2 p .link-youtube:before {
  2473. content: url("../images/pictos/youtube_white.svg");
  2474. min-width: 25px;
  2475. padding-bottom: 0.5rem; }
  2476. #header-top #block-socialnetwork-2 p .link-linkedin {
  2477. display: flex;
  2478. background-color: black;
  2479. min-width: 40px;
  2480. justify-content: center;
  2481. align-items: flex-end; }
  2482. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  2483. content: url("../images/pictos/linkedin_white.svg");
  2484. min-width: 35px;
  2485. padding-bottom: 0.2rem; }
  2486. #header-top #block-burger {
  2487. z-index: 1;
  2488. background-color: #009ee3;
  2489. font-size: 0.7rem;
  2490. color: white;
  2491. display: block;
  2492. width: 7rem;
  2493. height: 100%;
  2494. margin-top: 0; }
  2495. #header-top #block-burger :hover {
  2496. cursor: pointer; }
  2497. #header-top #block-burger h2 {
  2498. padding-top: 1rem; }
  2499. #header-top #block-burger h2:after {
  2500. display: block;
  2501. margin: auto;
  2502. height: 70px;
  2503. 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>'); }
  2504. #header-top #block-burger #block-burger-menu {
  2505. display: block;
  2506. margin: 0;
  2507. align-self: center;
  2508. text-align: center; }
  2509. #header-top #block-burger .ul1:not(.sous-liste) {
  2510. width: 300%;
  2511. position: relative;
  2512. right: 260px;
  2513. margin: 0;
  2514. padding-top: 2rem;
  2515. padding-bottom: 2rem;
  2516. z-index: 99; }
  2517. #header-top #block-burger ul {
  2518. display: none;
  2519. background-color: #009ee3;
  2520. line-height: 2rem;
  2521. list-style: none; }
  2522. #header-top #block-burger ul .ul1 .sous-liste a {
  2523. opacity: 1; }
  2524. #header-top #block-burger ul a {
  2525. opacity: 0.6;
  2526. color: white;
  2527. font-weight: 800;
  2528. font-size: 1rem; }
  2529. #header-top #block-burger.opened ul {
  2530. display: block; }
  2531. #fotter-bottom {
  2532. box-shadow: 1px 0px 8px black;
  2533. display: flex;
  2534. flex: 1 1 120px;
  2535. flex-direction: row;
  2536. background-color: white;
  2537. padding-top: 3rem; }
  2538. @media (max-width: 810px) {
  2539. #fotter-bottom {
  2540. flex-direction: column;
  2541. padding-right: 1rem; } }
  2542. #fotter-bottom .region {
  2543. display: block;
  2544. padding-left: 2rem;
  2545. padding-right: 1rem;
  2546. padding-bottom: 1rem;
  2547. border-left: #009ee3 solid 1px; }
  2548. #fotter-bottom .region h2 {
  2549. margin-top: 0;
  2550. color: #09398b;
  2551. font-size: 1.2rem; }
  2552. #fotter-bottom .region-footer-bottom-left {
  2553. margin-left: 3rem;
  2554. border: none;
  2555. width: 20%; }
  2556. @media (max-width: 810px) {
  2557. #fotter-bottom .region-footer-bottom-left {
  2558. width: 100%;
  2559. margin-left: 0rem; } }
  2560. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  2561. display: flex;
  2562. flex-direction: row;
  2563. justify-content: flex-start;
  2564. flex-wrap: wrap;
  2565. padding-top: 1rem; }
  2566. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  2567. padding-right: 1rem;
  2568. padding-bottom: 1rem; }
  2569. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  2570. width: auto;
  2571. height: 30px; }
  2572. #fotter-bottom .region-footer-bottom-right {
  2573. width: 30%;
  2574. display: flex;
  2575. flex-direction: column-reverse;
  2576. justify-content: flex-end; }
  2577. @media (max-width: 810px) {
  2578. #fotter-bottom .region-footer-bottom-right {
  2579. width: 100%; } }
  2580. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  2581. margin-bottom: 1rem; }
  2582. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  2583. margin-top: 0;
  2584. display: flex;
  2585. flex-direction: row-reverse;
  2586. justify-content: flex-end; }
  2587. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  2588. color: white;
  2589. font-size: 0;
  2590. padding-left: 1rem; }
  2591. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  2592. display: none; }
  2593. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  2594. display: flex; }
  2595. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  2596. content: url("../images/pictos/twitter_black.svg");
  2597. min-width: 50px; }
  2598. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  2599. display: flex; }
  2600. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  2601. content: url("../images/pictos/youtube_black.svg");
  2602. min-width: 50px; }
  2603. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  2604. display: flex; }
  2605. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  2606. content: url("../images/pictos/linkedin_black.svg");
  2607. min-width: 50px; }
  2608. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  2609. margin-top: 0;
  2610. color: #09398b;
  2611. font-weight: 800;
  2612. list-style: none;
  2613. padding-left: 0; }
  2614. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  2615. color: #09398b;
  2616. font-size: 1.2rem;
  2617. text-decoration: underline;
  2618. margin-top: 0; }
  2619. #fotter-bottom .region-footer-bottom-middle {
  2620. width: 60%; }
  2621. @media (max-width: 810px) {
  2622. #fotter-bottom .region-footer-bottom-middle {
  2623. width: 100%; } }
  2624. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .view-content {
  2625. display: flex;
  2626. flex-direction: row;
  2627. justify-content: flex-start;
  2628. flex-wrap: wrap; }
  2629. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  2630. padding-right: 1rem;
  2631. padding-bottom: 1rem; }