styles.css 142 KB

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