styles.css 137 KB

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