bundle.css 316 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318
  1. @charset "UTF-8";
  2. /*eql*/
  3. /*setup*/
  4. /*global*/
  5. @font-face {
  6. font-family: "Font Awesome";
  7. src: url("../fonts/Font Awesome/fontawesome-webfont.woff2") format("woff2");
  8. font-weight: 400;
  9. font-style: normal;
  10. }
  11. /*marianne*/
  12. @font-face {
  13. font-family: "Marianne";
  14. src: url("../fonts/Marianne/Marianne-Thin.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin.woff") format("woff");
  15. font-weight: 300;
  16. font-style: normal;
  17. }
  18. @font-face {
  19. font-family: "Marianne";
  20. src: url("../fonts/Marianne/Marianne-Thin_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin_Italic.woff") format("woff");
  21. font-weight: 300;
  22. font-style: italic;
  23. }
  24. @font-face {
  25. font-family: "Marianne";
  26. src: url("../fonts/Marianne/Marianne-Light.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light.woff") format("woff");
  27. font-weight: 400;
  28. font-style: normal;
  29. }
  30. @font-face {
  31. font-family: "Marianne";
  32. src: url("../fonts/Marianne/Marianne-Light_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light_Italic.woff") format("woff");
  33. font-weight: 400;
  34. font-style: italic;
  35. }
  36. @font-face {
  37. font-family: "Marianne";
  38. src: url("../fonts/Marianne/Marianne-Regular.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular.woff") format("woff");
  39. font-weight: 600;
  40. font-style: normal;
  41. }
  42. @font-face {
  43. font-family: "Marianne";
  44. src: url("../fonts/Marianne/Marianne-Regular_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular_Italic.woff") format("woff");
  45. font-weight: 600;
  46. font-style: italic;
  47. }
  48. @font-face {
  49. font-family: "Marianne";
  50. src: url("../fonts/Marianne/Marianne-Medium.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium.woff") format("woff");
  51. font-weight: 800;
  52. font-style: normal;
  53. }
  54. @font-face {
  55. font-family: "Marianne";
  56. src: url("../fonts/Marianne/Marianne-Medium_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium_Italic.woff") format("woff");
  57. font-weight: 800;
  58. font-style: italic;
  59. }
  60. @font-face {
  61. font-family: "Marianne";
  62. src: url("../fonts/Marianne/Marianne-Bold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold.woff") format("woff");
  63. font-weight: 900;
  64. font-style: normal;
  65. }
  66. @font-face {
  67. font-family: "Marianne";
  68. src: url("../fonts/Marianne/Marianne-Bold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold_Italic.woff") format("woff");
  69. font-weight: 900;
  70. font-style: italic;
  71. }
  72. @font-face {
  73. font-family: "Marianne";
  74. src: url("../fonts/Marianne/Marianne-ExtraBold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold.woff") format("woff");
  75. font-weight: 1000;
  76. font-style: normal;
  77. }
  78. @font-face {
  79. font-family: "Marianne";
  80. src: url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff") format("woff");
  81. font-weight: 1000;
  82. font-style: italic;
  83. }
  84. /* Source Code Pro */
  85. @font-face {
  86. font-family: "Source Code Pro";
  87. src: url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff") format("woff");
  88. font-weight: 500;
  89. font-style: normal;
  90. }
  91. @font-face {
  92. font-family: "Source Code Pro";
  93. src: url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff") format("woff");
  94. font-weight: 1000;
  95. font-style: normal;
  96. }
  97. /* Colors used for EQL */
  98. .path-user .buttons-filtres-ressources {
  99. display: none;
  100. }
  101. @media screen {
  102. .print_only {
  103. display: none;
  104. }
  105. }
  106. .layout-container {
  107. font-family: "Marianne", sans-serif;
  108. margin: none;
  109. top: 0%;
  110. left: 0%;
  111. width: 100%;
  112. overflow: hidden;
  113. display: flex;
  114. flex-flow: row wrap;
  115. }
  116. .layout-container header {
  117. flex: 0 0 100%;
  118. }
  119. .layout-container main {
  120. position: relative;
  121. }
  122. .layout-container footer {
  123. flex: 0 0 100%;
  124. }
  125. .layout-content {
  126. padding-top: 7rem;
  127. padding-bottom: 6rem;
  128. }
  129. .path-frontpage {
  130. margin: 0;
  131. }
  132. .path-node {
  133. margin: 0;
  134. }
  135. .path-faq {
  136. margin: 0;
  137. }
  138. .path-ressources {
  139. margin: 0;
  140. }
  141. .path-webform {
  142. margin: 0;
  143. }
  144. .path-projets {
  145. margin: 0;
  146. }
  147. .path-incubateur {
  148. margin: 0;
  149. }
  150. main {
  151. width: 100%;
  152. }
  153. .main-content {
  154. margin-top: 7rem;
  155. }
  156. .field--name-field-titre .field__item {
  157. color: rgb(9, 57, 139);
  158. font-weight: 900;
  159. font-size: 2rem;
  160. }
  161. .field--name-field-titre .field__label {
  162. visibility: hidden;
  163. }
  164. .inter-titre {
  165. color: rgb(0, 158, 227);
  166. }
  167. a {
  168. text-decoration: none;
  169. }
  170. a.ext {
  171. color: black;
  172. }
  173. svg.ext {
  174. display: none;
  175. }
  176. @media (max-width: 959px) {
  177. #block-headermenu {
  178. display: none;
  179. }
  180. .page-node-type-static .layout__region--top {
  181. height: 23vh;
  182. }
  183. .page-node-type-static .layout__region--top .block-entity-fieldnodetitle {
  184. margin-top: 11vh;
  185. }
  186. .page-node-type-static .node-id-20 .field--name-field-partenaires .paragraph--type--partenaire {
  187. display: flex;
  188. flex-direction: column;
  189. }
  190. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  191. width: 70%;
  192. }
  193. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static div:first-child:not(.field__item):not(.field) {
  194. display: flex;
  195. flex-direction: column;
  196. }
  197. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  198. width: 100%;
  199. }
  200. }
  201. @media (max-width: 810px) {
  202. .page-node-type-static .layout__region--top {
  203. padding-bottom: 0rem;
  204. }
  205. .page-node-type-static .layout__region--top .block-entity-fieldnodetitle {
  206. margin-left: 8%;
  207. margin-right: 5%;
  208. }
  209. .page-node-type-static .layout__region--first .block-region-first {
  210. display: none;
  211. }
  212. .page-node-type-static .layout__region--second {
  213. flex: 0 1 80%;
  214. margin: auto;
  215. }
  216. .page-node-type-static .layout__region--third .block-region-third {
  217. margin: auto;
  218. }
  219. }
  220. @media (max-width: 479px) {
  221. #header-top #block-logogouv img {
  222. min-width: 45px;
  223. width: 70%;
  224. height: auto;
  225. }
  226. #header-top #block-logoeql img {
  227. min-width: 45px;
  228. width: 80%;
  229. height: auto;
  230. }
  231. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content {
  232. display: flex;
  233. flex-direction: column;
  234. }
  235. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 div:first-of-type {
  236. width: 90%;
  237. display: flex;
  238. margin: auto;
  239. }
  240. }
  241. /*pages*/
  242. /*
  243. @import "pages/partials/header_footer";
  244. @import "pages/home";*/
  245. .path-node.page-node-type-static .layout-container {
  246. overflow: unset;
  247. }
  248. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  249. padding-bottom: 3rem;
  250. height: 30vh;
  251. }
  252. @media (max-width: 810px) {
  253. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  254. padding-bottom: 0rem;
  255. }
  256. }
  257. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  258. width: fit-content;
  259. margin-left: 11%;
  260. margin-top: 15vh;
  261. }
  262. @media (max-width: 810px) {
  263. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  264. margin-left: 8%;
  265. margin-right: 5%;
  266. }
  267. }
  268. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle .field--name-title {
  269. display: inline;
  270. font-family: "Source Code Pro";
  271. font-size: 2rem;
  272. font-weight: 800;
  273. text-transform: uppercase;
  274. }
  275. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first {
  276. position: relative;
  277. }
  278. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  279. display: flex;
  280. justify-content: flex-end;
  281. position: -webkit-sticky;
  282. position: sticky;
  283. top: 10rem;
  284. }
  285. @media (max-width: 810px) {
  286. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  287. display: none;
  288. }
  289. }
  290. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  291. display: flex;
  292. width: 50%;
  293. background-color: rgb(255, 255, 255);
  294. padding-right: 2rem;
  295. }
  296. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  297. display: flex;
  298. font-size: 1rem;
  299. font-weight: 1000;
  300. color: rgb(9, 57, 139);
  301. border-bottom: 1px solid rgb(0, 158, 227);
  302. padding-bottom: 0.8rem;
  303. padding-right: 1rem;
  304. margin-top: 1rem;
  305. scroll-margin-top: 7em;
  306. }
  307. .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 {
  308. text-decoration: underline;
  309. }
  310. @media (max-width: 810px) {
  311. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  312. flex: 0 1 80%;
  313. margin: auto;
  314. }
  315. }
  316. @media (max-width: 479px) {
  317. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  318. padding-top: 5rem;
  319. }
  320. }
  321. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes {
  322. margin-top: 1rem;
  323. background-color: rgb(255, 255, 255);
  324. }
  325. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  326. font-size: 1.5rem;
  327. font-weight: 1000;
  328. font-family: "Source Code Pro", monospace;
  329. color: rgb(9, 57, 139);
  330. text-transform: uppercase;
  331. margin-top: 2rem;
  332. margin-bottom: 0.8rem;
  333. }
  334. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 {
  335. text-transform: none !important;
  336. }
  337. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  338. width: 100%;
  339. height: auto;
  340. }
  341. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  342. padding: 0.5rem 1rem 1rem 1.5rem;
  343. }
  344. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes p {
  345. margin-top: 0;
  346. }
  347. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  348. margin-top: 1rem;
  349. display: flex;
  350. flex-direction: column;
  351. width: 70%;
  352. }
  353. @media (max-width: 810px) {
  354. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  355. margin: auto;
  356. }
  357. }
  358. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  359. height: fit-content;
  360. border: 2px solid rgb(0, 158, 227);
  361. background-color: rgb(255, 255, 255);
  362. }
  363. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers {
  364. min-height: 4rem;
  365. background: rgb(255, 255, 255);
  366. color: rgb(0, 158, 227);
  367. padding-left: 0.8rem;
  368. padding-top: 1rem;
  369. padding-bottom: 1rem;
  370. padding-right: 0.5rem;
  371. }
  372. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers span:nth-of-type(2) {
  373. display: none;
  374. }
  375. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf {
  376. height: inherit;
  377. margin: auto;
  378. }
  379. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf ::before {
  380. content: url("../images/pictos/download.png");
  381. height: auto;
  382. padding-right: 1rem;
  383. }
  384. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf a {
  385. hyphens: auto;
  386. display: inline-flex;
  387. color: rgb(0, 158, 227);
  388. font-weight: 800;
  389. align-items: center;
  390. }
  391. .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 {
  392. margin: auto;
  393. height: fit-content;
  394. border: 2px solid rgb(0, 158, 227);
  395. min-height: 2rem;
  396. background: rgb(255, 255, 255);
  397. color: rgb(0, 158, 227);
  398. padding-left: 0.8rem;
  399. padding-top: 1rem;
  400. padding-bottom: 1rem;
  401. margin-bottom: 1rem;
  402. padding-right: 0.5rem;
  403. }
  404. .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 {
  405. display: inline-flex;
  406. justify-items: center;
  407. color: rgb(0, 158, 227);
  408. font-weight: 800;
  409. align-items: center;
  410. }
  411. .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 {
  412. content: url("../images/pictos/external_link.png");
  413. height: auto;
  414. padding-right: 1rem;
  415. }
  416. .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 {
  417. display: none;
  418. }
  419. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  420. margin-top: 3rem;
  421. }
  422. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  423. font-size: 0.8rem;
  424. color: rgb(0, 0, 0);
  425. font-weight: 900;
  426. }
  427. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  428. border: 2px solid rgb(0, 158, 227);
  429. background-color: rgb(255, 255, 255);
  430. margin-bottom: 1rem;
  431. padding: 1rem;
  432. }
  433. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div {
  434. display: flex;
  435. flex-direction: column;
  436. }
  437. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-type-de-ressource {
  438. order: 2;
  439. text-transform: uppercase;
  440. color: rgb(0, 158, 227);
  441. font-weight: 900;
  442. font-size: 0.8rem;
  443. }
  444. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title {
  445. order: 3;
  446. }
  447. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 {
  448. margin: 0;
  449. }
  450. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 a {
  451. color: rgb(0, 0, 0);
  452. font-size: 1rem;
  453. font-weight: 900;
  454. }
  455. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-sous-titre {
  456. order: 4;
  457. }
  458. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- {
  459. order: 5;
  460. font-weight: 800;
  461. }
  462. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- p {
  463. margin: 0;
  464. }
  465. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- .field__label {
  466. display: none;
  467. }
  468. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition p {
  469. margin: 0;
  470. }
  471. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition .field__label {
  472. display: none;
  473. }
  474. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images {
  475. order: 1;
  476. width: 25%;
  477. }
  478. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images img {
  479. width: 100%;
  480. height: auto;
  481. border: solid 1px gray;
  482. }
  483. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-date-de-parution {
  484. order: 6;
  485. }
  486. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-date-de-parution .field__label {
  487. display: none;
  488. }
  489. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs {
  490. order: 7;
  491. display: flex;
  492. margin-top: 0.8rem;
  493. flex-direction: row;
  494. flex-wrap: wrap;
  495. }
  496. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__label {
  497. display: none;
  498. }
  499. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__items {
  500. display: flex;
  501. flex-direction: row;
  502. flex-wrap: wrap;
  503. }
  504. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item {
  505. padding-bottom: 0.5rem;
  506. margin-right: 0.5rem;
  507. padding-right: 0.3rem;
  508. font-size: 0.8rem;
  509. }
  510. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  511. background: rgb(9, 57, 139);
  512. color: rgb(255, 255, 255);
  513. font-weight: 800;
  514. vertical-align: super;
  515. padding-left: 0.1rem;
  516. padding-right: 0.1rem;
  517. display: inline-flex;
  518. }
  519. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div ul.links.inline {
  520. display: none;
  521. }
  522. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  523. width: 100vw;
  524. height: auto;
  525. padding-top: 5rem;
  526. background: rgba(0, 158, 227, 0.2);
  527. }
  528. @media (max-width: 810px) {
  529. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  530. height: auto;
  531. }
  532. }
  533. @media (max-width: 792px), (max-width: 724px), (max-width: 479px) {
  534. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  535. max-height: fit-content;
  536. padding-top: 2rem;
  537. }
  538. }
  539. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content {
  540. height: auto;
  541. }
  542. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row-wrapper {
  543. margin-bottom: 0;
  544. }
  545. @media (max-width: 810px) {
  546. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  547. width: 100vw !important;
  548. height: auto !important;
  549. }
  550. }
  551. @media (max-width: 479px) {
  552. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  553. height: auto !important;
  554. width: 100vw !important;
  555. }
  556. }
  557. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list.draggable {
  558. padding-left: 0px !important;
  559. }
  560. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  561. color: rgb(0, 0, 0);
  562. line-height: 1.5rem;
  563. width: 80%;
  564. height: auto;
  565. margin: auto;
  566. margin-bottom: 2rem;
  567. }
  568. @media (max-width: 810px) {
  569. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  570. width: 65%;
  571. height: auto;
  572. }
  573. }
  574. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home {
  575. display: flex;
  576. flex-direction: row;
  577. justify-content: space-between;
  578. margin-left: 2rem;
  579. }
  580. @media (max-width: 810px) {
  581. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home {
  582. display: flex;
  583. flex-direction: column;
  584. height: auto;
  585. }
  586. }
  587. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo {
  588. width: 50%;
  589. display: flex;
  590. justify-content: end;
  591. }
  592. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item {
  593. display: flex;
  594. max-height: 420px;
  595. }
  596. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  597. max-width: 100%;
  598. max-height: 456px;
  599. object-fit: cover;
  600. object-position: center;
  601. }
  602. @media (max-width: 810px) {
  603. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  604. max-height: 310px;
  605. max-width: 100%;
  606. object-fit: cover;
  607. padding-left: 0;
  608. margin-bottom: 1rem;
  609. }
  610. }
  611. @media (max-width: 724px) {
  612. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  613. max-height: 400px;
  614. }
  615. }
  616. @media (max-width: 680px) {
  617. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  618. height: 200px;
  619. object-fit: cover;
  620. max-width: 70vw;
  621. margin: auto;
  622. padding-left: 0;
  623. padding-bottom: 1rem;
  624. }
  625. }
  626. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos {
  627. width: 45%;
  628. align-content: center;
  629. color: rgb(9, 57, 139) !important;
  630. }
  631. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date:empty,
  632. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu:empty,
  633. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title:empty,
  634. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-sous-titre:empty,
  635. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-actu-type:empty,
  636. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .ul:empty {
  637. display: none;
  638. }
  639. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date {
  640. font-size: 1.3rem;
  641. }
  642. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date div {
  643. display: flex !important;
  644. flex-direction: row;
  645. }
  646. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date time {
  647. display: flex;
  648. flex-direction: row;
  649. font-size: 1.3rem;
  650. font-weight: 800;
  651. padding-right: 1rem;
  652. width: fit-content;
  653. }
  654. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu {
  655. font-size: 1.3rem;
  656. padding-top: 1rem;
  657. }
  658. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu .field__label {
  659. display: none;
  660. }
  661. @media (max-width: 811px) {
  662. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu {
  663. display: inline-flex;
  664. }
  665. }
  666. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title {
  667. line-height: 1.1;
  668. font-size: 1.5rem;
  669. padding-top: 1rem;
  670. }
  671. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title h2 a {
  672. color: rgb(9, 57, 139) !important;
  673. }
  674. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-sous-titre {
  675. display: none;
  676. font-weight: 800;
  677. }
  678. @media (min-width: 811px) {
  679. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-sous-titre {
  680. font-size: 1.5rem;
  681. }
  682. }
  683. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-actu-type {
  684. padding-top: 2rem;
  685. font-size: 1.3rem;
  686. }
  687. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field:not(.field--name-field-images) {
  688. width: 100%;
  689. }
  690. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos h2 {
  691. margin: 0;
  692. }
  693. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos a {
  694. color: rgb(0, 0, 0);
  695. }
  696. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .inline.links {
  697. display: none;
  698. }
  699. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  700. visibility: visible;
  701. display: flex;
  702. flex-flow: row;
  703. justify-content: center;
  704. background: rgba(0, 158, 227, 0.2);
  705. padding-top: 3rem;
  706. padding-bottom: 3rem;
  707. border-bottom: 5px solid rgb(0, 158, 227);
  708. }
  709. @media (max-width: 479px) {
  710. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  711. padding-top: 2rem;
  712. padding-bottom: 2rem;
  713. }
  714. }
  715. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien {
  716. margin: auto;
  717. height: fit-content;
  718. padding: 0.4rem 1rem;
  719. font-size: 0.8rem;
  720. margin: 0;
  721. background-color: rgb(255, 255, 255);
  722. border: 2px solid rgb(0, 158, 227);
  723. list-style: none;
  724. display: inline-flex;
  725. }
  726. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien p {
  727. margin: 0;
  728. }
  729. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a {
  730. text-transform: uppercase;
  731. font-weight: 700;
  732. color: rgb(0, 158, 227);
  733. display: inline-flex;
  734. align-items: center;
  735. }
  736. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a::after {
  737. 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>');
  738. }
  739. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) {
  740. padding-top: 2rem;
  741. padding-bottom: 4rem;
  742. }
  743. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  744. width: 80%;
  745. margin: auto;
  746. }
  747. @media (max-width: 479px) {
  748. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  749. width: 80%;
  750. }
  751. }
  752. .path-frontpage .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) {
  753. display: flex;
  754. flex-direction: row;
  755. flex-wrap: wrap;
  756. }
  757. .path-frontpage .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) {
  758. order: 3;
  759. }
  760. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links {
  761. z-index: 95;
  762. align-self: flex-end;
  763. width: fit-content;
  764. height: fit-content;
  765. padding: 0.4rem 1rem;
  766. font-size: 0.8rem;
  767. margin: 0;
  768. background-color: rgb(255, 255, 255);
  769. border: 2px solid rgb(0, 158, 227);
  770. list-style: none;
  771. }
  772. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a {
  773. text-transform: uppercase;
  774. font-weight: 700;
  775. color: rgb(0, 158, 227);
  776. display: inline-flex;
  777. align-items: center;
  778. }
  779. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a:after {
  780. 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>');
  781. }
  782. @media (max-width: 810px) {
  783. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-images {
  784. width: 100%;
  785. }
  786. }
  787. .path-frontpage .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 {
  788. width: 15rem;
  789. height: auto;
  790. }
  791. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-title {
  792. display: none;
  793. }
  794. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche {
  795. flex: 1 1 50px;
  796. padding-left: 1rem;
  797. }
  798. @media (max-width: 810px) {
  799. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche {
  800. padding-left: 0em;
  801. flex: 1 1 100%;
  802. padding-right: 1rem;
  803. }
  804. }
  805. @media (max-width: 479px) {
  806. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche {
  807. padding-left: 0em;
  808. }
  809. }
  810. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  811. background-color: rgb(255, 255, 255);
  812. font-size: 1.5rem;
  813. width: 110%;
  814. padding-bottom: 2rem;
  815. margin-block-start: 0;
  816. text-align: start !important;
  817. }
  818. @media (max-width: 810px) {
  819. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  820. font-size: 1.2rem;
  821. width: 100%;
  822. }
  823. }
  824. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-videos {
  825. flex: 0 0 80%;
  826. padding-top: 4rem;
  827. margin: auto;
  828. }
  829. @media (max-width: 479px) {
  830. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-videos {
  831. flex: 0 0 100%;
  832. }
  833. }
  834. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-videos .field__items .field__item:nth-of-type(1) {
  835. display: none;
  836. }
  837. .path-frontpage .block-views-blockprojets-block-4 {
  838. border-top: 5px solid rgb(0, 158, 227);
  839. background: rgba(0, 158, 227, 0.2);
  840. padding-top: 2rem;
  841. padding-bottom: 4rem;
  842. }
  843. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  844. width: 80%;
  845. margin: auto;
  846. padding-top: 1rem;
  847. padding-bottom: 5rem;
  848. text-transform: uppercase;
  849. color: rgb(225, 0, 15);
  850. font-family: "Source Code Pro";
  851. font-weight: 1000;
  852. }
  853. @media (max-width: 479px) {
  854. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  855. padding-bottom: 1rem;
  856. }
  857. }
  858. .path-frontpage .block-views-blockprojets-block-4 .view-projets {
  859. width: 80%;
  860. margin: auto;
  861. }
  862. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  863. display: flex;
  864. flex-direction: row;
  865. justify-content: space-between;
  866. }
  867. @media (max-width: 810px) {
  868. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  869. flex-direction: column;
  870. }
  871. }
  872. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  873. width: 49%;
  874. }
  875. @media (max-width: 810px) {
  876. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  877. width: 100%;
  878. margin-bottom: 3rem;
  879. }
  880. }
  881. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  882. color: rgb(9, 57, 139);
  883. line-height: 1.5rem;
  884. }
  885. @media (max-width: 479px) {
  886. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  887. padding-left: 0rem;
  888. padding-right: 0rem;
  889. padding-top: 2rem;
  890. }
  891. }
  892. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child {
  893. display: flex;
  894. flex-direction: column;
  895. max-height: fit-content;
  896. }
  897. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child a {
  898. color: rgb(9, 57, 139);
  899. }
  900. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo {
  901. order: 1;
  902. }
  903. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo .field__item {
  904. display: none;
  905. }
  906. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo .field__item:first-child {
  907. display: block;
  908. }
  909. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo img {
  910. width: 100%;
  911. height: auto;
  912. max-height: 400px;
  913. object-fit: cover;
  914. }
  915. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse {
  916. order: 2;
  917. display: flex;
  918. text-transform: uppercase;
  919. font-size: 0.9rem;
  920. font-weight: 800;
  921. margin-top: 0.8rem;
  922. line-height: 0.6rem;
  923. }
  924. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address {
  925. display: flex;
  926. flex-direction: row;
  927. margin: 0;
  928. }
  929. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address .locality {
  930. padding-top: 0 !important;
  931. padding-bottom: 0 !important;
  932. }
  933. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address .locality::after {
  934. content: ",";
  935. margin-right: 0.3rem;
  936. }
  937. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address .country {
  938. padding-top: 0 !important;
  939. padding-bottom: 0 !important;
  940. }
  941. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-sous-titre {
  942. margin-top: 0.8rem;
  943. font-size: 0.9rem;
  944. font-weight: 800;
  945. order: 4;
  946. }
  947. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-title {
  948. order: 3;
  949. margin-top: 0.8rem;
  950. font-size: 0.9rem;
  951. font-weight: 800;
  952. }
  953. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-title h2 {
  954. margin: 0;
  955. }
  956. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-incube {
  957. order: 4;
  958. color: rgb(225, 0, 15);
  959. margin-top: 0.8rem;
  960. font-size: 0.7rem;
  961. }
  962. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-region {
  963. display: none;
  964. order: 5;
  965. color: rgb(0, 0, 0);
  966. font-size: 0.7rem;
  967. }
  968. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-moa {
  969. display: none;
  970. order: 6;
  971. }
  972. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-moa a {
  973. color: rgb(0, 0, 0);
  974. font-size: 0.7rem;
  975. }
  976. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-projet {
  977. display: none;
  978. order: 7;
  979. }
  980. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-projet a {
  981. color: rgb(0, 0, 0);
  982. font-size: 0.7rem;
  983. }
  984. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-etape-du-projet {
  985. display: none;
  986. order: 8;
  987. color: rgb(0, 0, 0);
  988. font-size: 0.7rem;
  989. }
  990. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  991. display: flex;
  992. flex-flow: row-reverse;
  993. background: rgba(0, 158, 227, 0.2);
  994. padding-right: 10%;
  995. padding-top: 2rem;
  996. padding-bottom: 4rem;
  997. }
  998. @media (max-width: 479px) {
  999. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  1000. padding-top: 2rem;
  1001. padding-bottom: 2rem;
  1002. }
  1003. }
  1004. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary {
  1005. height: fit-content;
  1006. padding: 0.4rem 1rem;
  1007. font-size: 0.8rem;
  1008. margin: 0;
  1009. background-color: rgb(255, 255, 255);
  1010. border: 2px solid rgb(0, 158, 227);
  1011. list-style: none;
  1012. display: inline-flex;
  1013. }
  1014. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary p {
  1015. margin: 0;
  1016. }
  1017. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a {
  1018. text-transform: uppercase;
  1019. font-weight: 700;
  1020. color: rgb(0, 158, 227);
  1021. display: inline-flex;
  1022. align-items: center;
  1023. }
  1024. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a::after {
  1025. 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>');
  1026. }
  1027. .path-frontpage .block-views-blockprojets-block-2 #leaflet-map-view-projets-block-2 {
  1028. height: 500px !important;
  1029. }
  1030. .node-id-20 {
  1031. background: url("../images/pictos/carre-contour-bleu_partenaire.svg");
  1032. background-repeat: no-repeat;
  1033. background-position-y: 7rem;
  1034. max-width: 100vw;
  1035. background-size: contain;
  1036. }
  1037. .node-id-20 .layout__region--top {
  1038. padding-bottom: 3rem;
  1039. height: 30vh;
  1040. }
  1041. .node-id-20 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1042. font-family: "Source Code Pro";
  1043. font-size: 2rem;
  1044. font-weight: 800;
  1045. color: rgb(255, 255, 255);
  1046. background-color: rgb(0, 158, 227);
  1047. text-transform: uppercase;
  1048. }
  1049. .field--name-field-partenaires {
  1050. padding-top: 3rem;
  1051. }
  1052. .field--name-field-partenaires .paragraph--type--partenaire {
  1053. background-color: rgb(255, 255, 255);
  1054. width: 100%;
  1055. padding-bottom: 3rem;
  1056. display: grid;
  1057. grid-template-columns: repeat(7, 1fr);
  1058. grid-template-rows: repeat(auto-fill);
  1059. }
  1060. @media (max-width: 810px) {
  1061. .field--name-field-partenaires .paragraph--type--partenaire {
  1062. display: flex;
  1063. flex-direction: column;
  1064. }
  1065. }
  1066. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-logo {
  1067. grid-column: 1/2;
  1068. grid-row: 2;
  1069. margin-top: 2rem;
  1070. padding-right: 1rem;
  1071. }
  1072. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-titre {
  1073. grid-column: 2/8;
  1074. grid-row: 1;
  1075. font-weight: 800;
  1076. }
  1077. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-texte {
  1078. grid-column: 2/8;
  1079. grid-row: 2;
  1080. }
  1081. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-lien {
  1082. grid-column: 2/8;
  1083. grid-row: 3;
  1084. }
  1085. .field--name-field-partenaires a {
  1086. color: rgb(0, 0, 0);
  1087. font-weight: 800;
  1088. }
  1089. .field--name-field-partenaires a svg {
  1090. display: none;
  1091. }
  1092. .field--name-field-equipes {
  1093. padding-top: 3rem;
  1094. }
  1095. .field--name-field-equipes .paragraph--type--equipe {
  1096. background-color: rgb(255, 255, 255);
  1097. width: 100%;
  1098. }
  1099. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1100. width: 100%;
  1101. padding-bottom: 3rem;
  1102. display: grid;
  1103. grid-template-columns: repeat(7, 1fr);
  1104. grid-template-rows: repeat(auto-fill);
  1105. }
  1106. @media (max-width: 810px) {
  1107. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1108. display: flex;
  1109. flex-direction: column;
  1110. }
  1111. }
  1112. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo {
  1113. grid-column: 1/2;
  1114. grid-row: 1/span 3;
  1115. padding-right: 1rem;
  1116. }
  1117. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo img {
  1118. border-radius: 50%;
  1119. }
  1120. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-prenom {
  1121. grid-column: 2/span 3;
  1122. grid-row: 1;
  1123. font-weight: 800;
  1124. }
  1125. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-nom {
  1126. grid-column: 2/span 3;
  1127. grid-row: 2;
  1128. }
  1129. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-fonction {
  1130. grid-column: 2/8;
  1131. grid-row: 3;
  1132. }
  1133. .field--name-field-equipes a {
  1134. color: rgb(0, 0, 0);
  1135. font-weight: 800;
  1136. }
  1137. .field--name-field-equipes a svg {
  1138. display: none;
  1139. }
  1140. .path-node.page-node-type-actualite .layout-container {
  1141. overflow: unset;
  1142. }
  1143. .path-node.page-node-type-actualite .offresdeservices.layout-content.region-content#block-contenudelapageprincipale {
  1144. background: none !important;
  1145. }
  1146. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1147. background: linear-gradient(to bottom, rgba(0, 158, 227, 0.2) 60%, white 40%);
  1148. padding-bottom: 4rem;
  1149. }
  1150. @media (max-width: 900px) {
  1151. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1152. order: 1;
  1153. }
  1154. }
  1155. @media (max-width: 568px) {
  1156. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1157. padding-left: 2rem;
  1158. padding-right: 2rem;
  1159. }
  1160. }
  1161. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top {
  1162. display: grid;
  1163. grid-template-columns: 1fr repeat(8, 1fr) 1fr;
  1164. }
  1165. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-actu-type {
  1166. order: 5;
  1167. grid-column: 2;
  1168. margin-top: 1rem;
  1169. color: rgb(9, 57, 139);
  1170. }
  1171. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1172. order: 3;
  1173. grid-column: 2/span 7;
  1174. margin: 0;
  1175. color: rgb(9, 57, 139);
  1176. }
  1177. @media (max-width: 568px) {
  1178. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1179. grid-column: 2/span 8;
  1180. max-width: 80vw;
  1181. }
  1182. }
  1183. @media (max-width: 499px) {
  1184. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1185. grid-column: 2/span 9;
  1186. max-width: 80vw;
  1187. }
  1188. }
  1189. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1190. font-family: "Marianne";
  1191. font-size: 2.5rem;
  1192. font-weight: 800;
  1193. line-height: 3rem;
  1194. }
  1195. @media (max-width: 810px) {
  1196. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1197. font-size: 1.9em;
  1198. line-height: 2.3rem;
  1199. }
  1200. }
  1201. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date {
  1202. order: 1;
  1203. padding-top: 2rem;
  1204. grid-column: 2/span 3;
  1205. text-transform: uppercase;
  1206. color: rgb(9, 57, 139);
  1207. font-size: 1.2rem;
  1208. font-weight: 800;
  1209. margin-top: 1rem;
  1210. }
  1211. .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 {
  1212. display: flex;
  1213. flex-direction: row;
  1214. justify-content: flex-start;
  1215. }
  1216. .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 {
  1217. padding-right: 2 rem;
  1218. }
  1219. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-lieu {
  1220. order: 2;
  1221. grid-column: 2/span 4;
  1222. text-transform: uppercase;
  1223. color: rgb(9, 57, 139);
  1224. font-size: 1.2rem;
  1225. font-weight: 800;
  1226. margin-top: 1rem;
  1227. }
  1228. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-lieu .field--name-field-lieu {
  1229. display: flex;
  1230. flex-direction: row;
  1231. justify-content: flex-start;
  1232. }
  1233. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1234. order: 4;
  1235. grid-column: 2/span 7;
  1236. margin-top: 1rem;
  1237. font-weight: 800;
  1238. color: rgb(9, 57, 139);
  1239. }
  1240. @media (max-width: 568px) {
  1241. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1242. grid-column: 2/span 8;
  1243. max-width: 80vw;
  1244. }
  1245. }
  1246. @media (max-width: 499px) {
  1247. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1248. grid-column: 2/span 9;
  1249. max-width: 80vw;
  1250. }
  1251. }
  1252. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1253. order: 6;
  1254. grid-column: 5/span 3;
  1255. width: 600px;
  1256. }
  1257. @media (max-width: 568px) {
  1258. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .field--name-field-images {
  1259. width: 80%;
  1260. }
  1261. }
  1262. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1263. padding-top: 2rem;
  1264. width: 100%;
  1265. max-height: 400px;
  1266. object-fit: contain;
  1267. }
  1268. @media (max-width: 568px) {
  1269. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1270. max-width: 90vw;
  1271. }
  1272. }
  1273. @media (max-width: 900px) {
  1274. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1275. grid-column: 3/span 5;
  1276. }
  1277. }
  1278. @media (max-width: 568px) {
  1279. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1280. grid-column: 1/span 8;
  1281. }
  1282. }
  1283. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1284. font-size: 0.8rem;
  1285. text-align: center;
  1286. }
  1287. @media (max-width: 810px) {
  1288. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1289. margin-left: 5%;
  1290. margin-right: 5%;
  1291. font-size: 0.7rem;
  1292. }
  1293. }
  1294. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-next {
  1295. right: -65px;
  1296. }
  1297. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-prev {
  1298. left: -65px;
  1299. }
  1300. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-dots > li {
  1301. display: inline-block;
  1302. }
  1303. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-dots > li:only-child {
  1304. display: none;
  1305. }
  1306. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-dotted.slick-slider {
  1307. margin-bottom: 0 !important;
  1308. }
  1309. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  1310. display: flex;
  1311. justify-content: flex-end;
  1312. position: -webkit-sticky;
  1313. position: sticky;
  1314. top: 10rem;
  1315. }
  1316. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  1317. display: flex;
  1318. justify-content: flex-end;
  1319. width: 50%;
  1320. background-color: rgb(255, 255, 255);
  1321. padding-right: 2rem;
  1322. }
  1323. .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 {
  1324. display: flex;
  1325. font-size: 1rem;
  1326. font-weight: 1000;
  1327. color: rgb(9, 57, 139);
  1328. border-bottom: 1px solid rgb(0, 158, 227);
  1329. padding-bottom: 0.5rem;
  1330. padding-right: 1rem;
  1331. margin-bottom: 0.8rem;
  1332. }
  1333. .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 {
  1334. text-decoration: underline;
  1335. }
  1336. @media (max-width: 810px) {
  1337. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first {
  1338. display: none;
  1339. }
  1340. }
  1341. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1342. width: 50%;
  1343. }
  1344. @media (max-width: 900px) {
  1345. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1346. order: 3;
  1347. width: 100vw;
  1348. }
  1349. }
  1350. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  1351. width: 90%;
  1352. }
  1353. @media (max-width: 900px) {
  1354. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  1355. width: 90%;
  1356. margin: auto;
  1357. }
  1358. }
  1359. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody p {
  1360. margin-top: 0;
  1361. }
  1362. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .field--type-text-with-summary {
  1363. background-color: white;
  1364. }
  1365. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes {
  1366. background-color: rgb(255, 255, 255);
  1367. }
  1368. .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 {
  1369. font-size: 1.5rem;
  1370. font-weight: 1000;
  1371. font-family: "Source Code Pro";
  1372. color: rgb(9, 57, 139);
  1373. text-transform: uppercase;
  1374. margin-top: 2rem;
  1375. margin-bottom: 0.8rem;
  1376. }
  1377. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 {
  1378. text-transform: none !important;
  1379. }
  1380. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 img {
  1381. width: 100%;
  1382. height: auto;
  1383. }
  1384. .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 {
  1385. padding-right: 2rem;
  1386. }
  1387. @media (max-width: 900px) {
  1388. .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 {
  1389. padding-right: 0;
  1390. }
  1391. }
  1392. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes p {
  1393. margin-top: 0;
  1394. }
  1395. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a {
  1396. color: rgb(0, 0, 0);
  1397. text-decoration: underline;
  1398. }
  1399. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a svg {
  1400. display: none;
  1401. }
  1402. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .panel-body #outputtext {
  1403. overflow-y: visible !important;
  1404. }
  1405. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody a.ext {
  1406. word-wrap: break-word;
  1407. }
  1408. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__label {
  1409. font-size: 1.5rem;
  1410. font-weight: 1000;
  1411. font-family: "Source Code Pro";
  1412. color: rgb(9, 57, 139);
  1413. text-transform: uppercase;
  1414. margin-top: 2rem;
  1415. margin-bottom: 0.8rem;
  1416. }
  1417. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  1418. display: flex;
  1419. flex-direction: row;
  1420. justify-content: space-between;
  1421. flex-wrap: wrap;
  1422. }
  1423. @media (max-width: 568px) {
  1424. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  1425. flex-direction: column;
  1426. }
  1427. }
  1428. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items .paragraph--type--partenaire {
  1429. display: flex;
  1430. flex-direction: column;
  1431. align-items: center;
  1432. }
  1433. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items .paragraph--type--partenaire .field--name-field-lien {
  1434. padding-top: 1rem;
  1435. }
  1436. @media (max-width: 900px) {
  1437. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1438. flex: 0 1 80%;
  1439. margin: auto;
  1440. }
  1441. }
  1442. @media (max-width: 1005px) {
  1443. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third {
  1444. flex: 0 1 100%;
  1445. order: 2;
  1446. }
  1447. }
  1448. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  1449. display: flex;
  1450. flex-direction: column;
  1451. width: 65%;
  1452. }
  1453. @media (max-width: 900px) {
  1454. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  1455. margin: auto;
  1456. }
  1457. }
  1458. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  1459. height: fit-content;
  1460. width: fit-content;
  1461. border: 2px solid rgb(0, 158, 227);
  1462. background-color: rgb(255, 255, 255);
  1463. margin-bottom: 1rem;
  1464. min-height: 4rem;
  1465. color: rgb(0, 158, 227);
  1466. padding: 1rem;
  1467. }
  1468. @media (max-width: 900px) {
  1469. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  1470. width: auto;
  1471. padding-right: 1rem;
  1472. }
  1473. }
  1474. @media (max-width: 568px) {
  1475. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  1476. width: auto;
  1477. }
  1478. }
  1479. .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) {
  1480. display: none;
  1481. }
  1482. .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 {
  1483. height: inherit;
  1484. margin: auto;
  1485. width: fit-content;
  1486. }
  1487. .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 {
  1488. content: url("../images/pictos/download.png");
  1489. min-width: 30px;
  1490. height: auto;
  1491. padding-right: 1rem;
  1492. margin-right: 1rem;
  1493. }
  1494. .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 {
  1495. hyphens: auto;
  1496. display: inline-flex;
  1497. align-items: center;
  1498. color: rgb(0, 158, 227);
  1499. font-weight: 800;
  1500. }
  1501. .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 {
  1502. margin: auto;
  1503. width: fit-content;
  1504. height: fit-content;
  1505. border: 2px solid rgb(0, 158, 227);
  1506. min-height: 4rem;
  1507. background: rgb(255, 255, 255);
  1508. color: rgb(0, 158, 227);
  1509. padding: 1rem;
  1510. margin-bottom: 1rem;
  1511. }
  1512. @media (max-width: 900px) {
  1513. .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 {
  1514. width: auto;
  1515. padding-right: 1rem;
  1516. }
  1517. }
  1518. .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 {
  1519. display: inline-flex;
  1520. align-items: center;
  1521. color: rgb(0, 158, 227);
  1522. font-weight: 800;
  1523. }
  1524. .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 {
  1525. content: url("../images/pictos/external_link.png");
  1526. min-width: 30px;
  1527. height: auto;
  1528. padding-right: 1rem;
  1529. }
  1530. .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 {
  1531. display: none;
  1532. }
  1533. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  1534. margin-top: 3rem;
  1535. }
  1536. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  1537. font-size: 0.8rem;
  1538. color: rgb(0, 0, 0);
  1539. font-weight: 900;
  1540. }
  1541. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  1542. border: 2px solid rgb(0, 158, 227);
  1543. padding: 1rem;
  1544. height: fit-content;
  1545. margin-bottom: 1rem;
  1546. background-color: rgb(255, 255, 255);
  1547. display: flex;
  1548. flex-direction: column;
  1549. }
  1550. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div {
  1551. display: flex;
  1552. flex-direction: column;
  1553. }
  1554. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-type-de-ressource {
  1555. order: 2;
  1556. text-transform: uppercase;
  1557. color: rgb(0, 158, 227);
  1558. font-weight: 900;
  1559. font-size: 0.8rem;
  1560. }
  1561. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title {
  1562. order: 3;
  1563. }
  1564. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 {
  1565. margin: 0;
  1566. }
  1567. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 a {
  1568. color: rgb(0, 0, 0);
  1569. font-size: 1rem;
  1570. font-weight: 900;
  1571. font-style: italic;
  1572. }
  1573. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-sous-titre {
  1574. order: 4;
  1575. }
  1576. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- {
  1577. order: 5;
  1578. font-weight: 800;
  1579. }
  1580. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- p {
  1581. margin: 0;
  1582. }
  1583. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- .field__label {
  1584. display: none;
  1585. }
  1586. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition p {
  1587. margin: 0;
  1588. }
  1589. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition .field__label {
  1590. display: none;
  1591. }
  1592. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images {
  1593. display: none;
  1594. order: 1;
  1595. width: 25%;
  1596. }
  1597. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images img {
  1598. width: 100%;
  1599. height: auto;
  1600. margin: auto;
  1601. }
  1602. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs {
  1603. order: 6;
  1604. display: flex;
  1605. margin-top: 2rem;
  1606. flex-direction: row;
  1607. flex-wrap: wrap;
  1608. }
  1609. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__items {
  1610. display: flex;
  1611. flex-direction: row;
  1612. flex-wrap: wrap;
  1613. }
  1614. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item {
  1615. padding-bottom: 0.5rem;
  1616. margin-right: 0.5rem;
  1617. padding-right: 0.3rem;
  1618. font-size: 0.8rem;
  1619. }
  1620. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  1621. background: rgb(9, 57, 139);
  1622. color: rgb(255, 255, 255);
  1623. font-weight: 800;
  1624. vertical-align: super;
  1625. padding-left: 0.1rem;
  1626. padding-right: 0.1rem;
  1627. display: inline-flex;
  1628. }
  1629. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div ul.links.inline {
  1630. display: none;
  1631. }
  1632. .node-id-35 .region-content {
  1633. background: url("../images/pictos/carre-contour-bleu_gouvernance.svg");
  1634. background-repeat: no-repeat;
  1635. max-width: 100vw;
  1636. background-size: contain;
  1637. }
  1638. .node-id-35 .layout__region--top {
  1639. padding-bottom: 3rem;
  1640. height: 30vh;
  1641. }
  1642. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1643. display: none;
  1644. height: inherit;
  1645. }
  1646. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1647. font-family: "Source Code Pro";
  1648. font-size: 2rem;
  1649. font-weight: 800;
  1650. color: rgb(255, 255, 255);
  1651. background-color: rgb(0, 158, 227);
  1652. text-transform: uppercase;
  1653. }
  1654. .node-id-3 {
  1655. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  1656. background-repeat: no-repeat;
  1657. background-position-y: 7rem;
  1658. max-width: 100vw;
  1659. background-size: contain;
  1660. }
  1661. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1662. display: none;
  1663. height: inherit;
  1664. }
  1665. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1666. color: rgb(0, 158, 227);
  1667. background-color: rgb(255, 255, 255);
  1668. }
  1669. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  1670. background: rgb(0, 158, 227) !important;
  1671. color: rgb(255, 255, 255) !important;
  1672. }
  1673. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item a {
  1674. color: rgb(255, 255, 255) !important;
  1675. }
  1676. .node-id-3 .block-entity-fieldnodefield-liens {
  1677. display: none;
  1678. }
  1679. .node-id-3 .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  1680. background: rgb(0, 158, 227);
  1681. color: rgb(255, 255, 255);
  1682. }
  1683. .node-id-3 .block-entity-fieldnodefield-ress {
  1684. margin-top: 3rem;
  1685. }
  1686. .node-id-3 .block-entity-fieldnodefield-ress h2 {
  1687. font-size: 0.8rem;
  1688. color: rgb(0, 0, 0);
  1689. font-weight: 900;
  1690. }
  1691. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource {
  1692. display: flex;
  1693. flex-direction: column;
  1694. border: 2px solid rgb(0, 158, 227);
  1695. padding: 1rem;
  1696. height: fit-content;
  1697. margin-bottom: 1rem;
  1698. background-color: rgb(255, 255, 255);
  1699. }
  1700. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type {
  1701. border-top: 1px solid rgb(0, 158, 227);
  1702. padding-top: 1rem;
  1703. }
  1704. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type::after {
  1705. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1706. align-self: flex-end;
  1707. }
  1708. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-title a {
  1709. color: rgb(0, 0, 0);
  1710. font-size: 1.4rem;
  1711. font-weight: 600;
  1712. }
  1713. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- {
  1714. font-weight: 800;
  1715. }
  1716. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- p {
  1717. margin: 0;
  1718. }
  1719. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  1720. display: none;
  1721. }
  1722. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition p {
  1723. margin: 0;
  1724. }
  1725. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition .field__label {
  1726. display: none;
  1727. }
  1728. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images {
  1729. display: none;
  1730. width: 50%;
  1731. }
  1732. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images img {
  1733. width: 100%;
  1734. height: auto;
  1735. }
  1736. .path-actualites {
  1737. background-color: rgba(0, 158, 227, 0.2);
  1738. margin: 0;
  1739. }
  1740. .path-actualites .block-region-content {
  1741. display: grid;
  1742. grid-template-columns: 1fr 8fr 1fr;
  1743. margin: auto;
  1744. padding-top: 3rem;
  1745. }
  1746. .path-actualites .block-region-content .block-views {
  1747. grid-column: 2;
  1748. }
  1749. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  1750. display: flex;
  1751. flex-direction: row;
  1752. flex-wrap: wrap;
  1753. }
  1754. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  1755. width: 25%;
  1756. flex: 0 0 25%;
  1757. }
  1758. @media (max-width: 810px) {
  1759. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  1760. flex-direction: column;
  1761. }
  1762. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  1763. width: 100%;
  1764. }
  1765. }
  1766. .path-actualites .block-region-content .block-views .view-display-id-block_2 {
  1767. padding-top: 0;
  1768. }
  1769. .path-actualites .block-region-content .block-views .node-type-actualite {
  1770. color: rgb(9, 57, 139);
  1771. line-height: 1.5rem;
  1772. padding: 0.5rem;
  1773. padding-right: 1rem;
  1774. padding-left: 1rem;
  1775. }
  1776. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child {
  1777. display: flex;
  1778. flex-direction: column;
  1779. }
  1780. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child a {
  1781. color: rgb(9, 57, 139);
  1782. }
  1783. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images {
  1784. order: 1;
  1785. }
  1786. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  1787. width: 100%;
  1788. max-height: 175px;
  1789. object-fit: cover;
  1790. }
  1791. @media (max-width: 810px) {
  1792. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  1793. max-height: 350px;
  1794. }
  1795. }
  1796. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images::after {
  1797. display: block;
  1798. content: url('data:image/svg+xml,<svg width="160" height="25" 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="2.5"/></svg>');
  1799. }
  1800. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-sous-titre {
  1801. margin-top: 0.5rem;
  1802. font-size: 0.9rem;
  1803. font-weight: 800;
  1804. order: 5;
  1805. }
  1806. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date {
  1807. order: 2;
  1808. display: flex;
  1809. flex-direction: row;
  1810. justify-content: flex-start;
  1811. }
  1812. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date .field__item:not(:last-of-type) ::after {
  1813. padding-left: 1rem;
  1814. content: "|";
  1815. }
  1816. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date time {
  1817. font-size: 0.9rem;
  1818. font-weight: 800;
  1819. padding-right: 1rem;
  1820. width: fit-content;
  1821. }
  1822. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu {
  1823. font-size: 0.9rem;
  1824. order: 3;
  1825. display: flex;
  1826. flex-direction: row;
  1827. justify-content: flex-start;
  1828. }
  1829. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu .field__label {
  1830. display: none;
  1831. }
  1832. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-title {
  1833. order: 4;
  1834. font-size: 0.9rem;
  1835. }
  1836. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field:not(.field--name-field-images) {
  1837. width: 100%;
  1838. }
  1839. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child h2 {
  1840. margin: 0;
  1841. }
  1842. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links {
  1843. padding-top: none !important;
  1844. list-style: none;
  1845. width: fit-content;
  1846. align-self: flex-end;
  1847. padding-right: 1rem;
  1848. }
  1849. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links a {
  1850. display: none;
  1851. }
  1852. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-actu-type {
  1853. order: 6;
  1854. padding-top: 1rem;
  1855. }
  1856. .node-id-4 {
  1857. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  1858. background-repeat: no-repeat;
  1859. background-position-y: 7rem;
  1860. max-width: 100vw;
  1861. background-size: contain;
  1862. }
  1863. .node-id-4 #block-contenudelapageprincipale {
  1864. scroll-margin: 8rem;
  1865. }
  1866. .node-id-4 .layout__region--top {
  1867. padding-bottom: 3rem;
  1868. height: 30vh;
  1869. }
  1870. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1871. display: none;
  1872. height: inherit;
  1873. }
  1874. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1875. font-family: "Source Code Pro";
  1876. font-size: 2rem;
  1877. font-weight: 800;
  1878. color: rgb(255, 255, 255);
  1879. background-color: rgb(0, 158, 227);
  1880. text-transform: uppercase;
  1881. }
  1882. .node-id-4 .layout__region--second {
  1883. width: 25%;
  1884. }
  1885. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes {
  1886. background-color: rgb(255, 255, 255);
  1887. }
  1888. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  1889. font-size: 1.5rem;
  1890. font-weight: 1000;
  1891. font-family: "Source Code Pro";
  1892. color: rgb(9, 57, 139);
  1893. text-transform: uppercase;
  1894. }
  1895. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  1896. text-transform: none !important;
  1897. }
  1898. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  1899. padding-right: 2rem;
  1900. }
  1901. .node-id-5 .region-content {
  1902. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  1903. background-repeat: no-repeat;
  1904. max-width: 100vw;
  1905. background-size: contain;
  1906. }
  1907. .node-id-5 .layout__region--top {
  1908. padding-bottom: 3rem;
  1909. height: 30vh;
  1910. }
  1911. .node-id-5 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1912. font-family: "Source Code Pro";
  1913. font-size: 2rem;
  1914. font-weight: 800;
  1915. color: rgb(255, 255, 255);
  1916. background-color: rgb(0, 158, 227);
  1917. text-transform: uppercase;
  1918. }
  1919. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  1920. color: rgb(0, 0, 0);
  1921. text-decoration: underline;
  1922. }
  1923. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  1924. display: none;
  1925. }
  1926. .path-faq #block-contenudelapageprincipale h2 {
  1927. font-family: "Source Code Pro";
  1928. font-size: 2rem;
  1929. font-weight: 800;
  1930. color: rgb(0, 158, 227);
  1931. background-color: rgb(255, 255, 255);
  1932. text-transform: uppercase;
  1933. width: fit-content;
  1934. margin-left: 10%;
  1935. margin-top: 8rem;
  1936. }
  1937. @media (max-width: 810px) {
  1938. .path-faq #block-contenudelapageprincipale h2 {
  1939. margin-left: 8%;
  1940. margin-right: 1%;
  1941. }
  1942. }
  1943. .path-faq #block-contenudelapageprincipale .block-region-content {
  1944. display: grid;
  1945. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  1946. }
  1947. @media (max-width: 810px) {
  1948. .path-faq #block-contenudelapageprincipale .block-region-content {
  1949. display: flex;
  1950. flex-direction: column;
  1951. margin: auto;
  1952. }
  1953. }
  1954. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  1955. grid-column: 2/span 3;
  1956. }
  1957. @media (max-width: 810px) {
  1958. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  1959. width: 80%;
  1960. margin: auto;
  1961. }
  1962. }
  1963. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  1964. display: none;
  1965. grid-column: 5;
  1966. grid-row: 1/span 2;
  1967. height: fit-content;
  1968. flex-direction: column;
  1969. max-width: fit-content;
  1970. margin-left: 2rem;
  1971. padding: 1rem;
  1972. background-color: rgb(0, 158, 227);
  1973. }
  1974. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  1975. text-align: center;
  1976. }
  1977. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  1978. margin-top: 1rem;
  1979. display: block;
  1980. content: url("../images/pictos/picto_faq.svg");
  1981. }
  1982. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  1983. font-size: 0.8rem;
  1984. font-weight: 1000;
  1985. color: rgb(9, 57, 139);
  1986. text-transform: uppercase;
  1987. }
  1988. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p {
  1989. display: flex;
  1990. flex-direction: column;
  1991. margin-top: 0;
  1992. margin-left: 1.5rem;
  1993. margin-right: 1.5rem;
  1994. text-align: center;
  1995. }
  1996. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p a {
  1997. font-weight: 800;
  1998. color: rgb(255, 255, 255);
  1999. font-size: 1.3rem;
  2000. }
  2001. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p:after {
  2002. margin-left: auto;
  2003. padding-top: 1rem;
  2004. display: block;
  2005. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2006. }
  2007. @media (max-width: 810px) {
  2008. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2009. margin: auto;
  2010. padding: 0rem;
  2011. }
  2012. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2013. text-align: center;
  2014. }
  2015. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2016. margin-top: 1rem;
  2017. display: block;
  2018. content: url("../images/pictos/picto_faq_2.svg");
  2019. }
  2020. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2021. font-size: 0.8rem;
  2022. font-weight: 1000;
  2023. color: rgb(9, 57, 139);
  2024. text-transform: uppercase;
  2025. }
  2026. }
  2027. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2028. margin-top: 2rem;
  2029. grid-column: 2/span 3;
  2030. display: grid;
  2031. grid-template-columns: 1fr 1fr 1fr;
  2032. }
  2033. @media (max-width: 810px) {
  2034. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2035. width: 80%;
  2036. margin: auto;
  2037. margin-top: 1rem;
  2038. }
  2039. }
  2040. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child {
  2041. grid-column: 1/span 3;
  2042. }
  2043. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2044. border-bottom: 1px solid rgb(0, 158, 227);
  2045. padding-bottom: 2rem;
  2046. }
  2047. @media (max-width: 810px) {
  2048. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2049. padding-bottom: 1rem;
  2050. }
  2051. }
  2052. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-title {
  2053. display: none;
  2054. }
  2055. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question {
  2056. cursor: pointer;
  2057. }
  2058. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p {
  2059. font-family: "Source Code Pro";
  2060. font-weight: 500;
  2061. color: rgb(9, 57, 139);
  2062. font-size: 1.3rem;
  2063. }
  2064. .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 {
  2065. display: inline-flex;
  2066. 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>');
  2067. float: right;
  2068. }
  2069. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question :hover:after {
  2070. display: inline-flex;
  2071. 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>');
  2072. float: right;
  2073. }
  2074. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-reponse {
  2075. display: none;
  2076. }
  2077. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers {
  2078. display: none;
  2079. }
  2080. .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) {
  2081. display: none;
  2082. }
  2083. .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) {
  2084. display: none;
  2085. }
  2086. .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 {
  2087. display: inline-block;
  2088. content: url("../images/pictos/noun_Download_file_307900.svg");
  2089. width: 30px;
  2090. height: 30px;
  2091. padding-right: 0.8rem;
  2092. }
  2093. .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 {
  2094. display: inline-flex;
  2095. align-items: center;
  2096. color: rgb(0, 0, 0);
  2097. font-weight: 800;
  2098. }
  2099. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens {
  2100. display: none;
  2101. }
  2102. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a {
  2103. display: flex;
  2104. flex-direction: row;
  2105. justify-content: left;
  2106. align-items: center;
  2107. color: rgb(0, 0, 0);
  2108. font-weight: 800;
  2109. }
  2110. .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 {
  2111. display: inline-block;
  2112. content: url("../images/pictos/external_link.png");
  2113. width: 30px;
  2114. height: 30px;
  2115. padding-right: 0.8rem;
  2116. }
  2117. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens svg {
  2118. display: none;
  2119. }
  2120. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress {
  2121. display: none;
  2122. margin-top: 0.5rem;
  2123. }
  2124. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress a {
  2125. color: rgb(0, 0, 0);
  2126. text-decoration: underline;
  2127. font-weight: 800;
  2128. }
  2129. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .opened {
  2130. display: block;
  2131. }
  2132. .node-id-6 {
  2133. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2134. background-repeat: no-repeat;
  2135. background-position-y: 7rem;
  2136. max-width: 100vw;
  2137. background-size: contain;
  2138. }
  2139. .node-id-6 .layout__region--top {
  2140. padding-bottom: 3rem;
  2141. height: 30vh;
  2142. }
  2143. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2144. display: none;
  2145. height: inherit;
  2146. }
  2147. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2148. font-family: "Source Code Pro";
  2149. font-size: 2rem;
  2150. font-weight: 800;
  2151. color: rgb(255, 255, 255);
  2152. background-color: rgb(0, 158, 227);
  2153. text-transform: uppercase;
  2154. }
  2155. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2156. color: rgb(0, 0, 0);
  2157. text-decoration: underline;
  2158. }
  2159. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2160. display: none;
  2161. }
  2162. .path-taxonomy #block-contenudelapageprincipale span {
  2163. display: none;
  2164. }
  2165. .path-taxonomy .view-taxonomy-term .view-header {
  2166. width: 80%;
  2167. margin: auto;
  2168. }
  2169. .path-taxonomy .view-taxonomy-term .view-content {
  2170. width: 80%;
  2171. margin: auto;
  2172. }
  2173. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper {
  2174. display: flex;
  2175. flex-direction: row;
  2176. flex-wrap: wrap;
  2177. }
  2178. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2179. width: 30%;
  2180. }
  2181. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2182. display: flex;
  2183. width: 25%;
  2184. max-width: fit-content;
  2185. }
  2186. .page-node-type-ressource .layout-container {
  2187. overflow: visible;
  2188. }
  2189. @media (max-width: 810px) {
  2190. .page-node-type-ressource .layout-container {
  2191. overflow: hidden;
  2192. }
  2193. }
  2194. .page-node-type-ressource .layout__region--top {
  2195. padding-top: 4rem;
  2196. /* Hide empty blocks */
  2197. }
  2198. @media (max-width: 550px) {
  2199. .page-node-type-ressource .layout__region--top {
  2200. padding-top: 0rem;
  2201. max-width: 100%;
  2202. }
  2203. }
  2204. .page-node-type-ressource .layout__region--top .block-region-top {
  2205. display: flex;
  2206. flex-direction: column;
  2207. }
  2208. @media screen and (min-width: 1100px) {
  2209. .page-node-type-ressource .layout__region--top .block-region-top {
  2210. display: grid;
  2211. grid-template-columns: 1fr 2fr; /* 1/3 pour l'image, 2/3 pour le contenu */
  2212. gap: 0.5rem;
  2213. }
  2214. }
  2215. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2216. width: fit-content;
  2217. padding-left: 25%;
  2218. }
  2219. @media (min-width: 1100px) {
  2220. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2221. grid-column: 1;
  2222. grid-row: 1/span 7;
  2223. align-self: start;
  2224. justify-self: end;
  2225. margin-left: 2rem;
  2226. }
  2227. }
  2228. @media (max-width: 1100px) {
  2229. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2230. padding-left: 13%;
  2231. }
  2232. }
  2233. @media (max-width: 550px) {
  2234. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2235. width: 100vw;
  2236. padding: 0;
  2237. width: 100%;
  2238. height: auto;
  2239. }
  2240. }
  2241. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  2242. border: solid 1px gray;
  2243. max-width: 100%;
  2244. width: 100%;
  2245. }
  2246. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2247. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2248. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2249. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2250. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2251. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2252. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2253. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2254. width: 100%;
  2255. margin-left: 13%;
  2256. }
  2257. @media (max-width: 1099px) {
  2258. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2259. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2260. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2261. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2262. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2263. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2264. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2265. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2266. width: auto;
  2267. margin-right: 15%;
  2268. }
  2269. }
  2270. @media screen and (min-width: 1100px) {
  2271. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2272. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2273. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2274. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2275. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2276. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2277. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2278. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2279. width: auto;
  2280. margin-left: 2rem;
  2281. margin-right: 15%;
  2282. grid-column: 2/4;
  2283. align-self: start; /* S'assurer qu'il commence en haut */
  2284. height: fit-content;
  2285. justify-self: start;
  2286. }
  2287. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 p,
  2288. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource p,
  2289. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle p,
  2290. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre p,
  2291. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition p,
  2292. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- p,
  2293. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution p,
  2294. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs p {
  2295. margin: 0;
  2296. }
  2297. }
  2298. @media (max-width: 810px) {
  2299. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2300. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2301. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2302. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2303. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2304. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2305. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2306. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2307. margin-left: 9%;
  2308. margin-right: 9%;
  2309. }
  2310. }
  2311. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 {
  2312. width: 100%;
  2313. font-family: "Source Code Pro";
  2314. font-size: 1.5rem;
  2315. font-weight: 800;
  2316. color: rgb(255, 255, 255);
  2317. background-color: rgb(0, 158, 227);
  2318. text-transform: uppercase;
  2319. padding-left: 13%;
  2320. padding-top: 1rem;
  2321. padding-bottom: 0.5rem;
  2322. vertical-align: middle;
  2323. }
  2324. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2325. color: rgb(0, 158, 227);
  2326. text-transform: uppercase;
  2327. font-weight: 900;
  2328. }
  2329. @media (max-width: 1099px) {
  2330. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2331. margin-top: 2rem;
  2332. }
  2333. }
  2334. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  2335. font-size: 2.5rem;
  2336. font-weight: 600;
  2337. line-height: 1.2;
  2338. }
  2339. @media (max-width: 550px) {
  2340. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2341. font-size: 1.5rem;
  2342. width: 80vw;
  2343. }
  2344. }
  2345. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  2346. font-weight: 600;
  2347. font-size: 2rem;
  2348. }
  2349. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition {
  2350. font-weight: 600;
  2351. font-size: 2rem;
  2352. }
  2353. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition p {
  2354. font-weight: 600;
  2355. font-size: 2rem;
  2356. margin-bottom: 0;
  2357. }
  2358. @media (max-width: 550px) {
  2359. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  2360. font-size: 1rem;
  2361. }
  2362. }
  2363. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  2364. margin-bottom: 0;
  2365. }
  2366. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  2367. font-size: 1.5rem;
  2368. font-weight: 800;
  2369. line-height: 0.8;
  2370. margin-top: 1rem;
  2371. }
  2372. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  2373. margin: 0;
  2374. }
  2375. @media (max-width: 550px) {
  2376. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  2377. margin-top: 0rem;
  2378. font-size: 1rem;
  2379. line-height: 1;
  2380. }
  2381. }
  2382. @media (max-width: 550px) {
  2383. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  2384. margin-top: 0.5rem;
  2385. }
  2386. }
  2387. @media (max-width: 550px) {
  2388. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  2389. margin-top: 0.5rem;
  2390. }
  2391. }
  2392. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  2393. display: inline-flex;
  2394. margin-top: 0.5rem;
  2395. }
  2396. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  2397. background: rgb(9, 57, 139);
  2398. margin-right: 1rem;
  2399. padding-left: 0.3rem;
  2400. padding-right: 0.3rem;
  2401. color: rgb(255, 255, 255);
  2402. font-weight: 800;
  2403. vertical-align: middle;
  2404. }
  2405. @media (max-width: 810px) {
  2406. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  2407. display: flex;
  2408. flex-direction: row;
  2409. flex-wrap: wrap;
  2410. }
  2411. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  2412. margin-bottom: 0.5rem;
  2413. }
  2414. }
  2415. .page-node-type-ressource .layout__region--top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640:empty,
  2416. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-type-de-ressource:empty,
  2417. .page-node-type-ressource .layout__region--top .block-entity-fieldnodetitle:empty,
  2418. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-sous-titre:empty,
  2419. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-edition:empty,
  2420. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-auteur-s-:empty,
  2421. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-date-de-parution:empty,
  2422. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-mots-clefs:empty {
  2423. display: none;
  2424. }
  2425. .page-node-type-ressource .layout__region--first {
  2426. margin-top: 3rem;
  2427. position: relative;
  2428. }
  2429. @media (max-width: 810px) {
  2430. .page-node-type-ressource .layout__region--first {
  2431. display: none;
  2432. }
  2433. }
  2434. .page-node-type-ressource .layout__region--first .block-region-first {
  2435. display: flex;
  2436. justify-content: flex-end;
  2437. position: sticky;
  2438. top: 13rem;
  2439. }
  2440. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  2441. display: flex;
  2442. width: 50%;
  2443. background-color: rgb(255, 255, 255);
  2444. padding-right: 2rem;
  2445. }
  2446. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  2447. display: flex;
  2448. font-size: 1rem;
  2449. font-weight: 1000;
  2450. color: rgb(9, 57, 139);
  2451. border-bottom: 1px solid rgb(0, 158, 227);
  2452. padding-bottom: 0.5rem;
  2453. padding-right: 1rem;
  2454. }
  2455. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  2456. text-decoration: underline;
  2457. }
  2458. .page-node-type-ressource .layout__region--second {
  2459. margin-top: 3rem;
  2460. }
  2461. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  2462. background-color: rgb(255, 255, 255);
  2463. }
  2464. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  2465. font-size: 1.5rem;
  2466. font-weight: 1000;
  2467. font-family: "Source Code Pro";
  2468. color: rgb(9, 57, 139);
  2469. text-transform: uppercase;
  2470. }
  2471. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  2472. text-transform: none !important;
  2473. }
  2474. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  2475. width: 100%;
  2476. height: auto;
  2477. }
  2478. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2479. padding-right: 2rem;
  2480. }
  2481. @media (max-width: 550px) {
  2482. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2483. padding-right: 0;
  2484. }
  2485. }
  2486. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  2487. margin-top: 0;
  2488. }
  2489. @media (max-width: 810px) {
  2490. .page-node-type-ressource .layout__region--second {
  2491. flex: 0 1 80%;
  2492. margin: auto;
  2493. margin-top: 2rem;
  2494. }
  2495. }
  2496. .page-node-type-ressource .layout__region--third {
  2497. margin-top: 3rem;
  2498. }
  2499. @media (max-width: 810px) {
  2500. .page-node-type-ressource .layout__region--third {
  2501. flex: 0 1 80%;
  2502. margin-left: 10%;
  2503. }
  2504. }
  2505. .page-node-type-ressource .layout__region--third .block-region-third {
  2506. display: flex;
  2507. flex-direction: column;
  2508. width: 70%;
  2509. }
  2510. @media (max-width: 810px) {
  2511. .page-node-type-ressource .layout__region--third .block-region-third {
  2512. width: 100%;
  2513. }
  2514. }
  2515. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  2516. height: fit-content;
  2517. border: 2px solid rgb(0, 158, 227);
  2518. background-color: rgb(255, 255, 255);
  2519. order: 2;
  2520. }
  2521. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  2522. min-height: 4rem;
  2523. background: rgb(255, 255, 255);
  2524. color: rgb(0, 158, 227);
  2525. padding-left: 1rem;
  2526. padding-top: 1rem;
  2527. padding: 1rem;
  2528. }
  2529. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  2530. display: none;
  2531. }
  2532. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  2533. height: inherit;
  2534. margin: auto;
  2535. width: fit-content;
  2536. }
  2537. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  2538. content: url("../images/pictos/download.png");
  2539. min-width: 30px;
  2540. height: auto;
  2541. padding-right: 1rem;
  2542. margin-right: 1rem;
  2543. }
  2544. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  2545. hyphens: auto;
  2546. display: inline-flex;
  2547. align-items: center;
  2548. color: rgb(0, 158, 227);
  2549. font-weight: 800;
  2550. }
  2551. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  2552. order: 3;
  2553. }
  2554. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2555. margin: auto;
  2556. height: fit-content;
  2557. border: 2px solid rgb(0, 158, 227);
  2558. min-height: 4rem;
  2559. background: rgb(255, 255, 255);
  2560. color: rgb(0, 158, 227);
  2561. padding-left: 1rem;
  2562. padding-top: 1rem;
  2563. margin-bottom: 1rem;
  2564. padding: 1rem;
  2565. }
  2566. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  2567. display: inline-flex;
  2568. align-items: center;
  2569. color: rgb(0, 158, 227);
  2570. font-weight: 800;
  2571. }
  2572. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  2573. content: url("../images/pictos/external_link.png");
  2574. min-width: 30px;
  2575. height: auto;
  2576. padding-right: 1rem;
  2577. margin-right: 1rem;
  2578. }
  2579. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  2580. display: none;
  2581. }
  2582. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  2583. order: 4;
  2584. margin-top: 3rem;
  2585. }
  2586. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  2587. font-size: 0.8rem;
  2588. color: rgb(0, 0, 0);
  2589. font-weight: 900;
  2590. margin-bottom: 1rem;
  2591. }
  2592. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  2593. border: 2px solid rgb(0, 158, 227);
  2594. padding: 1rem;
  2595. height: fit-content;
  2596. margin-bottom: 1rem;
  2597. background-color: rgb(255, 255, 255);
  2598. display: flex;
  2599. flex-direction: column;
  2600. }
  2601. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div {
  2602. display: flex;
  2603. flex-direction: column;
  2604. }
  2605. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-type-de-ressource {
  2606. order: 2;
  2607. text-transform: uppercase;
  2608. color: rgb(0, 158, 227);
  2609. font-weight: 900;
  2610. font-size: 0.8rem;
  2611. }
  2612. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-title {
  2613. order: 3;
  2614. }
  2615. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-title h2 {
  2616. margin: 0;
  2617. }
  2618. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-title h2 a {
  2619. color: rgb(0, 0, 0);
  2620. font-size: 1rem;
  2621. font-weight: 900;
  2622. font-style: italic;
  2623. }
  2624. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-sous-titre {
  2625. order: 4;
  2626. }
  2627. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-auteur-s- {
  2628. order: 5;
  2629. font-weight: 800;
  2630. }
  2631. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-auteur-s- p {
  2632. margin: 0;
  2633. }
  2634. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-auteur-s- .field__label {
  2635. display: none;
  2636. }
  2637. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-edition p {
  2638. margin: 0;
  2639. }
  2640. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-edition .field__label {
  2641. display: none;
  2642. }
  2643. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-images {
  2644. order: 1;
  2645. width: 25%;
  2646. }
  2647. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-images img {
  2648. width: 100%;
  2649. height: auto;
  2650. }
  2651. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-date-de-parution {
  2652. order: 6;
  2653. }
  2654. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-date-de-parution .field__label {
  2655. display: none;
  2656. }
  2657. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs {
  2658. order: 7;
  2659. display: flex;
  2660. margin-top: 0.8rem;
  2661. flex-direction: row;
  2662. flex-wrap: wrap;
  2663. }
  2664. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__label {
  2665. display: none;
  2666. }
  2667. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__items {
  2668. display: flex;
  2669. flex-direction: row;
  2670. flex-wrap: wrap;
  2671. }
  2672. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__item {
  2673. padding-bottom: 0.5rem;
  2674. margin-right: 0.5rem;
  2675. padding-right: 0.3rem;
  2676. font-size: 0.8rem;
  2677. }
  2678. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  2679. background: rgb(9, 57, 139);
  2680. color: rgb(255, 255, 255);
  2681. font-weight: 800;
  2682. vertical-align: super;
  2683. padding-left: 0.1rem;
  2684. padding-right: 0.1rem;
  2685. display: inline-flex;
  2686. pointer-events: none !important;
  2687. cursor: default;
  2688. }
  2689. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div ul.links.inline {
  2690. display: none;
  2691. }
  2692. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  2693. order: 1;
  2694. }
  2695. @media (max-width: 479px) {
  2696. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  2697. margin-top: 2rem;
  2698. }
  2699. }
  2700. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee h2 {
  2701. display: none;
  2702. font-size: 0.8rem;
  2703. color: rgb(0, 0, 0);
  2704. font-weight: 900;
  2705. }
  2706. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee {
  2707. display: flex;
  2708. flex-direction: column;
  2709. border-bottom: 1px solid rgb(0, 0, 0);
  2710. padding: 1rem;
  2711. height: fit-content;
  2712. margin-bottom: 3rem;
  2713. background-color: rgb(255, 255, 255);
  2714. }
  2715. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__label {
  2716. display: none;
  2717. }
  2718. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__items :before {
  2719. content: url("../images/pictos/picto_lieu_blue.svg");
  2720. display: inline-block;
  2721. color: rgb(9, 57, 139);
  2722. margin-right: 1rem;
  2723. }
  2724. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item {
  2725. display: flex;
  2726. flex-direction: row;
  2727. margin-bottom: 1.5rem;
  2728. }
  2729. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item :before {
  2730. content: "Voir le projet";
  2731. display: block;
  2732. color: rgb(9, 57, 139);
  2733. }
  2734. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item a {
  2735. color: rgb(9, 57, 139);
  2736. font-size: 1rem;
  2737. font-weight: 900;
  2738. }
  2739. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  2740. padding-top: 3rem;
  2741. padding-bottom: 3rem;
  2742. vertical-align: middle;
  2743. color: rgb(255, 255, 255);
  2744. }
  2745. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  2746. font-family: "Source Code Pro";
  2747. font-size: 2rem;
  2748. font-weight: 800;
  2749. color: rgb(255, 255, 255);
  2750. background-color: rgb(0, 158, 227);
  2751. text-transform: uppercase;
  2752. width: fit-content;
  2753. margin-left: 10%;
  2754. margin-top: 8rem;
  2755. }
  2756. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  2757. display: grid;
  2758. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  2759. }
  2760. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  2761. grid-column: 2/span 3;
  2762. margin-top: 4rem;
  2763. }
  2764. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  2765. margin: auto;
  2766. background: rgb(255, 255, 255);
  2767. }
  2768. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction p {
  2769. margin: 0;
  2770. }
  2771. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  2772. grid-column: 5;
  2773. margin-top: 4rem;
  2774. background-color: rgb(0, 158, 227);
  2775. height: fit-content;
  2776. min-height: fit-content;
  2777. width: 200px;
  2778. margin-left: 2rem;
  2779. aspect-ratio: 1/1;
  2780. display: flex;
  2781. }
  2782. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien {
  2783. display: flex;
  2784. flex-direction: column;
  2785. text-align: center;
  2786. margin: auto;
  2787. padding: 1rem;
  2788. }
  2789. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a {
  2790. display: block;
  2791. font-weight: 800;
  2792. color: rgb(255, 255, 255);
  2793. font-size: 1.3rem;
  2794. }
  2795. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a:after {
  2796. margin-left: 80%;
  2797. padding-top: 0.5rem;
  2798. display: block;
  2799. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2800. }
  2801. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  2802. grid-column: 2/span 3;
  2803. }
  2804. @media (max-width: 810px) {
  2805. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  2806. grid-column: 2/span 4;
  2807. }
  2808. }
  2809. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  2810. margin: auto;
  2811. }
  2812. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  2813. display: none;
  2814. background: rgb(255, 255, 255);
  2815. }
  2816. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  2817. display: flex;
  2818. flex-wrap: wrap;
  2819. margin-top: 3rem;
  2820. }
  2821. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  2822. width: 50%;
  2823. }
  2824. .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 {
  2825. display: flex;
  2826. justify-content: space-between;
  2827. padding: 1rem;
  2828. height: fit-content;
  2829. margin-bottom: 1rem;
  2830. background-color: rgb(255, 255, 255);
  2831. margin-right: 1rem;
  2832. }
  2833. .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::after {
  2834. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2835. align-self: flex-end;
  2836. }
  2837. .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 {
  2838. display: grid;
  2839. grid-template-columns: 1fr 1fr 1fr;
  2840. grid-template-rows: repeat(6 auto);
  2841. }
  2842. .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 {
  2843. grid-column: 1/span 3;
  2844. grid-row: 1;
  2845. margin-bottom: 1rem;
  2846. text-transform: uppercase;
  2847. font-weight: 900;
  2848. font-size: 0.8rem;
  2849. }
  2850. .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 {
  2851. grid-column: 1;
  2852. grid-row: 2/span 6;
  2853. margin-right: 1rem;
  2854. max-height: 170px;
  2855. }
  2856. .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 {
  2857. max-width: 100%;
  2858. object-fit: cover;
  2859. height: auto;
  2860. max-height: 95%;
  2861. }
  2862. .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 {
  2863. grid-column: 2;
  2864. grid-row: 2;
  2865. padding-right: 0.5rem;
  2866. text-transform: uppercase;
  2867. font-weight: 800;
  2868. font-size: 1rem;
  2869. }
  2870. .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 {
  2871. grid-column: 3;
  2872. grid-row: 2;
  2873. text-transform: uppercase;
  2874. font-weight: 800;
  2875. font-size: 1rem;
  2876. }
  2877. .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 {
  2878. grid-column: 2/span 3;
  2879. grid-row: 3;
  2880. text-transform: uppercase;
  2881. font-weight: 800;
  2882. font-size: 0.8rem;
  2883. }
  2884. .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 {
  2885. grid-column: 2/span 3;
  2886. grid-row: 4;
  2887. font-size: 1.3rem;
  2888. }
  2889. .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 {
  2890. color: rgb(0, 0, 0);
  2891. }
  2892. .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 {
  2893. grid-column: 2/span 3;
  2894. grid-row: 5;
  2895. text-transform: uppercase;
  2896. font-weight: 800;
  2897. font-size: 0.8rem;
  2898. }
  2899. .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 {
  2900. display: inline-flex;
  2901. grid-column: 2/span 3;
  2902. grid-row: 6;
  2903. font-size: 0.8rem;
  2904. padding-top: 1rem;
  2905. justify-content: flex-start;
  2906. }
  2907. .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 time {
  2908. justify-self: flex-start;
  2909. }
  2910. .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::before {
  2911. content: "proposé le";
  2912. hyphens: none;
  2913. padding-right: 0.5rem;
  2914. }
  2915. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-5 {
  2916. border: 2px solid rgb(255, 0, 15);
  2917. }
  2918. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-6 {
  2919. border: 2px solid rgb(160, 26, 39);
  2920. }
  2921. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-7 {
  2922. border: 2px solid rgb(199, 215, 74);
  2923. }
  2924. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-8 {
  2925. border: 2px solid rgb(255, 100, 83);
  2926. }
  2927. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-9 {
  2928. border: 2px solid rgb(111, 109, 125);
  2929. }
  2930. @media (max-width: 810px) {
  2931. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  2932. flex-direction: column;
  2933. }
  2934. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  2935. width: 100%;
  2936. }
  2937. }
  2938. @media (max-width: 810px) {
  2939. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  2940. display: flex;
  2941. flex-direction: column;
  2942. padding: 2rem;
  2943. }
  2944. }
  2945. .page-node-type-offre-de-service {
  2946. background: url("../images/pictos/carre-contour-bleu-offre.svg");
  2947. background-repeat: no-repeat;
  2948. background-position-y: 7rem;
  2949. max-width: 100vw;
  2950. background-size: contain;
  2951. }
  2952. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  2953. margin-top: 2rem;
  2954. margin-left: 13%;
  2955. display: grid;
  2956. grid-template-columns: auto auto 1fr;
  2957. grid-template-rows: repeat(6 auto);
  2958. }
  2959. @media (max-width: 810px) {
  2960. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  2961. margin-left: 8%;
  2962. }
  2963. }
  2964. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  2965. width: fit-content;
  2966. grid-column: 1;
  2967. grid-row: 1/span 6;
  2968. width: 250px;
  2969. height: 250px;
  2970. margin-right: 2rem;
  2971. }
  2972. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo img {
  2973. width: 100%;
  2974. height: auto;
  2975. }
  2976. @media (max-width: 810px) {
  2977. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  2978. width: 90px;
  2979. height: 90px;
  2980. }
  2981. }
  2982. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste {
  2983. background: rgb(255, 255, 255);
  2984. width: fit-content;
  2985. grid-column: 2/span 3;
  2986. grid-row: 1;
  2987. text-transform: uppercase;
  2988. font-weight: 900;
  2989. font-size: 0.8rem;
  2990. }
  2991. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-5 {
  2992. color: rgb(255, 0, 15);
  2993. }
  2994. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-6 {
  2995. color: rgb(160, 26, 39);
  2996. }
  2997. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-7 {
  2998. color: rgb(199, 215, 74);
  2999. }
  3000. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-8 {
  3001. color: rgb(255, 100, 83);
  3002. }
  3003. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-9 {
  3004. color: rgb(111, 109, 125);
  3005. }
  3006. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-prenom {
  3007. background: rgb(255, 255, 255);
  3008. width: fit-content;
  3009. grid-column: 2;
  3010. grid-row: 2;
  3011. padding-right: 0.5rem;
  3012. text-transform: uppercase;
  3013. font-weight: 900;
  3014. font-size: 1.5rem;
  3015. }
  3016. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-nom {
  3017. background: rgb(255, 255, 255);
  3018. width: fit-content;
  3019. grid-column: 3;
  3020. grid-row: 2;
  3021. text-transform: uppercase;
  3022. font-weight: 900;
  3023. font-size: 1.5rem;
  3024. }
  3025. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure {
  3026. background: rgb(255, 255, 255);
  3027. width: fit-content;
  3028. grid-column: 2/span 3;
  3029. grid-row: 3;
  3030. text-transform: uppercase;
  3031. font-weight: 800;
  3032. font-size: 1.2rem;
  3033. margin-top: 0.5rem;
  3034. }
  3035. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure::after {
  3036. 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>');
  3037. }
  3038. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3039. background: rgb(255, 255, 255);
  3040. width: fit-content;
  3041. grid-column: 2/span 3;
  3042. grid-row: 4;
  3043. font-size: 2.5rem;
  3044. font-family: "Source Code Pro";
  3045. width: 70%;
  3046. }
  3047. @media (max-width: 810px) {
  3048. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3049. font-size: 1.2rem;
  3050. }
  3051. }
  3052. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle a {
  3053. color: rgb(0, 0, 0);
  3054. }
  3055. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-localisation {
  3056. background: rgb(255, 255, 255);
  3057. width: fit-content;
  3058. grid-column: 2/span 3;
  3059. grid-row: 5;
  3060. text-transform: uppercase;
  3061. font-weight: 800;
  3062. font-size: 0.8rem;
  3063. margin-top: 1.5rem;
  3064. }
  3065. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-proposition {
  3066. background: rgb(255, 255, 255);
  3067. width: fit-content;
  3068. grid-column: 2/span 3;
  3069. grid-row: 6;
  3070. font-size: 0.8rem;
  3071. padding-top: 1rem;
  3072. }
  3073. .page-node-type-offre-de-service .layout__region--second {
  3074. margin-top: 3rem;
  3075. margin-left: 20%;
  3076. margin-right: 2rem;
  3077. }
  3078. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary {
  3079. background: rgb(255, 255, 255);
  3080. }
  3081. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary p {
  3082. margin: 0;
  3083. }
  3084. @media (max-width: 810px) {
  3085. .page-node-type-offre-de-service .layout__region--second {
  3086. margin-left: 10%;
  3087. }
  3088. }
  3089. .page-node-type-offre-de-service .layout__region--third {
  3090. margin-top: 3rem;
  3091. }
  3092. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3093. display: flex;
  3094. flex-direction: column;
  3095. width: 70%;
  3096. }
  3097. @media (max-width: 810px) {
  3098. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3099. margin: auto;
  3100. }
  3101. }
  3102. .page-node-type-offre-de-service .layout__region--third .block-region-third .title-contact {
  3103. background: rgb(0, 158, 227);
  3104. color: rgb(255, 255, 255);
  3105. text-transform: uppercase;
  3106. font-weight: 900;
  3107. font-size: 0.8rem;
  3108. padding-top: 1rem;
  3109. padding-left: 1rem;
  3110. padding-right: 1rem;
  3111. }
  3112. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel {
  3113. background: rgb(0, 158, 227);
  3114. color: rgb(255, 255, 255);
  3115. font-weight: 600;
  3116. padding-left: 1rem;
  3117. padding-right: 1rem;
  3118. padding-bottom: 1rem;
  3119. }
  3120. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a {
  3121. color: white;
  3122. hyphens: auto;
  3123. }
  3124. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a svg {
  3125. display: none;
  3126. }
  3127. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-telephone {
  3128. display: none;
  3129. background: rgb(0, 158, 227);
  3130. color: rgb(255, 255, 255);
  3131. font-weight: 600;
  3132. padding-left: 1rem;
  3133. padding-right: 1rem;
  3134. padding-bottom: 1rem;
  3135. }
  3136. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3137. height: fit-content;
  3138. border: 2px solid rgb(0, 158, 227);
  3139. background-color: rgb(255, 255, 255);
  3140. margin-top: 1rem;
  3141. }
  3142. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers {
  3143. min-height: 4rem;
  3144. background: rgb(255, 255, 255);
  3145. color: rgb(0, 158, 227);
  3146. padding-left: 1rem;
  3147. padding-top: 1rem;
  3148. margin-bottom: 1rem;
  3149. }
  3150. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3151. display: none;
  3152. }
  3153. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3154. height: inherit;
  3155. margin: auto;
  3156. }
  3157. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3158. content: url("../images/pictos/noun_Download_file_307900.svg");
  3159. min-width: 50px;
  3160. height: auto;
  3161. padding-right: 1rem;
  3162. }
  3163. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3164. hyphens: auto;
  3165. display: inline-flex;
  3166. align-items: center;
  3167. color: rgb(0, 158, 227);
  3168. font-weight: 800;
  3169. }
  3170. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3171. margin-top: 1rem;
  3172. }
  3173. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3174. margin: auto;
  3175. height: fit-content;
  3176. border: 2px solid rgb(0, 158, 227);
  3177. min-height: 4rem;
  3178. background: rgb(255, 255, 255);
  3179. color: rgb(0, 158, 227);
  3180. padding-left: 1rem;
  3181. padding-top: 1rem;
  3182. margin-bottom: 1rem;
  3183. }
  3184. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3185. display: inline-flex;
  3186. align-items: center;
  3187. color: rgb(0, 158, 227);
  3188. font-weight: 800;
  3189. }
  3190. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3191. content: url("../images/pictos/external_link.png");
  3192. min-width: 50px;
  3193. height: auto;
  3194. padding-right: 1rem;
  3195. }
  3196. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3197. display: none;
  3198. }
  3199. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3200. margin-top: 3rem;
  3201. }
  3202. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3203. font-size: 0.8rem;
  3204. color: rgb(0, 0, 0);
  3205. font-weight: 900;
  3206. margin-bottom: 1rem;
  3207. }
  3208. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3209. display: flex;
  3210. flex-direction: column;
  3211. border: 2px solid rgb(0, 158, 227);
  3212. padding: 1rem;
  3213. height: fit-content;
  3214. margin-bottom: 1rem;
  3215. background-color: rgb(255, 255, 255);
  3216. }
  3217. .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 {
  3218. border-top: 1px solid rgb(0, 158, 227);
  3219. padding-top: 1rem;
  3220. }
  3221. .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 {
  3222. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3223. align-self: flex-end;
  3224. }
  3225. .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 {
  3226. margin: 0;
  3227. }
  3228. .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 {
  3229. color: rgb(0, 0, 0);
  3230. font-size: 1.4rem;
  3231. font-weight: 600;
  3232. }
  3233. .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- {
  3234. font-weight: 800;
  3235. }
  3236. .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 {
  3237. margin: 0;
  3238. }
  3239. .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 {
  3240. display: none;
  3241. }
  3242. .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 {
  3243. margin: 0;
  3244. }
  3245. .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 {
  3246. display: none;
  3247. }
  3248. .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 {
  3249. display: none;
  3250. width: 50%;
  3251. }
  3252. .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 {
  3253. width: 100%;
  3254. height: auto;
  3255. }
  3256. .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 {
  3257. display: inline-flex;
  3258. margin-top: 2rem;
  3259. background: rgb(9, 57, 139);
  3260. margin-right: 1rem;
  3261. padding-left: 0.3rem;
  3262. padding-right: 0.3rem;
  3263. color: rgb(255, 255, 255);
  3264. font-weight: 800;
  3265. vertical-align: middle;
  3266. }
  3267. .path-ressources.annuairederecherche .layout-content {
  3268. background: url("../images/pictos/carre-contour-bleu_annuairederecherche.svg");
  3269. background-repeat: no-repeat;
  3270. background-position-y: 7rem;
  3271. max-width: 100vw;
  3272. background-size: cover;
  3273. }
  3274. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3275. padding-top: 8rem;
  3276. }
  3277. @media (max-width: 479px) {
  3278. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3279. padding-top: 5rem;
  3280. padding-left: 5rem;
  3281. }
  3282. }
  3283. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span {
  3284. padding-top: 3rem;
  3285. padding-bottom: 3rem;
  3286. vertical-align: middle;
  3287. color: rgb(255, 255, 255);
  3288. }
  3289. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3290. display: inline;
  3291. font-family: "Source Code Pro";
  3292. font-size: 2rem;
  3293. font-weight: 800;
  3294. color: rgb(255, 255, 255);
  3295. background-color: rgb(0, 158, 227);
  3296. text-transform: uppercase;
  3297. width: fit-content;
  3298. margin-left: 10%;
  3299. margin-top: 8rem;
  3300. }
  3301. @media (max-width: 479px) {
  3302. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3303. margin-right: 37%;
  3304. margin-bottom: 2rem;
  3305. margin-left: 0;
  3306. }
  3307. }
  3308. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3309. padding-top: 3rem;
  3310. flex: 0 1 50%;
  3311. margin-left: 20%;
  3312. }
  3313. @media (max-width: 479px) {
  3314. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3315. flex: 0 1 80%;
  3316. margin: 0;
  3317. }
  3318. }
  3319. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-config-pages-block {
  3320. background-color: rgb(255, 255, 255);
  3321. margin-bottom: 4rem;
  3322. }
  3323. .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_ {
  3324. margin-bottom: 3rem;
  3325. }
  3326. .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 {
  3327. grid-column: 1;
  3328. grid-row: 1/span 3;
  3329. margin-right: 1rem;
  3330. max-height: 8rem;
  3331. }
  3332. .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 {
  3333. height: 8rem;
  3334. width: 8rem;
  3335. }
  3336. .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 {
  3337. height: 100%;
  3338. width: 100%;
  3339. object-fit: contain;
  3340. }
  3341. .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 {
  3342. grid-column: 2;
  3343. font-weight: 800;
  3344. background-color: rgb(255, 255, 255);
  3345. }
  3346. .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 {
  3347. background-color: rgb(255, 255, 255);
  3348. grid-column: 2;
  3349. }
  3350. .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 {
  3351. margin: 0;
  3352. }
  3353. .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 {
  3354. background-color: rgb(255, 255, 255);
  3355. grid-column: 2;
  3356. }
  3357. .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 {
  3358. color: rgb(0, 0, 0);
  3359. text-decoration: underline;
  3360. }
  3361. .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 {
  3362. display: none;
  3363. }
  3364. .path-webform .region-content [aria-label="Message d'avertissement"] {
  3365. display: none;
  3366. }
  3367. .path-webform .region-content .block-system-main-block h2 {
  3368. display: none;
  3369. }
  3370. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form {
  3371. display: flex;
  3372. flex-direction: row;
  3373. flex-wrap: wrap;
  3374. flex-basis: auto;
  3375. justify-content: flex-start;
  3376. }
  3377. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-titre {
  3378. width: 100%;
  3379. font-family: "Source Code Pro";
  3380. font-size: 1.5rem;
  3381. font-weight: 800;
  3382. color: rgb(255, 255, 255);
  3383. background-color: rgb(0, 158, 227);
  3384. text-transform: uppercase;
  3385. padding-left: 13%;
  3386. padding-top: 2rem;
  3387. padding-bottom: 2rem;
  3388. vertical-align: middle;
  3389. }
  3390. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-sous-titre {
  3391. width: 100%;
  3392. font-family: "Source Code Pro";
  3393. font-size: 2rem;
  3394. font-weight: 800;
  3395. color: rgb(255, 255, 255);
  3396. background-color: rgb(0, 158, 227);
  3397. text-transform: uppercase;
  3398. width: fit-content;
  3399. margin-left: 13%;
  3400. margin-top: 8rem;
  3401. }
  3402. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-processed-text {
  3403. margin-top: 10vh;
  3404. margin-left: 13%;
  3405. margin-right: 20%;
  3406. width: 60%;
  3407. }
  3408. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document {
  3409. margin-left: 13%;
  3410. margin-right: 20%;
  3411. width: 60%;
  3412. display: flex;
  3413. flex-direction: row;
  3414. flex-wrap: wrap;
  3415. margin-top: 2rem;
  3416. }
  3417. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document:after {
  3418. content: "*";
  3419. color: red;
  3420. font-size: 2rem;
  3421. padding-left: 0.5rem;
  3422. }
  3423. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document label {
  3424. width: 100%;
  3425. }
  3426. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input {
  3427. width: 90%;
  3428. height: 5rem;
  3429. }
  3430. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- {
  3431. margin-left: 13%;
  3432. margin-right: 20%;
  3433. width: 60%;
  3434. display: flex;
  3435. flex-direction: row;
  3436. flex-wrap: wrap;
  3437. margin-top: 2rem;
  3438. }
  3439. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s-:after {
  3440. content: "*";
  3441. color: red;
  3442. font-size: 2rem;
  3443. padding-left: 0.5rem;
  3444. }
  3445. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- label {
  3446. width: 100%;
  3447. }
  3448. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- input {
  3449. width: 90%;
  3450. }
  3451. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution {
  3452. margin-left: 13%;
  3453. width: 27%;
  3454. display: flex;
  3455. flex-direction: row;
  3456. flex-wrap: wrap;
  3457. margin-top: 2rem;
  3458. }
  3459. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution:after {
  3460. content: "*";
  3461. color: red;
  3462. font-size: 2rem;
  3463. padding-left: 0.5rem;
  3464. }
  3465. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution label {
  3466. width: 100%;
  3467. }
  3468. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution input {
  3469. width: 90%;
  3470. }
  3471. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages {
  3472. margin-right: 20%;
  3473. width: 27%;
  3474. display: flex;
  3475. flex-direction: row;
  3476. flex-wrap: wrap;
  3477. margin-top: 2rem;
  3478. margin-right: 3rem;
  3479. }
  3480. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages label {
  3481. width: 100%;
  3482. }
  3483. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages input {
  3484. width: 100%;
  3485. }
  3486. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur {
  3487. margin-left: 13%;
  3488. margin-right: 20%;
  3489. width: 60%;
  3490. display: flex;
  3491. flex-direction: row;
  3492. flex-wrap: wrap;
  3493. margin-top: 2rem;
  3494. }
  3495. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur:after {
  3496. content: "*";
  3497. color: red;
  3498. font-size: 2rem;
  3499. padding-left: 0.5rem;
  3500. }
  3501. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur label {
  3502. width: 100%;
  3503. }
  3504. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur input {
  3505. width: 90%;
  3506. }
  3507. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- {
  3508. margin-left: 13%;
  3509. margin-right: 20%;
  3510. width: 60%;
  3511. display: flex;
  3512. flex-direction: row;
  3513. flex-wrap: wrap;
  3514. margin-top: 2rem;
  3515. }
  3516. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc-:after {
  3517. content: "*";
  3518. color: red;
  3519. font-size: 2rem;
  3520. padding-left: 0.5rem;
  3521. }
  3522. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- label {
  3523. width: 100%;
  3524. }
  3525. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- input {
  3526. width: 90%;
  3527. }
  3528. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource {
  3529. margin-left: 13%;
  3530. margin-right: 20%;
  3531. width: 60%;
  3532. display: flex;
  3533. flex-direction: row;
  3534. flex-wrap: wrap;
  3535. margin-top: 2rem;
  3536. }
  3537. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource:after {
  3538. content: "*";
  3539. color: red;
  3540. font-size: 2rem;
  3541. padding-left: 1rem;
  3542. }
  3543. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource label {
  3544. width: 100%;
  3545. }
  3546. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div {
  3547. width: 90%;
  3548. }
  3549. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div textarea {
  3550. width: 100%;
  3551. }
  3552. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet {
  3553. margin-left: 13%;
  3554. margin-right: 20%;
  3555. width: 60%;
  3556. display: flex;
  3557. flex-direction: row;
  3558. flex-wrap: wrap;
  3559. margin-top: 2rem;
  3560. }
  3561. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet label {
  3562. width: 100%;
  3563. }
  3564. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet input {
  3565. width: 90%;
  3566. height: 3rem;
  3567. }
  3568. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- {
  3569. margin-left: 13%;
  3570. margin-right: 20%;
  3571. width: 60%;
  3572. display: flex;
  3573. flex-direction: row;
  3574. flex-wrap: wrap;
  3575. margin-top: 2rem;
  3576. }
  3577. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- label {
  3578. width: 100%;
  3579. }
  3580. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet {
  3581. margin-left: 13%;
  3582. margin-right: 20%;
  3583. width: 60%;
  3584. display: flex;
  3585. flex-direction: row;
  3586. flex-wrap: wrap;
  3587. margin-top: 2rem;
  3588. }
  3589. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet label {
  3590. width: 100%;
  3591. }
  3592. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet input {
  3593. width: 90%;
  3594. height: 3rem;
  3595. }
  3596. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel {
  3597. margin-left: 13%;
  3598. width: 28%;
  3599. display: flex;
  3600. flex-direction: row;
  3601. flex-wrap: wrap;
  3602. margin-top: 2rem;
  3603. }
  3604. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel:after {
  3605. content: "*";
  3606. color: red;
  3607. font-size: 2rem;
  3608. padding-left: 0.5rem;
  3609. }
  3610. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel label {
  3611. width: 100%;
  3612. }
  3613. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel input {
  3614. width: 90%;
  3615. }
  3616. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone {
  3617. margin-right: 20%;
  3618. width: 29%;
  3619. display: flex;
  3620. flex-direction: row;
  3621. flex-wrap: wrap;
  3622. margin-top: 2rem;
  3623. margin-right: 3rem;
  3624. }
  3625. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone:after {
  3626. content: "*";
  3627. color: red;
  3628. font-size: 2rem;
  3629. padding-left: 0.5rem;
  3630. }
  3631. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone label {
  3632. width: 100%;
  3633. }
  3634. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone input {
  3635. width: 90%;
  3636. }
  3637. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions {
  3638. width: 60%;
  3639. }
  3640. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions input {
  3641. width: 30%;
  3642. align-self: flex-end;
  3643. background-color: rgb(0, 158, 227);
  3644. text-transform: uppercase;
  3645. color: rgb(255, 255, 255);
  3646. font-size: 1.2rem;
  3647. font-weight: 600;
  3648. float: right;
  3649. margin-top: 1rem;
  3650. border: none;
  3651. }
  3652. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after {
  3653. 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>');
  3654. }
  3655. .path-webform .region-content #webform-submission-offre-de-service-add-form {
  3656. display: flex;
  3657. flex-direction: row;
  3658. flex-wrap: wrap;
  3659. flex-basis: auto;
  3660. justify-content: flex-start;
  3661. }
  3662. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-title {
  3663. width: 100%;
  3664. font-family: "Source Code Pro";
  3665. font-size: 1.5rem;
  3666. font-weight: 800;
  3667. color: rgb(255, 255, 255);
  3668. background-color: rgb(0, 158, 227);
  3669. text-transform: uppercase;
  3670. padding-left: 13%;
  3671. padding-top: 2rem;
  3672. padding-bottom: 2rem;
  3673. vertical-align: middle;
  3674. }
  3675. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-sous-titre {
  3676. width: 100%;
  3677. font-family: "Source Code Pro";
  3678. font-size: 2rem;
  3679. font-weight: 800;
  3680. color: rgb(255, 255, 255);
  3681. background-color: rgb(0, 158, 227);
  3682. text-transform: uppercase;
  3683. width: fit-content;
  3684. margin-left: 13%;
  3685. margin-top: 8rem;
  3686. }
  3687. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-processed-text {
  3688. margin-top: 10vh;
  3689. margin-left: 13%;
  3690. margin-right: 20%;
  3691. width: 60%;
  3692. }
  3693. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service {
  3694. margin-left: 13%;
  3695. margin-right: 20%;
  3696. width: 60%;
  3697. display: flex;
  3698. flex-direction: row;
  3699. flex-wrap: wrap;
  3700. margin-top: 2rem;
  3701. }
  3702. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service:after {
  3703. content: "*";
  3704. color: red;
  3705. font-size: 2rem;
  3706. padding-left: 0.5rem;
  3707. }
  3708. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service label {
  3709. width: 100%;
  3710. }
  3711. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service input {
  3712. width: 90%;
  3713. height: 5rem;
  3714. }
  3715. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure {
  3716. margin-left: 13%;
  3717. margin-right: 20%;
  3718. width: 60%;
  3719. display: flex;
  3720. flex-direction: row;
  3721. flex-wrap: wrap;
  3722. margin-top: 2rem;
  3723. }
  3724. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure:after {
  3725. content: "*";
  3726. color: red;
  3727. font-size: 2rem;
  3728. padding-left: 0.5rem;
  3729. }
  3730. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure label {
  3731. width: 100%;
  3732. }
  3733. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure input {
  3734. width: 90%;
  3735. }
  3736. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation {
  3737. margin-left: 13%;
  3738. margin-right: 20%;
  3739. width: 60%;
  3740. display: flex;
  3741. flex-direction: row;
  3742. flex-wrap: wrap;
  3743. margin-top: 2rem;
  3744. }
  3745. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation:after {
  3746. content: "*";
  3747. color: red;
  3748. font-size: 2rem;
  3749. padding-left: 0.5rem;
  3750. }
  3751. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation label {
  3752. width: 100%;
  3753. }
  3754. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation input {
  3755. width: 90%;
  3756. }
  3757. .path-webform .region-content #webform-submission-offre-de-service-add-form div {
  3758. width: 100%;
  3759. }
  3760. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description {
  3761. margin-left: 13%;
  3762. margin-right: 20%;
  3763. width: 60%;
  3764. display: flex;
  3765. flex-direction: row;
  3766. flex-wrap: wrap;
  3767. margin-top: 2rem;
  3768. }
  3769. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description label {
  3770. width: 100%;
  3771. }
  3772. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description textarea {
  3773. width: 90%;
  3774. }
  3775. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description {
  3776. margin-left: 13%;
  3777. margin-right: 20%;
  3778. width: 60%;
  3779. display: flex;
  3780. flex-direction: row;
  3781. flex-wrap: wrap;
  3782. margin-top: 2rem;
  3783. }
  3784. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description label {
  3785. width: 100%;
  3786. }
  3787. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description textarea {
  3788. width: 90%;
  3789. }
  3790. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-image {
  3791. margin-left: 13%;
  3792. margin-right: 20%;
  3793. width: 60%;
  3794. display: flex;
  3795. flex-direction: row;
  3796. flex-wrap: wrap;
  3797. margin-top: 2rem;
  3798. }
  3799. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-des-documents-complementaires-en-pdf {
  3800. margin-left: 13%;
  3801. margin-right: 20%;
  3802. width: 60%;
  3803. display: flex;
  3804. flex-direction: row;
  3805. flex-wrap: wrap;
  3806. margin-top: 2rem;
  3807. }
  3808. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper {
  3809. width: 100%;
  3810. }
  3811. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url {
  3812. margin-left: 13%;
  3813. margin-right: 20%;
  3814. width: 60%;
  3815. display: flex;
  3816. flex-direction: row;
  3817. flex-wrap: wrap;
  3818. margin-top: 2rem;
  3819. }
  3820. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url:after {
  3821. content: "*";
  3822. color: red;
  3823. font-size: 2rem;
  3824. padding-left: 0.5rem;
  3825. }
  3826. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url label {
  3827. width: 100%;
  3828. }
  3829. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url input {
  3830. width: 90%;
  3831. }
  3832. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel {
  3833. margin-left: 13%;
  3834. display: flex;
  3835. flex-direction: row;
  3836. flex-wrap: wrap;
  3837. margin-top: 2rem;
  3838. width: 28%;
  3839. }
  3840. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel:after {
  3841. content: "*";
  3842. color: red;
  3843. font-size: 2rem;
  3844. padding-left: 0.5rem;
  3845. }
  3846. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel label {
  3847. width: 100%;
  3848. }
  3849. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel input {
  3850. width: 90%;
  3851. }
  3852. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone {
  3853. margin-right: 20%;
  3854. width: 29%;
  3855. display: flex;
  3856. flex-direction: row;
  3857. flex-wrap: wrap;
  3858. margin-top: 2rem;
  3859. margin-right: 3rem;
  3860. }
  3861. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone:after {
  3862. content: "*";
  3863. color: red;
  3864. font-size: 2rem;
  3865. padding-left: 0.5rem;
  3866. }
  3867. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone label {
  3868. width: 100%;
  3869. }
  3870. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone input {
  3871. width: 90%;
  3872. }
  3873. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-j-accepte-que-mon-courriel-soit-diffuse-sur-la-page-de-mon-offre {
  3874. margin-top: 3rem;
  3875. margin-bottom: 3rem;
  3876. margin-left: 13%;
  3877. margin-right: 20%;
  3878. width: 60%;
  3879. }
  3880. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions {
  3881. width: 60%;
  3882. }
  3883. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions input {
  3884. width: 30%;
  3885. align-self: flex-end;
  3886. background-color: rgb(0, 158, 227);
  3887. text-transform: uppercase;
  3888. color: rgb(255, 255, 255);
  3889. font-size: 1.2rem;
  3890. font-weight: 600;
  3891. float: right;
  3892. margin-top: 1rem;
  3893. border: none;
  3894. }
  3895. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions #edit-actions-submit:after {
  3896. 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>');
  3897. }
  3898. .path-webform .region-content #webform-submission-question-add-form {
  3899. display: flex;
  3900. flex-direction: row;
  3901. flex-wrap: wrap;
  3902. flex-basis: auto;
  3903. justify-content: flex-start;
  3904. margin-top: 10vh;
  3905. width: 60%;
  3906. margin-left: 13%;
  3907. margin-right: 20%;
  3908. }
  3909. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel {
  3910. display: flex;
  3911. flex-direction: row;
  3912. flex-wrap: wrap;
  3913. margin-top: 2rem;
  3914. width: 100%;
  3915. }
  3916. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel:after {
  3917. content: "*";
  3918. color: red;
  3919. font-size: 2rem;
  3920. padding-left: 0.5rem;
  3921. }
  3922. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel label {
  3923. width: 100%;
  3924. }
  3925. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel input {
  3926. width: 90%;
  3927. }
  3928. .path-webform .region-content #webform-submission-question-add-form .form-item-question {
  3929. display: flex;
  3930. flex-direction: row;
  3931. flex-wrap: wrap;
  3932. margin-top: 2rem;
  3933. width: 100%;
  3934. }
  3935. .path-webform .region-content #webform-submission-question-add-form .form-item-question:after {
  3936. content: "*";
  3937. color: red;
  3938. font-size: 2rem;
  3939. padding-left: 0.9rem;
  3940. }
  3941. .path-webform .region-content #webform-submission-question-add-form .form-item-question label {
  3942. width: 100%;
  3943. }
  3944. .path-webform .region-content #webform-submission-question-add-form .form-item-question div {
  3945. width: 90%;
  3946. }
  3947. .path-webform .region-content #webform-submission-question-add-form .form-item-question div textarea {
  3948. width: 100%;
  3949. height: 5rem;
  3950. }
  3951. .path-webform .region-content #webform-submission-question-add-form #edit-actions {
  3952. width: 90%;
  3953. }
  3954. .path-webform .region-content #webform-submission-question-add-form #edit-actions input {
  3955. width: 30%;
  3956. align-self: flex-end;
  3957. background-color: rgb(0, 158, 227);
  3958. text-transform: uppercase;
  3959. color: rgb(255, 255, 255);
  3960. font-size: 1.2rem;
  3961. font-weight: 600;
  3962. float: right;
  3963. margin-top: 1rem;
  3964. border: none;
  3965. }
  3966. .path-webform .region-content #webform-submission-question-add-form #edit-actions #edit-actions-submit:after {
  3967. 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>');
  3968. }
  3969. .path-projets .region-content #block-contenudelapageprincipale span {
  3970. padding-top: 3rem;
  3971. padding-bottom: 3rem;
  3972. vertical-align: middle;
  3973. }
  3974. .path-projets .region-content #block-contenudelapageprincipale span h2 {
  3975. margin: 0;
  3976. padding-top: 2rem;
  3977. height: 4rem;
  3978. color: rgb(255, 255, 255);
  3979. font-family: "Source Code Pro";
  3980. text-transform: uppercase;
  3981. background: rgb(0, 158, 227);
  3982. padding-left: 13%;
  3983. }
  3984. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3985. display: grid;
  3986. grid-template-columns: 1fr repeat(7, 1fr) 1fr;
  3987. }
  3988. @media (max-width: 810px) {
  3989. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3990. display: flex;
  3991. flex-direction: column;
  3992. }
  3993. }
  3994. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 {
  3995. grid-column: 1/span 10;
  3996. }
  3997. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content {
  3998. overflow: scroll;
  3999. height: 210px;
  4000. margin: 17px 10px 17px 20px !important;
  4001. padding-right: 10px;
  4002. }
  4003. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a {
  4004. display: none;
  4005. }
  4006. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:nth-child(1) {
  4007. display: block !important;
  4008. }
  4009. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:last-of-type {
  4010. display: block !important;
  4011. }
  4012. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content #text {
  4013. display: none;
  4014. }
  4015. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4016. grid-column: 3/span 5;
  4017. margin: auto;
  4018. }
  4019. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block span h2 {
  4020. display: none;
  4021. }
  4022. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .config_pages--type--les-projets .field--name-field-introduction p:nth-of-type(1) {
  4023. font-size: 1.5rem;
  4024. }
  4025. @media (max-width: 810px) {
  4026. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4027. padding: 2rem;
  4028. }
  4029. }
  4030. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4031. grid-column: 8/span 9;
  4032. margin-top: 4rem;
  4033. background-color: rgb(0, 158, 227);
  4034. height: fit-content;
  4035. width: 60%;
  4036. margin-left: 2rem;
  4037. grid-row: 2;
  4038. }
  4039. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .display {
  4040. display: block;
  4041. }
  4042. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien {
  4043. display: flex;
  4044. flex-direction: column;
  4045. margin-top: 2rem;
  4046. margin-bottom: 2rem;
  4047. margin-left: 1.5rem;
  4048. margin-right: 1.5rem;
  4049. text-align: center;
  4050. }
  4051. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien a {
  4052. font-weight: 800;
  4053. color: rgb(255, 255, 255);
  4054. font-size: 1.3rem;
  4055. }
  4056. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien:after {
  4057. margin-left: auto;
  4058. padding-top: 1rem;
  4059. display: block;
  4060. content: url("../images/pictos/noun_Arrow_3771902.svg");
  4061. }
  4062. @media (max-width: 810px) {
  4063. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4064. margin: auto;
  4065. }
  4066. }
  4067. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4068. grid-column: 2/span 7;
  4069. }
  4070. @media (max-width: 810px) {
  4071. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4072. padding: 2rem;
  4073. }
  4074. }
  4075. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets {
  4076. margin: auto;
  4077. }
  4078. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .buttons-filtres-ressources {
  4079. display: none;
  4080. }
  4081. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets #filtres {
  4082. scroll-margin-top: 10rem;
  4083. }
  4084. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4085. margin-top: 4rem;
  4086. padding-left: 0.5rem;
  4087. display: flex;
  4088. flex-direction: column;
  4089. }
  4090. @media (max-width: 479px) {
  4091. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4092. flex-direction: column;
  4093. padding-bottom: 3rem;
  4094. }
  4095. }
  4096. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4097. content: "Filtrer par :";
  4098. margin-right: 2rem;
  4099. margin-bottom: 1rem;
  4100. margin-left: 0.5rem;
  4101. font-weight: 900;
  4102. min-width: fit-content;
  4103. }
  4104. @media (max-width: 479px) {
  4105. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4106. padding-bottom: 1rem;
  4107. }
  4108. }
  4109. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper {
  4110. margin-top: 2rem;
  4111. display: flex;
  4112. flex-direction: row;
  4113. flex-wrap: wrap;
  4114. }
  4115. @media (max-width: 810px) {
  4116. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper {
  4117. flex-direction: column;
  4118. }
  4119. }
  4120. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  4121. width: 25%;
  4122. }
  4123. @media (max-width: 810px) {
  4124. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  4125. width: 100%;
  4126. }
  4127. }
  4128. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4129. color: rgb(9, 57, 139);
  4130. line-height: 1.5rem;
  4131. padding: 0.5rem;
  4132. padding-right: 1rem;
  4133. padding-left: 1rem;
  4134. }
  4135. @media (max-width: 479px) {
  4136. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4137. padding-left: 0rem;
  4138. padding-right: 0rem;
  4139. padding-top: 2rem;
  4140. }
  4141. }
  4142. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child {
  4143. display: flex;
  4144. flex-direction: column;
  4145. }
  4146. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child a {
  4147. color: rgb(9, 57, 139);
  4148. }
  4149. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo {
  4150. order: 1;
  4151. }
  4152. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo .field__item {
  4153. display: none;
  4154. }
  4155. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo .field__item:first-child {
  4156. display: block;
  4157. }
  4158. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo img {
  4159. width: 100%;
  4160. max-height: 175px;
  4161. object-fit: cover;
  4162. }
  4163. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo::after {
  4164. display: block;
  4165. content: url('data:image/svg+xml,<svg width="160" height="25" 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="2.5"/></svg>');
  4166. }
  4167. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse {
  4168. order: 2;
  4169. display: flex;
  4170. text-transform: uppercase;
  4171. font-size: 0.9rem;
  4172. font-weight: 800;
  4173. margin-top: 0.8rem;
  4174. line-height: 1rem;
  4175. }
  4176. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address {
  4177. display: flex;
  4178. flex-direction: row;
  4179. margin: 0;
  4180. }
  4181. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .postal-code {
  4182. display: none;
  4183. }
  4184. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .locality {
  4185. padding-top: 0 !important;
  4186. padding-bottom: 0 !important;
  4187. }
  4188. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .locality::after {
  4189. content: ",";
  4190. margin-right: 0.3rem;
  4191. }
  4192. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .country {
  4193. padding-top: 0 !important;
  4194. padding-bottom: 0 !important;
  4195. }
  4196. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-sous-titre {
  4197. margin-top: 0.5rem;
  4198. font-size: 0.9rem;
  4199. font-weight: 800;
  4200. order: 4;
  4201. }
  4202. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-title {
  4203. order: 3;
  4204. margin-top: 0.5rem;
  4205. font-size: 0.8rem;
  4206. font-weight: 800;
  4207. }
  4208. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-title h2 {
  4209. margin: 0;
  4210. }
  4211. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-incube {
  4212. order: 4;
  4213. color: red;
  4214. margin-top: 0.8rem;
  4215. font-size: 0.7rem;
  4216. }
  4217. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-region {
  4218. display: none;
  4219. }
  4220. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-type-de-moa {
  4221. display: none;
  4222. }
  4223. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-type-de-projet {
  4224. display: none;
  4225. }
  4226. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-etape-du-projet {
  4227. display: none;
  4228. }
  4229. .path-node.page-node-type-projet .layout-container {
  4230. overflow: unset;
  4231. }
  4232. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top {
  4233. padding-top: 4rem;
  4234. margin-left: 10%;
  4235. margin-right: 10%;
  4236. width: 80vw;
  4237. }
  4238. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4239. display: flex;
  4240. flex-direction: row;
  4241. margin-bottom: 2rem;
  4242. }
  4243. @media (max-width: 568px) {
  4244. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4245. flex-direction: column;
  4246. }
  4247. }
  4248. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo {
  4249. width: 60%;
  4250. padding-right: 2rem;
  4251. }
  4252. @media (max-width: 568px) {
  4253. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo {
  4254. width: 100%;
  4255. }
  4256. }
  4257. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo img {
  4258. height: auto;
  4259. max-height: 600px;
  4260. object-fit: contain;
  4261. width: inherit;
  4262. }
  4263. @media (max-width: 810px) {
  4264. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo img {
  4265. padding-top: 1rem;
  4266. object-fit: cover;
  4267. width: 100%;
  4268. }
  4269. }
  4270. @media (max-width: 568px) {
  4271. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo img {
  4272. width: 100%;
  4273. max-height: 300px;
  4274. }
  4275. }
  4276. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-dots > li {
  4277. display: inline-block;
  4278. }
  4279. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-dots > li:only-child {
  4280. display: none;
  4281. }
  4282. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-prev::before, .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-next::before {
  4283. opacity: 1 !important;
  4284. top: 0 !important;
  4285. }
  4286. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-prev, .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-next {
  4287. top: 98% !important;
  4288. }
  4289. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  4290. width: 40%;
  4291. }
  4292. @media (max-width: 568px) {
  4293. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  4294. width: 100%;
  4295. }
  4296. }
  4297. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle {
  4298. margin: 0;
  4299. }
  4300. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4301. font-family: "Marianne";
  4302. font-size: 2.3rem;
  4303. font-weight: 800;
  4304. color: rgb(0, 158, 227);
  4305. }
  4306. @media (max-width: 1624px) {
  4307. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4308. font-size: 2.3rem;
  4309. }
  4310. }
  4311. @media (max-width: 1384px) {
  4312. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4313. font-size: 2rem;
  4314. }
  4315. }
  4316. @media (max-width: 1216px) {
  4317. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4318. font-size: rem;
  4319. }
  4320. }
  4321. @media (max-width: 810px) {
  4322. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4323. font-size: 1.7rem;
  4324. }
  4325. }
  4326. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  4327. margin-top: 2rem;
  4328. }
  4329. @media (max-width: 1624px) {
  4330. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  4331. margin-top: 1rem;
  4332. padding-top: 0.5rem;
  4333. }
  4334. }
  4335. @media (max-width: 1384px) {
  4336. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  4337. margin-top: 0.8rem;
  4338. padding-top: 0.5rem;
  4339. }
  4340. }
  4341. @media (max-width: 810px) {
  4342. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  4343. padding-top: 0.5rem;
  4344. }
  4345. }
  4346. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  4347. color: rgb(9, 57, 139);
  4348. font-size: 1.5rem;
  4349. font-weight: 900;
  4350. text-transform: uppercase;
  4351. }
  4352. @media (max-width: 1624px) {
  4353. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  4354. font-size: 1.3rem;
  4355. }
  4356. }
  4357. @media (max-width: 1216px) {
  4358. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  4359. font-size: 1.1rem;
  4360. }
  4361. }
  4362. @media (max-width: 810px) {
  4363. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  4364. font-size: 1rem;
  4365. }
  4366. }
  4367. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-incube {
  4368. margin-top: 2rem;
  4369. width: fit-content;
  4370. }
  4371. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-incube .field--name-field-incube {
  4372. background-color: rgb(225, 0, 15);
  4373. color: white;
  4374. font-weight: 800;
  4375. padding-right: 0.3rem;
  4376. padding-left: 0.2rem;
  4377. }
  4378. @media (max-width: 1624px) {
  4379. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-incube {
  4380. margin-top: 1rem;
  4381. }
  4382. }
  4383. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  4384. display: flex;
  4385. flex-direction: row;
  4386. border: 0.1rem solid;
  4387. justify-content: space-evenly;
  4388. width: 90%;
  4389. margin-top: 3rem;
  4390. font-weight: 600;
  4391. }
  4392. @media (max-width: 479px) {
  4393. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  4394. flex-direction: column;
  4395. width: 100%;
  4396. }
  4397. }
  4398. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left {
  4399. padding-right: 1rem;
  4400. order: 1;
  4401. width: 30%;
  4402. position: relative;
  4403. height: 80px;
  4404. text-align: center;
  4405. }
  4406. @media (max-width: 479px) {
  4407. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left {
  4408. width: 100%;
  4409. }
  4410. }
  4411. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left::before {
  4412. content: url("../images/pictos/picto_lieu.svg");
  4413. min-width: 30px;
  4414. height: auto;
  4415. padding-right: 1rem;
  4416. position: absolute;
  4417. left: 0;
  4418. margin-top: 0.83em;
  4419. margin-left: 1rem;
  4420. }
  4421. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-region {
  4422. order: 1;
  4423. margin-left: 70px;
  4424. margin-bottom: 1rem;
  4425. height: fit-content;
  4426. }
  4427. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse {
  4428. display: inline-flex;
  4429. order: 2;
  4430. margin-left: 70px;
  4431. height: fit-content;
  4432. }
  4433. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse .field--name-field-adresse {
  4434. display: flex;
  4435. flex-direction: row;
  4436. margin-top: 0.83em;
  4437. }
  4438. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse .field--name-field-adresse .address {
  4439. margin: auto;
  4440. display: flex;
  4441. flex-direction: column;
  4442. justify-content: start;
  4443. margin: 0;
  4444. }
  4445. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse .field--name-field-adresse .address .country {
  4446. display: none;
  4447. }
  4448. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet {
  4449. order: 4;
  4450. padding-left: 1rem;
  4451. padding-right: 1rem;
  4452. padding-bottom: 1rem;
  4453. border-left: 0.1rem solid;
  4454. width: 30%;
  4455. }
  4456. @media (max-width: 479px) {
  4457. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet {
  4458. width: 100%;
  4459. border-top: 0.1rem solid;
  4460. border-left: 0;
  4461. padding-right: 0rem;
  4462. padding-left: 0rem;
  4463. }
  4464. }
  4465. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet h2 {
  4466. color: rgb(9, 57, 139);
  4467. font-size: 1.2rem;
  4468. font-weight: 900;
  4469. text-transform: uppercase;
  4470. margin-bottom: 0rem !important;
  4471. }
  4472. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet h2:after {
  4473. content: " :";
  4474. }
  4475. @media (max-width: 479px) {
  4476. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet h2 {
  4477. padding-right: 1rem;
  4478. padding-left: 1rem;
  4479. }
  4480. }
  4481. @media (max-width: 479px) {
  4482. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet .field__item {
  4483. padding-right: 1rem;
  4484. padding-left: 1rem;
  4485. }
  4486. }
  4487. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet .field__label {
  4488. display: none;
  4489. }
  4490. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa {
  4491. order: 2;
  4492. padding-left: 1rem;
  4493. border-left: 0.1rem solid;
  4494. padding-bottom: 1rem;
  4495. width: 20%;
  4496. }
  4497. @media (max-width: 479px) {
  4498. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa {
  4499. border-left: 0;
  4500. border-top: 0.1rem solid;
  4501. width: 100%;
  4502. padding-right: 0rem;
  4503. padding-left: 0rem;
  4504. }
  4505. }
  4506. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa h2 {
  4507. color: rgb(9, 57, 139);
  4508. font-size: 1.2rem;
  4509. font-weight: 900;
  4510. text-transform: uppercase;
  4511. margin-bottom: 0rem !important;
  4512. }
  4513. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa h2:after {
  4514. content: " :";
  4515. }
  4516. @media (max-width: 479px) {
  4517. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa h2 {
  4518. padding-right: 1rem;
  4519. padding-left: 1rem;
  4520. }
  4521. }
  4522. @media (max-width: 479px) {
  4523. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa .field__item {
  4524. padding-right: 1rem;
  4525. padding-left: 1rem;
  4526. }
  4527. }
  4528. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa .field__label {
  4529. display: none;
  4530. }
  4531. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet {
  4532. order: 3;
  4533. padding-left: 1rem;
  4534. padding-bottom: 1rem;
  4535. border-left: 0.1rem solid;
  4536. width: 20%;
  4537. }
  4538. @media (max-width: 479px) {
  4539. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet {
  4540. border-left: 0;
  4541. border-top: 0.1rem solid;
  4542. width: 100%;
  4543. padding-right: 0rem;
  4544. padding-left: 0rem;
  4545. }
  4546. }
  4547. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet h2 {
  4548. color: rgb(9, 57, 139);
  4549. font-size: 1.2rem;
  4550. font-weight: 900;
  4551. text-transform: uppercase;
  4552. margin-bottom: 0rem !important;
  4553. }
  4554. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet h2:after {
  4555. content: " :";
  4556. }
  4557. @media (max-width: 479px) {
  4558. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet h2 {
  4559. padding-right: 1rem;
  4560. padding-left: 1rem;
  4561. }
  4562. }
  4563. @media (max-width: 479px) {
  4564. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet .field__item {
  4565. padding-right: 1rem;
  4566. padding-left: 1rem;
  4567. }
  4568. }
  4569. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet .field__label {
  4570. display: none;
  4571. }
  4572. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  4573. margin-top: 5rem;
  4574. }
  4575. @media (max-width: 479px) {
  4576. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  4577. display: none;
  4578. }
  4579. }
  4580. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  4581. display: flex;
  4582. justify-content: flex-end;
  4583. position: -webkit-sticky;
  4584. position: sticky;
  4585. top: 10rem;
  4586. }
  4587. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  4588. display: flex;
  4589. justify-content: flex-end;
  4590. width: 50%;
  4591. background-color: rgb(255, 255, 255);
  4592. padding-right: 2rem;
  4593. }
  4594. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  4595. display: flex;
  4596. font-size: 1rem;
  4597. font-weight: 1000;
  4598. color: rgb(9, 57, 139);
  4599. border-bottom: 1px solid rgb(0, 158, 227);
  4600. padding-bottom: 0.5rem;
  4601. padding-right: 1rem;
  4602. margin-bottom: 0.8rem;
  4603. }
  4604. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  4605. text-decoration: underline;
  4606. }
  4607. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  4608. margin-top: 5rem;
  4609. flex: 0 1 50%;
  4610. }
  4611. @media (max-width: 479px) {
  4612. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  4613. flex: 0 1 100%;
  4614. margin-top: 1rem;
  4615. }
  4616. }
  4617. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  4618. width: 90%;
  4619. }
  4620. @media (max-width: 479px) {
  4621. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  4622. width: 80%;
  4623. margin: auto;
  4624. }
  4625. }
  4626. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody p {
  4627. margin-top: 0;
  4628. }
  4629. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .field--type-text-with-summary {
  4630. background-color: white;
  4631. }
  4632. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes {
  4633. background-color: rgb(255, 255, 255);
  4634. }
  4635. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph {
  4636. margin-top: 3rem;
  4637. }
  4638. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--name-field-titre {
  4639. font-size: 1.5rem;
  4640. font-weight: 1000;
  4641. font-family: "Source Code Pro";
  4642. color: rgb(9, 57, 139);
  4643. text-transform: uppercase;
  4644. margin-bottom: 0.8rem;
  4645. }
  4646. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 {
  4647. text-transform: none !important;
  4648. }
  4649. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 img {
  4650. width: 100%;
  4651. height: auto;
  4652. }
  4653. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--type-text-long {
  4654. padding-right: 2rem;
  4655. }
  4656. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes p {
  4657. margin-top: 0;
  4658. }
  4659. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a {
  4660. color: rgb(0, 0, 0);
  4661. text-decoration: underline;
  4662. }
  4663. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a svg {
  4664. display: none;
  4665. }
  4666. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .panel-body #outputtext {
  4667. overflow-y: visible !important;
  4668. }
  4669. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__label {
  4670. font-size: 1.5rem;
  4671. font-weight: 1000;
  4672. font-family: "Source Code Pro";
  4673. color: rgb(9, 57, 139);
  4674. text-transform: uppercase;
  4675. margin-top: 2rem;
  4676. margin-bottom: 0.8rem;
  4677. }
  4678. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  4679. display: flex;
  4680. flex-direction: row;
  4681. justify-content: space-between;
  4682. }
  4683. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items .paragraph--type--partenaire {
  4684. display: flex;
  4685. flex-direction: column;
  4686. align-items: center;
  4687. }
  4688. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items .paragraph--type--partenaire .field--name-field-lien {
  4689. padding-top: 1rem;
  4690. }
  4691. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  4692. margin-top: 5rem;
  4693. }
  4694. @media (max-width: 479px) {
  4695. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  4696. margin-top: 2rem;
  4697. }
  4698. }
  4699. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  4700. display: flex;
  4701. flex-direction: column;
  4702. width: 65%;
  4703. }
  4704. @media (max-width: 479px) {
  4705. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  4706. width: 80%;
  4707. margin: auto;
  4708. }
  4709. }
  4710. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers h2 {
  4711. display: none;
  4712. }
  4713. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .field__item {
  4714. height: fit-content;
  4715. border: 2px solid rgb(0, 158, 227);
  4716. background-color: rgb(255, 255, 255);
  4717. margin-bottom: 1rem;
  4718. min-height: 4rem;
  4719. color: rgb(0, 158, 227);
  4720. padding-left: 1rem;
  4721. padding-top: 1rem;
  4722. }
  4723. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers span:nth-of-type(2) {
  4724. display: none;
  4725. }
  4726. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--image {
  4727. height: inherit;
  4728. margin: auto;
  4729. }
  4730. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--image ::before {
  4731. content: url("../images/pictos/download.png");
  4732. min-width: 30px;
  4733. height: auto;
  4734. padding-right: 2rem;
  4735. }
  4736. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--image a {
  4737. hyphens: auto;
  4738. display: inline-flex;
  4739. color: rgb(0, 158, 227);
  4740. font-weight: 800;
  4741. }
  4742. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf {
  4743. height: inherit;
  4744. margin: auto;
  4745. }
  4746. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf ::before {
  4747. content: url("../images/pictos/download.png");
  4748. min-width: 30px;
  4749. height: auto;
  4750. padding-right: 2rem;
  4751. }
  4752. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf a {
  4753. hyphens: auto;
  4754. display: inline-flex;
  4755. color: rgb(0, 158, 227);
  4756. font-weight: 800;
  4757. }
  4758. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens h2 {
  4759. display: none;
  4760. }
  4761. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  4762. margin: auto;
  4763. height: fit-content;
  4764. border: 2px solid rgb(0, 158, 227);
  4765. min-height: 4rem;
  4766. background: rgb(255, 255, 255);
  4767. color: rgb(0, 158, 227);
  4768. padding-left: 1rem;
  4769. padding-top: 1rem;
  4770. margin-bottom: 1rem;
  4771. }
  4772. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  4773. display: inline-flex;
  4774. align-items: center;
  4775. color: rgb(0, 158, 227);
  4776. font-weight: 800;
  4777. }
  4778. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  4779. content: url("../images/pictos/external_link.png");
  4780. min-width: 30px;
  4781. height: auto;
  4782. padding-right: 2rem;
  4783. }
  4784. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  4785. display: none;
  4786. }
  4787. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- {
  4788. margin-top: 3rem;
  4789. }
  4790. @media (max-width: 479px) {
  4791. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- {
  4792. margin-top: 2rem;
  4793. }
  4794. }
  4795. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- h2 {
  4796. font-size: 0.8rem;
  4797. color: rgb(0, 0, 0);
  4798. font-weight: 900;
  4799. }
  4800. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource {
  4801. display: flex;
  4802. flex-direction: column;
  4803. border: 2px solid rgb(0, 158, 227);
  4804. padding: 1rem;
  4805. height: fit-content;
  4806. margin-bottom: 1rem;
  4807. background-color: rgb(255, 255, 255);
  4808. }
  4809. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div {
  4810. display: flex;
  4811. flex-direction: column;
  4812. }
  4813. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-title {
  4814. order: 3;
  4815. }
  4816. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-title h2 {
  4817. margin: 0;
  4818. }
  4819. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-title h2 a {
  4820. color: rgb(0, 0, 0);
  4821. font-size: 1rem;
  4822. font-weight: 900;
  4823. font-style: italic;
  4824. }
  4825. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-sous-titre {
  4826. display: none;
  4827. }
  4828. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-type-de-ressource {
  4829. order: 2;
  4830. text-transform: uppercase;
  4831. color: rgb(0, 158, 227);
  4832. font-weight: 900;
  4833. font-size: 0.8rem;
  4834. }
  4835. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-auteur-s- {
  4836. order: 5;
  4837. font-weight: 800;
  4838. }
  4839. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-auteur-s- p {
  4840. margin: 0;
  4841. }
  4842. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-auteur-s- .field__label {
  4843. display: none;
  4844. }
  4845. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-edition p {
  4846. margin: 0;
  4847. }
  4848. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-edition .field__label {
  4849. display: none;
  4850. }
  4851. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-images {
  4852. order: 1;
  4853. width: 25%;
  4854. }
  4855. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-images img {
  4856. width: 100%;
  4857. height: auto;
  4858. }
  4859. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-date-de-parution {
  4860. order: 6;
  4861. }
  4862. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-date-de-parution .field__label {
  4863. display: none;
  4864. }
  4865. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs {
  4866. order: 7;
  4867. display: flex;
  4868. margin-top: 0.8rem;
  4869. flex-direction: row;
  4870. flex-wrap: wrap;
  4871. }
  4872. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs .field__label {
  4873. display: none;
  4874. }
  4875. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs .field__items {
  4876. display: flex;
  4877. flex-direction: row;
  4878. flex-wrap: wrap;
  4879. }
  4880. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs .field__item {
  4881. margin-right: 0.5rem;
  4882. padding-right: 0.3rem;
  4883. font-size: 0.8rem;
  4884. margin-top: 0.2rem;
  4885. }
  4886. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  4887. background: rgb(9, 57, 139);
  4888. color: rgb(255, 255, 255);
  4889. font-weight: 800;
  4890. vertical-align: super;
  4891. padding-left: 0.1rem;
  4892. padding-right: 0.1rem;
  4893. display: inline-flex;
  4894. }
  4895. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div ul.links.inline {
  4896. display: none;
  4897. }
  4898. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource.type-les-projets-en-images .field--name-field-images {
  4899. order: 1;
  4900. width: 100%;
  4901. }
  4902. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource.type-les-projets-en-images .field--name-field-images .field__item:not(:first-of-type) {
  4903. display: none;
  4904. }
  4905. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource.type-les-projets-en-images .field--name-field-images img {
  4906. width: 100%;
  4907. height: auto;
  4908. }
  4909. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires {
  4910. width: 50%;
  4911. margin: auto;
  4912. display: flex;
  4913. flex-direction: row;
  4914. flex-wrap: wrap;
  4915. }
  4916. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires h2 {
  4917. display: none;
  4918. }
  4919. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires .field--name-field-partenaires {
  4920. display: flex;
  4921. flex-direction: row;
  4922. flex-wrap: wrap;
  4923. justify-content: space-between;
  4924. }
  4925. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires .field--name-field-partenaires .field--name-field-titre {
  4926. display: none;
  4927. }
  4928. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires .field--name-field-partenaires .paragraph--type--partenaire {
  4929. display: flex;
  4930. flex-direction: column;
  4931. }
  4932. .path-incubateur {
  4933. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  4934. background-repeat: no-repeat;
  4935. background-position-y: 7rem;
  4936. max-width: 100vw;
  4937. background-size: contain;
  4938. }
  4939. .path-incubateur .layout-container {
  4940. overflow: unset;
  4941. }
  4942. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span {
  4943. width: fit-content;
  4944. }
  4945. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span h2 {
  4946. width: fit-content;
  4947. margin-left: 11%;
  4948. margin-top: 15vh;
  4949. color: rgb(255, 255, 255);
  4950. font-family: "Source Code Pro";
  4951. text-transform: uppercase;
  4952. font-size: 2rem;
  4953. font-weight: 800;
  4954. background: rgb(0, 158, 227);
  4955. margin-bottom: 15vh;
  4956. }
  4957. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  4958. position: relative;
  4959. }
  4960. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block {
  4961. display: flex;
  4962. justify-content: flex-end;
  4963. position: -webkit-sticky;
  4964. position: sticky;
  4965. top: 10rem;
  4966. }
  4967. @media (max-width: 810px) {
  4968. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block {
  4969. display: none;
  4970. }
  4971. }
  4972. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block .config_pages--type--incubateur-du-programme {
  4973. display: flex;
  4974. flex-direction: row-reverse;
  4975. width: 50%;
  4976. background-color: rgb(255, 255, 255);
  4977. padding-right: 2rem;
  4978. }
  4979. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-titre {
  4980. display: flex;
  4981. flex-direction: column;
  4982. font-size: 1rem;
  4983. font-weight: 1000;
  4984. color: rgb(9, 57, 139);
  4985. border-bottom: 1px solid rgb(0, 158, 227);
  4986. padding-bottom: 0.8rem;
  4987. padding-right: 1rem;
  4988. margin-top: 1rem;
  4989. scroll-margin-top: 7em;
  4990. }
  4991. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-titre:hover {
  4992. text-decoration: underline;
  4993. }
  4994. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-textes .field__item .paragraph--type--texte {
  4995. padding-right: 2rem;
  4996. margin-top: 1rem;
  4997. background-color: rgb(255, 255, 255);
  4998. }
  4999. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-textes .field__item .paragraph--type--texte .field--name-field-titre {
  5000. font-size: 1.5rem;
  5001. font-weight: 1000;
  5002. font-family: "Source Code Pro", monospace;
  5003. color: rgb(9, 57, 139);
  5004. text-transform: uppercase;
  5005. margin-bottom: 0.8rem;
  5006. }
  5007. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-textes .field__item .paragraph--type--texte .field--name-field-texte {
  5008. margin-bottom: 2rem;
  5009. }
  5010. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme {
  5011. margin-top: 1rem;
  5012. display: flex;
  5013. flex-direction: column;
  5014. width: 70%;
  5015. }
  5016. @media (max-width: 810px) {
  5017. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme {
  5018. margin: auto;
  5019. }
  5020. }
  5021. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents {
  5022. height: fit-content;
  5023. border: 2px solid rgb(0, 158, 227);
  5024. background-color: rgb(255, 255, 255);
  5025. margin-bottom: 1rem;
  5026. }
  5027. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item {
  5028. min-height: 4rem;
  5029. background: rgb(255, 255, 255);
  5030. color: rgb(0, 158, 227);
  5031. padding-left: 0.8rem;
  5032. padding-top: 1rem;
  5033. }
  5034. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item span:nth-of-type(2) {
  5035. display: none;
  5036. }
  5037. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item .file--mime-application-pdf {
  5038. height: inherit;
  5039. margin: auto;
  5040. }
  5041. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item .file--mime-application-pdf ::before {
  5042. content: url("../images/pictos/noun_Download_file_307900.svg");
  5043. min-width: 40px;
  5044. height: auto;
  5045. padding-right: 0.5rem;
  5046. display: inline-flex;
  5047. align-items: center;
  5048. }
  5049. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item .file--mime-application-pdf a {
  5050. hyphens: auto;
  5051. display: inline-flex;
  5052. align-items: center;
  5053. color: rgb(0, 158, 227);
  5054. font-weight: 800;
  5055. }
  5056. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-liens .field__item {
  5057. margin: auto;
  5058. height: fit-content;
  5059. border: 2px solid rgb(0, 158, 227);
  5060. min-height: 4rem;
  5061. background: rgb(255, 255, 255);
  5062. color: rgb(0, 158, 227);
  5063. padding-left: 0.8rem;
  5064. padding-top: 1rem;
  5065. margin-bottom: 1rem;
  5066. }
  5067. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-liens a {
  5068. display: inline-flex;
  5069. align-items: center;
  5070. justify-items: center;
  5071. color: rgb(0, 158, 227);
  5072. font-weight: 800;
  5073. }
  5074. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-liens a::before {
  5075. content: url("../images/pictos/external_link.png");
  5076. min-width: 40px;
  5077. height: auto;
  5078. padding-right: 0.5rem;
  5079. display: inline-flex;
  5080. align-items: center;
  5081. }
  5082. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-liens a svg.ext {
  5083. display: none;
  5084. }
  5085. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 {
  5086. padding-top: 1rem;
  5087. background-color: white;
  5088. }
  5089. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets {
  5090. width: 80%;
  5091. margin: auto;
  5092. }
  5093. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters {
  5094. margin-top: 4rem;
  5095. display: flex;
  5096. flex-direction: row;
  5097. }
  5098. @media (max-width: 479px) {
  5099. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters {
  5100. flex-direction: column;
  5101. padding-bottom: 3rem;
  5102. }
  5103. }
  5104. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters::before {
  5105. content: "Filtrer par :";
  5106. margin-right: 1rem;
  5107. }
  5108. @media (max-width: 479px) {
  5109. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters::before {
  5110. padding-bottom: 1rem;
  5111. }
  5112. }
  5113. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 {
  5114. display: flex;
  5115. flex-direction: row;
  5116. }
  5117. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-neuf-rehabilitation-value--wrapper legend {
  5118. display: none;
  5119. }
  5120. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-neuf-rehabilitation-value--wrapper .js-form-item-field-neuf-rehabilitation-value:first-of-type {
  5121. display: none;
  5122. }
  5123. @media (max-width: 479px) {
  5124. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-neuf-rehabilitation-value--wrapper {
  5125. padding-bottom: 1rem;
  5126. }
  5127. }
  5128. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-encours-fini-value--wrapper legend {
  5129. display: none;
  5130. }
  5131. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-encours-fini-value--wrapper .js-form-item-field-encours-fini-value:first-of-type {
  5132. display: none;
  5133. }
  5134. @media (max-width: 479px) {
  5135. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-encours-fini-value--wrapper {
  5136. padding-bottom: 1rem;
  5137. }
  5138. }
  5139. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 .js-form-type-textfield label {
  5140. display: none;
  5141. }
  5142. @media (max-width: 479px) {
  5143. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 .js-form-type-textfield {
  5144. padding-bottom: 1rem;
  5145. }
  5146. }
  5147. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 input[type=radio] {
  5148. display: none;
  5149. }
  5150. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 input[type=radio] + label::before {
  5151. content: "";
  5152. display: inline-block;
  5153. width: 15px;
  5154. height: 15px;
  5155. background: #fff;
  5156. border-radius: 0px;
  5157. border-color: black;
  5158. border-style: solid;
  5159. border-width: 1px;
  5160. margin-right: 0.5rem;
  5161. }
  5162. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 input[type=radio]:checked + label::before {
  5163. background: rgb(0, 158, 227);
  5164. }
  5165. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 label {
  5166. padding-right: 1rem;
  5167. }
  5168. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-submit-projets {
  5169. background-color: rgb(0, 158, 227);
  5170. color: white;
  5171. text-transform: uppercase;
  5172. border: none;
  5173. padding: 0.1rem 0.7rem;
  5174. margin-left: 2rem;
  5175. }
  5176. @media (max-width: 479px) {
  5177. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-submit-projets {
  5178. margin-left: 0rem;
  5179. margin-right: 2rem;
  5180. }
  5181. }
  5182. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-reset {
  5183. background-color: rgb(0, 158, 227);
  5184. color: white;
  5185. text-transform: uppercase;
  5186. border: none;
  5187. padding: 0.1rem 0.7rem;
  5188. margin-left: 1rem;
  5189. }
  5190. @media (max-width: 479px) {
  5191. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 {
  5192. flex-direction: column;
  5193. }
  5194. }
  5195. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-content {
  5196. margin-top: 2rem;
  5197. display: flex;
  5198. flex-direction: row;
  5199. flex-wrap: wrap;
  5200. }
  5201. @media (max-width: 810px) {
  5202. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-content {
  5203. flex-direction: column;
  5204. }
  5205. }
  5206. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-content .views-row {
  5207. width: 25%;
  5208. }
  5209. @media (max-width: 810px) {
  5210. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-content .views-row {
  5211. width: 100%;
  5212. }
  5213. }
  5214. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet {
  5215. color: rgb(9, 57, 139);
  5216. line-height: 1.5rem;
  5217. padding: 0.5rem;
  5218. padding-right: 1rem;
  5219. padding-left: 1rem;
  5220. }
  5221. @media (max-width: 479px) {
  5222. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet {
  5223. padding-left: 0rem;
  5224. padding-right: 0rem;
  5225. padding-top: 2rem;
  5226. }
  5227. }
  5228. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child {
  5229. display: flex;
  5230. flex-direction: column;
  5231. }
  5232. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child a {
  5233. color: rgb(9, 57, 139);
  5234. }
  5235. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-photo {
  5236. order: 1;
  5237. }
  5238. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-photo img {
  5239. width: 100%;
  5240. max-height: 175px;
  5241. object-fit: cover;
  5242. }
  5243. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-photo::after {
  5244. display: block;
  5245. content: url('data:image/svg+xml,<svg width="160" height="25" 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="2.5"/></svg>');
  5246. }
  5247. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse {
  5248. order: 2;
  5249. display: flex;
  5250. text-transform: uppercase;
  5251. font-size: 0.9rem;
  5252. font-weight: 800;
  5253. margin-top: 0.8rem;
  5254. line-height: 0.6rem;
  5255. }
  5256. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address {
  5257. display: flex;
  5258. flex-direction: row;
  5259. margin: 0;
  5260. }
  5261. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .locality {
  5262. padding-top: 0 !important;
  5263. padding-bottom: 0 !important;
  5264. }
  5265. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .locality::after {
  5266. content: ",";
  5267. margin-right: 0.3rem;
  5268. }
  5269. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .country {
  5270. padding-top: 0 !important;
  5271. padding-bottom: 0 !important;
  5272. }
  5273. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-sous-titre {
  5274. margin-top: 0.5rem;
  5275. font-size: 0.9rem;
  5276. font-weight: 800;
  5277. order: 4;
  5278. }
  5279. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-title {
  5280. order: 3;
  5281. margin-top: 0.5rem;
  5282. font-size: 0.9rem;
  5283. font-weight: 800;
  5284. }
  5285. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-title h2 {
  5286. margin: 0;
  5287. }
  5288. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-incube {
  5289. order: 4;
  5290. color: red;
  5291. margin-top: 0.8rem;
  5292. font-size: 0.7rem;
  5293. }
  5294. .node-id-201 {
  5295. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5296. background-repeat: no-repeat;
  5297. background-position-y: 7rem;
  5298. max-width: 100vw;
  5299. background-size: contain;
  5300. }
  5301. .node-id-201 #block-contenudelapageprincipale {
  5302. scroll-margin: 8rem;
  5303. }
  5304. .node-id-201 .layout__region--top {
  5305. padding-bottom: 3rem;
  5306. height: 30vh;
  5307. }
  5308. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  5309. display: none;
  5310. height: inherit;
  5311. }
  5312. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  5313. font-family: "Source Code Pro";
  5314. font-size: 2rem;
  5315. font-weight: 800;
  5316. color: rgb(255, 255, 255);
  5317. background-color: rgb(0, 158, 227);
  5318. text-transform: uppercase;
  5319. }
  5320. .node-id-201 .layout__region--second {
  5321. width: 25%;
  5322. }
  5323. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes {
  5324. background-color: rgb(255, 255, 255);
  5325. }
  5326. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  5327. font-size: 1.5rem;
  5328. font-weight: 1000;
  5329. font-family: "Source Code Pro";
  5330. color: rgb(9, 57, 139);
  5331. text-transform: uppercase;
  5332. }
  5333. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  5334. text-transform: none !important;
  5335. }
  5336. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  5337. padding-right: 2rem;
  5338. }
  5339. .path-ressources .layout-container {
  5340. overflow: hidden;
  5341. }
  5342. @media (max-width: 810px) {
  5343. .path-ressources .layout-container {
  5344. overflow: hidden;
  5345. }
  5346. }
  5347. .path-ressources .layout-content {
  5348. min-height: 100vh;
  5349. width: 100vw;
  5350. }
  5351. .path-ressources .layout-content .region-content {
  5352. width: 100%;
  5353. margin: auto;
  5354. }
  5355. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  5356. font-size: 4em;
  5357. color: rgb(9, 57, 139);
  5358. font-weight: 400;
  5359. text-align: center;
  5360. margin-bottom: 1rem;
  5361. width: fit-content;
  5362. margin-left: 28%;
  5363. }
  5364. @media (max-width: 810px) {
  5365. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  5366. margin-left: 2rem;
  5367. text-align: left;
  5368. line-height: 4rem;
  5369. }
  5370. }
  5371. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  5372. display: flex;
  5373. flex-direction: column;
  5374. }
  5375. @media (max-width: 479px) {
  5376. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  5377. display: flex;
  5378. flex-direction: column;
  5379. }
  5380. }
  5381. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5382. width: 60%;
  5383. margin: auto;
  5384. margin-left: 28%;
  5385. }
  5386. @media (max-width: 810px) {
  5387. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5388. margin-left: 2rem;
  5389. width: 85%;
  5390. }
  5391. }
  5392. @media (max-width: 479px) {
  5393. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5394. order: 1;
  5395. margin-left: 2rem;
  5396. }
  5397. }
  5398. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full {
  5399. grid-column: 1/span 5;
  5400. }
  5401. @media (max-width: 810px) {
  5402. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full {
  5403. padding-top: 1rem;
  5404. margin-top: 1rem;
  5405. }
  5406. }
  5407. @media (max-width: 479px) {
  5408. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full {
  5409. padding-left: 0;
  5410. padding-right: 0;
  5411. }
  5412. }
  5413. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full .field--name-field-introduction {
  5414. margin: auto;
  5415. background: rgb(255, 255, 255);
  5416. font-size: 1rem;
  5417. }
  5418. @media (max-width: 479px) {
  5419. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full .field--name-field-introduction {
  5420. margin-top: 1rem;
  5421. }
  5422. }
  5423. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5424. grid-column: 6/span 5;
  5425. grid-row: 1;
  5426. margin-top: 4rem;
  5427. background-color: rgb(0, 158, 227);
  5428. height: fit-content;
  5429. width: 100%;
  5430. }
  5431. @media (max-width: 810px) {
  5432. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5433. grid-column: 5/span 5;
  5434. }
  5435. }
  5436. @media (max-width: 479px) {
  5437. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5438. grid-column: 5/span 5;
  5439. order: 2;
  5440. }
  5441. }
  5442. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .display {
  5443. display: block;
  5444. }
  5445. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien {
  5446. display: flex;
  5447. flex-direction: column;
  5448. margin-top: 2rem;
  5449. margin-bottom: 2rem;
  5450. margin-left: 1.5rem;
  5451. margin-right: 1.5rem;
  5452. text-align: center;
  5453. }
  5454. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien a {
  5455. font-weight: 800;
  5456. color: rgb(255, 255, 255);
  5457. font-size: 1.3rem;
  5458. }
  5459. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien:after {
  5460. margin-left: auto;
  5461. padding-top: 1rem;
  5462. display: block;
  5463. content: url("../images/pictos/noun_Arrow_3771902.svg");
  5464. }
  5465. @media (max-width: 810px) {
  5466. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5467. margin: auto;
  5468. }
  5469. }
  5470. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  5471. margin-top: 2rem;
  5472. width: 100%;
  5473. }
  5474. @media (max-width: 479px) {
  5475. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  5476. order: 3;
  5477. }
  5478. }
  5479. @media (max-width: 810px) {
  5480. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees {
  5481. display: flex;
  5482. flex-direction: column;
  5483. }
  5484. }
  5485. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters {
  5486. position: fixed;
  5487. top: 25rem;
  5488. left: 0;
  5489. background-color: rgb(255, 255, 255);
  5490. border: solid 0.2px rgba(0, 0, 0, 0.1);
  5491. margin-bottom: 5rem;
  5492. padding: 1rem;
  5493. padding-left: 2rem;
  5494. padding-right: 1.5rem;
  5495. z-index: 1;
  5496. transform: translateY(-210px);
  5497. margin-bottom: -210px;
  5498. width: 20%;
  5499. }
  5500. @media (max-width: 810px) {
  5501. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters {
  5502. position: static;
  5503. margin-bottom: 2rem;
  5504. transform: none;
  5505. margin-bottom: 0px;
  5506. width: 80%;
  5507. }
  5508. }
  5509. @media (max-width: 479px) {
  5510. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters {
  5511. margin-left: 0;
  5512. }
  5513. }
  5514. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources::before {
  5515. content: "Afficher : ";
  5516. padding-right: 1rem;
  5517. font-weight: 800;
  5518. font-size: 1rem;
  5519. margin-bottom: 1rem;
  5520. display: block;
  5521. width: 100%;
  5522. }
  5523. @media (max-width: 479px) {
  5524. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources::before {
  5525. padding-bottom: 1rem;
  5526. }
  5527. }
  5528. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button {
  5529. background-color: transparent;
  5530. border: 1px solid black;
  5531. padding: 0.3rem 0.5rem 0.1rem 0.3rem;
  5532. margin-bottom: 0.5rem;
  5533. margin-right: 0.5rem;
  5534. font-size: 0.8rem;
  5535. color: rgb(9, 57, 139);
  5536. display: inline-flex;
  5537. flex-direction: row;
  5538. align-items: center;
  5539. }
  5540. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button:hover {
  5541. cursor: grab;
  5542. background-color: rgb(9, 57, 139);
  5543. color: white;
  5544. }
  5545. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button :visited {
  5546. color: rgb(9, 57, 139);
  5547. }
  5548. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos::before {
  5549. content: url("../images/pictos/videos.svg");
  5550. padding-right: 0.5rem;
  5551. display: block;
  5552. }
  5553. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos:hover::before, .is-active .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos::before {
  5554. content: url("../images/pictos/videos-blanc.svg");
  5555. display: block;
  5556. }
  5557. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts {
  5558. display: none !important;
  5559. }
  5560. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts::before {
  5561. content: url("../images/pictos/podcasts.svg");
  5562. padding-right: 0.5rem;
  5563. display: block;
  5564. }
  5565. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts:hover::before {
  5566. content: url("../images/pictos/podcasts-blanc.svg");
  5567. display: block;
  5568. }
  5569. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-images---photos::before {
  5570. content: url("../images/pictos/en-images.svg");
  5571. display: block;
  5572. padding-right: 0.5rem;
  5573. }
  5574. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-images---photos:hover::before {
  5575. content: url("../images/pictos/en-images-blanc.svg");
  5576. display: block;
  5577. }
  5578. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-livres::before {
  5579. content: url("../images/pictos/ecrits.svg");
  5580. padding-right: 0.5rem;
  5581. display: block;
  5582. }
  5583. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-livres:hover::before {
  5584. content: url("../images/pictos/ecrits-blanc.svg");
  5585. display: block;
  5586. }
  5587. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-articles::before {
  5588. content: url("../images/pictos/ecrits.svg");
  5589. padding-right: 0.5rem;
  5590. display: block;
  5591. }
  5592. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-articles:hover::before {
  5593. content: url("../images/pictos/ecrits-blanc.svg");
  5594. display: block;
  5595. }
  5596. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-publications---rapports::before {
  5597. content: url("../images/pictos/ecrits.svg");
  5598. padding-right: 0.5rem;
  5599. display: block;
  5600. }
  5601. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-publications---rapports:hover::before {
  5602. content: url("../images/pictos/ecrits-blanc.svg");
  5603. display: block;
  5604. }
  5605. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active {
  5606. background-color: rgb(9, 57, 139);
  5607. color: white;
  5608. }
  5609. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active a {
  5610. color: white;
  5611. }
  5612. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos {
  5613. margin-top: 1rem;
  5614. }
  5615. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos a::before, .is-active .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos a::before {
  5616. content: url("../images/pictos/videos-blanc.svg");
  5617. }
  5618. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-podcasts a::before {
  5619. content: url("../images/pictos/podcasts-blanc.svg");
  5620. }
  5621. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-images---photos a::before {
  5622. content: url("../images/pictos/en-images-blanc.svg");
  5623. }
  5624. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-livres a::before {
  5625. content: url("../images/pictos/ecrits-blanc.svg");
  5626. }
  5627. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-articles a::before {
  5628. content: url("../images/pictos/ecrits-blanc.svg");
  5629. }
  5630. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-publications---rapports a::before {
  5631. content: url("../images/pictos/ecrits-blanc.svg");
  5632. }
  5633. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form::before {
  5634. content: "Filtrer par : ";
  5635. padding-right: 1rem;
  5636. font-weight: 800;
  5637. font-size: 1rem;
  5638. margin-bottom: 1rem;
  5639. }
  5640. @media (max-width: 479px) {
  5641. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form::before {
  5642. padding-bottom: 1rem;
  5643. }
  5644. }
  5645. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-field-type-de-media-target-id {
  5646. display: none;
  5647. }
  5648. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item {
  5649. font-size: 0.8rem;
  5650. }
  5651. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine {
  5652. border-top: none;
  5653. border-left: none;
  5654. border-right: none;
  5655. font-size: 0.8rem;
  5656. justify-content: flex-start !important;
  5657. }
  5658. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine label {
  5659. display: none;
  5660. }
  5661. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine .input-wrapper {
  5662. display: inline-flex;
  5663. position: relative;
  5664. font-size: 0.8rem;
  5665. width: -webkit-fill-available; /* Safari/Chrome */
  5666. width: -moz-available; /* Firefox */
  5667. width: fill-available; /* standard futur */
  5668. width: 100%; /* fallback */
  5669. max-width: 100%;
  5670. }
  5671. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine .input-wrapper::after {
  5672. content: url("../images/pictos/loupe.svg");
  5673. display: inline-block;
  5674. }
  5675. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine .input-wrapper input {
  5676. text-align: start !important;
  5677. max-width: 100% !important;
  5678. }
  5679. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine:not(.form-item-field-date-de-parution-value) .search-with-clear .clear-input {
  5680. position: absolute;
  5681. right: -4px;
  5682. top: 50%;
  5683. transform: translateY(-50%);
  5684. background: white;
  5685. border: none;
  5686. padding: 0.5rem;
  5687. margin: 0;
  5688. cursor: pointer;
  5689. color: #888;
  5690. display: none; /* masqué par défaut */
  5691. }
  5692. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine:not(.form-item-field-date-de-parution-value) .search-with-clear .clear-input:hover {
  5693. color: #000;
  5694. }
  5695. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-field-date-de-parution-value .clear-input {
  5696. display: none;
  5697. }
  5698. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form select {
  5699. font-size: 0.8rem;
  5700. }
  5701. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form select ::placeholder {
  5702. display: none;
  5703. }
  5704. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form input {
  5705. font-size: 0.8rem;
  5706. }
  5707. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered {
  5708. display: flex;
  5709. flex-direction: row;
  5710. flex-wrap: wrap;
  5711. }
  5712. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered .views-row-wrapper {
  5713. flex-wrap: wrap;
  5714. width: 85%;
  5715. }
  5716. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered .views-row-wrapper .views-row {
  5717. padding: 1rem;
  5718. width: 30% !important;
  5719. }
  5720. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content {
  5721. transition: opacity 0.3s ease;
  5722. display: flex;
  5723. flex-direction: row;
  5724. flex-wrap: wrap;
  5725. padding-left: 25%;
  5726. }
  5727. @media (max-width: 810px) {
  5728. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content {
  5729. padding-left: 0;
  5730. }
  5731. }
  5732. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .border {
  5733. width: 80%;
  5734. border-top: solid 1px rgba(0, 0, 0, 0.3);
  5735. }
  5736. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme {
  5737. order: 1;
  5738. }
  5739. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme::before {
  5740. background-color: rgba(0, 158, 227, 0.2);
  5741. }
  5742. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme .views-row {
  5743. width: 45%;
  5744. min-width: 350px !important;
  5745. max-width: 500px;
  5746. }
  5747. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-paroles-de-laureats {
  5748. order: 2;
  5749. }
  5750. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images {
  5751. order: 3;
  5752. }
  5753. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images .slick-list {
  5754. padding-left: 0 !important;
  5755. }
  5756. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images::before {
  5757. background-color: rgba(0, 158, 227, 0.2);
  5758. }
  5759. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-presse {
  5760. order: 5;
  5761. }
  5762. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-presse h3 {
  5763. border: none;
  5764. }
  5765. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-des-partenaires-et-laureats {
  5766. order: 4;
  5767. }
  5768. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-autres {
  5769. order: 9;
  5770. }
  5771. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .type-documentation-partenariale {
  5772. order: 6;
  5773. }
  5774. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-these-et-memoire {
  5775. order: 8;
  5776. }
  5777. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) {
  5778. width: 100%;
  5779. position: relative;
  5780. z-index: 0;
  5781. padding-bottom: 1rem;
  5782. }
  5783. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer)::before {
  5784. content: "";
  5785. position: absolute;
  5786. left: -35%;
  5787. height: 100%;
  5788. width: 110vw;
  5789. z-index: 0;
  5790. }
  5791. @media (max-width: 810px) {
  5792. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer)::before {
  5793. left: 0;
  5794. }
  5795. }
  5796. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) > * {
  5797. position: relative;
  5798. z-index: 1;
  5799. }
  5800. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3 {
  5801. top: 1rem;
  5802. text-transform: uppercase;
  5803. font-family: "Source Code Pro";
  5804. color: rgb(9, 57, 139) !important;
  5805. display: flex;
  5806. flex-direction: row;
  5807. align-items: center;
  5808. font-size: 1.7rem;
  5809. margin-block: 0em;
  5810. }
  5811. @media (max-width: 810px) {
  5812. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3 {
  5813. padding-left: 2rem;
  5814. width: 70%;
  5815. }
  5816. }
  5817. @media (max-width: 479px) {
  5818. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3 {
  5819. width: 65% !important;
  5820. }
  5821. }
  5822. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-publications-issues-du-programme {
  5823. border: none;
  5824. }
  5825. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-publications-issues-du-programme:before {
  5826. content: url("../images/pictos/picto-ressource-eqld.svg");
  5827. padding-right: 1rem;
  5828. }
  5829. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-paroles-de-laureats:before {
  5830. content: url("../images/pictos/picto-ressource-paroleslaureats.svg");
  5831. padding-right: 1rem;
  5832. }
  5833. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-les-projets-en-images {
  5834. width: 80%;
  5835. }
  5836. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-les-projets-en-images:before {
  5837. content: url("../images/pictos/picto-ressource-projetsimages.svg");
  5838. padding-right: 1rem;
  5839. }
  5840. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-presse:before {
  5841. content: url("../images/pictos/picto-ressource-presse.svg");
  5842. padding-right: 1rem;
  5843. }
  5844. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  5845. background-color: rgb(255, 255, 255);
  5846. border: 1px solid rgb(0, 158, 227);
  5847. list-style: none;
  5848. padding: 0.5rem;
  5849. position: relative;
  5850. left: 60vw;
  5851. top: -1.5rem;
  5852. text-transform: uppercase;
  5853. font-size: 0.7rem;
  5854. font-weight: 500;
  5855. color: rgb(0, 158, 227);
  5856. display: inline-flex;
  5857. align-items: center;
  5858. }
  5859. @media (max-width: 810px) {
  5860. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  5861. left: 81vw;
  5862. }
  5863. }
  5864. @media (max-width: 479px) {
  5865. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  5866. left: 76vw;
  5867. top: -1.5rem;
  5868. }
  5869. }
  5870. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper {
  5871. display: flex;
  5872. flex-direction: row;
  5873. }
  5874. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-track {
  5875. width: 100% !important;
  5876. display: flex;
  5877. flex-direction: row;
  5878. transform: none;
  5879. }
  5880. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-track .views-row {
  5881. width: 20%;
  5882. min-width: 250px;
  5883. max-width: 500px;
  5884. }
  5885. @media (max-width: 810px) {
  5886. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper {
  5887. padding-left: 0rem !important;
  5888. flex-direction: column;
  5889. }
  5890. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .views-row {
  5891. width: 100% !important;
  5892. }
  5893. }
  5894. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next::before {
  5895. content: url("../images/pictos/fleche-droite-dans-rond.png");
  5896. display: inline-block;
  5897. transform: scale(0.5); /* Réduction à 50% */
  5898. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  5899. }
  5900. @media (max-width: 810px) {
  5901. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next::before {
  5902. transform: scale(0.5); /* Réduction à 50% */
  5903. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  5904. }
  5905. }
  5906. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev::before {
  5907. content: url("../images/pictos/fleche-droite-dans-rond.png");
  5908. display: block;
  5909. display: inline-block;
  5910. transform: scaleX(-1);
  5911. transform: scale(-0.5, 0.5);
  5912. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  5913. }
  5914. @media (max-width: 810px) {
  5915. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev::before {
  5916. transform: scale(-0.5, 0.5);
  5917. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  5918. }
  5919. }
  5920. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev::before,
  5921. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next::before {
  5922. opacity: 1 !important;
  5923. }
  5924. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev.slick-disabled::before,
  5925. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next.slick-disabled::before {
  5926. opacity: 0.3 !important;
  5927. }
  5928. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev,
  5929. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  5930. top: 94%;
  5931. }
  5932. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  5933. right: 35vw;
  5934. }
  5935. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  5936. left: 25vw;
  5937. }
  5938. @media (max-width: 1400px) {
  5939. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  5940. left: 20vw;
  5941. }
  5942. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  5943. right: 30vw;
  5944. }
  5945. }
  5946. @media (max-width: 810px) {
  5947. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  5948. left: 25vw;
  5949. }
  5950. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  5951. right: 40vw;
  5952. }
  5953. }
  5954. div.view-type-slide:nth-child(2) > div:nth-child(4) {
  5955. padding-left: 0 !important;
  5956. }
  5957. div.view-type-slide:nth-child(2) > div:nth-child(4) .slick-list {
  5958. padding-left: 8% !important;
  5959. padding-right: 8% !important;
  5960. }
  5961. div.view-type-slide:nth-child(2) > div:nth-child(4) article {
  5962. padding-right: 0;
  5963. }
  5964. footer {
  5965. z-index: 1;
  5966. }
  5967. .carousel {
  5968. display: none;
  5969. }
  5970. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  5971. display: flex !important;
  5972. flex-direction: column;
  5973. margin-left: 11%;
  5974. }
  5975. @media screen and (min-width: 1100px) {
  5976. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  5977. display: flex;
  5978. }
  5979. }
  5980. @media screen and (max-width: 810px) {
  5981. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  5982. margin-left: 0;
  5983. }
  5984. }
  5985. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block {
  5986. margin-left: 0;
  5987. }
  5988. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  5989. margin-top: 5rem;
  5990. padding: 0;
  5991. order: 7;
  5992. width: 85%;
  5993. }
  5994. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  5995. display: grid;
  5996. grid-template-columns: 10fr 1fr;
  5997. gap: 4rem;
  5998. justify-content: center;
  5999. margin: auto;
  6000. }
  6001. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6002. display: flex;
  6003. align-items: center;
  6004. position: relative;
  6005. width: 100%;
  6006. margin: 0 auto;
  6007. }
  6008. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container {
  6009. flex: 1;
  6010. text-align: center;
  6011. }
  6012. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container img {
  6013. width: 100%;
  6014. height: auto;
  6015. object-fit: contain;
  6016. max-height: 550px;
  6017. border: none;
  6018. }
  6019. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container .caption {
  6020. margin-top: 1rem;
  6021. font-family: sans-serif;
  6022. text-align: center;
  6023. font-size: 1rem;
  6024. color: #444;
  6025. }
  6026. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow {
  6027. font-size: 2rem;
  6028. color: #333;
  6029. background: none;
  6030. border-radius: 50%;
  6031. width: 40px;
  6032. height: 40px;
  6033. line-height: 40px;
  6034. text-align: center;
  6035. cursor: pointer;
  6036. user-select: none;
  6037. transition: background 0.3s ease;
  6038. }
  6039. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow:hover {
  6040. background: #bbb;
  6041. }
  6042. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.left {
  6043. margin-right: 10px;
  6044. }
  6045. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.right {
  6046. margin-left: 10px;
  6047. }
  6048. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .caption {
  6049. margin-top: 10px;
  6050. font-family: sans-serif;
  6051. grid-column: 2;
  6052. grid-row: 2;
  6053. }
  6054. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper {
  6055. grid-column: 2;
  6056. display: flex;
  6057. flex-direction: column;
  6058. align-items: center;
  6059. max-height: 60vh;
  6060. grid-row: 1/span 2;
  6061. top: 0px;
  6062. position: relative;
  6063. overflow: hidden;
  6064. }
  6065. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow {
  6066. cursor: pointer;
  6067. padding: 5px 10px;
  6068. background: #00aaff;
  6069. color: white;
  6070. border-radius: 50%;
  6071. user-select: none;
  6072. z-index: 2;
  6073. position: relative;
  6074. }
  6075. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow.up {
  6076. transform: rotate(90deg);
  6077. }
  6078. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow.down {
  6079. transform: rotate(90deg);
  6080. }
  6081. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails {
  6082. display: flex;
  6083. flex-direction: column;
  6084. gap: 6px;
  6085. overflow-y: auto;
  6086. max-height: 100%;
  6087. scroll-behavior: smooth;
  6088. position: relative;
  6089. z-index: 0;
  6090. }
  6091. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails::-webkit-scrollbar {
  6092. display: none;
  6093. }
  6094. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails img {
  6095. width: 80px;
  6096. height: 60px;
  6097. object-fit: contain;
  6098. border: 2px solid transparent;
  6099. cursor: pointer;
  6100. opacity: 0.3;
  6101. transition: transform 0.3s ease, opacity 0.3s ease;
  6102. }
  6103. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails img.active {
  6104. transform: scale(1.3);
  6105. margin-top: 0.8rem;
  6106. margin-bottom: 0.8rem;
  6107. opacity: 1;
  6108. z-index: 1;
  6109. }
  6110. @media screen and (max-width: 810px) {
  6111. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6112. display: flex;
  6113. flex-direction: column;
  6114. gap: 2rem;
  6115. align-items: center;
  6116. width: 100vw;
  6117. }
  6118. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6119. width: 90%;
  6120. }
  6121. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails-wrapper {
  6122. width: 100%;
  6123. display: flex !important;
  6124. flex-direction: row !important; /* 👈 corrige l'orientation */
  6125. justify-content: center;
  6126. align-items: center;
  6127. overflow-x: auto;
  6128. overflow-y: hidden;
  6129. max-height: none;
  6130. padding: 1rem 0;
  6131. position: relative;
  6132. }
  6133. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails {
  6134. display: flex !important;
  6135. flex-direction: row !important; /* 👈 force l'alignement horizontal */
  6136. gap: 0.8 rem !important;
  6137. overflow-x: auto;
  6138. overflow-y: hidden;
  6139. scroll-behavior: smooth;
  6140. padding: 0 1rem;
  6141. max-width: 100%;
  6142. flex-wrap: nowrap;
  6143. }
  6144. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails::-webkit-scrollbar {
  6145. display: none;
  6146. }
  6147. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails img {
  6148. width: 60px;
  6149. height: 45px;
  6150. flex-shrink: 0; /* évite l’écrasement */
  6151. }
  6152. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumb-arrow {
  6153. display: none; /* inutile si scroll horizontal */
  6154. }
  6155. }
  6156. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .field__items {
  6157. display: none;
  6158. }
  6159. @media screen and (max-width: 810px) {
  6160. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  6161. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodetitle,
  6162. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  6163. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  6164. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  6165. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  6166. margin-left: 7%;
  6167. }
  6168. }
  6169. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-projets-liee {
  6170. transform: translateY(-45.5rem);
  6171. }
  6172. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-liens,
  6173. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-fichiers,
  6174. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-ress {
  6175. transform: translateY(-16rem);
  6176. }
  6177. .carousel {
  6178. display: none;
  6179. }
  6180. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6181. display: flex !important;
  6182. flex-direction: column;
  6183. margin-left: 11%;
  6184. width: 60%;
  6185. }
  6186. @media screen and (min-width: 1100px) {
  6187. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6188. display: flex;
  6189. }
  6190. }
  6191. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block {
  6192. margin-left: 0;
  6193. }
  6194. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6195. display: none;
  6196. }
  6197. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  6198. order: 1;
  6199. }
  6200. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodetitle {
  6201. order: 2;
  6202. }
  6203. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  6204. order: 3;
  6205. }
  6206. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-edition {
  6207. order: 5;
  6208. }
  6209. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  6210. order: 4;
  6211. }
  6212. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  6213. order: 6;
  6214. }
  6215. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-videos {
  6216. order: 7;
  6217. margin-top: 2rem;
  6218. }
  6219. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-projets-liee {
  6220. margin-top: 0rem;
  6221. }
  6222. /*partials*/
  6223. .layout-container {
  6224. position: relative;
  6225. width: 100vw;
  6226. }
  6227. .layout-container header {
  6228. position: fixed;
  6229. z-index: 99;
  6230. width: 100vw;
  6231. }
  6232. #header-top {
  6233. height: 7rem;
  6234. background-color: rgb(255, 255, 255);
  6235. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  6236. display: flex;
  6237. flex-direction: row;
  6238. justify-content: space-between;
  6239. color: rgb(0, 0, 0);
  6240. top: 0%;
  6241. scroll-margin: 8rem;
  6242. }
  6243. #header-top .region-header-top-left {
  6244. width: 80vw;
  6245. display: flex;
  6246. flex-direction: row;
  6247. padding: 1rem;
  6248. padding-left: 4%;
  6249. align-items: center;
  6250. color: rgb(0, 0, 0);
  6251. font-weight: 800;
  6252. flex: 1;
  6253. }
  6254. #header-top .region-header-top-left #block-logogouv {
  6255. display: flex;
  6256. height: 100%;
  6257. align-items: center;
  6258. }
  6259. #header-top .region-header-top-left #block-logogouv img {
  6260. width: 80%;
  6261. height: auto;
  6262. }
  6263. #header-top .region-header-top-left #block-logoeql {
  6264. display: flex;
  6265. height: 100%;
  6266. align-items: center;
  6267. }
  6268. #header-top .region-header-top-left #block-logoeql img {
  6269. width: 80%;
  6270. height: auto;
  6271. }
  6272. #header-top .region-header-top-left #block-headermenu {
  6273. align-self: baseline;
  6274. width: 70%;
  6275. margin-left: 3rem;
  6276. margin-right: 3rem;
  6277. }
  6278. #header-top .region-header-top-left ul {
  6279. font-size: 1rem;
  6280. list-style: none;
  6281. display: flex;
  6282. flex-direction: row;
  6283. justify-content: space-between;
  6284. width: 100%;
  6285. padding-inline-start: 0px;
  6286. padding: 1rem;
  6287. }
  6288. #header-top .region-header-top-left ul .is-active {
  6289. color: rgb(0, 158, 227);
  6290. }
  6291. #header-top .region-header-top-left ul ul {
  6292. position: absolute;
  6293. left: -28%;
  6294. z-index: 1000;
  6295. display: flex;
  6296. flex-direction: column;
  6297. min-width: 210px;
  6298. width: fit-content;
  6299. justify-content: space-between;
  6300. padding-inline-start: 0px;
  6301. opacity: 0;
  6302. visibility: hidden;
  6303. transform: translateY(-10px);
  6304. transition: opacity 0.3s ease, transform 0.3s ease;
  6305. }
  6306. #header-top .region-header-top-left ul ul .is-active {
  6307. color: rgb(0, 158, 227);
  6308. }
  6309. #header-top .region-header-top-left ul li {
  6310. position: relative;
  6311. display: flex;
  6312. flex-direction: column;
  6313. background-color: rgb(255, 255, 255);
  6314. padding-bottom: 0.8rem;
  6315. max-width: inherit;
  6316. padding-left: 1rem;
  6317. padding-right: 0.5rem;
  6318. height: fit-content;
  6319. }
  6320. #header-top .region-header-top-left ul li a {
  6321. color: rgb(0, 0, 0);
  6322. }
  6323. #header-top .region-header-top-left ul li .is-active {
  6324. color: rgb(0, 158, 227);
  6325. }
  6326. #header-top .region-header-top-left ul li :hover {
  6327. color: rgb(0, 158, 227);
  6328. }
  6329. #header-top .region-header-top-left ul li:hover ul {
  6330. opacity: 1;
  6331. visibility: visible;
  6332. transform: translateY(0);
  6333. }
  6334. #header-top .region-header-top-left ul .ul1.sous-liste.ul2 {
  6335. padding-left: 1rem;
  6336. }
  6337. #header-top #block-socialnetwork-2 {
  6338. display: none;
  6339. position: relative;
  6340. top: -33px;
  6341. align-self: flex-end;
  6342. margin-left: auto;
  6343. }
  6344. #header-top #block-socialnetwork-2 .field--name-body {
  6345. min-height: 75px;
  6346. }
  6347. #header-top #block-socialnetwork-2 p {
  6348. display: flex;
  6349. flex-direction: row-reverse;
  6350. margin-bottom: 0;
  6351. min-height: 65px;
  6352. justify-content: space-around;
  6353. width: 140px;
  6354. }
  6355. #header-top #block-socialnetwork-2 p a {
  6356. color: rgb(255, 255, 255);
  6357. font-size: 0;
  6358. }
  6359. #header-top #block-socialnetwork-2 p svg.ext {
  6360. display: none;
  6361. }
  6362. #header-top #block-socialnetwork-2 p .link-twitter {
  6363. display: flex;
  6364. background-color: black;
  6365. width: 40px;
  6366. justify-content: center;
  6367. align-items: flex-end;
  6368. }
  6369. #header-top #block-socialnetwork-2 p .link-twitter:before {
  6370. content: url("../images/pictos/logo_x_blanc.svg");
  6371. min-width: 30px;
  6372. padding-bottom: 0.5rem;
  6373. }
  6374. #header-top #block-socialnetwork-2 p .link-youtube {
  6375. display: flex;
  6376. background-color: black;
  6377. min-width: 40px;
  6378. justify-content: center;
  6379. align-items: flex-end;
  6380. }
  6381. #header-top #block-socialnetwork-2 p .link-youtube:before {
  6382. content: url("../images/pictos/youtube_white.svg");
  6383. min-width: 25px;
  6384. padding-bottom: 0.5rem;
  6385. }
  6386. #header-top #block-socialnetwork-2 p .link-linkedin {
  6387. display: flex;
  6388. background-color: black;
  6389. min-width: 40px;
  6390. justify-content: center;
  6391. align-items: flex-end;
  6392. }
  6393. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  6394. content: url("../images/pictos/linkedin_white.svg");
  6395. min-width: 35px;
  6396. padding-bottom: 0.2rem;
  6397. }
  6398. #header-top #block-burger {
  6399. z-index: 1;
  6400. background-color: rgb(0, 158, 227);
  6401. font-size: 0.7rem;
  6402. color: rgb(255, 255, 255);
  6403. display: block;
  6404. width: 7rem;
  6405. height: 100%;
  6406. margin-top: 0;
  6407. }
  6408. #header-top #block-burger :hover {
  6409. cursor: pointer;
  6410. }
  6411. #header-top #block-burger h2 {
  6412. padding-top: 1rem;
  6413. }
  6414. #header-top #block-burger h2:after {
  6415. display: block;
  6416. margin: auto;
  6417. height: 70px;
  6418. content: url('data:image/svg+xml,<svg width="70" height="50" xmlns="http://www.w3.org/2000/svg" version="1.1"> <path id="path930" d="M 5,13 H 65" stroke-linecap="round" stroke="white" stroke-width="3"/><path id="path930-3" d="M 5,25 H 65" stroke-linecap="round" stroke="white" stroke-width="3"/><path id="path930-6" d="M 5,37 H 65" stroke-linecap="round" stroke="white" stroke-width="3"/></svg>');
  6419. }
  6420. #header-top #block-burger #block-burger-menu {
  6421. display: block;
  6422. margin: 0;
  6423. align-self: center;
  6424. text-align: center;
  6425. }
  6426. #header-top #block-burger .ul1:not(.sous-liste) {
  6427. width: 300%;
  6428. position: relative;
  6429. right: 260px;
  6430. margin: 0;
  6431. padding-top: 2rem;
  6432. padding-bottom: 2rem;
  6433. z-index: 99;
  6434. }
  6435. #header-top #block-burger ul {
  6436. display: none;
  6437. background-color: rgb(0, 158, 227);
  6438. line-height: 2rem;
  6439. list-style: none;
  6440. }
  6441. #header-top #block-burger ul .ul1 .sous-liste a {
  6442. opacity: 1;
  6443. }
  6444. #header-top #block-burger ul a {
  6445. opacity: 1;
  6446. color: rgb(255, 255, 255);
  6447. font-weight: 800;
  6448. font-size: 1rem;
  6449. }
  6450. #header-top #block-burger.opened ul {
  6451. display: block;
  6452. }
  6453. #fotter-bottom {
  6454. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  6455. display: flex;
  6456. flex: 1 1 120px;
  6457. flex-direction: row;
  6458. background-color: rgb(255, 255, 255);
  6459. padding-top: 3rem;
  6460. }
  6461. @media (max-width: 810px) {
  6462. #fotter-bottom {
  6463. flex-direction: column;
  6464. padding-right: 1rem;
  6465. }
  6466. }
  6467. #fotter-bottom .region {
  6468. display: block;
  6469. padding-left: 2rem;
  6470. padding-right: 1rem;
  6471. padding-bottom: 1rem;
  6472. border-left: rgb(0, 158, 227) solid 1px;
  6473. }
  6474. #fotter-bottom .region h2 {
  6475. margin-top: 0;
  6476. color: rgb(9, 57, 139);
  6477. font-size: 1.2rem;
  6478. }
  6479. #fotter-bottom .region-footer-bottom-left {
  6480. margin-left: 3rem;
  6481. border: none;
  6482. }
  6483. @media (max-width: 810px) {
  6484. #fotter-bottom .region-footer-bottom-left {
  6485. width: 100%;
  6486. margin-left: 0rem;
  6487. }
  6488. }
  6489. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  6490. display: flex;
  6491. flex-direction: row;
  6492. justify-content: flex-start;
  6493. flex-wrap: wrap;
  6494. padding-top: 1rem;
  6495. }
  6496. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  6497. padding-right: 1rem;
  6498. padding-bottom: 1rem;
  6499. }
  6500. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  6501. width: auto;
  6502. height: 30px;
  6503. }
  6504. #fotter-bottom .region-footer-bottom-right {
  6505. display: flex;
  6506. flex-direction: column-reverse;
  6507. justify-content: flex-end;
  6508. }
  6509. @media (max-width: 810px) {
  6510. #fotter-bottom .region-footer-bottom-right {
  6511. width: 100%;
  6512. }
  6513. }
  6514. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  6515. margin-bottom: 1rem;
  6516. }
  6517. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  6518. margin-top: 0;
  6519. display: flex;
  6520. flex-direction: row-reverse;
  6521. justify-content: flex-end;
  6522. }
  6523. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  6524. color: rgb(255, 255, 255);
  6525. font-size: 0;
  6526. padding-left: 1rem;
  6527. }
  6528. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a.link-linkedin {
  6529. padding-left: 0;
  6530. }
  6531. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  6532. display: none;
  6533. }
  6534. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  6535. display: none;
  6536. }
  6537. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  6538. content: url("../images/pictos/logo_x_rond.png");
  6539. min-width: 50px;
  6540. align-self: center;
  6541. }
  6542. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  6543. display: flex;
  6544. }
  6545. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  6546. content: url("../images/pictos/youtube_rond.svg");
  6547. min-width: 50px;
  6548. }
  6549. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  6550. display: flex;
  6551. }
  6552. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  6553. content: url("../images/pictos/linkedin_rond.svg");
  6554. min-width: 50px;
  6555. }
  6556. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  6557. margin-top: 0;
  6558. color: rgb(9, 57, 139);
  6559. font-weight: 800;
  6560. list-style: none;
  6561. padding-left: 0;
  6562. }
  6563. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  6564. color: rgb(9, 57, 139);
  6565. font-size: 1.2rem;
  6566. text-decoration: underline;
  6567. margin-top: 0;
  6568. }
  6569. #fotter-bottom .region-footer-bottom-middle {
  6570. width: 60%;
  6571. }
  6572. @media (max-width: 810px) {
  6573. #fotter-bottom .region-footer-bottom-middle {
  6574. width: 100%;
  6575. }
  6576. }
  6577. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper {
  6578. display: flex;
  6579. flex-direction: row;
  6580. justify-content: flex-start;
  6581. flex-wrap: wrap;
  6582. }
  6583. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper .node-type-partenaires_logo_footer_ {
  6584. padding-right: 1rem;
  6585. padding-bottom: 1rem;
  6586. }
  6587. .slick-prev {
  6588. color: rgb(0, 158, 227);
  6589. left: 25px;
  6590. }
  6591. .path-frontpage .slick-dots {
  6592. bottom: -40px !important;
  6593. }
  6594. .path-frontpage .slick-prev::before,
  6595. .path-frontpage .slick-next::before {
  6596. opacity: 1;
  6597. }
  6598. /* Slider */
  6599. .slick-slider {
  6600. position: relative;
  6601. display: block;
  6602. box-sizing: border-box;
  6603. -webkit-touch-callout: none;
  6604. -webkit-user-select: none;
  6605. -khtml-user-select: none;
  6606. -moz-user-select: none;
  6607. -ms-user-select: none;
  6608. user-select: none;
  6609. -ms-touch-action: pan-y;
  6610. touch-action: pan-y;
  6611. -webkit-tap-highlight-color: transparent;
  6612. }
  6613. .slick-list {
  6614. position: relative;
  6615. overflow: hidden;
  6616. display: block;
  6617. margin: 0;
  6618. padding: 0;
  6619. }
  6620. .slick-list:focus {
  6621. outline: none;
  6622. }
  6623. .slick-list.dragging {
  6624. cursor: pointer;
  6625. cursor: hand;
  6626. }
  6627. .slick-slider .slick-track,
  6628. .slick-slider .slick-list {
  6629. -webkit-transform: translate3d(0, 0, 0);
  6630. -moz-transform: translate3d(0, 0, 0);
  6631. -ms-transform: translate3d(0, 0, 0);
  6632. -o-transform: translate3d(0, 0, 0);
  6633. transform: translate3d(0, 0, 0);
  6634. }
  6635. .slick-track {
  6636. position: relative;
  6637. left: 0;
  6638. top: 0;
  6639. display: block;
  6640. margin-left: auto;
  6641. margin-right: auto;
  6642. }
  6643. .slick-track:before, .slick-track:after {
  6644. content: "";
  6645. display: table;
  6646. }
  6647. .slick-track:after {
  6648. clear: both;
  6649. }
  6650. .slick-loading .slick-track {
  6651. visibility: hidden;
  6652. }
  6653. .slick-slide {
  6654. float: left;
  6655. height: 100%;
  6656. min-height: 1px;
  6657. display: none;
  6658. }
  6659. [dir=rtl] .slick-slide {
  6660. float: right;
  6661. }
  6662. .slick-slide img {
  6663. display: block;
  6664. }
  6665. .slick-slide.slick-loading img {
  6666. display: none;
  6667. }
  6668. .slick-slide.dragging img {
  6669. pointer-events: none;
  6670. }
  6671. .slick-initialized .slick-slide {
  6672. display: block;
  6673. }
  6674. .slick-loading .slick-slide {
  6675. visibility: hidden;
  6676. }
  6677. .slick-vertical .slick-slide {
  6678. display: block;
  6679. height: auto;
  6680. border: 1px solid transparent;
  6681. }
  6682. .slick-arrow.slick-hidden {
  6683. display: none;
  6684. }
  6685. /* Slider */
  6686. .slick-loading .slick-list {
  6687. background: #fff url("./ajax-loader.gif") center center no-repeat;
  6688. }
  6689. /* Icons */
  6690. /* Arrows */
  6691. .slick-prev,
  6692. .slick-next {
  6693. position: absolute;
  6694. display: block;
  6695. height: 60px;
  6696. width: 60px;
  6697. line-height: 0px;
  6698. font-size: 0px;
  6699. cursor: pointer;
  6700. background: transparent;
  6701. color: transparent;
  6702. top: 50%;
  6703. -webkit-transform: translate(0, -50%);
  6704. -ms-transform: translate(0, -50%);
  6705. transform: translate(0, -50%);
  6706. padding: 0;
  6707. border: none;
  6708. outline: none;
  6709. }
  6710. .slick-prev:hover,
  6711. .slick-next:hover {
  6712. outline: none;
  6713. background: transparent;
  6714. color: transparent;
  6715. }
  6716. .slick-prev:hover:before,
  6717. .slick-next:hover:before {
  6718. opacity: 0.2;
  6719. }
  6720. .slick-prev.slick-disabled:before,
  6721. .slick-next.slick-disabled:before {
  6722. opacity: 0;
  6723. }
  6724. .slick-prev:before,
  6725. .slick-next:before {
  6726. font-family: "marianne";
  6727. font-size: 60px;
  6728. line-height: 1;
  6729. color: rgb(0, 158, 227);
  6730. opacity: 0;
  6731. -webkit-font-smoothing: antialiased;
  6732. -moz-osx-font-smoothing: grayscale;
  6733. }
  6734. .slick-prev {
  6735. z-index: 1;
  6736. left: 25px;
  6737. }
  6738. [dir=rtl] .slick-prev {
  6739. left: auto;
  6740. right: 25px;
  6741. }
  6742. .slick-prev:before {
  6743. content: "←";
  6744. }
  6745. [dir=rtl] .slick-prev:before {
  6746. content: "→";
  6747. }
  6748. .slick-next {
  6749. right: 25px;
  6750. }
  6751. [dir=rtl] .slick-next {
  6752. left: 25px;
  6753. right: auto;
  6754. }
  6755. .slick-next:before {
  6756. content: "→";
  6757. }
  6758. [dir=rtl] .slick-next:before {
  6759. content: "←";
  6760. }
  6761. /* Dots */
  6762. .slick-dotted.slick-slider {
  6763. margin-bottom: 30px;
  6764. }
  6765. html.js body.node-type-actualite.node-id-88.path-node.page-node-type-actualite div.dialog-off-canvas-main-canvas div.layout-container main div.layout-content div.region.region-content div#block-contenudelapageprincipale.block.block-system.block-system-main-block div.layout.layout--threecol-25-50-25 div.layout__region.layout__region--top div.block-region-top div.block.block-ctools-block.block-entity-fieldnodefield-images div.field.field--name-field-images.field--type-image.field--label-hidden.field__items.slick-initialized.slick-slider.slick-dotted ul.slick-dots {
  6766. width: 600px;
  6767. }
  6768. .slick-dots {
  6769. list-style: none;
  6770. display: block;
  6771. text-align: center;
  6772. padding: 0;
  6773. margin: 0;
  6774. width: 100%;
  6775. }
  6776. .slick-dots li {
  6777. position: relative;
  6778. display: inline-block;
  6779. height: 20px;
  6780. width: 20px;
  6781. margin: 0 5px;
  6782. padding: 0;
  6783. cursor: pointer;
  6784. }
  6785. .slick-dots li button {
  6786. border: 0;
  6787. background: transparent;
  6788. display: block;
  6789. height: 20px;
  6790. width: 20px;
  6791. outline: none;
  6792. line-height: 0px;
  6793. font-size: 0px;
  6794. color: transparent;
  6795. padding: 5px;
  6796. cursor: pointer;
  6797. }
  6798. .slick-dots li button:hover, .slick-dots li button:focus {
  6799. outline: none;
  6800. }
  6801. .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  6802. opacity: 0.2;
  6803. }
  6804. .slick-dots li button:before {
  6805. position: absolute;
  6806. top: 0;
  6807. left: 0;
  6808. content: "•";
  6809. width: 20px;
  6810. height: 20px;
  6811. font-family: "marianne";
  6812. font-size: 50px;
  6813. line-height: 20px;
  6814. text-align: center;
  6815. color: black;
  6816. opacity: 0.2;
  6817. -webkit-font-smoothing: antialiased;
  6818. -moz-osx-font-smoothing: grayscale;
  6819. }
  6820. .slick-dots li.slick-active button:before {
  6821. color: black;
  6822. opacity: 0.5;
  6823. }
  6824. #views-exposed-form-projets-block-1 {
  6825. flex-direction: row;
  6826. position: relative;
  6827. align-items: center;
  6828. }
  6829. #views-exposed-form-base-de-donnees-block-1 {
  6830. flex-direction: column;
  6831. margin-top: 1rem;
  6832. }
  6833. @media (max-width: 479px) {
  6834. #views-exposed-form-base-de-donnees-block-1 {
  6835. justify-content: center;
  6836. }
  6837. }
  6838. #views-exposed-form-base-de-donnees-block-1 .js-form-item {
  6839. margin-right: 0 !important;
  6840. margin-bottom: 0.5rem !important;
  6841. padding: 0.2rem !important;
  6842. }
  6843. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  6844. #views-exposed-form-base-de-donnees-block-1 .js-form-item select {
  6845. width: 100%;
  6846. text-align: end;
  6847. }
  6848. #views-exposed-form-base-de-donnees-block-1 .js-form-item label {
  6849. padding-right: 0.5rem !important;
  6850. flex: 2 0 auto !important;
  6851. }
  6852. #views-exposed-form-base-de-donnees-block-1,
  6853. #views-exposed-form-projets-block-1 {
  6854. display: flex;
  6855. flex-wrap: wrap;
  6856. }
  6857. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  6858. #views-exposed-form-projets-block-1 .js-form-item {
  6859. display: flex;
  6860. flex-direction: row;
  6861. max-width: 100%;
  6862. margin-right: 1rem;
  6863. margin-bottom: 1rem;
  6864. padding: 0.5rem 1rem;
  6865. align-items: baseline;
  6866. border: solid black 0.5px;
  6867. justify-content: space-evenly;
  6868. }
  6869. @media (max-width: 810px) {
  6870. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  6871. #views-exposed-form-projets-block-1 .js-form-item {
  6872. display: flex;
  6873. flex-direction: row;
  6874. justify-content: space-between;
  6875. }
  6876. }
  6877. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  6878. #views-exposed-form-projets-block-1 .js-form-item label {
  6879. flex: 2 1 auto;
  6880. padding-right: 2rem;
  6881. }
  6882. #views-exposed-form-base-de-donnees-block-1 .js-form-item label::after,
  6883. #views-exposed-form-projets-block-1 .js-form-item label::after {
  6884. content: " : ";
  6885. }
  6886. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  6887. #views-exposed-form-projets-block-1 .js-form-item input {
  6888. flex: 2 1 auto;
  6889. max-width: 55%;
  6890. }
  6891. @media (max-width: 810px) {
  6892. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  6893. #views-exposed-form-projets-block-1 .js-form-item input {
  6894. max-width: 100%;
  6895. }
  6896. }
  6897. #views-exposed-form-base-de-donnees-block-1 .js-form-item .form-checkbox,
  6898. #views-exposed-form-projets-block-1 .js-form-item .form-checkbox {
  6899. margin-right: 1rem;
  6900. }
  6901. #views-exposed-form-base-de-donnees-block-1 .js-form-item .select-wrapper,
  6902. #views-exposed-form-projets-block-1 .js-form-item .select-wrapper {
  6903. margin: 0;
  6904. }
  6905. #views-exposed-form-base-de-donnees-block-1 .js-form-type-checkbox label::after,
  6906. #views-exposed-form-projets-block-1 .js-form-type-checkbox label::after {
  6907. content: none;
  6908. }
  6909. #views-exposed-form-base-de-donnees-block-1 .form-actions input,
  6910. #views-exposed-form-projets-block-1 .form-actions input {
  6911. color: white;
  6912. font-weight: 600;
  6913. text-transform: uppercase;
  6914. padding: 0.3rem 0.7rem;
  6915. background-color: rgb(0, 158, 227);
  6916. border: none;
  6917. }
  6918. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  6919. #views-exposed-form-projets-block-1 input,
  6920. #views-exposed-form-projets-block-1 select {
  6921. border: none;
  6922. background-color: transparent;
  6923. font-family: "Marianne";
  6924. font-size: 1rem;
  6925. }
  6926. article.node-type-ressource {
  6927. margin-bottom: 1rem;
  6928. padding-right: 1rem;
  6929. }
  6930. article.node-type-ressource h2 {
  6931. text-align: left !important;
  6932. }
  6933. article.node-type-ressource .ext {
  6934. color: black;
  6935. }
  6936. article.node-type-ressource svg.ext {
  6937. display: none;
  6938. }
  6939. article.node-type-ressource :visited {
  6940. color: black;
  6941. }
  6942. article.node-type-ressource a {
  6943. color: black;
  6944. }
  6945. article.node-type-ressource .wrapper-ressource {
  6946. display: flex;
  6947. flex-direction: column;
  6948. }
  6949. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource {
  6950. order: 2;
  6951. }
  6952. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  6953. order: 1;
  6954. }
  6955. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource,
  6956. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  6957. grid-column: 1;
  6958. text-transform: uppercase;
  6959. line-height: 1.1rem;
  6960. margin-top: 0.5rem;
  6961. }
  6962. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource a,
  6963. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media a {
  6964. color: rgb(0, 158, 227);
  6965. font-weight: 900;
  6966. font-size: 0.8rem;
  6967. pointer-events: none;
  6968. cursor: default;
  6969. }
  6970. article.node-type-ressource .wrapper-ressource .field--name-title {
  6971. grid-column: 2;
  6972. margin-top: 0.5rem;
  6973. order: 4;
  6974. margin-bottom: 0;
  6975. }
  6976. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  6977. margin: 0;
  6978. line-height: 1rem;
  6979. margin-left: 0 !important;
  6980. line-height: 0;
  6981. margin-bottom: 0 !important;
  6982. }
  6983. article.node-type-ressource .wrapper-ressource .field--name-title h2 a {
  6984. color: rgb(0, 0, 0);
  6985. font-size: 0.9rem;
  6986. font-weight: 900;
  6987. font-style: normal;
  6988. }
  6989. @media (max-width: 810px) {
  6990. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  6991. line-height: 0 !important;
  6992. }
  6993. }
  6994. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- {
  6995. grid-column: 2;
  6996. margin-top: 0.5rem;
  6997. font-weight: 800;
  6998. line-height: 1.1rem;
  6999. order: 6 !important;
  7000. font-size: 0.8rem;
  7001. }
  7002. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- p {
  7003. margin: 0;
  7004. }
  7005. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- .field__label {
  7006. display: none;
  7007. }
  7008. article.node-type-ressource .wrapper-ressource .field--name-field-sous-titre {
  7009. grid-column: 2;
  7010. margin-top: 0.8rem;
  7011. order: 5;
  7012. font-size: 0.9rem;
  7013. font-weight: 900;
  7014. line-height: 1.5;
  7015. }
  7016. article.node-type-ressource .wrapper-ressource .field--name-field-edition {
  7017. order: 7;
  7018. grid-column: 2;
  7019. margin-top: 0.5rem;
  7020. font-size: 0.8rem;
  7021. }
  7022. article.node-type-ressource .wrapper-ressource .field--name-field-edition p {
  7023. margin: 0;
  7024. }
  7025. article.node-type-ressource .wrapper-ressource .field--name-field-edition .field__label {
  7026. display: none;
  7027. }
  7028. article.node-type-ressource .wrapper-ressource .field--name-field-images {
  7029. order: 3;
  7030. grid-column: 1;
  7031. }
  7032. article.node-type-ressource .wrapper-ressource .field--name-field-images .field__item {
  7033. height: 100px;
  7034. }
  7035. article.node-type-ressource .wrapper-ressource .field--name-field-images img {
  7036. height: 100%;
  7037. width: auto;
  7038. border: solid 1px gray;
  7039. }
  7040. article.node-type-ressource .wrapper-ressource .field--name-field-date-de-parution {
  7041. grid-column: 2;
  7042. margin-top: 0.3rem;
  7043. order: 8;
  7044. font-size: 0.8rem;
  7045. }
  7046. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs {
  7047. order: 9;
  7048. grid-column: 2;
  7049. display: flex;
  7050. margin-top: 0.5rem;
  7051. flex-direction: row;
  7052. flex-wrap: wrap;
  7053. }
  7054. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item {
  7055. margin-right: 0.5rem;
  7056. padding-right: 0.3rem;
  7057. font-size: 0.7rem;
  7058. }
  7059. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item a {
  7060. background: rgb(9, 57, 139);
  7061. color: rgb(255, 255, 255);
  7062. font-weight: 800;
  7063. vertical-align: super;
  7064. padding-left: 0.1rem;
  7065. padding-right: 0.1rem;
  7066. display: inline-flex;
  7067. pointer-events: none;
  7068. cursor: default;
  7069. }
  7070. article.node-type-ressource .wrapper-ressource ul.links.inline {
  7071. display: none;
  7072. }
  7073. article.node-type-ressource.type-publications-issues-du-programme {
  7074. min-width: 300px;
  7075. }
  7076. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource {
  7077. display: grid;
  7078. grid-template-columns: 1fr 1.8fr;
  7079. grid-template-rows: repeat(5 1fr);
  7080. }
  7081. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-ressource {
  7082. order: 2;
  7083. grid-row: 2;
  7084. grid-column: 1/span 2;
  7085. margin-bottom: 0.5rem;
  7086. }
  7087. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-media {
  7088. order: 1;
  7089. grid-row: 1;
  7090. grid-column: 1/span 2;
  7091. }
  7092. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images {
  7093. order: 3;
  7094. grid-row: 3/span 5;
  7095. height: auto;
  7096. width: 90%;
  7097. }
  7098. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images img {
  7099. height: auto;
  7100. width: 90%;
  7101. border: 1px solid #a3a3a3;
  7102. }
  7103. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title {
  7104. grid-row: 3;
  7105. margin-top: 0;
  7106. padding-bottom: 0.8rem;
  7107. }
  7108. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 {
  7109. margin-left: 0 !important;
  7110. line-height: 0;
  7111. }
  7112. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 a {
  7113. color: rgb(0, 158, 227);
  7114. font-size: 1.3rem;
  7115. font-style: normal;
  7116. }
  7117. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre {
  7118. margin-top: 0;
  7119. line-height: 1;
  7120. grid-row: 4;
  7121. }
  7122. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a,
  7123. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a:visited {
  7124. grid-row: 4;
  7125. color: rgb(0, 158, 227);
  7126. font-size: 1rem;
  7127. font-weight: 800;
  7128. }
  7129. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-edition {
  7130. grid-row: 6;
  7131. line-height: 1.1;
  7132. }
  7133. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-date-de-parution {
  7134. grid-row: 7;
  7135. }
  7136. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-mots-clefs {
  7137. grid-row: 8;
  7138. margin-top: 0.5rem;
  7139. left: -0.2rem;
  7140. position: relative;
  7141. }
  7142. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-ressource {
  7143. order: 2;
  7144. }
  7145. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-media {
  7146. order: 1;
  7147. }
  7148. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-images {
  7149. order: 3;
  7150. }
  7151. @media (max-width: 479px) {
  7152. article.node-type-ressource {
  7153. margin-left: 0;
  7154. }
  7155. }
  7156. article.node-type-ressource.type-presse .field--name-field-images {
  7157. display: none;
  7158. }
  7159. .type-les-projets-en-images.views-row {
  7160. width: 50% !important;
  7161. min-width: 550px !important;
  7162. max-width: 0 !important;
  7163. }
  7164. @media (max-width: 479px) {
  7165. .type-les-projets-en-images.views-row {
  7166. min-width: 100% !important;
  7167. }
  7168. }
  7169. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  7170. display: grid;
  7171. grid-template-columns: 2fr 1fr !important;
  7172. width: 100%;
  7173. max-width: 100%;
  7174. column-gap: 1rem;
  7175. align-items: start;
  7176. }
  7177. @media (max-width: 479px) {
  7178. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  7179. display: flex;
  7180. flex-direction: column;
  7181. padding-left: 1rem !important;
  7182. }
  7183. }
  7184. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images {
  7185. grid-column: 1;
  7186. grid-row: 3/span 8;
  7187. width: 100%;
  7188. }
  7189. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images img {
  7190. width: 100%;
  7191. height: auto;
  7192. margin-top: 1rem;
  7193. object-fit: cover;
  7194. border: 1px solid #ccc;
  7195. }
  7196. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  7197. height: fit-content;
  7198. }
  7199. @media (max-width: 479px) {
  7200. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  7201. height: auto;
  7202. }
  7203. }
  7204. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-media {
  7205. grid-column: 1/span 2;
  7206. grid-row: 2;
  7207. }
  7208. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-ressource {
  7209. grid-column: 1/span 2;
  7210. grid-row: 1;
  7211. }
  7212. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title,
  7213. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre,
  7214. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s-,
  7215. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition,
  7216. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution,
  7217. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  7218. grid-column: 2;
  7219. width: 100%;
  7220. box-sizing: border-box;
  7221. padding: 0;
  7222. margin: 0;
  7223. }
  7224. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title {
  7225. grid-row: 3;
  7226. margin-bottom: 0.5rem;
  7227. }
  7228. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre {
  7229. grid-row: 4;
  7230. }
  7231. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s- {
  7232. grid-row: 5;
  7233. }
  7234. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition {
  7235. grid-row: 6;
  7236. line-height: 1;
  7237. }
  7238. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution {
  7239. grid-row: 7;
  7240. }
  7241. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  7242. grid-row: 8;
  7243. }
  7244. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource h2, .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource p {
  7245. margin: 0;
  7246. padding: 0;
  7247. }