styles.css 138 KB

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