bundle.css 346 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167
  1. /*!*******************************************************************************************************************************************************************!*\
  2. !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./scss/styles.scss ***!
  3. \*******************************************************************************************************************************************************************/
  4. @charset "UTF-8";
  5. /*eql*/
  6. /*setup*/
  7. /*global*/
  8. @font-face {
  9. font-family: "Font Awesome";
  10. src: url("../fonts/Font Awesome/fontawesome-webfont.woff2") format("woff2");
  11. font-weight: 400;
  12. font-style: normal;
  13. }
  14. /*marianne*/
  15. @font-face {
  16. font-family: "Marianne";
  17. src: url("../fonts/Marianne/Marianne-Thin.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin.woff") format("woff");
  18. font-weight: 300;
  19. font-style: normal;
  20. }
  21. @font-face {
  22. font-family: "Marianne";
  23. src: url("../fonts/Marianne/Marianne-Thin_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin_Italic.woff") format("woff");
  24. font-weight: 300;
  25. font-style: italic;
  26. }
  27. @font-face {
  28. font-family: "Marianne";
  29. src: url("../fonts/Marianne/Marianne-Light.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light.woff") format("woff");
  30. font-weight: 400;
  31. font-style: normal;
  32. }
  33. @font-face {
  34. font-family: "Marianne";
  35. src: url("../fonts/Marianne/Marianne-Light_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light_Italic.woff") format("woff");
  36. font-weight: 400;
  37. font-style: italic;
  38. }
  39. @font-face {
  40. font-family: "Marianne";
  41. src: url("../fonts/Marianne/Marianne-Regular.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular.woff") format("woff");
  42. font-weight: 600;
  43. font-style: normal;
  44. }
  45. @font-face {
  46. font-family: "Marianne";
  47. src: url("../fonts/Marianne/Marianne-Regular_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular_Italic.woff") format("woff");
  48. font-weight: 600;
  49. font-style: italic;
  50. }
  51. @font-face {
  52. font-family: "Marianne";
  53. src: url("../fonts/Marianne/Marianne-Medium.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium.woff") format("woff");
  54. font-weight: 800;
  55. font-style: normal;
  56. }
  57. @font-face {
  58. font-family: "Marianne";
  59. src: url("../fonts/Marianne/Marianne-Medium_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium_Italic.woff") format("woff");
  60. font-weight: 800;
  61. font-style: italic;
  62. }
  63. @font-face {
  64. font-family: "Marianne";
  65. src: url("../fonts/Marianne/Marianne-Bold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold.woff") format("woff");
  66. font-weight: 900;
  67. font-style: normal;
  68. }
  69. @font-face {
  70. font-family: "Marianne";
  71. src: url("../fonts/Marianne/Marianne-Bold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold_Italic.woff") format("woff");
  72. font-weight: 900;
  73. font-style: italic;
  74. }
  75. @font-face {
  76. font-family: "Marianne";
  77. src: url("../fonts/Marianne/Marianne-ExtraBold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold.woff") format("woff");
  78. font-weight: 1000;
  79. font-style: normal;
  80. }
  81. @font-face {
  82. font-family: "Marianne";
  83. src: url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff") format("woff");
  84. font-weight: 1000;
  85. font-style: italic;
  86. }
  87. /* Source Code Pro */
  88. @font-face {
  89. font-family: "Source Code Pro";
  90. src: url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff") format("woff");
  91. font-weight: 500;
  92. font-style: normal;
  93. }
  94. @font-face {
  95. font-family: "Source Code Pro";
  96. src: url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff") format("woff");
  97. font-weight: 1000;
  98. font-style: normal;
  99. }
  100. /* Colors used for EQL */
  101. .path-user .buttons-filtres-ressources {
  102. display: none;
  103. }
  104. @media screen {
  105. .print_only {
  106. display: none;
  107. }
  108. }
  109. .layout-container {
  110. font-family: "Marianne", sans-serif;
  111. margin: none;
  112. top: 0%;
  113. left: 0%;
  114. width: 100%;
  115. overflow: hidden;
  116. display: flex;
  117. flex-flow: row wrap;
  118. }
  119. .layout-container header {
  120. flex: 0 0 100%;
  121. }
  122. .layout-container main {
  123. position: relative;
  124. }
  125. .layout-container footer {
  126. flex: 0 0 100%;
  127. }
  128. .layout-content {
  129. padding-top: 10rem;
  130. padding-bottom: 6rem;
  131. }
  132. @media (max-width: 810px) {
  133. .layout-content {
  134. padding-top: 5rem;
  135. }
  136. }
  137. .path-frontpage {
  138. margin: 0;
  139. }
  140. .path-node {
  141. margin: 0;
  142. }
  143. .path-faq {
  144. margin: 0;
  145. }
  146. .path-ressources {
  147. margin: 0;
  148. }
  149. .path-webform {
  150. margin: 0;
  151. }
  152. .path-projets {
  153. margin: 0;
  154. }
  155. .path-incubateur {
  156. margin: 0;
  157. }
  158. main {
  159. width: 100%;
  160. }
  161. .main-content {
  162. margin-top: 7rem;
  163. }
  164. .field--name-field-titre .field__item {
  165. color: rgb(9, 57, 139);
  166. font-weight: 900;
  167. font-size: 2rem;
  168. }
  169. .field--name-field-titre .field__label {
  170. visibility: hidden;
  171. }
  172. .inter-titre {
  173. color: rgb(0, 158, 227);
  174. }
  175. a {
  176. text-decoration: none;
  177. }
  178. a.ext {
  179. color: black;
  180. }
  181. svg.ext {
  182. display: none;
  183. }
  184. @media (max-width: 959px) {
  185. #block-headermenu {
  186. display: none;
  187. }
  188. .page-node-type-static .layout__region--top {
  189. height: 23vh;
  190. }
  191. .page-node-type-static .layout__region--top .block-entity-fieldnodetitle {
  192. margin-top: 11vh;
  193. }
  194. .page-node-type-static .node-id-20 .field--name-field-partenaires .paragraph--type--partenaire {
  195. display: flex;
  196. flex-direction: column;
  197. }
  198. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  199. width: 70%;
  200. }
  201. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static div:first-child:not(.field__item):not(.field) {
  202. display: flex;
  203. flex-direction: column;
  204. }
  205. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  206. width: 100%;
  207. }
  208. }
  209. @media (max-width: 810px) {
  210. .page-node-type-static .layout__region--top {
  211. padding-bottom: 0rem;
  212. }
  213. .page-node-type-static .layout__region--top .block-entity-fieldnodetitle {
  214. margin-left: 8%;
  215. margin-right: 5%;
  216. }
  217. .page-node-type-static .layout__region--first .block-region-first {
  218. display: none;
  219. }
  220. .page-node-type-static .layout__region--second {
  221. flex: 0 1 80%;
  222. margin: auto;
  223. }
  224. .page-node-type-static .layout__region--third .block-region-third {
  225. margin: auto;
  226. }
  227. }
  228. @media (max-width: 479px) {
  229. #header-top #block-logogouv img {
  230. min-width: 45px;
  231. width: 70%;
  232. height: auto;
  233. }
  234. #header-top #block-logoeql img {
  235. min-width: 45px;
  236. width: 80%;
  237. height: auto;
  238. }
  239. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content {
  240. display: flex;
  241. flex-direction: column;
  242. }
  243. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 div:first-of-type {
  244. width: 90%;
  245. display: flex;
  246. margin: auto;
  247. }
  248. }
  249. /*global*/
  250. /* -------------------------
  251. Paged.js : format + compteur
  252. -------------------------- */
  253. @page {
  254. size: A4 portrait;
  255. }
  256. /* Pas de numéro sur cover / back-cover */
  257. /* -------------------------
  258. PRINT (Ctrl+P)
  259. -------------------------- */
  260. @media print {
  261. /* Cache l’UI du site */
  262. header[role=banner],
  263. footer[role=contentinfo],
  264. nav,
  265. .slick-arrow,
  266. .slick-dots,
  267. .layout__region--first {
  268. display: none !important;
  269. }
  270. .layout__region--top {
  271. flex: 0 1 100% !important;
  272. }
  273. .layout__region--top .block-entity-fieldnodefield-photo,
  274. .layout__region--top .top_right {
  275. width: 100% !important;
  276. }
  277. .top_top {
  278. flex-direction: column !important;
  279. }
  280. .layout__region--second {
  281. flex: 0 1 100% !important;
  282. margin: auto;
  283. margin-left: 3rem;
  284. }
  285. /* Cover */
  286. /* Optionnel : éviter l’URL après liens sur la cover */
  287. }
  288. /* -------------------------
  289. SCREEN preview (Paged.js)
  290. -------------------------- */
  291. .path-projets-complets .layout-container header {
  292. top: inherit !important;
  293. left: inherit !important;
  294. }
  295. .path-projets-complets span {
  296. display: none;
  297. }
  298. .path-projets-complets .print-header {
  299. display: none;
  300. }
  301. .path-projets-complets .view-header {
  302. display: flex;
  303. flex-direction: row;
  304. }
  305. .path-projets-complets .view-header::before {
  306. content: "2. ";
  307. margin-right: 1rem;
  308. font-weight: 600;
  309. font-size: 1.5rem;
  310. min-width: fit-content;
  311. }
  312. @media (max-width: 479px) {
  313. .path-projets-complets .view-header::before {
  314. padding-bottom: 1rem;
  315. }
  316. }
  317. .path-projets-complets .view-header {
  318. margin-left: 3rem;
  319. order: 2;
  320. margin-top: 5rem;
  321. }
  322. .path-projets-complets .view-header p {
  323. font-weight: 600;
  324. text-transform: uppercase;
  325. padding: 0.3rem 0.7rem;
  326. width: fit-content;
  327. background-color: rgb(0, 158, 227);
  328. border: none;
  329. margin: 0;
  330. }
  331. .path-projets-complets .view-header a {
  332. color: white;
  333. }
  334. .path-projets-complets .view-projets {
  335. margin-bottom: 4rem !important;
  336. display: flex;
  337. flex-direction: column;
  338. }
  339. @media screen {
  340. .path-projets-complets .view-projets {
  341. margin-top: 5rem !important;
  342. width: 80%;
  343. }
  344. }
  345. .path-projets-complets .view-projets .buttons-filtres-ressources {
  346. display: none;
  347. }
  348. .path-projets-complets .view-projets {
  349. margin: auto;
  350. }
  351. .path-projets-complets .view-projets .view-filters {
  352. order: 1;
  353. margin-top: 4rem;
  354. margin-left: 3rem;
  355. padding-left: 0.5rem;
  356. display: flex;
  357. flex-direction: column;
  358. }
  359. @media (max-width: 479px) {
  360. .path-projets-complets .view-projets .view-filters {
  361. flex-direction: column;
  362. padding-bottom: 3rem;
  363. margin-top: 0rem;
  364. }
  365. }
  366. .path-projets-complets .view-projets .view-filters::before {
  367. content: "1. Sélectionner les projets à imprimer :";
  368. margin-right: 2rem;
  369. margin-bottom: 1rem;
  370. font-weight: 600;
  371. font-size: 1.5rem;
  372. min-width: fit-content;
  373. }
  374. @media (max-width: 479px) {
  375. .path-projets-complets .view-projets .view-filters::before {
  376. padding-bottom: 1rem;
  377. }
  378. }
  379. .path-projets-complets .view-projets .view-content {
  380. order: 3;
  381. }
  382. .path-projets-complets .view-projets .field--name-title {
  383. order: 2;
  384. font-family: "Marianne";
  385. font-size: 2rem;
  386. font-weight: 800;
  387. color: rgb(0, 158, 227);
  388. }
  389. @media (max-width: 1624px) {
  390. .path-projets-complets .view-projets .field--name-title {
  391. font-size: 2.3rem;
  392. }
  393. }
  394. @media (max-width: 1384px) {
  395. .path-projets-complets .view-projets .field--name-title {
  396. font-size: 2rem;
  397. }
  398. }
  399. @media (max-width: 1216px) {
  400. .path-projets-complets .view-projets .field--name-title {
  401. font-size: 2rem;
  402. }
  403. }
  404. @media (max-width: 810px) {
  405. .path-projets-complets .view-projets .field--name-title {
  406. font-size: 1.7rem;
  407. }
  408. }
  409. .path-projets-complets .view-projets .field--name-title a {
  410. color: rgb(0, 158, 227);
  411. }
  412. .path-projets-complets .view-projets .field--name-field-equipe {
  413. order: 3;
  414. color: rgb(9, 57, 139);
  415. font-size: 1.5rem;
  416. font-weight: 900;
  417. text-transform: uppercase;
  418. }
  419. @media (max-width: 1624px) {
  420. .path-projets-complets .view-projets .field--name-field-equipe {
  421. font-size: 1.3rem;
  422. }
  423. }
  424. @media (max-width: 1216px) {
  425. .path-projets-complets .view-projets .field--name-field-equipe {
  426. font-size: 1.1rem;
  427. }
  428. }
  429. @media (max-width: 810px) {
  430. .path-projets-complets .view-projets .field--name-field-equipe {
  431. font-size: 1rem;
  432. }
  433. }
  434. .path-projets-complets .view-projets .field--name-field-equipe .field__label {
  435. display: none;
  436. }
  437. .path-projets-complets .view-projets .field--name-field-region .field__label {
  438. display: none;
  439. }
  440. .path-projets-complets .view-projets .field--name-field-region {
  441. display: flex;
  442. align-items: center;
  443. gap: 0.5rem;
  444. margin-top: 1rem;
  445. }
  446. .path-projets-complets .view-projets .field--name-field-region::before {
  447. content: "";
  448. display: block;
  449. width: 20px;
  450. height: 20px;
  451. background: url("../images/pictos/picto_lieu.svg") no-repeat center;
  452. background-size: contain;
  453. }
  454. .path-projets-complets .view-projets .field--name-field-incube {
  455. order: 4;
  456. display: inline-flex;
  457. width: fit-content;
  458. background-color: rgb(225, 0, 15);
  459. color: white;
  460. font-weight: 800;
  461. padding-right: 0.3rem;
  462. padding-left: 0.2rem;
  463. margin-bottom: 1rem;
  464. margin-top: 1rem;
  465. }
  466. .path-projets-complets .view-projets .field--name-field-incube::before {
  467. content: " Projet ";
  468. padding-right: 0.5rem;
  469. }
  470. .path-projets-complets .view-projets .field--name-field-incube .field__label {
  471. display: inline;
  472. }
  473. .path-projets-complets .view-projets .field--name-field-incube .field__item {
  474. display: none;
  475. }
  476. .path-projets-complets .view-projets .field--name-field-neuf-rehabilitation,
  477. .path-projets-complets .view-projets .field--name-field-encours-fini {
  478. display: none;
  479. }
  480. @media screen {
  481. .path-projets-complets .view-projets .node-type-projet {
  482. visibility: hidden;
  483. }
  484. }
  485. @media print {
  486. * {
  487. box-shadow: none !important;
  488. }
  489. img {
  490. max-width: 100%;
  491. height: auto;
  492. }
  493. @page {}
  494. .layout-container {
  495. display: block;
  496. }
  497. .path-projets-complets .view-header {
  498. margin-top: 0 !important;
  499. }
  500. .path-projets-complets .layout-content {
  501. margin-top: 0 !important;
  502. width: 95% !important;
  503. }
  504. .path-projets-complets .layout-content .print-header {
  505. position: relative !important;
  506. top: auto !important;
  507. right: auto !important;
  508. display: flex !important;
  509. justify-content: space-between;
  510. align-items: center;
  511. width: 100%;
  512. margin-bottom: 3rem;
  513. padding-bottom: 1rem;
  514. border-bottom: 1px solid #ccc;
  515. break-after: avoid;
  516. page-break-after: avoid;
  517. }
  518. .path-projets-complets .layout-content .print-header__left,
  519. .path-projets-complets .layout-content .print-header__right {
  520. display: flex;
  521. align-items: center;
  522. gap: 1rem;
  523. }
  524. .path-projets-complets .layout-content .print-header img {
  525. max-height: 55px;
  526. width: auto;
  527. }
  528. .path-projets-complets .layout-content .print-header__text {
  529. text-transform: uppercase;
  530. font-family: "Source Code Pro";
  531. color: rgb(9, 57, 139);
  532. font-size: 0.8rem;
  533. font-weight: 500;
  534. text-transform: uppercase;
  535. text-align: right;
  536. }
  537. .path-projets-complets .layout-content .view-header,
  538. .path-projets-complets .layout-content .view-filters {
  539. display: none;
  540. }
  541. .path-projets-complets .layout-content .views-row .node-type-projet {
  542. border-bottom: none;
  543. }
  544. .path-projets-complets .layout-content .views-row {
  545. break-after: page;
  546. page-break-after: always;
  547. }
  548. .path-projets-complets .layout-content .views-row .projet-header-print-content {
  549. width: 80%;
  550. margin: auto;
  551. }
  552. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-title {
  553. font-size: 1.2rem;
  554. }
  555. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__item:nth-child(n+8) {
  556. display: none;
  557. }
  558. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .image-field-caption {
  559. display: none;
  560. }
  561. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__label {
  562. display: none;
  563. }
  564. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__items {
  565. height: 100%;
  566. display: grid;
  567. gap: 4px;
  568. }
  569. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__item {
  570. overflow: visible;
  571. aspect-ratio: 3.5/2;
  572. }
  573. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__item img {
  574. width: 100%;
  575. height: 100%;
  576. object-fit: cover;
  577. display: block;
  578. }
  579. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .image-field-caption {
  580. display: inline-block;
  581. width: 100%;
  582. z-index: 2;
  583. font-size: 6pt;
  584. line-height: 1;
  585. margin-left: 0;
  586. margin-top: 0;
  587. margin-bottom: 0;
  588. }
  589. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__items:has(.field__item:only-child) {
  590. grid-template-columns: 1fr;
  591. }
  592. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__items:has(.field__item:only-child) .field__item {
  593. grid-column: 1;
  594. }
  595. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__items:has(.field__item:nth-child(2)) {
  596. grid-template-columns: repeat(3, 1fr);
  597. }
  598. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__items:has(.field__item:nth-child(2)) .field__item:first-child {
  599. grid-column: 1/4;
  600. }
  601. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__items .field__item:nth-child(n+8) {
  602. display: none;
  603. }
  604. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-title {
  605. order: 2;
  606. font-family: "Marianne";
  607. font-size: 1rem;
  608. font-weight: 800;
  609. color: rgb(0, 158, 227);
  610. }
  611. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-title a {
  612. color: rgb(0, 158, 227);
  613. }
  614. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-equipe {
  615. order: 3;
  616. color: rgb(9, 57, 139);
  617. font-size: 0.9rem;
  618. font-weight: 900;
  619. text-transform: uppercase;
  620. }
  621. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-equipe .field__label {
  622. display: none;
  623. }
  624. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-incube {
  625. order: 4;
  626. font-size: 8pt;
  627. display: inline-flex;
  628. width: fit-content;
  629. background-color: rgb(225, 0, 15);
  630. color: white;
  631. font-weight: 800;
  632. padding-right: 0.3rem;
  633. padding-left: 0.2rem;
  634. margin-bottom: 1rem;
  635. }
  636. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-incube::before {
  637. content: " Projet ";
  638. padding-right: 0.5rem;
  639. }
  640. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-incube .field__label {
  641. display: inline;
  642. }
  643. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-incube .field__item {
  644. display: none;
  645. }
  646. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-neuf-rehabilitation,
  647. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-encours-fini {
  648. display: none;
  649. }
  650. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-region {
  651. display: flex;
  652. align-items: center;
  653. gap: 0.5rem;
  654. }
  655. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-region::before {
  656. content: "";
  657. display: block;
  658. width: 20px;
  659. height: 20px;
  660. background: url("../images/pictos/picto_lieu.svg") no-repeat center;
  661. background-size: contain;
  662. }
  663. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-moa {
  664. order: 6;
  665. }
  666. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-projet {
  667. order: 7;
  668. }
  669. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-etape-du-projet {
  670. order: 8;
  671. }
  672. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-textes {
  673. order: 9;
  674. }
  675. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-textes .field__label {
  676. display: none;
  677. }
  678. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-etape-du-projet a,
  679. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-projet a,
  680. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-moa a {
  681. color: black;
  682. }
  683. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-etape-du-projet .field__label,
  684. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-projet .field__label,
  685. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-moa .field__label {
  686. color: rgb(9, 57, 139);
  687. font-size: 0.9pt;
  688. font-weight: 900;
  689. text-transform: uppercase;
  690. margin-bottom: 0 !important;
  691. flex-direction: row;
  692. }
  693. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-etape-du-projet .field__label::after,
  694. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-projet .field__label::after,
  695. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-moa .field__label::after {
  696. content: ":";
  697. padding-left: 0.5rem;
  698. }
  699. .path-projets-complets .layout-content .views-row .projet-header-print .path-projets-complets .layout-content {
  700. width: 100% !important;
  701. margin: 0 auto !important;
  702. }
  703. .path-projets-complets .layout-content .views-row .projet-header-print .path-projets-complets .projet-content {
  704. display: block !important;
  705. }
  706. .path-projets-complets .layout-content .views-row .projet-header-print .path-projets-complets .field--name-field-photo .field__items {
  707. display: block !important;
  708. height: auto !important;
  709. }
  710. .path-projets-complets .layout-content .views-row .projet-header-print .path-projets-complets .field--name-field-photo .field__item {
  711. display: block !important;
  712. aspect-ratio: auto !important;
  713. overflow: visible !important;
  714. margin-bottom: 4mm;
  715. }
  716. .path-projets-complets .layout-content .views-row .projet-header-print .path-projets-complets .field--name-field-photo .field__item img {
  717. width: 100% !important;
  718. height: auto !important;
  719. object-fit: contain !important;
  720. display: block;
  721. }
  722. .path-projets-complets .layout-content .views-row .projet-body-print {
  723. width: 80%;
  724. margin: auto;
  725. padding-top: 3rem;
  726. }
  727. .path-projets-complets .layout-content .views-row .paragraph {
  728. break-inside: avoid;
  729. page-break-inside: avoid;
  730. }
  731. .path-projets-complets .views-row {
  732. page-break-before: always;
  733. break-before: page;
  734. }
  735. .path-projets-complets .views-row:first-child {
  736. page-break-before: auto;
  737. break-before: auto;
  738. }
  739. .path-projets-complets .projet-header-print {
  740. page-break-after: always;
  741. break-after: page;
  742. }
  743. }
  744. .field--name-field-etape-du-projet,
  745. .field--name-field-type-de-projet,
  746. .field--name-field-type-de-moa {
  747. margin-bottom: 1rem;
  748. }
  749. .field--name-field-etape-du-projet a,
  750. .field--name-field-type-de-projet a,
  751. .field--name-field-type-de-moa a {
  752. color: black;
  753. }
  754. .field--name-field-etape-du-projet .field__label,
  755. .field--name-field-type-de-projet .field__label,
  756. .field--name-field-type-de-moa .field__label {
  757. width: fit-content;
  758. color: rgb(9, 57, 139);
  759. font-size: 1.2rem;
  760. font-weight: 900;
  761. text-transform: uppercase;
  762. margin-bottom: 0 !important;
  763. flex-direction: row;
  764. }
  765. .field--name-field-etape-du-projet .field__label::after,
  766. .field--name-field-type-de-projet .field__label::after,
  767. .field--name-field-type-de-moa .field__label::after {
  768. content: ":";
  769. padding-left: 0.5rem;
  770. }
  771. .field--name-field-etape-du-projet .field__item,
  772. .field--name-field-type-de-projet .field__item,
  773. .field--name-field-type-de-moa .field__item {
  774. width: fit-content;
  775. }
  776. .field--name-field-textes {
  777. margin-top: 2rem;
  778. }
  779. .field--name-field-textes .field__label {
  780. display: none !important;
  781. }
  782. .field--name-field-textes .field--name-field-titre {
  783. color: rgb(9, 57, 139);
  784. font-size: 1.2rem;
  785. font-weight: 900;
  786. text-transform: uppercase;
  787. margin-bottom: 0 !important;
  788. flex-direction: row;
  789. }
  790. .field--name-field-textes .field--name-field-titre::after {
  791. content: " :";
  792. padding-left: 0.5rem;
  793. }
  794. .field--name-field-textes ul {
  795. margin-top: 0;
  796. }
  797. .field--name-field-textes p {
  798. margin-top: 0.5rem;
  799. }
  800. .field--name-field-textes .paragraph--type--texte {
  801. margin-top: 1.5rem;
  802. }
  803. .field--name-field-textes .paragraph--type--texte .field--name-field-titre {
  804. margin-bottom: 1rem;
  805. }
  806. /*pages*/
  807. /*
  808. @import "pages/partials/header_footer";
  809. @import "pages/home";
  810. */
  811. .path-node.page-node-type-static .layout-container {
  812. overflow: unset;
  813. }
  814. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  815. padding-bottom: 3rem;
  816. height: 30vh;
  817. }
  818. @media (max-width: 810px) {
  819. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  820. padding-bottom: 0rem;
  821. }
  822. }
  823. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  824. width: fit-content;
  825. margin-left: 11%;
  826. margin-top: 15vh;
  827. }
  828. @media (max-width: 810px) {
  829. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  830. margin-left: 8%;
  831. margin-right: 5%;
  832. }
  833. }
  834. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle .field--name-title {
  835. display: inline;
  836. font-family: "Source Code Pro";
  837. font-size: 2rem;
  838. font-weight: 800;
  839. text-transform: uppercase;
  840. }
  841. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first {
  842. position: relative;
  843. }
  844. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  845. display: flex;
  846. justify-content: flex-end;
  847. position: -webkit-sticky;
  848. position: sticky;
  849. top: 10rem;
  850. }
  851. @media (max-width: 810px) {
  852. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  853. display: none;
  854. }
  855. }
  856. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  857. display: flex;
  858. width: 50%;
  859. background-color: rgb(255, 255, 255);
  860. padding-right: 2rem;
  861. }
  862. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  863. display: flex;
  864. font-size: 1rem;
  865. font-weight: 1000;
  866. color: rgb(9, 57, 139);
  867. border-bottom: 1px solid rgb(0, 158, 227);
  868. padding-bottom: 0.8rem;
  869. padding-right: 1rem;
  870. margin-top: 1rem;
  871. scroll-margin-top: 7em;
  872. }
  873. .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 {
  874. text-decoration: underline;
  875. }
  876. @media (max-width: 810px) {
  877. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  878. flex: 0 1 80%;
  879. margin: auto;
  880. }
  881. }
  882. @media (max-width: 479px) {
  883. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  884. padding-top: 5rem;
  885. }
  886. }
  887. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes {
  888. margin-top: 1rem;
  889. background-color: rgb(255, 255, 255);
  890. }
  891. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  892. font-size: 1.5rem;
  893. font-weight: 1000;
  894. font-family: "Source Code Pro", monospace;
  895. color: rgb(9, 57, 139);
  896. text-transform: uppercase;
  897. margin-top: 2rem;
  898. margin-bottom: 0.8rem;
  899. }
  900. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 {
  901. text-transform: none !important;
  902. }
  903. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  904. width: 100%;
  905. height: auto;
  906. }
  907. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  908. padding: 0.5rem 1rem 1rem 1.5rem;
  909. }
  910. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes p {
  911. margin-top: 0;
  912. }
  913. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  914. margin-top: 1rem;
  915. display: flex;
  916. flex-direction: column;
  917. width: 70%;
  918. }
  919. @media (max-width: 810px) {
  920. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  921. margin: auto;
  922. }
  923. }
  924. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  925. height: fit-content;
  926. border: 2px solid rgb(0, 158, 227);
  927. background-color: rgb(255, 255, 255);
  928. }
  929. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers {
  930. min-height: 4rem;
  931. background: rgb(255, 255, 255);
  932. color: rgb(0, 158, 227);
  933. padding-left: 0.8rem;
  934. padding-top: 1rem;
  935. padding-bottom: 1rem;
  936. padding-right: 0.5rem;
  937. }
  938. .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) {
  939. display: none;
  940. }
  941. .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 {
  942. height: inherit;
  943. margin: auto;
  944. }
  945. .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 {
  946. content: url("../images/pictos/download.png");
  947. height: auto;
  948. padding-right: 1rem;
  949. }
  950. .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 {
  951. hyphens: auto;
  952. display: inline-flex;
  953. color: rgb(0, 158, 227);
  954. font-weight: 800;
  955. align-items: center;
  956. }
  957. .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 {
  958. margin: auto;
  959. height: fit-content;
  960. border: 2px solid rgb(0, 158, 227);
  961. min-height: 2rem;
  962. background: rgb(255, 255, 255);
  963. color: rgb(0, 158, 227);
  964. padding-left: 0.8rem;
  965. padding-top: 1rem;
  966. padding-bottom: 1rem;
  967. margin-bottom: 1rem;
  968. padding-right: 0.5rem;
  969. }
  970. .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 {
  971. display: inline-flex;
  972. justify-items: center;
  973. color: rgb(0, 158, 227);
  974. font-weight: 800;
  975. align-items: center;
  976. }
  977. .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 {
  978. content: url("../images/pictos/external_link.png");
  979. height: auto;
  980. padding-right: 1rem;
  981. }
  982. .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 {
  983. display: none;
  984. }
  985. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  986. margin-top: 3rem;
  987. }
  988. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  989. font-size: 0.8rem;
  990. color: rgb(0, 0, 0);
  991. font-weight: 900;
  992. }
  993. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  994. border: 2px solid rgb(0, 158, 227);
  995. background-color: rgb(255, 255, 255);
  996. margin-bottom: 1rem;
  997. padding: 1rem;
  998. }
  999. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div {
  1000. display: flex;
  1001. flex-direction: column;
  1002. }
  1003. .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 {
  1004. order: 2;
  1005. text-transform: uppercase;
  1006. color: rgb(0, 158, 227);
  1007. font-weight: 900;
  1008. font-size: 0.8rem;
  1009. }
  1010. .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 {
  1011. order: 3;
  1012. }
  1013. .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 {
  1014. margin: 0;
  1015. }
  1016. .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 {
  1017. color: rgb(0, 0, 0);
  1018. font-size: 1rem;
  1019. font-weight: 900;
  1020. }
  1021. .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 {
  1022. order: 4;
  1023. }
  1024. .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- {
  1025. order: 5;
  1026. font-weight: 800;
  1027. }
  1028. .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 {
  1029. margin: 0;
  1030. }
  1031. .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 {
  1032. display: none;
  1033. }
  1034. .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 {
  1035. margin: 0;
  1036. }
  1037. .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 {
  1038. display: none;
  1039. }
  1040. .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 {
  1041. order: 1;
  1042. width: 25%;
  1043. }
  1044. .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 {
  1045. width: 100%;
  1046. height: auto;
  1047. border: solid 1px gray;
  1048. }
  1049. .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 {
  1050. order: 6;
  1051. }
  1052. .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 {
  1053. display: none;
  1054. }
  1055. .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 {
  1056. order: 7;
  1057. display: flex;
  1058. margin-top: 0.8rem;
  1059. flex-direction: row;
  1060. flex-wrap: wrap;
  1061. }
  1062. .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 {
  1063. display: none;
  1064. }
  1065. .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 {
  1066. display: flex;
  1067. flex-direction: row;
  1068. flex-wrap: wrap;
  1069. }
  1070. .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 {
  1071. padding-bottom: 0.5rem;
  1072. margin-right: 0.5rem;
  1073. padding-right: 0.3rem;
  1074. font-size: 0.8rem;
  1075. }
  1076. .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 {
  1077. background: rgb(9, 57, 139);
  1078. color: rgb(255, 255, 255);
  1079. font-weight: 800;
  1080. vertical-align: super;
  1081. padding-left: 0.1rem;
  1082. padding-right: 0.1rem;
  1083. display: inline-flex;
  1084. }
  1085. .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 {
  1086. display: none;
  1087. }
  1088. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  1089. width: 100vw;
  1090. height: auto;
  1091. padding-top: 5rem;
  1092. background: rgba(0, 158, 227, 0.2);
  1093. }
  1094. @media (max-width: 810px) {
  1095. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  1096. height: auto;
  1097. }
  1098. }
  1099. @media (max-width: 792px), (max-width: 724px), (max-width: 479px) {
  1100. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  1101. max-height: fit-content;
  1102. padding-top: 2rem;
  1103. }
  1104. }
  1105. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content {
  1106. height: auto;
  1107. }
  1108. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row-wrapper {
  1109. margin-bottom: 0;
  1110. }
  1111. @media (max-width: 810px) {
  1112. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  1113. width: 100vw !important;
  1114. height: auto !important;
  1115. }
  1116. }
  1117. @media (max-width: 479px) {
  1118. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  1119. height: auto !important;
  1120. width: 100vw !important;
  1121. }
  1122. }
  1123. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list.draggable {
  1124. padding-left: 0px !important;
  1125. }
  1126. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  1127. color: rgb(0, 0, 0);
  1128. line-height: 1.5rem;
  1129. width: 80%;
  1130. height: auto;
  1131. margin: auto;
  1132. margin-bottom: 2rem;
  1133. }
  1134. @media (max-width: 810px) {
  1135. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  1136. width: 90%;
  1137. height: auto;
  1138. }
  1139. }
  1140. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home {
  1141. display: flex;
  1142. flex-direction: row;
  1143. justify-content: space-between;
  1144. margin-left: 2rem;
  1145. }
  1146. @media (max-width: 810px) {
  1147. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home {
  1148. display: flex;
  1149. flex-direction: column;
  1150. height: auto;
  1151. margin-left: 0;
  1152. }
  1153. }
  1154. .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 {
  1155. width: 50%;
  1156. display: flex;
  1157. justify-content: end;
  1158. }
  1159. @media (max-width: 810px) {
  1160. .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 {
  1161. width: 100%;
  1162. }
  1163. }
  1164. .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 {
  1165. display: flex;
  1166. max-height: 420px;
  1167. }
  1168. .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 {
  1169. max-width: 100%;
  1170. max-height: 456px;
  1171. object-fit: cover;
  1172. object-position: center;
  1173. }
  1174. @media (max-width: 810px) {
  1175. .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 {
  1176. max-height: 310px;
  1177. max-width: 100%;
  1178. object-fit: cover;
  1179. padding-left: 0;
  1180. margin-bottom: 1rem;
  1181. }
  1182. }
  1183. @media (max-width: 724px) {
  1184. .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 {
  1185. max-height: 400px;
  1186. }
  1187. }
  1188. @media (max-width: 680px) {
  1189. .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 {
  1190. max-height: 200px;
  1191. object-fit: cover;
  1192. margin: auto;
  1193. padding-left: 0;
  1194. padding-bottom: 1rem;
  1195. }
  1196. }
  1197. .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 {
  1198. width: 45%;
  1199. align-content: center;
  1200. color: rgb(9, 57, 139) !important;
  1201. }
  1202. @media (max-width: 810px) {
  1203. .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 {
  1204. width: 100%;
  1205. }
  1206. }
  1207. .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,
  1208. .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,
  1209. .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,
  1210. .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,
  1211. .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,
  1212. .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 {
  1213. display: none;
  1214. }
  1215. .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 {
  1216. font-size: 1.3rem;
  1217. }
  1218. @media (max-width: 811px) {
  1219. .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 {
  1220. font-size: 1rem;
  1221. }
  1222. }
  1223. .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 {
  1224. display: flex !important;
  1225. flex-direction: row;
  1226. }
  1227. .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 {
  1228. display: flex;
  1229. flex-direction: row;
  1230. font-size: 1.3rem;
  1231. font-weight: 800;
  1232. padding-right: 1rem;
  1233. width: fit-content;
  1234. }
  1235. @media (min-width: 811px) {
  1236. .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 {
  1237. font-size: 0.9rem;
  1238. }
  1239. }
  1240. .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 {
  1241. font-size: 1.3rem;
  1242. padding-top: 1rem;
  1243. }
  1244. .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 {
  1245. display: none;
  1246. }
  1247. @media (max-width: 811px) {
  1248. .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 {
  1249. display: inline-flex;
  1250. font-size: 0.9rem;
  1251. padding-top: 0.5rem;
  1252. }
  1253. }
  1254. .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 {
  1255. line-height: 1.1;
  1256. font-size: 1.5rem;
  1257. padding-top: 1rem;
  1258. }
  1259. .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 {
  1260. color: rgb(9, 57, 139) !important;
  1261. }
  1262. @media (max-width: 810px) {
  1263. .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 {
  1264. font-size: 0.9rem;
  1265. padding-top: 0.5rem;
  1266. }
  1267. }
  1268. .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 {
  1269. display: none;
  1270. font-weight: 800;
  1271. }
  1272. @media (min-width: 811px) {
  1273. .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 {
  1274. font-size: 1.5rem;
  1275. }
  1276. }
  1277. .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 {
  1278. padding-top: 2rem;
  1279. font-size: 1.3rem;
  1280. }
  1281. @media (max-width: 810px) {
  1282. .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 {
  1283. font-size: 0.9rem;
  1284. padding-top: 1rem;
  1285. }
  1286. }
  1287. .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) {
  1288. width: 100%;
  1289. }
  1290. .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 {
  1291. margin: 0;
  1292. }
  1293. .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 {
  1294. color: rgb(0, 0, 0);
  1295. }
  1296. .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 {
  1297. display: none;
  1298. }
  1299. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  1300. visibility: visible;
  1301. display: flex;
  1302. flex-flow: row;
  1303. justify-content: center;
  1304. background: rgba(0, 158, 227, 0.2);
  1305. padding-top: 3rem;
  1306. padding-bottom: 3rem;
  1307. border-bottom: 5px solid rgb(0, 158, 227);
  1308. }
  1309. @media (max-width: 479px) {
  1310. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  1311. padding-top: 2rem;
  1312. padding-bottom: 2rem;
  1313. }
  1314. }
  1315. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien {
  1316. margin: auto;
  1317. height: fit-content;
  1318. padding: 0.4rem 1rem;
  1319. font-size: 0.8rem;
  1320. margin: 0;
  1321. background-color: rgb(255, 255, 255);
  1322. border: 2px solid rgb(0, 158, 227);
  1323. list-style: none;
  1324. display: inline-flex;
  1325. }
  1326. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien p {
  1327. margin: 0;
  1328. }
  1329. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a {
  1330. text-transform: uppercase;
  1331. font-weight: 700;
  1332. color: rgb(0, 158, 227);
  1333. display: inline-flex;
  1334. align-items: center;
  1335. }
  1336. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a::after {
  1337. 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>');
  1338. }
  1339. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) {
  1340. padding-top: 2rem;
  1341. padding-bottom: 4rem;
  1342. }
  1343. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  1344. width: 80%;
  1345. margin: auto;
  1346. }
  1347. @media (max-width: 479px) {
  1348. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  1349. width: 80%;
  1350. }
  1351. }
  1352. .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) {
  1353. display: flex;
  1354. flex-direction: row;
  1355. flex-wrap: wrap;
  1356. }
  1357. .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) {
  1358. order: 3;
  1359. }
  1360. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links {
  1361. z-index: 95;
  1362. flex: 0 0 100%;
  1363. width: 100%;
  1364. display: flex;
  1365. justify-content: center;
  1366. height: fit-content;
  1367. padding: 0;
  1368. font-size: 0.8rem;
  1369. margin: 0;
  1370. list-style: none;
  1371. }
  1372. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a {
  1373. text-transform: uppercase;
  1374. font-weight: 700;
  1375. color: rgb(0, 158, 227);
  1376. display: inline-flex;
  1377. align-items: center;
  1378. padding: 0.4rem 1rem;
  1379. font-size: 0.8rem;
  1380. margin: 0;
  1381. background-color: rgb(255, 255, 255);
  1382. border: 2px solid rgb(0, 158, 227);
  1383. }
  1384. .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 {
  1385. 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>');
  1386. }
  1387. @media (max-width: 810px) {
  1388. .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 {
  1389. width: 100%;
  1390. }
  1391. }
  1392. @media (max-width: 810px) {
  1393. .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 {
  1394. justify-content: center;
  1395. display: flex;
  1396. }
  1397. }
  1398. .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 {
  1399. width: 15rem;
  1400. height: auto;
  1401. }
  1402. @media (max-width: 810px) {
  1403. .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 {
  1404. width: 12rem;
  1405. padding-bottom: 1rem;
  1406. }
  1407. }
  1408. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-title {
  1409. display: none;
  1410. }
  1411. .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 {
  1412. flex: 1 1 50px;
  1413. padding-left: 1rem;
  1414. }
  1415. @media (max-width: 810px) {
  1416. .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 {
  1417. padding-left: 0em;
  1418. flex: 1 1 100%;
  1419. }
  1420. }
  1421. @media (max-width: 479px) {
  1422. .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 {
  1423. padding-left: 0em;
  1424. }
  1425. }
  1426. .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 {
  1427. background-color: rgb(255, 255, 255);
  1428. font-size: 1.5rem;
  1429. width: 110%;
  1430. padding-bottom: 2rem;
  1431. margin-block-start: 0;
  1432. text-align: start !important;
  1433. }
  1434. @media (max-width: 810px) {
  1435. .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 {
  1436. font-size: 1.2rem;
  1437. width: 100%;
  1438. }
  1439. }
  1440. .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 {
  1441. flex: 0 0 80%;
  1442. padding-top: 4rem;
  1443. margin: auto;
  1444. }
  1445. @media (max-width: 479px) {
  1446. .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 {
  1447. flex: 0 0 100%;
  1448. }
  1449. }
  1450. .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) {
  1451. display: none;
  1452. }
  1453. .path-frontpage .block-views-blockprojets-block-4 {
  1454. border-top: 5px solid rgb(0, 158, 227);
  1455. background: rgba(0, 158, 227, 0.2);
  1456. padding-top: 2rem;
  1457. padding-bottom: 4rem;
  1458. }
  1459. @media (max-width: 810px) {
  1460. .path-frontpage .block-views-blockprojets-block-4 {
  1461. padding-bottom: 0rem;
  1462. }
  1463. }
  1464. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  1465. width: 80%;
  1466. margin: auto;
  1467. padding-top: 1rem;
  1468. padding-bottom: 5rem;
  1469. text-transform: uppercase;
  1470. color: rgb(225, 0, 15);
  1471. font-family: "Source Code Pro";
  1472. font-weight: 1000;
  1473. }
  1474. @media (max-width: 479px) {
  1475. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  1476. padding-bottom: 1rem;
  1477. }
  1478. }
  1479. .path-frontpage .block-views-blockprojets-block-4 .view-projets {
  1480. width: 80%;
  1481. margin: auto;
  1482. }
  1483. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  1484. display: flex;
  1485. flex-direction: row;
  1486. justify-content: space-between;
  1487. }
  1488. @media (max-width: 810px) {
  1489. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  1490. flex-direction: column;
  1491. }
  1492. }
  1493. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  1494. width: 49%;
  1495. }
  1496. @media (max-width: 810px) {
  1497. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  1498. width: 100%;
  1499. margin-bottom: 1rem;
  1500. }
  1501. }
  1502. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  1503. color: rgb(9, 57, 139);
  1504. line-height: 1.5rem;
  1505. }
  1506. @media (max-width: 810px) {
  1507. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  1508. padding-left: 0rem;
  1509. padding-right: 0rem;
  1510. padding-top: 2rem;
  1511. }
  1512. }
  1513. .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 {
  1514. display: flex;
  1515. flex-direction: column;
  1516. max-height: fit-content;
  1517. }
  1518. .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 {
  1519. color: rgb(9, 57, 139);
  1520. }
  1521. .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 {
  1522. order: 1;
  1523. }
  1524. .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 {
  1525. display: none;
  1526. }
  1527. .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 {
  1528. display: block;
  1529. }
  1530. .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 {
  1531. width: 100%;
  1532. height: auto;
  1533. max-height: 400px;
  1534. object-fit: cover;
  1535. }
  1536. .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 {
  1537. order: 2;
  1538. display: flex;
  1539. text-transform: uppercase;
  1540. font-size: 0.9rem;
  1541. font-weight: 800;
  1542. margin-top: 0.8rem;
  1543. line-height: 0.6rem;
  1544. }
  1545. .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 {
  1546. display: flex;
  1547. flex-direction: row;
  1548. margin: 0;
  1549. }
  1550. .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 {
  1551. padding-top: 0 !important;
  1552. padding-bottom: 0 !important;
  1553. }
  1554. .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 {
  1555. content: ",";
  1556. margin-right: 0.3rem;
  1557. }
  1558. .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 {
  1559. padding-top: 0 !important;
  1560. padding-bottom: 0 !important;
  1561. }
  1562. .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 {
  1563. margin-top: 0.8rem;
  1564. font-size: 0.9rem;
  1565. font-weight: 800;
  1566. order: 4;
  1567. }
  1568. .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 {
  1569. order: 3;
  1570. margin-top: 0.8rem;
  1571. font-size: 0.9rem;
  1572. font-weight: 800;
  1573. }
  1574. .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 {
  1575. margin: 0;
  1576. }
  1577. .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 {
  1578. order: 4;
  1579. color: rgb(225, 0, 15);
  1580. margin-top: 0.8rem;
  1581. font-size: 0.7rem;
  1582. }
  1583. .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 {
  1584. display: none;
  1585. order: 5;
  1586. color: rgb(0, 0, 0);
  1587. font-size: 0.7rem;
  1588. }
  1589. .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 {
  1590. display: none;
  1591. order: 6;
  1592. }
  1593. .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 {
  1594. color: rgb(0, 0, 0);
  1595. font-size: 0.7rem;
  1596. }
  1597. .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 {
  1598. display: none;
  1599. order: 7;
  1600. }
  1601. .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 {
  1602. color: rgb(0, 0, 0);
  1603. font-size: 0.7rem;
  1604. }
  1605. .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 {
  1606. display: none;
  1607. order: 8;
  1608. color: rgb(0, 0, 0);
  1609. font-size: 0.7rem;
  1610. }
  1611. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet .ville-region {
  1612. display: none;
  1613. }
  1614. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  1615. display: flex;
  1616. background: rgba(0, 158, 227, 0.2);
  1617. padding-top: 2rem;
  1618. padding-bottom: 4rem;
  1619. }
  1620. @media (max-width: 479px) {
  1621. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  1622. padding-top: 2rem;
  1623. padding-bottom: 2rem;
  1624. }
  1625. }
  1626. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary {
  1627. height: fit-content;
  1628. padding: 0.4rem 1rem;
  1629. font-size: 0.8rem;
  1630. margin: auto;
  1631. background-color: rgb(255, 255, 255);
  1632. border: 2px solid rgb(0, 158, 227);
  1633. list-style: none;
  1634. display: inline-flex;
  1635. }
  1636. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary p {
  1637. margin: 0;
  1638. }
  1639. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a {
  1640. text-transform: uppercase;
  1641. font-weight: 700;
  1642. color: rgb(0, 158, 227);
  1643. display: inline-flex;
  1644. align-items: center;
  1645. }
  1646. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a::after {
  1647. 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>');
  1648. }
  1649. .path-frontpage .block-views-blockprojets-block-2 #leaflet-map-view-projets-block-2 {
  1650. height: 500px !important;
  1651. }
  1652. .node-id-20 {
  1653. background: url("../images/pictos/carre-contour-bleu_partenaire.svg");
  1654. background-repeat: no-repeat;
  1655. background-position-y: 7rem;
  1656. max-width: 100vw;
  1657. background-size: contain;
  1658. }
  1659. .node-id-20 .layout__region--top {
  1660. padding-bottom: 3rem;
  1661. height: 30vh;
  1662. }
  1663. .node-id-20 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1664. font-family: "Source Code Pro";
  1665. font-size: 2rem;
  1666. font-weight: 800;
  1667. color: rgb(255, 255, 255);
  1668. background-color: rgb(0, 158, 227);
  1669. text-transform: uppercase;
  1670. }
  1671. .field--name-field-partenaires {
  1672. padding-top: 3rem;
  1673. }
  1674. .field--name-field-partenaires .paragraph--type--partenaire {
  1675. background-color: rgb(255, 255, 255);
  1676. width: 100%;
  1677. padding-bottom: 3rem;
  1678. display: grid;
  1679. grid-template-columns: repeat(7, 1fr);
  1680. grid-template-rows: repeat(auto-fill);
  1681. }
  1682. @media (max-width: 810px) {
  1683. .field--name-field-partenaires .paragraph--type--partenaire {
  1684. display: flex;
  1685. flex-direction: column;
  1686. }
  1687. }
  1688. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-logo {
  1689. grid-column: 1/2;
  1690. grid-row: 2;
  1691. margin-top: 2rem;
  1692. padding-right: 1rem;
  1693. }
  1694. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-titre {
  1695. grid-column: 2/8;
  1696. grid-row: 1;
  1697. font-weight: 800;
  1698. }
  1699. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-texte {
  1700. grid-column: 2/8;
  1701. grid-row: 2;
  1702. }
  1703. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-lien {
  1704. grid-column: 2/8;
  1705. grid-row: 3;
  1706. }
  1707. .field--name-field-partenaires a {
  1708. color: rgb(0, 0, 0);
  1709. font-weight: 800;
  1710. }
  1711. .field--name-field-partenaires a svg {
  1712. display: none;
  1713. }
  1714. .field--name-field-equipes {
  1715. padding-top: 3rem;
  1716. }
  1717. .field--name-field-equipes .paragraph--type--equipe {
  1718. background-color: rgb(255, 255, 255);
  1719. width: 100%;
  1720. }
  1721. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1722. width: 100%;
  1723. padding-bottom: 3rem;
  1724. display: grid;
  1725. grid-template-columns: repeat(7, 1fr);
  1726. grid-template-rows: repeat(auto-fill);
  1727. }
  1728. @media (max-width: 810px) {
  1729. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1730. display: flex;
  1731. flex-direction: column;
  1732. }
  1733. }
  1734. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo {
  1735. grid-column: 1/2;
  1736. grid-row: 1/span 3;
  1737. padding-right: 1rem;
  1738. }
  1739. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo img {
  1740. border-radius: 50%;
  1741. }
  1742. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-prenom {
  1743. grid-column: 2/span 3;
  1744. grid-row: 1;
  1745. font-weight: 800;
  1746. }
  1747. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-nom {
  1748. grid-column: 2/span 3;
  1749. grid-row: 2;
  1750. }
  1751. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-fonction {
  1752. grid-column: 2/8;
  1753. grid-row: 3;
  1754. }
  1755. .field--name-field-equipes a {
  1756. color: rgb(0, 0, 0);
  1757. font-weight: 800;
  1758. }
  1759. .field--name-field-equipes a svg {
  1760. display: none;
  1761. }
  1762. .path-node.page-node-type-actualite .layout-container {
  1763. overflow: unset;
  1764. }
  1765. .path-node.page-node-type-actualite .offresdeservices.layout-content.region-content#block-contenudelapageprincipale {
  1766. background: none !important;
  1767. }
  1768. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1769. background: linear-gradient(to bottom, rgba(0, 158, 227, 0.2) 60%, white 40%);
  1770. padding-bottom: 4rem;
  1771. }
  1772. @media (max-width: 900px) {
  1773. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1774. order: 1;
  1775. }
  1776. }
  1777. @media (max-width: 568px) {
  1778. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1779. padding-left: 2rem;
  1780. padding-right: 2rem;
  1781. }
  1782. }
  1783. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top {
  1784. display: grid;
  1785. grid-template-columns: 1fr repeat(8, 1fr) 1fr;
  1786. }
  1787. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-actu-type {
  1788. order: 5;
  1789. grid-column: 2;
  1790. margin-top: 1rem;
  1791. color: rgb(9, 57, 139);
  1792. }
  1793. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1794. order: 3;
  1795. grid-column: 2/span 7;
  1796. margin: 0;
  1797. color: rgb(9, 57, 139);
  1798. }
  1799. @media (max-width: 568px) {
  1800. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1801. grid-column: 2/span 8;
  1802. max-width: 80vw;
  1803. }
  1804. }
  1805. @media (max-width: 499px) {
  1806. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1807. grid-column: 2/span 9;
  1808. max-width: 80vw;
  1809. }
  1810. }
  1811. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1812. font-family: "Marianne";
  1813. font-size: 2.5rem;
  1814. font-weight: 800;
  1815. line-height: 3rem;
  1816. }
  1817. @media (max-width: 810px) {
  1818. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1819. font-size: 1.9em;
  1820. line-height: 2.3rem;
  1821. }
  1822. }
  1823. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date {
  1824. order: 1;
  1825. padding-top: 2rem;
  1826. grid-column: 2/span 3;
  1827. text-transform: uppercase;
  1828. color: rgb(9, 57, 139);
  1829. font-size: 1.2rem;
  1830. font-weight: 800;
  1831. margin-top: 1rem;
  1832. }
  1833. .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 {
  1834. display: flex;
  1835. flex-direction: row;
  1836. justify-content: flex-start;
  1837. }
  1838. .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 {
  1839. padding-right: 2 rem;
  1840. }
  1841. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-lieu {
  1842. order: 2;
  1843. grid-column: 2/span 4;
  1844. text-transform: uppercase;
  1845. color: rgb(9, 57, 139);
  1846. font-size: 1.2rem;
  1847. font-weight: 800;
  1848. margin-top: 1rem;
  1849. }
  1850. .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 {
  1851. display: flex;
  1852. flex-direction: row;
  1853. justify-content: flex-start;
  1854. }
  1855. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1856. order: 4;
  1857. grid-column: 2/span 7;
  1858. margin-top: 1rem;
  1859. font-weight: 800;
  1860. color: rgb(9, 57, 139);
  1861. }
  1862. @media (max-width: 568px) {
  1863. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1864. grid-column: 2/span 8;
  1865. max-width: 80vw;
  1866. }
  1867. }
  1868. @media (max-width: 499px) {
  1869. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1870. grid-column: 2/span 9;
  1871. max-width: 80vw;
  1872. }
  1873. }
  1874. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1875. order: 6;
  1876. grid-column: 5/span 3;
  1877. width: 600px;
  1878. }
  1879. @media (max-width: 568px) {
  1880. .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 {
  1881. width: 80%;
  1882. }
  1883. }
  1884. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1885. padding-top: 2rem;
  1886. width: 100%;
  1887. max-height: 400px;
  1888. object-fit: contain;
  1889. }
  1890. @media (max-width: 568px) {
  1891. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1892. max-width: 90vw;
  1893. }
  1894. }
  1895. @media (max-width: 900px) {
  1896. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1897. grid-column: 3/span 5;
  1898. }
  1899. }
  1900. @media (max-width: 568px) {
  1901. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1902. grid-column: 1/span 8;
  1903. }
  1904. }
  1905. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1906. font-size: 0.8rem;
  1907. text-align: center;
  1908. }
  1909. @media (max-width: 810px) {
  1910. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1911. margin-left: 5%;
  1912. margin-right: 5%;
  1913. font-size: 0.7rem;
  1914. }
  1915. }
  1916. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-next {
  1917. right: -65px;
  1918. }
  1919. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-prev {
  1920. left: -65px;
  1921. }
  1922. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-dots > li {
  1923. display: inline-block;
  1924. }
  1925. .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 {
  1926. display: none;
  1927. }
  1928. .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 {
  1929. margin-bottom: 0 !important;
  1930. }
  1931. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  1932. display: flex;
  1933. justify-content: flex-end;
  1934. position: -webkit-sticky;
  1935. position: sticky;
  1936. top: 10rem;
  1937. }
  1938. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  1939. display: flex;
  1940. justify-content: flex-end;
  1941. width: 50%;
  1942. background-color: rgb(255, 255, 255);
  1943. padding-right: 2rem;
  1944. }
  1945. .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 {
  1946. display: flex;
  1947. font-size: 1rem;
  1948. font-weight: 1000;
  1949. color: rgb(9, 57, 139);
  1950. border-bottom: 1px solid rgb(0, 158, 227);
  1951. padding-bottom: 0.5rem;
  1952. padding-right: 1rem;
  1953. margin-bottom: 0.8rem;
  1954. }
  1955. .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 {
  1956. text-decoration: underline;
  1957. }
  1958. @media (max-width: 810px) {
  1959. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first {
  1960. display: none;
  1961. }
  1962. }
  1963. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1964. width: 50%;
  1965. }
  1966. @media (max-width: 900px) {
  1967. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1968. order: 3;
  1969. width: 100vw;
  1970. }
  1971. }
  1972. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  1973. width: 90%;
  1974. }
  1975. @media (max-width: 900px) {
  1976. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  1977. width: 90%;
  1978. margin: auto;
  1979. }
  1980. }
  1981. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody p {
  1982. margin-top: 0;
  1983. }
  1984. .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 {
  1985. background-color: white;
  1986. }
  1987. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes {
  1988. background-color: rgb(255, 255, 255);
  1989. }
  1990. .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 {
  1991. font-size: 1.5rem;
  1992. font-weight: 1000;
  1993. font-family: "Source Code Pro";
  1994. color: rgb(9, 57, 139);
  1995. text-transform: uppercase;
  1996. margin-top: 2rem;
  1997. margin-bottom: 0.8rem;
  1998. }
  1999. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 {
  2000. text-transform: none !important;
  2001. }
  2002. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 img {
  2003. width: 100%;
  2004. height: auto;
  2005. }
  2006. .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 {
  2007. padding-right: 2rem;
  2008. }
  2009. @media (max-width: 900px) {
  2010. .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 {
  2011. padding-right: 0;
  2012. }
  2013. }
  2014. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes p {
  2015. margin-top: 0;
  2016. }
  2017. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a {
  2018. color: rgb(0, 0, 0);
  2019. text-decoration: underline;
  2020. }
  2021. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a svg {
  2022. display: none;
  2023. }
  2024. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .panel-body #outputtext {
  2025. overflow-y: visible !important;
  2026. }
  2027. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody a.ext {
  2028. word-wrap: break-word;
  2029. }
  2030. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__label {
  2031. font-size: 1.5rem;
  2032. font-weight: 1000;
  2033. font-family: "Source Code Pro";
  2034. color: rgb(9, 57, 139);
  2035. text-transform: uppercase;
  2036. margin-top: 2rem;
  2037. margin-bottom: 0.8rem;
  2038. }
  2039. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  2040. display: flex;
  2041. flex-direction: row;
  2042. justify-content: space-between;
  2043. flex-wrap: wrap;
  2044. }
  2045. @media (max-width: 568px) {
  2046. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  2047. flex-direction: column;
  2048. }
  2049. }
  2050. .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 {
  2051. display: flex;
  2052. flex-direction: column;
  2053. align-items: center;
  2054. }
  2055. .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 {
  2056. padding-top: 1rem;
  2057. }
  2058. @media (max-width: 900px) {
  2059. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  2060. flex: 0 1 80%;
  2061. margin: auto;
  2062. }
  2063. }
  2064. @media (max-width: 1005px) {
  2065. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third {
  2066. flex: 0 1 100%;
  2067. order: 2;
  2068. }
  2069. }
  2070. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  2071. display: flex;
  2072. flex-direction: column;
  2073. width: 65%;
  2074. }
  2075. @media (max-width: 900px) {
  2076. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  2077. margin: auto;
  2078. }
  2079. }
  2080. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  2081. height: fit-content;
  2082. width: fit-content;
  2083. border: 2px solid rgb(0, 158, 227);
  2084. background-color: rgb(255, 255, 255);
  2085. margin-bottom: 1rem;
  2086. min-height: 4rem;
  2087. color: rgb(0, 158, 227);
  2088. padding: 1rem;
  2089. }
  2090. @media (max-width: 900px) {
  2091. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  2092. width: auto;
  2093. padding-right: 1rem;
  2094. }
  2095. }
  2096. @media (max-width: 568px) {
  2097. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  2098. width: auto;
  2099. }
  2100. }
  2101. .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) {
  2102. display: none;
  2103. }
  2104. .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 {
  2105. height: inherit;
  2106. margin: auto;
  2107. width: fit-content;
  2108. }
  2109. .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 {
  2110. content: url("../images/pictos/download.png");
  2111. padding-right: 1rem;
  2112. margin-right: 1rem;
  2113. }
  2114. .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 {
  2115. hyphens: auto;
  2116. display: inline-flex;
  2117. align-items: center;
  2118. color: rgb(0, 158, 227);
  2119. font-weight: 800;
  2120. }
  2121. .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 {
  2122. margin: auto;
  2123. width: fit-content;
  2124. height: fit-content;
  2125. border: 2px solid rgb(0, 158, 227);
  2126. min-height: 4rem;
  2127. background: rgb(255, 255, 255);
  2128. color: rgb(0, 158, 227);
  2129. padding: 1rem;
  2130. margin-bottom: 1rem;
  2131. }
  2132. @media (max-width: 900px) {
  2133. .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 {
  2134. width: auto;
  2135. padding-right: 1rem;
  2136. }
  2137. }
  2138. .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 {
  2139. display: inline-flex;
  2140. align-items: center;
  2141. color: rgb(0, 158, 227);
  2142. font-weight: 800;
  2143. }
  2144. .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 {
  2145. content: url("../images/pictos/external_link.png");
  2146. padding-right: 1rem;
  2147. }
  2148. .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 {
  2149. display: none;
  2150. }
  2151. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  2152. margin-top: 3rem;
  2153. }
  2154. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  2155. font-size: 0.8rem;
  2156. color: rgb(0, 0, 0);
  2157. font-weight: 900;
  2158. }
  2159. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  2160. border: 2px solid rgb(0, 158, 227);
  2161. padding: 1rem;
  2162. height: fit-content;
  2163. margin-bottom: 1rem;
  2164. background-color: rgb(255, 255, 255);
  2165. display: flex;
  2166. flex-direction: column;
  2167. }
  2168. .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 {
  2169. display: flex;
  2170. flex-direction: column;
  2171. }
  2172. .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 {
  2173. order: 2;
  2174. text-transform: uppercase;
  2175. color: rgb(0, 158, 227);
  2176. font-weight: 900;
  2177. font-size: 0.8rem;
  2178. }
  2179. .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 {
  2180. order: 3;
  2181. }
  2182. .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 {
  2183. margin: 0;
  2184. }
  2185. .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 {
  2186. color: rgb(0, 0, 0);
  2187. font-size: 1rem;
  2188. font-weight: 900;
  2189. font-style: italic;
  2190. }
  2191. .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 {
  2192. order: 4;
  2193. }
  2194. .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- {
  2195. order: 5;
  2196. font-weight: 800;
  2197. }
  2198. .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 {
  2199. margin: 0;
  2200. }
  2201. .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 {
  2202. display: none;
  2203. }
  2204. .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 {
  2205. margin: 0;
  2206. }
  2207. .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 {
  2208. display: none;
  2209. }
  2210. .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 {
  2211. display: none;
  2212. order: 1;
  2213. width: 25%;
  2214. }
  2215. .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 {
  2216. width: 100%;
  2217. height: auto;
  2218. margin: auto;
  2219. }
  2220. .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 {
  2221. order: 6;
  2222. display: flex;
  2223. margin-top: 2rem;
  2224. flex-direction: row;
  2225. flex-wrap: wrap;
  2226. }
  2227. .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 {
  2228. display: flex;
  2229. flex-direction: row;
  2230. flex-wrap: wrap;
  2231. }
  2232. .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 {
  2233. padding-bottom: 0.5rem;
  2234. margin-right: 0.5rem;
  2235. padding-right: 0.3rem;
  2236. font-size: 0.8rem;
  2237. }
  2238. .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 {
  2239. background: rgb(9, 57, 139);
  2240. color: rgb(255, 255, 255);
  2241. font-weight: 800;
  2242. vertical-align: super;
  2243. padding-left: 0.1rem;
  2244. padding-right: 0.1rem;
  2245. display: inline-flex;
  2246. }
  2247. .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 {
  2248. display: none;
  2249. }
  2250. .node-id-35 .region-content {
  2251. background: url("../images/pictos/carre-contour-bleu_gouvernance.svg");
  2252. background-repeat: no-repeat;
  2253. max-width: 100vw;
  2254. background-size: contain;
  2255. }
  2256. .node-id-35 .layout__region--top {
  2257. padding-bottom: 3rem;
  2258. height: 30vh;
  2259. }
  2260. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2261. display: none;
  2262. height: inherit;
  2263. }
  2264. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2265. font-family: "Source Code Pro";
  2266. font-size: 2rem;
  2267. font-weight: 800;
  2268. color: rgb(255, 255, 255);
  2269. background-color: rgb(0, 158, 227);
  2270. text-transform: uppercase;
  2271. }
  2272. .node-id-3 {
  2273. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  2274. background-repeat: no-repeat;
  2275. background-position-y: 7rem;
  2276. max-width: 100vw;
  2277. background-size: contain;
  2278. }
  2279. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2280. display: none;
  2281. height: inherit;
  2282. }
  2283. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2284. color: rgb(0, 158, 227);
  2285. background-color: rgb(255, 255, 255);
  2286. }
  2287. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2288. background: rgb(0, 158, 227) !important;
  2289. color: rgb(255, 255, 255) !important;
  2290. }
  2291. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item a {
  2292. color: rgb(255, 255, 255) !important;
  2293. }
  2294. .node-id-3 .block-entity-fieldnodefield-liens {
  2295. display: none;
  2296. }
  2297. .node-id-3 .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2298. background: rgb(0, 158, 227);
  2299. color: rgb(255, 255, 255);
  2300. }
  2301. .node-id-3 .block-entity-fieldnodefield-ress {
  2302. margin-top: 3rem;
  2303. }
  2304. .node-id-3 .block-entity-fieldnodefield-ress h2 {
  2305. font-size: 0.8rem;
  2306. color: rgb(0, 0, 0);
  2307. font-weight: 900;
  2308. }
  2309. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource {
  2310. display: flex;
  2311. flex-direction: column;
  2312. border: 2px solid rgb(0, 158, 227);
  2313. padding: 1rem;
  2314. height: fit-content;
  2315. margin-bottom: 1rem;
  2316. background-color: rgb(255, 255, 255);
  2317. }
  2318. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type {
  2319. border-top: 1px solid rgb(0, 158, 227);
  2320. padding-top: 1rem;
  2321. }
  2322. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type::after {
  2323. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2324. align-self: flex-end;
  2325. }
  2326. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-title a {
  2327. color: rgb(0, 0, 0);
  2328. font-size: 1.4rem;
  2329. font-weight: 600;
  2330. }
  2331. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- {
  2332. font-weight: 800;
  2333. }
  2334. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- p {
  2335. margin: 0;
  2336. }
  2337. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  2338. display: none;
  2339. }
  2340. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition p {
  2341. margin: 0;
  2342. }
  2343. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition .field__label {
  2344. display: none;
  2345. }
  2346. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images {
  2347. display: none;
  2348. width: 50%;
  2349. }
  2350. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images img {
  2351. width: 100%;
  2352. height: auto;
  2353. }
  2354. .path-actualites {
  2355. background-color: rgba(0, 158, 227, 0.2);
  2356. margin: 0;
  2357. }
  2358. .path-actualites .block-region-content {
  2359. display: grid;
  2360. grid-template-columns: 1fr 8fr 1fr;
  2361. margin: auto;
  2362. padding-top: 3rem;
  2363. }
  2364. .path-actualites .block-region-content .block-views {
  2365. grid-column: 2;
  2366. }
  2367. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  2368. display: flex;
  2369. flex-direction: row;
  2370. flex-wrap: wrap;
  2371. }
  2372. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  2373. width: 25%;
  2374. flex: 0 0 25%;
  2375. }
  2376. @media (max-width: 810px) {
  2377. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  2378. flex-direction: column;
  2379. }
  2380. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  2381. width: 100%;
  2382. }
  2383. }
  2384. .path-actualites .block-region-content .block-views .view-display-id-block_2 {
  2385. padding-top: 0;
  2386. }
  2387. .path-actualites .block-region-content .block-views .node-type-actualite {
  2388. color: rgb(9, 57, 139);
  2389. line-height: 1.5rem;
  2390. padding: 0.5rem;
  2391. padding-right: 1rem;
  2392. padding-left: 1rem;
  2393. }
  2394. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child {
  2395. display: flex;
  2396. flex-direction: column;
  2397. }
  2398. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child a {
  2399. color: rgb(9, 57, 139);
  2400. }
  2401. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images {
  2402. order: 1;
  2403. }
  2404. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2405. width: 100%;
  2406. max-height: 175px;
  2407. object-fit: cover;
  2408. }
  2409. @media (max-width: 810px) {
  2410. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2411. max-height: 350px;
  2412. }
  2413. }
  2414. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images::after {
  2415. display: block;
  2416. 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>');
  2417. }
  2418. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-sous-titre {
  2419. margin-top: 0.5rem;
  2420. font-size: 0.9rem;
  2421. font-weight: 800;
  2422. order: 5;
  2423. }
  2424. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date {
  2425. order: 2;
  2426. display: flex;
  2427. flex-direction: row;
  2428. justify-content: flex-start;
  2429. }
  2430. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date .field__item:not(:last-of-type) ::after {
  2431. padding-left: 1rem;
  2432. content: "|";
  2433. }
  2434. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date time {
  2435. font-size: 0.9rem;
  2436. font-weight: 800;
  2437. padding-right: 1rem;
  2438. width: fit-content;
  2439. }
  2440. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu {
  2441. font-size: 0.9rem;
  2442. order: 3;
  2443. display: flex;
  2444. flex-direction: row;
  2445. justify-content: flex-start;
  2446. }
  2447. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu .field__label {
  2448. display: none;
  2449. }
  2450. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-title {
  2451. order: 4;
  2452. font-size: 0.9rem;
  2453. }
  2454. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field:not(.field--name-field-images) {
  2455. width: 100%;
  2456. }
  2457. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child h2 {
  2458. margin: 0;
  2459. }
  2460. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links {
  2461. padding-top: none !important;
  2462. list-style: none;
  2463. width: fit-content;
  2464. align-self: flex-end;
  2465. padding-right: 1rem;
  2466. }
  2467. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links a {
  2468. display: none;
  2469. }
  2470. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-actu-type {
  2471. order: 6;
  2472. padding-top: 1rem;
  2473. }
  2474. .node-id-4 {
  2475. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  2476. background-repeat: no-repeat;
  2477. background-position-y: 7rem;
  2478. max-width: 100vw;
  2479. background-size: contain;
  2480. }
  2481. .node-id-4 #block-contenudelapageprincipale {
  2482. scroll-margin: 8rem;
  2483. }
  2484. .node-id-4 .layout__region--top {
  2485. padding-bottom: 3rem;
  2486. height: 30vh;
  2487. }
  2488. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2489. display: none;
  2490. height: inherit;
  2491. }
  2492. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2493. font-family: "Source Code Pro";
  2494. font-size: 2rem;
  2495. font-weight: 800;
  2496. color: rgb(255, 255, 255);
  2497. background-color: rgb(0, 158, 227);
  2498. text-transform: uppercase;
  2499. }
  2500. .node-id-4 .layout__region--second {
  2501. width: 25%;
  2502. }
  2503. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes {
  2504. background-color: rgb(255, 255, 255);
  2505. }
  2506. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  2507. font-size: 1.5rem;
  2508. font-weight: 1000;
  2509. font-family: "Source Code Pro";
  2510. color: rgb(9, 57, 139);
  2511. text-transform: uppercase;
  2512. }
  2513. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  2514. text-transform: none !important;
  2515. }
  2516. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2517. padding-right: 2rem;
  2518. }
  2519. .node-id-5 .region-content {
  2520. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2521. background-repeat: no-repeat;
  2522. max-width: 100vw;
  2523. background-size: contain;
  2524. }
  2525. .node-id-5 .layout__region--top {
  2526. padding-bottom: 3rem;
  2527. height: 30vh;
  2528. }
  2529. .node-id-5 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2530. font-family: "Source Code Pro";
  2531. font-size: 2rem;
  2532. font-weight: 800;
  2533. color: rgb(255, 255, 255);
  2534. background-color: rgb(0, 158, 227);
  2535. text-transform: uppercase;
  2536. }
  2537. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2538. color: rgb(0, 0, 0);
  2539. text-decoration: underline;
  2540. }
  2541. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2542. display: none;
  2543. }
  2544. .path-faq #block-contenudelapageprincipale h2 {
  2545. font-family: "Source Code Pro";
  2546. font-size: 2rem;
  2547. font-weight: 800;
  2548. color: rgb(0, 158, 227);
  2549. background-color: rgb(255, 255, 255);
  2550. text-transform: uppercase;
  2551. width: fit-content;
  2552. margin-left: 10%;
  2553. margin-top: 8rem;
  2554. }
  2555. @media (max-width: 810px) {
  2556. .path-faq #block-contenudelapageprincipale h2 {
  2557. margin-left: 8%;
  2558. margin-right: 1%;
  2559. }
  2560. }
  2561. .path-faq #block-contenudelapageprincipale .block-region-content {
  2562. display: grid;
  2563. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  2564. }
  2565. @media (max-width: 810px) {
  2566. .path-faq #block-contenudelapageprincipale .block-region-content {
  2567. display: flex;
  2568. flex-direction: column;
  2569. margin: auto;
  2570. }
  2571. }
  2572. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2573. grid-column: 2/span 3;
  2574. }
  2575. @media (max-width: 810px) {
  2576. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2577. width: 80%;
  2578. margin: auto;
  2579. }
  2580. }
  2581. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2582. display: none;
  2583. grid-column: 5;
  2584. grid-row: 1/span 2;
  2585. height: fit-content;
  2586. flex-direction: column;
  2587. max-width: fit-content;
  2588. margin-left: 2rem;
  2589. padding: 1rem;
  2590. background-color: rgb(0, 158, 227);
  2591. }
  2592. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2593. margin-top: 1rem;
  2594. display: block;
  2595. content: url("../images/pictos/picto_faq.svg");
  2596. }
  2597. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2598. text-align: center;
  2599. }
  2600. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2601. font-size: 0.8rem;
  2602. font-weight: 1000;
  2603. color: rgb(9, 57, 139);
  2604. text-transform: uppercase;
  2605. }
  2606. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p {
  2607. display: flex;
  2608. flex-direction: column;
  2609. margin-top: 0;
  2610. margin-left: 1.5rem;
  2611. margin-right: 1.5rem;
  2612. text-align: center;
  2613. }
  2614. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p a {
  2615. font-weight: 800;
  2616. color: rgb(255, 255, 255);
  2617. font-size: 1.3rem;
  2618. }
  2619. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p:after {
  2620. margin-left: auto;
  2621. padding-top: 1rem;
  2622. display: block;
  2623. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2624. }
  2625. @media (max-width: 810px) {
  2626. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2627. margin: auto;
  2628. padding: 0rem;
  2629. }
  2630. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2631. margin-top: 1rem;
  2632. display: block;
  2633. content: url("../images/pictos/picto_faq_2.svg");
  2634. }
  2635. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2636. text-align: center;
  2637. }
  2638. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2639. font-size: 0.8rem;
  2640. font-weight: 1000;
  2641. color: rgb(9, 57, 139);
  2642. text-transform: uppercase;
  2643. }
  2644. }
  2645. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2646. margin-top: 2rem;
  2647. grid-column: 2/span 3;
  2648. display: grid;
  2649. grid-template-columns: 1fr 1fr 1fr;
  2650. }
  2651. @media (max-width: 810px) {
  2652. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2653. width: 80%;
  2654. margin: auto;
  2655. margin-top: 1rem;
  2656. }
  2657. }
  2658. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child {
  2659. grid-column: 1/span 3;
  2660. }
  2661. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2662. border-bottom: 1px solid rgb(0, 158, 227);
  2663. padding-bottom: 2rem;
  2664. }
  2665. @media (max-width: 810px) {
  2666. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2667. padding-bottom: 1rem;
  2668. }
  2669. }
  2670. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-title {
  2671. display: none;
  2672. }
  2673. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question {
  2674. cursor: pointer;
  2675. }
  2676. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p {
  2677. font-family: "Source Code Pro";
  2678. font-weight: 500;
  2679. color: rgb(9, 57, 139);
  2680. font-size: 1.3rem;
  2681. }
  2682. .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 {
  2683. display: inline-flex;
  2684. 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>');
  2685. float: right;
  2686. }
  2687. .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 {
  2688. display: inline-flex;
  2689. 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>');
  2690. float: right;
  2691. }
  2692. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-reponse {
  2693. display: none;
  2694. }
  2695. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers {
  2696. display: none;
  2697. }
  2698. .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) {
  2699. display: none;
  2700. }
  2701. .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) {
  2702. display: none;
  2703. }
  2704. .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 {
  2705. display: inline-block;
  2706. content: url("../images/pictos/noun_Download_file_307900.svg");
  2707. width: 30px;
  2708. height: 30px;
  2709. padding-right: 0.8rem;
  2710. }
  2711. .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 {
  2712. display: inline-flex;
  2713. align-items: center;
  2714. color: rgb(0, 0, 0);
  2715. font-weight: 800;
  2716. }
  2717. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens {
  2718. display: none;
  2719. }
  2720. .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 {
  2721. display: inline-block;
  2722. content: url("../images/pictos/external_link.png");
  2723. width: 30px;
  2724. height: 30px;
  2725. padding-right: 0.8rem;
  2726. }
  2727. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a {
  2728. display: flex;
  2729. flex-direction: row;
  2730. justify-content: left;
  2731. align-items: center;
  2732. color: rgb(0, 0, 0);
  2733. font-weight: 800;
  2734. }
  2735. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens svg {
  2736. display: none;
  2737. }
  2738. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress {
  2739. display: none;
  2740. margin-top: 0.5rem;
  2741. }
  2742. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress a {
  2743. color: rgb(0, 0, 0);
  2744. text-decoration: underline;
  2745. font-weight: 800;
  2746. }
  2747. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .opened {
  2748. display: block;
  2749. }
  2750. .node-id-6 {
  2751. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2752. background-repeat: no-repeat;
  2753. background-position-y: 7rem;
  2754. max-width: 100vw;
  2755. background-size: contain;
  2756. }
  2757. .node-id-6 .layout__region--top {
  2758. padding-bottom: 3rem;
  2759. height: 30vh;
  2760. }
  2761. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2762. display: none;
  2763. height: inherit;
  2764. }
  2765. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2766. font-family: "Source Code Pro";
  2767. font-size: 2rem;
  2768. font-weight: 800;
  2769. color: rgb(255, 255, 255);
  2770. background-color: rgb(0, 158, 227);
  2771. text-transform: uppercase;
  2772. }
  2773. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2774. color: rgb(0, 0, 0);
  2775. text-decoration: underline;
  2776. }
  2777. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2778. display: none;
  2779. }
  2780. .path-taxonomy #block-contenudelapageprincipale span {
  2781. display: none;
  2782. }
  2783. .path-taxonomy .view-taxonomy-term .view-header {
  2784. width: 80%;
  2785. margin: auto;
  2786. }
  2787. .path-taxonomy .view-taxonomy-term .view-content {
  2788. width: 80%;
  2789. margin: auto;
  2790. }
  2791. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper {
  2792. display: flex;
  2793. flex-direction: row;
  2794. flex-wrap: wrap;
  2795. }
  2796. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2797. width: 30%;
  2798. }
  2799. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2800. display: flex;
  2801. width: 25%;
  2802. max-width: fit-content;
  2803. }
  2804. .page-node-type-ressource .layout-container {
  2805. overflow: visible;
  2806. }
  2807. @media (max-width: 810px) {
  2808. .page-node-type-ressource .layout-container {
  2809. overflow: hidden;
  2810. }
  2811. }
  2812. .page-node-type-ressource .layout__region--top {
  2813. padding-top: 4rem;
  2814. }
  2815. @media (max-width: 550px) {
  2816. .page-node-type-ressource .layout__region--top {
  2817. padding-top: 0rem;
  2818. max-width: 100%;
  2819. }
  2820. }
  2821. .page-node-type-ressource .layout__region--top .block-region-top {
  2822. display: flex;
  2823. flex-direction: column;
  2824. }
  2825. @media screen and (min-width: 1100px) {
  2826. .page-node-type-ressource .layout__region--top .block-region-top {
  2827. display: grid;
  2828. grid-template-columns: 1fr 2fr; /* 1/3 pour l'image, 2/3 pour le contenu */
  2829. gap: 0.5rem;
  2830. }
  2831. }
  2832. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2833. width: fit-content;
  2834. padding-left: 25%;
  2835. }
  2836. @media (min-width: 1100px) {
  2837. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2838. grid-column: 1;
  2839. grid-row: 1/span 7;
  2840. align-self: start;
  2841. justify-self: end;
  2842. margin-left: 2rem;
  2843. }
  2844. }
  2845. @media (max-width: 1100px) {
  2846. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2847. padding-left: 13%;
  2848. }
  2849. }
  2850. @media (max-width: 550px) {
  2851. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2852. width: 100vw;
  2853. padding: 0;
  2854. width: 100%;
  2855. height: auto;
  2856. }
  2857. }
  2858. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  2859. border: solid 1px gray;
  2860. max-width: 100%;
  2861. width: 100%;
  2862. height: auto;
  2863. }
  2864. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2865. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2866. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2867. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2868. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2869. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2870. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2871. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2872. width: 100%;
  2873. margin-left: 13%;
  2874. }
  2875. @media (max-width: 1099px) {
  2876. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2877. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2878. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2879. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2880. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2881. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2882. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2883. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2884. width: auto;
  2885. margin-right: 15%;
  2886. }
  2887. }
  2888. @media screen and (min-width: 1100px) {
  2889. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2890. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2891. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2892. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2893. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2894. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2895. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2896. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2897. width: auto;
  2898. margin-left: 2rem;
  2899. margin-right: 15%;
  2900. grid-column: 2/4;
  2901. align-self: start; /* S'assurer qu'il commence en haut */
  2902. height: fit-content;
  2903. justify-self: start;
  2904. }
  2905. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 p,
  2906. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource p,
  2907. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle p,
  2908. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre p,
  2909. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition p,
  2910. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- p,
  2911. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution p,
  2912. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs p {
  2913. margin: 0;
  2914. }
  2915. }
  2916. @media (max-width: 810px) {
  2917. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2918. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2919. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2920. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2921. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2922. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2923. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2924. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2925. margin-left: 9%;
  2926. margin-right: 9%;
  2927. }
  2928. }
  2929. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 {
  2930. width: 100%;
  2931. font-family: "Source Code Pro";
  2932. font-size: 1.5rem;
  2933. font-weight: 800;
  2934. color: rgb(255, 255, 255);
  2935. background-color: rgb(0, 158, 227);
  2936. text-transform: uppercase;
  2937. padding-left: 13%;
  2938. padding-top: 1rem;
  2939. padding-bottom: 0.5rem;
  2940. vertical-align: middle;
  2941. }
  2942. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2943. color: rgb(0, 158, 227);
  2944. text-transform: uppercase;
  2945. font-weight: 900;
  2946. }
  2947. @media (max-width: 1099px) {
  2948. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2949. margin-top: 2rem;
  2950. }
  2951. }
  2952. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  2953. font-size: 2.5rem;
  2954. font-weight: 600;
  2955. line-height: 1.2;
  2956. }
  2957. @media (max-width: 550px) {
  2958. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2959. font-size: 1.5rem;
  2960. width: 80vw;
  2961. }
  2962. }
  2963. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  2964. font-weight: 600;
  2965. font-size: 2rem;
  2966. }
  2967. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition {
  2968. font-weight: 600;
  2969. font-size: 2rem;
  2970. }
  2971. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition p {
  2972. font-weight: 600;
  2973. font-size: 2rem;
  2974. margin-bottom: 0;
  2975. }
  2976. @media (max-width: 550px) {
  2977. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  2978. font-size: 1rem;
  2979. }
  2980. }
  2981. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  2982. margin-bottom: 0;
  2983. }
  2984. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  2985. font-size: 1.5rem;
  2986. font-weight: 800;
  2987. line-height: 0.8;
  2988. margin-top: 1rem;
  2989. }
  2990. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  2991. margin: 0;
  2992. }
  2993. @media (max-width: 550px) {
  2994. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  2995. margin-top: 0rem;
  2996. font-size: 1rem;
  2997. line-height: 1;
  2998. }
  2999. }
  3000. @media (max-width: 550px) {
  3001. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  3002. margin-top: 0.5rem;
  3003. }
  3004. }
  3005. @media (max-width: 550px) {
  3006. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  3007. margin-top: 0.5rem;
  3008. }
  3009. }
  3010. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  3011. display: inline-flex;
  3012. margin-top: 0.5rem;
  3013. }
  3014. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  3015. background: rgb(9, 57, 139);
  3016. margin-right: 1rem;
  3017. padding-left: 0.3rem;
  3018. padding-right: 0.3rem;
  3019. color: rgb(255, 255, 255);
  3020. font-weight: 800;
  3021. vertical-align: middle;
  3022. width: max-content;
  3023. }
  3024. @media (max-width: 810px) {
  3025. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  3026. display: flex;
  3027. flex-direction: row;
  3028. flex-wrap: wrap;
  3029. }
  3030. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  3031. margin-bottom: 0.5rem;
  3032. }
  3033. }
  3034. .page-node-type-ressource .layout__region--top {
  3035. /* Hide empty blocks */
  3036. }
  3037. .page-node-type-ressource .layout__region--top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640:empty,
  3038. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-type-de-ressource:empty,
  3039. .page-node-type-ressource .layout__region--top .block-entity-fieldnodetitle:empty,
  3040. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-sous-titre:empty,
  3041. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-edition:empty,
  3042. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-auteur-s-:empty,
  3043. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-date-de-parution:empty,
  3044. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-mots-clefs:empty {
  3045. display: none;
  3046. }
  3047. .page-node-type-ressource .layout__region--first {
  3048. margin-top: 3rem;
  3049. position: relative;
  3050. }
  3051. @media (max-width: 810px) {
  3052. .page-node-type-ressource .layout__region--first {
  3053. display: none;
  3054. }
  3055. }
  3056. .page-node-type-ressource .layout__region--first .block-region-first {
  3057. display: flex;
  3058. justify-content: flex-end;
  3059. position: sticky;
  3060. top: 13rem;
  3061. }
  3062. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  3063. display: flex;
  3064. width: 50%;
  3065. background-color: rgb(255, 255, 255);
  3066. padding-right: 2rem;
  3067. }
  3068. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  3069. display: flex;
  3070. font-size: 1rem;
  3071. font-weight: 1000;
  3072. color: rgb(9, 57, 139);
  3073. border-bottom: 1px solid rgb(0, 158, 227);
  3074. padding-bottom: 0.5rem;
  3075. padding-right: 1rem;
  3076. }
  3077. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  3078. text-decoration: underline;
  3079. }
  3080. .page-node-type-ressource .layout__region--second {
  3081. margin-top: 3rem;
  3082. }
  3083. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  3084. background-color: rgb(255, 255, 255);
  3085. }
  3086. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  3087. font-size: 1.5rem;
  3088. font-weight: 1000;
  3089. font-family: "Source Code Pro";
  3090. color: rgb(9, 57, 139);
  3091. text-transform: uppercase;
  3092. }
  3093. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  3094. text-transform: none !important;
  3095. }
  3096. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  3097. width: 100%;
  3098. height: auto;
  3099. }
  3100. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  3101. padding-right: 2rem;
  3102. }
  3103. @media (max-width: 550px) {
  3104. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  3105. padding-right: 0;
  3106. }
  3107. }
  3108. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  3109. margin-top: 0;
  3110. }
  3111. @media (max-width: 810px) {
  3112. .page-node-type-ressource .layout__region--second {
  3113. flex: 0 1 80%;
  3114. margin: auto;
  3115. margin-top: 2rem;
  3116. }
  3117. }
  3118. .page-node-type-ressource .layout__region--third {
  3119. margin-top: 3rem;
  3120. }
  3121. @media (max-width: 810px) {
  3122. .page-node-type-ressource .layout__region--third {
  3123. flex: 0 1 80%;
  3124. margin-left: 10%;
  3125. }
  3126. }
  3127. .page-node-type-ressource .layout__region--third .block-region-third {
  3128. display: flex;
  3129. flex-direction: column;
  3130. width: 70%;
  3131. }
  3132. @media (max-width: 810px) {
  3133. .page-node-type-ressource .layout__region--third .block-region-third {
  3134. width: 100%;
  3135. }
  3136. }
  3137. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3138. height: fit-content;
  3139. border: 2px solid rgb(0, 158, 227);
  3140. background-color: rgb(255, 255, 255);
  3141. order: 2;
  3142. }
  3143. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  3144. min-height: 4rem;
  3145. background: rgb(255, 255, 255);
  3146. color: rgb(0, 158, 227);
  3147. padding-left: 1rem;
  3148. padding-top: 1rem;
  3149. padding: 1rem;
  3150. }
  3151. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3152. display: none;
  3153. }
  3154. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3155. height: inherit;
  3156. margin: auto;
  3157. width: 100%;
  3158. }
  3159. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3160. content: url("../images/pictos/download.png");
  3161. min-width: 30px;
  3162. height: auto;
  3163. padding-right: 1rem;
  3164. margin-right: 1rem;
  3165. }
  3166. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3167. hyphens: auto;
  3168. display: inline-flex;
  3169. align-items: center;
  3170. color: rgb(0, 158, 227);
  3171. font-weight: 800;
  3172. max-width: 100%;
  3173. }
  3174. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3175. order: 3;
  3176. }
  3177. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3178. margin: auto;
  3179. height: fit-content;
  3180. border: 2px solid rgb(0, 158, 227);
  3181. min-height: 4rem;
  3182. background: rgb(255, 255, 255);
  3183. color: rgb(0, 158, 227);
  3184. padding-left: 1rem;
  3185. padding-top: 1rem;
  3186. margin-bottom: 1rem;
  3187. padding: 1rem;
  3188. }
  3189. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3190. display: inline-flex;
  3191. align-items: center;
  3192. color: rgb(0, 158, 227);
  3193. font-weight: 800;
  3194. }
  3195. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3196. content: url("../images/pictos/external_link.png");
  3197. min-width: 30px;
  3198. height: auto;
  3199. padding-right: 1rem;
  3200. margin-right: 1rem;
  3201. }
  3202. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3203. display: none;
  3204. }
  3205. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3206. order: 4;
  3207. margin-top: 3rem;
  3208. }
  3209. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3210. font-size: 0.8rem;
  3211. color: rgb(0, 0, 0);
  3212. font-weight: 900;
  3213. margin-bottom: 1rem;
  3214. }
  3215. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3216. border: 2px solid rgb(0, 158, 227);
  3217. padding: 1rem;
  3218. height: fit-content;
  3219. margin-bottom: 1rem;
  3220. background-color: rgb(255, 255, 255);
  3221. display: flex;
  3222. flex-direction: column;
  3223. }
  3224. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div {
  3225. display: flex;
  3226. flex-direction: column;
  3227. }
  3228. .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 {
  3229. order: 2;
  3230. text-transform: uppercase;
  3231. color: rgb(0, 158, 227);
  3232. font-weight: 900;
  3233. font-size: 0.8rem;
  3234. }
  3235. .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 {
  3236. order: 3;
  3237. }
  3238. .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 {
  3239. margin: 0;
  3240. }
  3241. .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 {
  3242. color: rgb(0, 0, 0);
  3243. font-size: 1rem;
  3244. font-weight: 900;
  3245. font-style: italic;
  3246. }
  3247. .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 {
  3248. order: 4;
  3249. }
  3250. .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- {
  3251. order: 5;
  3252. font-weight: 800;
  3253. }
  3254. .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 {
  3255. margin: 0;
  3256. }
  3257. .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 {
  3258. display: none;
  3259. }
  3260. .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 {
  3261. margin: 0;
  3262. }
  3263. .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 {
  3264. display: none;
  3265. }
  3266. .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 {
  3267. order: 1;
  3268. width: 25%;
  3269. }
  3270. .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 {
  3271. width: 100%;
  3272. height: auto;
  3273. }
  3274. .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 {
  3275. order: 6;
  3276. }
  3277. .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 {
  3278. display: none;
  3279. }
  3280. .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 {
  3281. order: 7;
  3282. display: flex;
  3283. margin-top: 0.8rem;
  3284. flex-direction: row;
  3285. flex-wrap: wrap;
  3286. }
  3287. .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 {
  3288. display: none;
  3289. }
  3290. .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 {
  3291. display: flex;
  3292. flex-direction: row;
  3293. flex-wrap: wrap;
  3294. }
  3295. .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 {
  3296. padding-bottom: 0.5rem;
  3297. margin-right: 0.5rem;
  3298. padding-right: 0.3rem;
  3299. font-size: 0.8rem;
  3300. width: max-content;
  3301. }
  3302. .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 {
  3303. background: rgb(9, 57, 139);
  3304. color: rgb(255, 255, 255);
  3305. font-weight: 800;
  3306. vertical-align: super;
  3307. padding-left: 0.1rem;
  3308. padding-right: 0.1rem;
  3309. display: inline-flex;
  3310. pointer-events: none !important;
  3311. cursor: default;
  3312. }
  3313. .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 {
  3314. display: none;
  3315. }
  3316. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource.type-les-projets-en-images .field--name-field-images {
  3317. order: 1;
  3318. width: 100%;
  3319. }
  3320. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource.type-les-projets-en-images .field--name-field-images .field__item:not(:first-of-type) {
  3321. display: none;
  3322. }
  3323. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource.type-les-projets-en-images .field--name-field-images img {
  3324. width: 100%;
  3325. height: auto;
  3326. }
  3327. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3328. order: 1;
  3329. }
  3330. @media (max-width: 479px) {
  3331. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3332. margin-top: 2rem;
  3333. }
  3334. }
  3335. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee h2 {
  3336. display: none;
  3337. font-size: 0.8rem;
  3338. color: rgb(0, 0, 0);
  3339. font-weight: 900;
  3340. }
  3341. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee {
  3342. display: flex;
  3343. flex-direction: column;
  3344. border-bottom: 1px solid rgb(0, 0, 0);
  3345. padding: 1rem;
  3346. height: fit-content;
  3347. margin-bottom: 3rem;
  3348. background-color: rgb(255, 255, 255);
  3349. }
  3350. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__label {
  3351. display: none;
  3352. }
  3353. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__items :before {
  3354. content: url("../images/pictos/picto_lieu_blue.svg");
  3355. display: inline-block;
  3356. color: rgb(9, 57, 139);
  3357. margin-right: 1rem;
  3358. }
  3359. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item {
  3360. display: flex;
  3361. flex-direction: row;
  3362. margin-bottom: 1.5rem;
  3363. }
  3364. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item :before {
  3365. content: "Voir le projet";
  3366. display: block;
  3367. color: rgb(9, 57, 139);
  3368. }
  3369. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item a {
  3370. color: rgb(9, 57, 139);
  3371. font-size: 1rem;
  3372. font-weight: 900;
  3373. }
  3374. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  3375. padding-top: 3rem;
  3376. padding-bottom: 3rem;
  3377. vertical-align: middle;
  3378. color: rgb(255, 255, 255);
  3379. }
  3380. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3381. font-family: "Source Code Pro";
  3382. font-size: 2rem;
  3383. font-weight: 800;
  3384. color: rgb(255, 255, 255);
  3385. background-color: rgb(0, 158, 227);
  3386. text-transform: uppercase;
  3387. width: fit-content;
  3388. margin-left: 10%;
  3389. margin-top: 8rem;
  3390. }
  3391. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3392. display: grid;
  3393. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  3394. }
  3395. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  3396. grid-column: 2/span 3;
  3397. margin-top: 4rem;
  3398. }
  3399. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  3400. margin: auto;
  3401. background: rgb(255, 255, 255);
  3402. }
  3403. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction p {
  3404. margin: 0;
  3405. }
  3406. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  3407. grid-column: 5;
  3408. margin-top: 4rem;
  3409. background-color: rgb(0, 158, 227);
  3410. height: fit-content;
  3411. min-height: fit-content;
  3412. width: 200px;
  3413. margin-left: 2rem;
  3414. aspect-ratio: 1/1;
  3415. display: flex;
  3416. }
  3417. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien {
  3418. display: flex;
  3419. flex-direction: column;
  3420. text-align: center;
  3421. margin: auto;
  3422. padding: 1rem;
  3423. }
  3424. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a {
  3425. display: block;
  3426. font-weight: 800;
  3427. color: rgb(255, 255, 255);
  3428. font-size: 1.3rem;
  3429. }
  3430. .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 {
  3431. margin-left: 80%;
  3432. padding-top: 0.5rem;
  3433. display: block;
  3434. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3435. }
  3436. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3437. grid-column: 2/span 3;
  3438. }
  3439. @media (max-width: 810px) {
  3440. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3441. grid-column: 2/span 4;
  3442. }
  3443. }
  3444. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  3445. margin: auto;
  3446. }
  3447. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  3448. display: none;
  3449. background: rgb(255, 255, 255);
  3450. }
  3451. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3452. display: flex;
  3453. flex-wrap: wrap;
  3454. margin-top: 3rem;
  3455. }
  3456. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3457. width: 50%;
  3458. }
  3459. .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 {
  3460. display: flex;
  3461. justify-content: space-between;
  3462. padding: 1rem;
  3463. height: fit-content;
  3464. margin-bottom: 1rem;
  3465. background-color: rgb(255, 255, 255);
  3466. margin-right: 1rem;
  3467. }
  3468. .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 {
  3469. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3470. align-self: flex-end;
  3471. }
  3472. .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 {
  3473. display: grid;
  3474. grid-template-columns: 1fr 1fr 1fr;
  3475. grid-template-rows: repeat(6 auto);
  3476. }
  3477. .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 {
  3478. grid-column: 1/span 3;
  3479. grid-row: 1;
  3480. margin-bottom: 1rem;
  3481. text-transform: uppercase;
  3482. font-weight: 900;
  3483. font-size: 0.8rem;
  3484. }
  3485. .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 {
  3486. grid-column: 1;
  3487. grid-row: 2/span 6;
  3488. margin-right: 1rem;
  3489. max-height: 170px;
  3490. }
  3491. .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 {
  3492. max-width: 100%;
  3493. object-fit: cover;
  3494. height: auto;
  3495. max-height: 95%;
  3496. }
  3497. .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 {
  3498. grid-column: 2;
  3499. grid-row: 2;
  3500. padding-right: 0.5rem;
  3501. text-transform: uppercase;
  3502. font-weight: 800;
  3503. font-size: 1rem;
  3504. }
  3505. .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 {
  3506. grid-column: 3;
  3507. grid-row: 2;
  3508. text-transform: uppercase;
  3509. font-weight: 800;
  3510. font-size: 1rem;
  3511. }
  3512. .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 {
  3513. grid-column: 2/span 3;
  3514. grid-row: 3;
  3515. text-transform: uppercase;
  3516. font-weight: 800;
  3517. font-size: 0.8rem;
  3518. }
  3519. .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 {
  3520. grid-column: 2/span 3;
  3521. grid-row: 4;
  3522. font-size: 1.3rem;
  3523. }
  3524. .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 {
  3525. color: rgb(0, 0, 0);
  3526. }
  3527. .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 {
  3528. grid-column: 2/span 3;
  3529. grid-row: 5;
  3530. text-transform: uppercase;
  3531. font-weight: 800;
  3532. font-size: 0.8rem;
  3533. }
  3534. .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 {
  3535. display: inline-flex;
  3536. grid-column: 2/span 3;
  3537. grid-row: 6;
  3538. font-size: 0.8rem;
  3539. padding-top: 1rem;
  3540. justify-content: flex-start;
  3541. }
  3542. .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 {
  3543. justify-self: flex-start;
  3544. }
  3545. .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 {
  3546. content: "proposé le";
  3547. hyphens: none;
  3548. padding-right: 0.5rem;
  3549. }
  3550. .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 {
  3551. border: 2px solid rgb(255, 0, 15);
  3552. }
  3553. .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 {
  3554. border: 2px solid rgb(160, 26, 39);
  3555. }
  3556. .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 {
  3557. border: 2px solid rgb(199, 215, 74);
  3558. }
  3559. .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 {
  3560. border: 2px solid rgb(255, 100, 83);
  3561. }
  3562. .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 {
  3563. border: 2px solid rgb(111, 109, 125);
  3564. }
  3565. @media (max-width: 810px) {
  3566. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3567. flex-direction: column;
  3568. }
  3569. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3570. width: 100%;
  3571. }
  3572. }
  3573. @media (max-width: 810px) {
  3574. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3575. display: flex;
  3576. flex-direction: column;
  3577. padding: 2rem;
  3578. }
  3579. }
  3580. .page-node-type-offre-de-service {
  3581. background: url("../images/pictos/carre-contour-bleu-offre.svg");
  3582. background-repeat: no-repeat;
  3583. background-position-y: 7rem;
  3584. max-width: 100vw;
  3585. background-size: contain;
  3586. }
  3587. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3588. margin-top: 2rem;
  3589. margin-left: 13%;
  3590. display: grid;
  3591. grid-template-columns: auto auto 1fr;
  3592. grid-template-rows: repeat(6 auto);
  3593. }
  3594. @media (max-width: 810px) {
  3595. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3596. margin-left: 8%;
  3597. }
  3598. }
  3599. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3600. width: fit-content;
  3601. grid-column: 1;
  3602. grid-row: 1/span 6;
  3603. width: 250px;
  3604. height: 250px;
  3605. margin-right: 2rem;
  3606. }
  3607. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo img {
  3608. width: 100%;
  3609. height: auto;
  3610. }
  3611. @media (max-width: 810px) {
  3612. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3613. width: 90px;
  3614. height: 90px;
  3615. }
  3616. }
  3617. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste {
  3618. background: rgb(255, 255, 255);
  3619. width: fit-content;
  3620. grid-column: 2/span 3;
  3621. grid-row: 1;
  3622. text-transform: uppercase;
  3623. font-weight: 900;
  3624. font-size: 0.8rem;
  3625. }
  3626. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-5 {
  3627. color: rgb(255, 0, 15);
  3628. }
  3629. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-6 {
  3630. color: rgb(160, 26, 39);
  3631. }
  3632. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-7 {
  3633. color: rgb(199, 215, 74);
  3634. }
  3635. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-8 {
  3636. color: rgb(255, 100, 83);
  3637. }
  3638. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-9 {
  3639. color: rgb(111, 109, 125);
  3640. }
  3641. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-prenom {
  3642. background: rgb(255, 255, 255);
  3643. width: fit-content;
  3644. grid-column: 2;
  3645. grid-row: 2;
  3646. padding-right: 0.5rem;
  3647. text-transform: uppercase;
  3648. font-weight: 900;
  3649. font-size: 1.5rem;
  3650. }
  3651. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-nom {
  3652. background: rgb(255, 255, 255);
  3653. width: fit-content;
  3654. grid-column: 3;
  3655. grid-row: 2;
  3656. text-transform: uppercase;
  3657. font-weight: 900;
  3658. font-size: 1.5rem;
  3659. }
  3660. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure {
  3661. background: rgb(255, 255, 255);
  3662. width: fit-content;
  3663. grid-column: 2/span 3;
  3664. grid-row: 3;
  3665. text-transform: uppercase;
  3666. font-weight: 800;
  3667. font-size: 1.2rem;
  3668. margin-top: 0.5rem;
  3669. }
  3670. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure::after {
  3671. 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>');
  3672. }
  3673. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3674. background: rgb(255, 255, 255);
  3675. width: fit-content;
  3676. grid-column: 2/span 3;
  3677. grid-row: 4;
  3678. font-size: 2.5rem;
  3679. font-family: "Source Code Pro";
  3680. width: 70%;
  3681. }
  3682. @media (max-width: 810px) {
  3683. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3684. font-size: 1.2rem;
  3685. }
  3686. }
  3687. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle a {
  3688. color: rgb(0, 0, 0);
  3689. }
  3690. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-localisation {
  3691. background: rgb(255, 255, 255);
  3692. width: fit-content;
  3693. grid-column: 2/span 3;
  3694. grid-row: 5;
  3695. text-transform: uppercase;
  3696. font-weight: 800;
  3697. font-size: 0.8rem;
  3698. margin-top: 1.5rem;
  3699. }
  3700. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-proposition {
  3701. background: rgb(255, 255, 255);
  3702. width: fit-content;
  3703. grid-column: 2/span 3;
  3704. grid-row: 6;
  3705. font-size: 0.8rem;
  3706. padding-top: 1rem;
  3707. }
  3708. .page-node-type-offre-de-service .layout__region--second {
  3709. margin-top: 3rem;
  3710. margin-left: 20%;
  3711. margin-right: 2rem;
  3712. }
  3713. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary {
  3714. background: rgb(255, 255, 255);
  3715. }
  3716. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary p {
  3717. margin: 0;
  3718. }
  3719. @media (max-width: 810px) {
  3720. .page-node-type-offre-de-service .layout__region--second {
  3721. margin-left: 10%;
  3722. }
  3723. }
  3724. .page-node-type-offre-de-service .layout__region--third {
  3725. margin-top: 3rem;
  3726. }
  3727. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3728. display: flex;
  3729. flex-direction: column;
  3730. width: 70%;
  3731. }
  3732. @media (max-width: 810px) {
  3733. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3734. margin: auto;
  3735. }
  3736. }
  3737. .page-node-type-offre-de-service .layout__region--third .block-region-third .title-contact {
  3738. background: rgb(0, 158, 227);
  3739. color: rgb(255, 255, 255);
  3740. text-transform: uppercase;
  3741. font-weight: 900;
  3742. font-size: 0.8rem;
  3743. padding-top: 1rem;
  3744. padding-left: 1rem;
  3745. padding-right: 1rem;
  3746. }
  3747. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel {
  3748. background: rgb(0, 158, 227);
  3749. color: rgb(255, 255, 255);
  3750. font-weight: 600;
  3751. padding-left: 1rem;
  3752. padding-right: 1rem;
  3753. padding-bottom: 1rem;
  3754. }
  3755. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a {
  3756. color: white;
  3757. hyphens: auto;
  3758. }
  3759. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a svg {
  3760. display: none;
  3761. }
  3762. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-telephone {
  3763. display: none;
  3764. background: rgb(0, 158, 227);
  3765. color: rgb(255, 255, 255);
  3766. font-weight: 600;
  3767. padding-left: 1rem;
  3768. padding-right: 1rem;
  3769. padding-bottom: 1rem;
  3770. }
  3771. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3772. height: fit-content;
  3773. border: 2px solid rgb(0, 158, 227);
  3774. background-color: rgb(255, 255, 255);
  3775. margin-top: 1rem;
  3776. }
  3777. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers {
  3778. min-height: 4rem;
  3779. background: rgb(255, 255, 255);
  3780. color: rgb(0, 158, 227);
  3781. padding-left: 1rem;
  3782. padding-top: 1rem;
  3783. margin-bottom: 1rem;
  3784. }
  3785. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3786. display: none;
  3787. }
  3788. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3789. height: inherit;
  3790. margin: auto;
  3791. }
  3792. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3793. content: url("../images/pictos/noun_Download_file_307900.svg");
  3794. min-width: 50px;
  3795. height: auto;
  3796. padding-right: 1rem;
  3797. }
  3798. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3799. hyphens: auto;
  3800. display: inline-flex;
  3801. align-items: center;
  3802. color: rgb(0, 158, 227);
  3803. font-weight: 800;
  3804. }
  3805. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3806. margin-top: 1rem;
  3807. }
  3808. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3809. margin: auto;
  3810. height: fit-content;
  3811. border: 2px solid rgb(0, 158, 227);
  3812. min-height: 4rem;
  3813. background: rgb(255, 255, 255);
  3814. color: rgb(0, 158, 227);
  3815. padding-left: 1rem;
  3816. padding-top: 1rem;
  3817. margin-bottom: 1rem;
  3818. }
  3819. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3820. display: inline-flex;
  3821. align-items: center;
  3822. color: rgb(0, 158, 227);
  3823. font-weight: 800;
  3824. }
  3825. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3826. content: url("../images/pictos/external_link.png");
  3827. min-width: 50px;
  3828. height: auto;
  3829. padding-right: 1rem;
  3830. }
  3831. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3832. display: none;
  3833. }
  3834. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3835. margin-top: 3rem;
  3836. }
  3837. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3838. font-size: 0.8rem;
  3839. color: rgb(0, 0, 0);
  3840. font-weight: 900;
  3841. margin-bottom: 1rem;
  3842. }
  3843. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3844. display: flex;
  3845. flex-direction: column;
  3846. border: 2px solid rgb(0, 158, 227);
  3847. padding: 1rem;
  3848. height: fit-content;
  3849. margin-bottom: 1rem;
  3850. background-color: rgb(255, 255, 255);
  3851. }
  3852. .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 {
  3853. border-top: 1px solid rgb(0, 158, 227);
  3854. padding-top: 1rem;
  3855. }
  3856. .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 {
  3857. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3858. align-self: flex-end;
  3859. }
  3860. .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 {
  3861. margin: 0;
  3862. }
  3863. .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 {
  3864. color: rgb(0, 0, 0);
  3865. font-size: 1.4rem;
  3866. font-weight: 600;
  3867. }
  3868. .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- {
  3869. font-weight: 800;
  3870. }
  3871. .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 {
  3872. margin: 0;
  3873. }
  3874. .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 {
  3875. display: none;
  3876. }
  3877. .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 {
  3878. margin: 0;
  3879. }
  3880. .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 {
  3881. display: none;
  3882. }
  3883. .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 {
  3884. display: none;
  3885. width: 50%;
  3886. }
  3887. .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 {
  3888. width: 100%;
  3889. height: auto;
  3890. }
  3891. .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 {
  3892. display: inline-flex;
  3893. margin-top: 2rem;
  3894. background: rgb(9, 57, 139);
  3895. margin-right: 1rem;
  3896. padding-left: 0.3rem;
  3897. padding-right: 0.3rem;
  3898. color: rgb(255, 255, 255);
  3899. font-weight: 800;
  3900. vertical-align: middle;
  3901. }
  3902. .path-ressources.annuairederecherche .layout-content {
  3903. background: url("../images/pictos/carre-contour-bleu_annuairederecherche.svg");
  3904. background-repeat: no-repeat;
  3905. background-position-y: 7rem;
  3906. max-width: 100vw;
  3907. background-size: cover;
  3908. }
  3909. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3910. padding-top: 8rem;
  3911. }
  3912. @media (max-width: 479px) {
  3913. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3914. padding-top: 5rem;
  3915. padding-left: 5rem;
  3916. }
  3917. }
  3918. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span {
  3919. padding-top: 3rem;
  3920. padding-bottom: 3rem;
  3921. vertical-align: middle;
  3922. color: rgb(255, 255, 255);
  3923. }
  3924. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3925. display: inline;
  3926. font-family: "Source Code Pro";
  3927. font-size: 2rem;
  3928. font-weight: 800;
  3929. color: rgb(255, 255, 255);
  3930. background-color: rgb(0, 158, 227);
  3931. text-transform: uppercase;
  3932. width: fit-content;
  3933. margin-left: 10%;
  3934. margin-top: 8rem;
  3935. }
  3936. @media (max-width: 479px) {
  3937. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3938. margin-right: 37%;
  3939. margin-bottom: 2rem;
  3940. margin-left: 0;
  3941. }
  3942. }
  3943. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3944. padding-top: 3rem;
  3945. flex: 0 1 50%;
  3946. margin-left: 20%;
  3947. }
  3948. @media (max-width: 479px) {
  3949. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3950. flex: 0 1 80%;
  3951. margin: 0;
  3952. }
  3953. }
  3954. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-config-pages-block {
  3955. background-color: rgb(255, 255, 255);
  3956. margin-bottom: 4rem;
  3957. }
  3958. .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_ {
  3959. margin-bottom: 3rem;
  3960. }
  3961. .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 {
  3962. grid-column: 1;
  3963. grid-row: 1/span 3;
  3964. margin-right: 1rem;
  3965. max-height: 8rem;
  3966. }
  3967. .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 {
  3968. height: 8rem;
  3969. width: 8rem;
  3970. }
  3971. .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 {
  3972. height: 100%;
  3973. width: 100%;
  3974. object-fit: contain;
  3975. }
  3976. .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 {
  3977. grid-column: 2;
  3978. font-weight: 800;
  3979. background-color: rgb(255, 255, 255);
  3980. }
  3981. .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 {
  3982. background-color: rgb(255, 255, 255);
  3983. grid-column: 2;
  3984. }
  3985. .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 {
  3986. margin: 0;
  3987. }
  3988. .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 {
  3989. background-color: rgb(255, 255, 255);
  3990. grid-column: 2;
  3991. }
  3992. .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 {
  3993. color: rgb(0, 0, 0);
  3994. text-decoration: underline;
  3995. }
  3996. .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 {
  3997. display: none;
  3998. }
  3999. .path-webform .region-content [aria-label="Message d'avertissement"] {
  4000. display: none;
  4001. }
  4002. .path-webform .region-content .block-system-main-block h2 {
  4003. display: none;
  4004. }
  4005. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form {
  4006. display: flex;
  4007. flex-direction: row;
  4008. flex-wrap: wrap;
  4009. flex-basis: auto;
  4010. justify-content: flex-start;
  4011. }
  4012. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-titre {
  4013. width: 100%;
  4014. font-family: "Source Code Pro";
  4015. font-size: 1.5rem;
  4016. font-weight: 800;
  4017. color: rgb(255, 255, 255);
  4018. background-color: rgb(0, 158, 227);
  4019. text-transform: uppercase;
  4020. padding-left: 13%;
  4021. padding-top: 2rem;
  4022. padding-bottom: 2rem;
  4023. vertical-align: middle;
  4024. }
  4025. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-sous-titre {
  4026. width: 100%;
  4027. font-family: "Source Code Pro";
  4028. font-size: 2rem;
  4029. font-weight: 800;
  4030. color: rgb(255, 255, 255);
  4031. background-color: rgb(0, 158, 227);
  4032. text-transform: uppercase;
  4033. width: fit-content;
  4034. margin-left: 13%;
  4035. margin-top: 8rem;
  4036. }
  4037. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-processed-text {
  4038. margin-top: 10vh;
  4039. margin-left: 13%;
  4040. margin-right: 20%;
  4041. width: 60%;
  4042. }
  4043. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document {
  4044. margin-left: 13%;
  4045. margin-right: 20%;
  4046. width: 60%;
  4047. display: flex;
  4048. flex-direction: row;
  4049. flex-wrap: wrap;
  4050. margin-top: 2rem;
  4051. }
  4052. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document:after {
  4053. content: "*";
  4054. color: red;
  4055. font-size: 2rem;
  4056. padding-left: 0.5rem;
  4057. }
  4058. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document label {
  4059. width: 100%;
  4060. }
  4061. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input {
  4062. width: 90%;
  4063. height: 5rem;
  4064. }
  4065. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- {
  4066. margin-left: 13%;
  4067. margin-right: 20%;
  4068. width: 60%;
  4069. display: flex;
  4070. flex-direction: row;
  4071. flex-wrap: wrap;
  4072. margin-top: 2rem;
  4073. }
  4074. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s-:after {
  4075. content: "*";
  4076. color: red;
  4077. font-size: 2rem;
  4078. padding-left: 0.5rem;
  4079. }
  4080. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- label {
  4081. width: 100%;
  4082. }
  4083. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- input {
  4084. width: 90%;
  4085. }
  4086. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution {
  4087. margin-left: 13%;
  4088. width: 27%;
  4089. display: flex;
  4090. flex-direction: row;
  4091. flex-wrap: wrap;
  4092. margin-top: 2rem;
  4093. }
  4094. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution:after {
  4095. content: "*";
  4096. color: red;
  4097. font-size: 2rem;
  4098. padding-left: 0.5rem;
  4099. }
  4100. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution label {
  4101. width: 100%;
  4102. }
  4103. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution input {
  4104. width: 90%;
  4105. }
  4106. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages {
  4107. margin-right: 20%;
  4108. width: 27%;
  4109. display: flex;
  4110. flex-direction: row;
  4111. flex-wrap: wrap;
  4112. margin-top: 2rem;
  4113. margin-right: 3rem;
  4114. }
  4115. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages label {
  4116. width: 100%;
  4117. }
  4118. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages input {
  4119. width: 100%;
  4120. }
  4121. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur {
  4122. margin-left: 13%;
  4123. margin-right: 20%;
  4124. width: 60%;
  4125. display: flex;
  4126. flex-direction: row;
  4127. flex-wrap: wrap;
  4128. margin-top: 2rem;
  4129. }
  4130. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur:after {
  4131. content: "*";
  4132. color: red;
  4133. font-size: 2rem;
  4134. padding-left: 0.5rem;
  4135. }
  4136. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur label {
  4137. width: 100%;
  4138. }
  4139. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur input {
  4140. width: 90%;
  4141. }
  4142. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- {
  4143. margin-left: 13%;
  4144. margin-right: 20%;
  4145. width: 60%;
  4146. display: flex;
  4147. flex-direction: row;
  4148. flex-wrap: wrap;
  4149. margin-top: 2rem;
  4150. }
  4151. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc-:after {
  4152. content: "*";
  4153. color: red;
  4154. font-size: 2rem;
  4155. padding-left: 0.5rem;
  4156. }
  4157. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- label {
  4158. width: 100%;
  4159. }
  4160. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- input {
  4161. width: 90%;
  4162. }
  4163. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource {
  4164. margin-left: 13%;
  4165. margin-right: 20%;
  4166. width: 60%;
  4167. display: flex;
  4168. flex-direction: row;
  4169. flex-wrap: wrap;
  4170. margin-top: 2rem;
  4171. }
  4172. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource:after {
  4173. content: "*";
  4174. color: red;
  4175. font-size: 2rem;
  4176. padding-left: 1rem;
  4177. }
  4178. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource label {
  4179. width: 100%;
  4180. }
  4181. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div {
  4182. width: 90%;
  4183. }
  4184. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div textarea {
  4185. width: 100%;
  4186. }
  4187. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet {
  4188. margin-left: 13%;
  4189. margin-right: 20%;
  4190. width: 60%;
  4191. display: flex;
  4192. flex-direction: row;
  4193. flex-wrap: wrap;
  4194. margin-top: 2rem;
  4195. }
  4196. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet label {
  4197. width: 100%;
  4198. }
  4199. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet input {
  4200. width: 90%;
  4201. height: 3rem;
  4202. }
  4203. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- {
  4204. margin-left: 13%;
  4205. margin-right: 20%;
  4206. width: 60%;
  4207. display: flex;
  4208. flex-direction: row;
  4209. flex-wrap: wrap;
  4210. margin-top: 2rem;
  4211. }
  4212. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- label {
  4213. width: 100%;
  4214. }
  4215. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet {
  4216. margin-left: 13%;
  4217. margin-right: 20%;
  4218. width: 60%;
  4219. display: flex;
  4220. flex-direction: row;
  4221. flex-wrap: wrap;
  4222. margin-top: 2rem;
  4223. }
  4224. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet label {
  4225. width: 100%;
  4226. }
  4227. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet input {
  4228. width: 90%;
  4229. height: 3rem;
  4230. }
  4231. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel {
  4232. margin-left: 13%;
  4233. width: 28%;
  4234. display: flex;
  4235. flex-direction: row;
  4236. flex-wrap: wrap;
  4237. margin-top: 2rem;
  4238. }
  4239. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel:after {
  4240. content: "*";
  4241. color: red;
  4242. font-size: 2rem;
  4243. padding-left: 0.5rem;
  4244. }
  4245. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel label {
  4246. width: 100%;
  4247. }
  4248. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel input {
  4249. width: 90%;
  4250. }
  4251. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone {
  4252. margin-right: 20%;
  4253. width: 29%;
  4254. display: flex;
  4255. flex-direction: row;
  4256. flex-wrap: wrap;
  4257. margin-top: 2rem;
  4258. margin-right: 3rem;
  4259. }
  4260. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone:after {
  4261. content: "*";
  4262. color: red;
  4263. font-size: 2rem;
  4264. padding-left: 0.5rem;
  4265. }
  4266. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone label {
  4267. width: 100%;
  4268. }
  4269. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone input {
  4270. width: 90%;
  4271. }
  4272. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions {
  4273. width: 60%;
  4274. }
  4275. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions input {
  4276. width: 30%;
  4277. align-self: flex-end;
  4278. background-color: rgb(0, 158, 227);
  4279. text-transform: uppercase;
  4280. color: rgb(255, 255, 255);
  4281. font-size: 1.2rem;
  4282. font-weight: 600;
  4283. float: right;
  4284. margin-top: 1rem;
  4285. border: none;
  4286. }
  4287. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after {
  4288. 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>');
  4289. }
  4290. .path-webform .region-content #webform-submission-offre-de-service-add-form {
  4291. display: flex;
  4292. flex-direction: row;
  4293. flex-wrap: wrap;
  4294. flex-basis: auto;
  4295. justify-content: flex-start;
  4296. }
  4297. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-title {
  4298. width: 100%;
  4299. font-family: "Source Code Pro";
  4300. font-size: 1.5rem;
  4301. font-weight: 800;
  4302. color: rgb(255, 255, 255);
  4303. background-color: rgb(0, 158, 227);
  4304. text-transform: uppercase;
  4305. padding-left: 13%;
  4306. padding-top: 2rem;
  4307. padding-bottom: 2rem;
  4308. vertical-align: middle;
  4309. }
  4310. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-sous-titre {
  4311. width: 100%;
  4312. font-family: "Source Code Pro";
  4313. font-size: 2rem;
  4314. font-weight: 800;
  4315. color: rgb(255, 255, 255);
  4316. background-color: rgb(0, 158, 227);
  4317. text-transform: uppercase;
  4318. width: fit-content;
  4319. margin-left: 13%;
  4320. margin-top: 8rem;
  4321. }
  4322. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-processed-text {
  4323. margin-top: 10vh;
  4324. margin-left: 13%;
  4325. margin-right: 20%;
  4326. width: 60%;
  4327. }
  4328. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service {
  4329. margin-left: 13%;
  4330. margin-right: 20%;
  4331. width: 60%;
  4332. display: flex;
  4333. flex-direction: row;
  4334. flex-wrap: wrap;
  4335. margin-top: 2rem;
  4336. }
  4337. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service:after {
  4338. content: "*";
  4339. color: red;
  4340. font-size: 2rem;
  4341. padding-left: 0.5rem;
  4342. }
  4343. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service label {
  4344. width: 100%;
  4345. }
  4346. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service input {
  4347. width: 90%;
  4348. height: 5rem;
  4349. }
  4350. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure {
  4351. margin-left: 13%;
  4352. margin-right: 20%;
  4353. width: 60%;
  4354. display: flex;
  4355. flex-direction: row;
  4356. flex-wrap: wrap;
  4357. margin-top: 2rem;
  4358. }
  4359. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure:after {
  4360. content: "*";
  4361. color: red;
  4362. font-size: 2rem;
  4363. padding-left: 0.5rem;
  4364. }
  4365. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure label {
  4366. width: 100%;
  4367. }
  4368. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure input {
  4369. width: 90%;
  4370. }
  4371. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation {
  4372. margin-left: 13%;
  4373. margin-right: 20%;
  4374. width: 60%;
  4375. display: flex;
  4376. flex-direction: row;
  4377. flex-wrap: wrap;
  4378. margin-top: 2rem;
  4379. }
  4380. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation:after {
  4381. content: "*";
  4382. color: red;
  4383. font-size: 2rem;
  4384. padding-left: 0.5rem;
  4385. }
  4386. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation label {
  4387. width: 100%;
  4388. }
  4389. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation input {
  4390. width: 90%;
  4391. }
  4392. .path-webform .region-content #webform-submission-offre-de-service-add-form div {
  4393. width: 100%;
  4394. }
  4395. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description {
  4396. margin-left: 13%;
  4397. margin-right: 20%;
  4398. width: 60%;
  4399. display: flex;
  4400. flex-direction: row;
  4401. flex-wrap: wrap;
  4402. margin-top: 2rem;
  4403. }
  4404. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description label {
  4405. width: 100%;
  4406. }
  4407. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description textarea {
  4408. width: 90%;
  4409. }
  4410. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description {
  4411. margin-left: 13%;
  4412. margin-right: 20%;
  4413. width: 60%;
  4414. display: flex;
  4415. flex-direction: row;
  4416. flex-wrap: wrap;
  4417. margin-top: 2rem;
  4418. }
  4419. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description label {
  4420. width: 100%;
  4421. }
  4422. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description textarea {
  4423. width: 90%;
  4424. }
  4425. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-image {
  4426. margin-left: 13%;
  4427. margin-right: 20%;
  4428. width: 60%;
  4429. display: flex;
  4430. flex-direction: row;
  4431. flex-wrap: wrap;
  4432. margin-top: 2rem;
  4433. }
  4434. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-des-documents-complementaires-en-pdf {
  4435. margin-left: 13%;
  4436. margin-right: 20%;
  4437. width: 60%;
  4438. display: flex;
  4439. flex-direction: row;
  4440. flex-wrap: wrap;
  4441. margin-top: 2rem;
  4442. }
  4443. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper {
  4444. width: 100%;
  4445. }
  4446. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url {
  4447. margin-left: 13%;
  4448. margin-right: 20%;
  4449. width: 60%;
  4450. display: flex;
  4451. flex-direction: row;
  4452. flex-wrap: wrap;
  4453. margin-top: 2rem;
  4454. }
  4455. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url:after {
  4456. content: "*";
  4457. color: red;
  4458. font-size: 2rem;
  4459. padding-left: 0.5rem;
  4460. }
  4461. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url label {
  4462. width: 100%;
  4463. }
  4464. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url input {
  4465. width: 90%;
  4466. }
  4467. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel {
  4468. margin-left: 13%;
  4469. display: flex;
  4470. flex-direction: row;
  4471. flex-wrap: wrap;
  4472. margin-top: 2rem;
  4473. width: 28%;
  4474. }
  4475. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel:after {
  4476. content: "*";
  4477. color: red;
  4478. font-size: 2rem;
  4479. padding-left: 0.5rem;
  4480. }
  4481. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel label {
  4482. width: 100%;
  4483. }
  4484. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel input {
  4485. width: 90%;
  4486. }
  4487. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone {
  4488. margin-right: 20%;
  4489. width: 29%;
  4490. display: flex;
  4491. flex-direction: row;
  4492. flex-wrap: wrap;
  4493. margin-top: 2rem;
  4494. margin-right: 3rem;
  4495. }
  4496. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone:after {
  4497. content: "*";
  4498. color: red;
  4499. font-size: 2rem;
  4500. padding-left: 0.5rem;
  4501. }
  4502. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone label {
  4503. width: 100%;
  4504. }
  4505. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone input {
  4506. width: 90%;
  4507. }
  4508. .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 {
  4509. margin-top: 3rem;
  4510. margin-bottom: 3rem;
  4511. margin-left: 13%;
  4512. margin-right: 20%;
  4513. width: 60%;
  4514. }
  4515. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions {
  4516. width: 60%;
  4517. }
  4518. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions input {
  4519. width: 30%;
  4520. align-self: flex-end;
  4521. background-color: rgb(0, 158, 227);
  4522. text-transform: uppercase;
  4523. color: rgb(255, 255, 255);
  4524. font-size: 1.2rem;
  4525. font-weight: 600;
  4526. float: right;
  4527. margin-top: 1rem;
  4528. border: none;
  4529. }
  4530. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions #edit-actions-submit:after {
  4531. 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>');
  4532. }
  4533. .path-webform .region-content #webform-submission-question-add-form {
  4534. display: flex;
  4535. flex-direction: row;
  4536. flex-wrap: wrap;
  4537. flex-basis: auto;
  4538. justify-content: flex-start;
  4539. margin-top: 10vh;
  4540. width: 60%;
  4541. margin-left: 13%;
  4542. margin-right: 20%;
  4543. }
  4544. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel {
  4545. display: flex;
  4546. flex-direction: row;
  4547. flex-wrap: wrap;
  4548. margin-top: 2rem;
  4549. width: 100%;
  4550. }
  4551. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel:after {
  4552. content: "*";
  4553. color: red;
  4554. font-size: 2rem;
  4555. padding-left: 0.5rem;
  4556. }
  4557. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel label {
  4558. width: 100%;
  4559. }
  4560. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel input {
  4561. width: 90%;
  4562. }
  4563. .path-webform .region-content #webform-submission-question-add-form .form-item-question {
  4564. display: flex;
  4565. flex-direction: row;
  4566. flex-wrap: wrap;
  4567. margin-top: 2rem;
  4568. width: 100%;
  4569. }
  4570. .path-webform .region-content #webform-submission-question-add-form .form-item-question:after {
  4571. content: "*";
  4572. color: red;
  4573. font-size: 2rem;
  4574. padding-left: 0.9rem;
  4575. }
  4576. .path-webform .region-content #webform-submission-question-add-form .form-item-question label {
  4577. width: 100%;
  4578. }
  4579. .path-webform .region-content #webform-submission-question-add-form .form-item-question div {
  4580. width: 90%;
  4581. }
  4582. .path-webform .region-content #webform-submission-question-add-form .form-item-question div textarea {
  4583. width: 100%;
  4584. height: 5rem;
  4585. }
  4586. .path-webform .region-content #webform-submission-question-add-form #edit-actions {
  4587. width: 90%;
  4588. }
  4589. .path-webform .region-content #webform-submission-question-add-form #edit-actions input {
  4590. width: 30%;
  4591. align-self: flex-end;
  4592. background-color: rgb(0, 158, 227);
  4593. text-transform: uppercase;
  4594. color: rgb(255, 255, 255);
  4595. font-size: 1.2rem;
  4596. font-weight: 600;
  4597. float: right;
  4598. margin-top: 1rem;
  4599. border: none;
  4600. }
  4601. .path-webform .region-content #webform-submission-question-add-form #edit-actions #edit-actions-submit:after {
  4602. 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>');
  4603. }
  4604. .path-projets .region-content #block-contenudelapageprincipale span {
  4605. padding-top: 3rem;
  4606. padding-bottom: 3rem;
  4607. vertical-align: middle;
  4608. }
  4609. .path-projets .region-content #block-contenudelapageprincipale span h2 {
  4610. margin: 0;
  4611. padding-top: 2rem;
  4612. height: 4rem;
  4613. color: rgb(255, 255, 255);
  4614. font-family: "Source Code Pro";
  4615. text-transform: uppercase;
  4616. background: rgb(0, 158, 227);
  4617. padding-left: 13%;
  4618. }
  4619. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4620. display: grid;
  4621. grid-template-columns: 1fr repeat(7, 1fr) 1fr;
  4622. }
  4623. @media (max-width: 810px) {
  4624. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4625. display: flex;
  4626. flex-direction: column;
  4627. }
  4628. }
  4629. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 {
  4630. grid-column: 1/span 10;
  4631. }
  4632. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content {
  4633. overflow: scroll;
  4634. height: 210px;
  4635. margin: 17px 10px 17px 20px !important;
  4636. padding-right: 10px;
  4637. }
  4638. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a {
  4639. display: none;
  4640. }
  4641. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:nth-child(1) {
  4642. display: block !important;
  4643. }
  4644. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:last-of-type {
  4645. display: block !important;
  4646. }
  4647. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content #text {
  4648. display: none;
  4649. }
  4650. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4651. grid-column: 3/span 5;
  4652. margin: auto;
  4653. }
  4654. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block span h2 {
  4655. display: none;
  4656. }
  4657. .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) {
  4658. font-size: 1.5rem;
  4659. }
  4660. @media (max-width: 810px) {
  4661. .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) {
  4662. font-size: 1.3rem;
  4663. }
  4664. }
  4665. @media (max-width: 810px) {
  4666. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4667. padding: 1rem;
  4668. }
  4669. }
  4670. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4671. grid-column: 8/span 9;
  4672. margin-top: 4rem;
  4673. background-color: rgb(0, 158, 227);
  4674. height: fit-content;
  4675. width: 60%;
  4676. margin-left: 2rem;
  4677. grid-row: 2;
  4678. }
  4679. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .display {
  4680. display: block;
  4681. }
  4682. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien {
  4683. display: flex;
  4684. flex-direction: column;
  4685. margin-top: 2rem;
  4686. margin-bottom: 2rem;
  4687. margin-left: 1.5rem;
  4688. margin-right: 1.5rem;
  4689. text-align: center;
  4690. }
  4691. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien a {
  4692. font-weight: 800;
  4693. color: rgb(255, 255, 255);
  4694. font-size: 1.3rem;
  4695. }
  4696. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien:after {
  4697. margin-left: auto;
  4698. padding-top: 1rem;
  4699. display: block;
  4700. content: url("../images/pictos/noun_Arrow_3771902.svg");
  4701. }
  4702. @media (max-width: 810px) {
  4703. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4704. margin: auto;
  4705. }
  4706. }
  4707. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4708. grid-column: 2/span 7;
  4709. }
  4710. @media (max-width: 810px) {
  4711. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4712. padding: 1rem;
  4713. }
  4714. }
  4715. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .buttons-filtres-ressources {
  4716. display: none;
  4717. }
  4718. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets {
  4719. margin: auto;
  4720. }
  4721. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets #filtres {
  4722. scroll-margin-top: 10rem;
  4723. }
  4724. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4725. margin-top: 4rem;
  4726. padding-left: 0.5rem;
  4727. display: flex;
  4728. flex-direction: column;
  4729. }
  4730. @media (max-width: 479px) {
  4731. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4732. flex-direction: column;
  4733. padding-bottom: 3rem;
  4734. margin-top: 0rem;
  4735. }
  4736. }
  4737. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4738. content: "Filtrer par :";
  4739. margin-right: 2rem;
  4740. margin-bottom: 1rem;
  4741. margin-left: 0.5rem;
  4742. font-weight: 900;
  4743. min-width: fit-content;
  4744. }
  4745. @media (max-width: 479px) {
  4746. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4747. padding-bottom: 1rem;
  4748. }
  4749. }
  4750. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters .form-actions {
  4751. margin-right: 1rem;
  4752. margin-bottom: 1rem;
  4753. }
  4754. .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 {
  4755. margin-top: 2rem;
  4756. display: flex;
  4757. flex-direction: row;
  4758. flex-wrap: wrap;
  4759. }
  4760. @media (max-width: 810px) {
  4761. .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 {
  4762. flex-direction: column;
  4763. }
  4764. }
  4765. .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 {
  4766. width: 25%;
  4767. }
  4768. @media (max-width: 810px) {
  4769. .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 {
  4770. width: 100%;
  4771. }
  4772. }
  4773. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4774. color: rgb(9, 57, 139);
  4775. line-height: 1.5rem;
  4776. padding: 0.5rem;
  4777. padding-right: 1rem;
  4778. padding-left: 1rem;
  4779. transition: transform 0.3s ease, box-shadow 0.3s ease;
  4780. transform-origin: center;
  4781. }
  4782. @media (max-width: 479px) {
  4783. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4784. padding-left: 0rem;
  4785. padding-right: 0rem;
  4786. padding-top: 2rem;
  4787. }
  4788. }
  4789. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet:hover {
  4790. transform: translateY(-5px);
  4791. }
  4792. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child {
  4793. display: flex;
  4794. flex-direction: column;
  4795. }
  4796. .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 {
  4797. color: rgb(9, 57, 139);
  4798. }
  4799. .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 {
  4800. order: 1;
  4801. }
  4802. .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 {
  4803. display: none;
  4804. }
  4805. .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 {
  4806. display: block;
  4807. }
  4808. .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 {
  4809. width: 100%;
  4810. max-height: 175px;
  4811. object-fit: cover;
  4812. }
  4813. .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 {
  4814. display: block;
  4815. 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>');
  4816. }
  4817. .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 {
  4818. display: none;
  4819. }
  4820. .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 {
  4821. margin-top: 0.5rem;
  4822. font-size: 0.9rem;
  4823. font-weight: 800;
  4824. order: 4;
  4825. }
  4826. .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 {
  4827. order: 4;
  4828. margin-top: 0.5rem;
  4829. font-size: 0.8rem;
  4830. font-weight: 800;
  4831. }
  4832. .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 {
  4833. margin: 0;
  4834. }
  4835. .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 {
  4836. order: 5;
  4837. color: red;
  4838. margin-top: 0.8rem;
  4839. font-size: 0.7rem;
  4840. }
  4841. .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 {
  4842. display: none;
  4843. }
  4844. .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 {
  4845. display: none;
  4846. }
  4847. .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 {
  4848. display: none;
  4849. }
  4850. .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 {
  4851. display: none;
  4852. }
  4853. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region {
  4854. order: 2;
  4855. display: flex;
  4856. flex-wrap: wrap;
  4857. flex-direction: row;
  4858. font-size: 0.9rem;
  4859. }
  4860. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-adresse {
  4861. display: flex;
  4862. flex: 0 1 auto;
  4863. width: auto;
  4864. min-width: 0;
  4865. text-transform: uppercase;
  4866. line-height: 1.3;
  4867. font-weight: 800;
  4868. }
  4869. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-adresse .address {
  4870. display: flex;
  4871. margin: 0;
  4872. flex-wrap: wrap;
  4873. min-width: 0;
  4874. }
  4875. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-adresse .address .postal-code {
  4876. display: none;
  4877. }
  4878. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-adresse .address .locality {
  4879. padding-top: 0 !important;
  4880. padding-bottom: 0 !important;
  4881. }
  4882. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-adresse .address .locality::after {
  4883. content: ",";
  4884. margin-right: 0.3rem;
  4885. }
  4886. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-adresse .address .country {
  4887. display: none;
  4888. padding-top: 0 !important;
  4889. padding-bottom: 0 !important;
  4890. }
  4891. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-region {
  4892. display: flex;
  4893. min-width: 0;
  4894. flex: 0 1 auto;
  4895. width: auto;
  4896. overflow-wrap: break-word;
  4897. text-transform: uppercase;
  4898. font-weight: 800;
  4899. padding-top: 0 !important;
  4900. padding-bottom: 0 !important;
  4901. line-height: 1.3;
  4902. }
  4903. .path-node.page-node-type-projet .layout-container {
  4904. overflow: unset;
  4905. }
  4906. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top {
  4907. padding-top: 4rem;
  4908. margin-left: 10%;
  4909. margin-right: 10%;
  4910. width: 80vw;
  4911. }
  4912. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4913. display: flex;
  4914. flex-direction: row;
  4915. margin-bottom: 2rem;
  4916. }
  4917. @media (max-width: 568px) {
  4918. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4919. flex-direction: column;
  4920. }
  4921. }
  4922. .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 {
  4923. width: 60%;
  4924. padding-right: 2rem;
  4925. }
  4926. @media (max-width: 568px) {
  4927. .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 {
  4928. width: 100%;
  4929. }
  4930. }
  4931. .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 {
  4932. height: auto;
  4933. max-height: 600px;
  4934. object-fit: contain;
  4935. width: inherit;
  4936. }
  4937. @media (max-width: 810px) {
  4938. .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 {
  4939. padding-top: 1rem;
  4940. object-fit: cover;
  4941. width: 100%;
  4942. }
  4943. }
  4944. @media (max-width: 568px) {
  4945. .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 {
  4946. width: 100%;
  4947. max-height: 300px;
  4948. }
  4949. }
  4950. .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 {
  4951. display: inline-block;
  4952. }
  4953. .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 {
  4954. display: none;
  4955. }
  4956. .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 {
  4957. opacity: 1 !important;
  4958. top: 0 !important;
  4959. }
  4960. .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 {
  4961. top: 98% !important;
  4962. }
  4963. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  4964. width: 40%;
  4965. }
  4966. @media (max-width: 568px) {
  4967. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  4968. width: 100%;
  4969. }
  4970. }
  4971. .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 {
  4972. margin: 0;
  4973. }
  4974. .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 {
  4975. font-family: "Marianne";
  4976. font-size: 2.3rem;
  4977. font-weight: 800;
  4978. color: rgb(0, 158, 227);
  4979. }
  4980. @media (max-width: 1624px) {
  4981. .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 {
  4982. font-size: 2.3rem;
  4983. }
  4984. }
  4985. @media (max-width: 1384px) {
  4986. .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 {
  4987. font-size: 2rem;
  4988. }
  4989. }
  4990. @media (max-width: 1216px) {
  4991. .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 {
  4992. font-size: rem;
  4993. }
  4994. }
  4995. @media (max-width: 810px) {
  4996. .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 {
  4997. font-size: 1.7rem;
  4998. }
  4999. }
  5000. .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 {
  5001. margin-top: 2rem;
  5002. }
  5003. @media (max-width: 1624px) {
  5004. .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 {
  5005. margin-top: 1rem;
  5006. padding-top: 0.5rem;
  5007. }
  5008. }
  5009. @media (max-width: 1384px) {
  5010. .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 {
  5011. margin-top: 0.8rem;
  5012. padding-top: 0.5rem;
  5013. }
  5014. }
  5015. @media (max-width: 810px) {
  5016. .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 {
  5017. padding-top: 0.5rem;
  5018. }
  5019. }
  5020. .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 {
  5021. color: rgb(9, 57, 139);
  5022. font-size: 1.5rem;
  5023. font-weight: 900;
  5024. text-transform: uppercase;
  5025. }
  5026. @media (max-width: 1624px) {
  5027. .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 {
  5028. font-size: 1.3rem;
  5029. }
  5030. }
  5031. @media (max-width: 1216px) {
  5032. .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 {
  5033. font-size: 1.1rem;
  5034. }
  5035. }
  5036. @media (max-width: 810px) {
  5037. .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 {
  5038. font-size: 1rem;
  5039. }
  5040. }
  5041. .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 {
  5042. margin-top: 2rem;
  5043. width: fit-content;
  5044. }
  5045. .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 {
  5046. background-color: rgb(225, 0, 15);
  5047. color: white;
  5048. font-weight: 800;
  5049. padding-right: 0.3rem;
  5050. padding-left: 0.2rem;
  5051. }
  5052. @media (max-width: 1624px) {
  5053. .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 {
  5054. margin-top: 1rem;
  5055. }
  5056. }
  5057. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  5058. display: flex;
  5059. flex-direction: row;
  5060. border: 0.1rem solid;
  5061. justify-content: space-evenly;
  5062. width: 90%;
  5063. margin-top: 3rem;
  5064. font-weight: 600;
  5065. }
  5066. @media (max-width: 479px) {
  5067. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  5068. flex-direction: column;
  5069. width: 100%;
  5070. }
  5071. }
  5072. .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 {
  5073. padding-right: 1rem;
  5074. order: 1;
  5075. width: 30%;
  5076. position: relative;
  5077. height: 80px;
  5078. text-align: center;
  5079. }
  5080. @media (max-width: 479px) {
  5081. .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 {
  5082. width: 100%;
  5083. }
  5084. }
  5085. .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 {
  5086. content: url("../images/pictos/picto_lieu.svg");
  5087. min-width: 30px;
  5088. height: auto;
  5089. padding-right: 1rem;
  5090. position: absolute;
  5091. left: 0;
  5092. margin-top: 0.83em;
  5093. margin-left: 1rem;
  5094. }
  5095. .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 {
  5096. order: 1;
  5097. margin-left: 70px;
  5098. margin-bottom: 1rem;
  5099. height: fit-content;
  5100. }
  5101. .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 {
  5102. display: inline-flex;
  5103. order: 2;
  5104. margin-left: 70px;
  5105. height: fit-content;
  5106. }
  5107. .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 {
  5108. display: flex;
  5109. flex-direction: row;
  5110. margin-top: 0.83em;
  5111. }
  5112. .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 {
  5113. margin: auto;
  5114. display: flex;
  5115. flex-direction: column;
  5116. justify-content: start;
  5117. margin: 0;
  5118. }
  5119. .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 {
  5120. display: none;
  5121. }
  5122. .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 {
  5123. order: 4;
  5124. padding-left: 1rem;
  5125. padding-right: 1rem;
  5126. padding-bottom: 1rem;
  5127. border-left: 0.1rem solid;
  5128. width: 30%;
  5129. }
  5130. @media (max-width: 479px) {
  5131. .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 {
  5132. width: 100%;
  5133. border-top: 0.1rem solid;
  5134. border-left: 0;
  5135. padding-right: 0rem;
  5136. padding-left: 0rem;
  5137. }
  5138. }
  5139. .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 {
  5140. color: rgb(9, 57, 139);
  5141. font-size: 1.2rem;
  5142. font-weight: 900;
  5143. text-transform: uppercase;
  5144. margin-bottom: 0rem !important;
  5145. }
  5146. .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 {
  5147. content: " :";
  5148. }
  5149. @media (max-width: 479px) {
  5150. .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 {
  5151. padding-right: 1rem;
  5152. padding-left: 1rem;
  5153. }
  5154. }
  5155. @media (max-width: 479px) {
  5156. .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 {
  5157. padding-right: 1rem;
  5158. padding-left: 1rem;
  5159. }
  5160. }
  5161. .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 {
  5162. display: none;
  5163. }
  5164. .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 {
  5165. order: 2;
  5166. padding-left: 1rem;
  5167. border-left: 0.1rem solid;
  5168. padding-bottom: 1rem;
  5169. width: 20%;
  5170. }
  5171. @media (max-width: 479px) {
  5172. .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 {
  5173. border-left: 0;
  5174. border-top: 0.1rem solid;
  5175. width: 100%;
  5176. padding-right: 0rem;
  5177. padding-left: 0rem;
  5178. }
  5179. }
  5180. .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 {
  5181. color: rgb(9, 57, 139);
  5182. font-size: 1.2rem;
  5183. font-weight: 900;
  5184. text-transform: uppercase;
  5185. margin-bottom: 0rem !important;
  5186. }
  5187. .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 {
  5188. content: " :";
  5189. }
  5190. @media (max-width: 479px) {
  5191. .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 {
  5192. padding-right: 1rem;
  5193. padding-left: 1rem;
  5194. }
  5195. }
  5196. @media (max-width: 479px) {
  5197. .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 {
  5198. padding-right: 1rem;
  5199. padding-left: 1rem;
  5200. }
  5201. }
  5202. .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 {
  5203. display: none;
  5204. }
  5205. .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 {
  5206. order: 3;
  5207. padding-left: 1rem;
  5208. padding-bottom: 1rem;
  5209. border-left: 0.1rem solid;
  5210. width: 20%;
  5211. }
  5212. @media (max-width: 479px) {
  5213. .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 {
  5214. border-left: 0;
  5215. border-top: 0.1rem solid;
  5216. width: 100%;
  5217. padding-right: 0rem;
  5218. padding-left: 0rem;
  5219. }
  5220. }
  5221. .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 {
  5222. color: rgb(9, 57, 139);
  5223. font-size: 1.2rem;
  5224. font-weight: 900;
  5225. text-transform: uppercase;
  5226. margin-bottom: 0rem !important;
  5227. }
  5228. .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 {
  5229. content: " :";
  5230. }
  5231. @media (max-width: 479px) {
  5232. .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 {
  5233. padding-right: 1rem;
  5234. padding-left: 1rem;
  5235. }
  5236. }
  5237. @media (max-width: 479px) {
  5238. .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 {
  5239. padding-right: 1rem;
  5240. padding-left: 1rem;
  5241. }
  5242. }
  5243. .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 {
  5244. display: none;
  5245. }
  5246. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5247. margin-top: 5rem;
  5248. }
  5249. @media (max-width: 479px) {
  5250. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5251. display: none;
  5252. }
  5253. }
  5254. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  5255. display: flex;
  5256. justify-content: flex-end;
  5257. position: -webkit-sticky;
  5258. position: sticky;
  5259. top: 10rem;
  5260. }
  5261. .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 {
  5262. display: flex;
  5263. justify-content: flex-end;
  5264. width: 50%;
  5265. background-color: rgb(255, 255, 255);
  5266. padding-right: 2rem;
  5267. }
  5268. .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 {
  5269. display: flex;
  5270. font-size: 1rem;
  5271. font-weight: 1000;
  5272. color: rgb(9, 57, 139);
  5273. border-bottom: 1px solid rgb(0, 158, 227);
  5274. padding-bottom: 0.5rem;
  5275. padding-right: 1rem;
  5276. margin-bottom: 0.8rem;
  5277. }
  5278. .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 {
  5279. text-decoration: underline;
  5280. }
  5281. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5282. margin-top: 5rem;
  5283. flex: 0 1 50%;
  5284. }
  5285. @media (max-width: 479px) {
  5286. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5287. flex: 0 1 100%;
  5288. margin-top: 1rem;
  5289. }
  5290. }
  5291. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5292. width: 90%;
  5293. }
  5294. @media (max-width: 479px) {
  5295. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5296. width: 80%;
  5297. margin: auto;
  5298. }
  5299. }
  5300. .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 {
  5301. margin-top: 0;
  5302. }
  5303. .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 {
  5304. background-color: white;
  5305. }
  5306. .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 {
  5307. background-color: rgb(255, 255, 255);
  5308. }
  5309. .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 {
  5310. margin-top: 3rem;
  5311. }
  5312. .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 {
  5313. font-size: 1.5rem;
  5314. font-weight: 1000;
  5315. font-family: "Source Code Pro";
  5316. color: rgb(9, 57, 139);
  5317. text-transform: uppercase;
  5318. margin-bottom: 0.8rem;
  5319. }
  5320. .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 {
  5321. text-transform: none !important;
  5322. }
  5323. .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 {
  5324. width: 100%;
  5325. height: auto;
  5326. }
  5327. .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 {
  5328. padding-right: 2rem;
  5329. }
  5330. .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 {
  5331. margin-top: 0;
  5332. }
  5333. .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 {
  5334. color: rgb(0, 0, 0);
  5335. text-decoration: underline;
  5336. }
  5337. .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 {
  5338. display: none;
  5339. }
  5340. .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 {
  5341. overflow-y: visible !important;
  5342. }
  5343. .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 {
  5344. font-size: 1.5rem;
  5345. font-weight: 1000;
  5346. font-family: "Source Code Pro";
  5347. color: rgb(9, 57, 139);
  5348. text-transform: uppercase;
  5349. margin-top: 2rem;
  5350. margin-bottom: 0.8rem;
  5351. }
  5352. .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 {
  5353. display: flex;
  5354. flex-direction: row;
  5355. justify-content: space-between;
  5356. }
  5357. .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 {
  5358. display: flex;
  5359. flex-direction: column;
  5360. align-items: center;
  5361. }
  5362. .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 {
  5363. padding-top: 1rem;
  5364. }
  5365. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5366. margin-top: 5rem;
  5367. }
  5368. @media (max-width: 479px) {
  5369. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5370. margin-top: 2rem;
  5371. }
  5372. }
  5373. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5374. display: flex;
  5375. flex-direction: column;
  5376. width: 65%;
  5377. }
  5378. @media (max-width: 479px) {
  5379. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5380. width: 80%;
  5381. margin: auto;
  5382. }
  5383. }
  5384. .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 {
  5385. display: none;
  5386. }
  5387. .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 {
  5388. height: fit-content;
  5389. border: 2px solid rgb(0, 158, 227);
  5390. background-color: rgb(255, 255, 255);
  5391. margin-bottom: 1rem;
  5392. min-height: 4rem;
  5393. color: rgb(0, 158, 227);
  5394. padding-left: 1rem;
  5395. padding-top: 1rem;
  5396. }
  5397. .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) {
  5398. display: none;
  5399. }
  5400. .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 {
  5401. height: inherit;
  5402. margin: auto;
  5403. }
  5404. .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 {
  5405. content: url("../images/pictos/download.png");
  5406. min-width: 30px;
  5407. height: auto;
  5408. padding-right: 2rem;
  5409. }
  5410. .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 {
  5411. hyphens: auto;
  5412. display: inline-flex;
  5413. color: rgb(0, 158, 227);
  5414. font-weight: 800;
  5415. }
  5416. .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 {
  5417. height: inherit;
  5418. margin: auto;
  5419. padding-right: 1rem;
  5420. }
  5421. .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 {
  5422. content: url("../images/pictos/download.png");
  5423. min-width: 30px;
  5424. height: auto;
  5425. padding-right: 2rem;
  5426. }
  5427. .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 {
  5428. hyphens: auto;
  5429. display: inline-flex;
  5430. color: rgb(0, 158, 227);
  5431. font-weight: 800;
  5432. }
  5433. .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 {
  5434. display: none;
  5435. }
  5436. .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 {
  5437. margin: auto;
  5438. height: fit-content;
  5439. border: 2px solid rgb(0, 158, 227);
  5440. min-height: 4rem;
  5441. background: rgb(255, 255, 255);
  5442. color: rgb(0, 158, 227);
  5443. padding-left: 1rem;
  5444. padding-top: 1rem;
  5445. margin-bottom: 1rem;
  5446. padding-bottom: 1rem;
  5447. }
  5448. .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 {
  5449. display: inline-flex;
  5450. align-items: center;
  5451. color: rgb(0, 158, 227);
  5452. font-weight: 800;
  5453. }
  5454. .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 {
  5455. content: url("../images/pictos/external_link.png");
  5456. min-width: 30px;
  5457. height: auto;
  5458. padding-right: 2rem;
  5459. }
  5460. .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 {
  5461. display: none;
  5462. }
  5463. .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- {
  5464. margin-top: 3rem;
  5465. }
  5466. @media (max-width: 479px) {
  5467. .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- {
  5468. margin-top: 2rem;
  5469. }
  5470. }
  5471. .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 {
  5472. font-size: 0.8rem;
  5473. color: rgb(0, 0, 0);
  5474. font-weight: 900;
  5475. }
  5476. .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- .field--name-field-ressource-s-liee-s- {
  5477. display: flex;
  5478. flex-direction: column;
  5479. }
  5480. .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- .field--name-field-ressource-s-liee-s- .field__item:has(.type-les-projets-en-images) {
  5481. display: flex;
  5482. order: -1;
  5483. }
  5484. .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 {
  5485. display: flex;
  5486. flex-direction: column;
  5487. border: 2px solid rgb(0, 158, 227);
  5488. padding: 1rem;
  5489. height: fit-content;
  5490. margin-bottom: 1rem;
  5491. background-color: rgb(255, 255, 255);
  5492. }
  5493. .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 {
  5494. display: flex;
  5495. flex-direction: column;
  5496. }
  5497. .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 {
  5498. order: 3;
  5499. }
  5500. .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 {
  5501. margin: 0;
  5502. }
  5503. .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 {
  5504. color: rgb(0, 0, 0);
  5505. font-size: 1rem;
  5506. font-weight: 900;
  5507. font-style: italic;
  5508. }
  5509. .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 {
  5510. display: none;
  5511. }
  5512. .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 {
  5513. order: 2;
  5514. text-transform: uppercase;
  5515. color: rgb(0, 158, 227);
  5516. font-weight: 900;
  5517. font-size: 0.8rem;
  5518. }
  5519. .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- {
  5520. order: 5;
  5521. font-weight: 800;
  5522. }
  5523. .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 {
  5524. margin: 0;
  5525. }
  5526. .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 {
  5527. display: none;
  5528. }
  5529. .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 {
  5530. margin: 0;
  5531. }
  5532. .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 {
  5533. display: none;
  5534. }
  5535. .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 {
  5536. order: 1;
  5537. width: 25%;
  5538. }
  5539. .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 {
  5540. width: 100%;
  5541. height: auto;
  5542. }
  5543. .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 {
  5544. order: 6;
  5545. }
  5546. .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 {
  5547. display: none;
  5548. }
  5549. .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 {
  5550. order: 7;
  5551. display: flex;
  5552. margin-top: 0.8rem;
  5553. flex-direction: row;
  5554. flex-wrap: wrap;
  5555. }
  5556. .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 {
  5557. display: none;
  5558. }
  5559. .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 {
  5560. display: flex;
  5561. flex-direction: row;
  5562. flex-wrap: wrap;
  5563. }
  5564. .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 {
  5565. margin-right: 0.5rem;
  5566. padding-right: 0.3rem;
  5567. font-size: 0.8rem;
  5568. margin-top: 0.2rem;
  5569. }
  5570. .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 {
  5571. background: rgb(9, 57, 139);
  5572. color: rgb(255, 255, 255);
  5573. font-weight: 800;
  5574. vertical-align: super;
  5575. padding-left: 0.1rem;
  5576. padding-right: 0.1rem;
  5577. display: inline-flex;
  5578. }
  5579. .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 {
  5580. display: none;
  5581. }
  5582. .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-publications-issues-du-programme {
  5583. min-width: 30px !important;
  5584. }
  5585. .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 {
  5586. order: 1;
  5587. width: 100%;
  5588. }
  5589. .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) {
  5590. display: none;
  5591. }
  5592. .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 {
  5593. width: 100%;
  5594. height: auto;
  5595. }
  5596. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires {
  5597. width: 50%;
  5598. margin: auto;
  5599. display: flex;
  5600. flex-direction: row;
  5601. flex-wrap: wrap;
  5602. }
  5603. .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 {
  5604. display: none;
  5605. }
  5606. .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 {
  5607. display: flex;
  5608. flex-direction: row;
  5609. flex-wrap: wrap;
  5610. justify-content: space-between;
  5611. }
  5612. .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 {
  5613. display: none;
  5614. }
  5615. .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 {
  5616. display: flex;
  5617. flex-direction: column;
  5618. }
  5619. .path-incubateur {
  5620. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5621. background-repeat: no-repeat;
  5622. background-position-y: 7rem;
  5623. max-width: 100vw;
  5624. background-size: contain;
  5625. }
  5626. .path-incubateur .layout-container {
  5627. overflow: unset;
  5628. }
  5629. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span {
  5630. width: fit-content;
  5631. }
  5632. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span h2 {
  5633. width: fit-content;
  5634. margin-left: 11%;
  5635. margin-top: 15vh;
  5636. color: rgb(255, 255, 255);
  5637. font-family: "Source Code Pro";
  5638. text-transform: uppercase;
  5639. font-size: 2rem;
  5640. font-weight: 800;
  5641. background: rgb(0, 158, 227);
  5642. margin-bottom: 15vh;
  5643. }
  5644. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5645. position: relative;
  5646. }
  5647. .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 {
  5648. display: flex;
  5649. justify-content: flex-end;
  5650. position: -webkit-sticky;
  5651. position: sticky;
  5652. top: 10rem;
  5653. }
  5654. @media (max-width: 810px) {
  5655. .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 {
  5656. display: none;
  5657. }
  5658. }
  5659. .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 {
  5660. display: flex;
  5661. flex-direction: row-reverse;
  5662. width: 50%;
  5663. background-color: rgb(255, 255, 255);
  5664. padding-right: 2rem;
  5665. }
  5666. .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 {
  5667. display: flex;
  5668. flex-direction: column;
  5669. font-size: 1rem;
  5670. font-weight: 1000;
  5671. color: rgb(9, 57, 139);
  5672. border-bottom: 1px solid rgb(0, 158, 227);
  5673. padding-bottom: 0.8rem;
  5674. padding-right: 1rem;
  5675. margin-top: 1rem;
  5676. scroll-margin-top: 7em;
  5677. }
  5678. .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 {
  5679. text-decoration: underline;
  5680. }
  5681. .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 {
  5682. padding-right: 2rem;
  5683. margin-top: 1rem;
  5684. background-color: rgb(255, 255, 255);
  5685. }
  5686. .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 {
  5687. font-size: 1.5rem;
  5688. font-weight: 1000;
  5689. font-family: "Source Code Pro", monospace;
  5690. color: rgb(9, 57, 139);
  5691. text-transform: uppercase;
  5692. margin-bottom: 0.8rem;
  5693. }
  5694. .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 {
  5695. margin-bottom: 2rem;
  5696. }
  5697. .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 {
  5698. margin-top: 1rem;
  5699. display: flex;
  5700. flex-direction: column;
  5701. width: 70%;
  5702. }
  5703. @media (max-width: 810px) {
  5704. .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 {
  5705. margin: auto;
  5706. }
  5707. }
  5708. .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 {
  5709. height: fit-content;
  5710. border: 2px solid rgb(0, 158, 227);
  5711. background-color: rgb(255, 255, 255);
  5712. margin-bottom: 1rem;
  5713. }
  5714. .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 {
  5715. min-height: 4rem;
  5716. background: rgb(255, 255, 255);
  5717. color: rgb(0, 158, 227);
  5718. padding-left: 0.8rem;
  5719. padding-top: 1rem;
  5720. }
  5721. .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) {
  5722. display: none;
  5723. }
  5724. .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 {
  5725. height: inherit;
  5726. margin: auto;
  5727. }
  5728. .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 {
  5729. content: url("../images/pictos/noun_Download_file_307900.svg");
  5730. min-width: 40px;
  5731. height: auto;
  5732. padding-right: 0.5rem;
  5733. display: inline-flex;
  5734. align-items: center;
  5735. }
  5736. .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 {
  5737. hyphens: auto;
  5738. display: inline-flex;
  5739. align-items: center;
  5740. color: rgb(0, 158, 227);
  5741. font-weight: 800;
  5742. }
  5743. .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 {
  5744. margin: auto;
  5745. height: fit-content;
  5746. border: 2px solid rgb(0, 158, 227);
  5747. min-height: 4rem;
  5748. background: rgb(255, 255, 255);
  5749. color: rgb(0, 158, 227);
  5750. padding-left: 0.8rem;
  5751. padding-top: 1rem;
  5752. margin-bottom: 1rem;
  5753. }
  5754. .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 {
  5755. display: inline-flex;
  5756. align-items: center;
  5757. justify-items: center;
  5758. color: rgb(0, 158, 227);
  5759. font-weight: 800;
  5760. }
  5761. .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 {
  5762. content: url("../images/pictos/external_link.png");
  5763. min-width: 40px;
  5764. height: auto;
  5765. padding-right: 0.5rem;
  5766. display: inline-flex;
  5767. align-items: center;
  5768. }
  5769. .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 {
  5770. display: none;
  5771. }
  5772. .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 {
  5773. padding-top: 1rem;
  5774. background-color: white;
  5775. }
  5776. .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 {
  5777. width: 80%;
  5778. margin: auto;
  5779. }
  5780. .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 {
  5781. margin-top: 4rem;
  5782. display: flex;
  5783. flex-direction: row;
  5784. }
  5785. @media (max-width: 479px) {
  5786. .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 {
  5787. flex-direction: column;
  5788. padding-bottom: 3rem;
  5789. }
  5790. }
  5791. .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 {
  5792. content: "Filtrer par :";
  5793. margin-right: 1rem;
  5794. }
  5795. @media (max-width: 479px) {
  5796. .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 {
  5797. padding-bottom: 1rem;
  5798. }
  5799. }
  5800. .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 {
  5801. display: flex;
  5802. flex-direction: row;
  5803. }
  5804. .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 {
  5805. display: none;
  5806. }
  5807. .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 {
  5808. display: none;
  5809. }
  5810. @media (max-width: 479px) {
  5811. .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 {
  5812. padding-bottom: 1rem;
  5813. }
  5814. }
  5815. .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 {
  5816. display: none;
  5817. }
  5818. .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 {
  5819. display: none;
  5820. }
  5821. @media (max-width: 479px) {
  5822. .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 {
  5823. padding-bottom: 1rem;
  5824. }
  5825. }
  5826. .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 {
  5827. display: none;
  5828. }
  5829. @media (max-width: 479px) {
  5830. .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 {
  5831. padding-bottom: 1rem;
  5832. }
  5833. }
  5834. .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] {
  5835. display: none;
  5836. }
  5837. .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 {
  5838. content: "";
  5839. display: inline-block;
  5840. width: 15px;
  5841. height: 15px;
  5842. background: #fff;
  5843. border-radius: 0px;
  5844. border-color: black;
  5845. border-style: solid;
  5846. border-width: 1px;
  5847. margin-right: 0.5rem;
  5848. }
  5849. .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 {
  5850. background: rgb(0, 158, 227);
  5851. }
  5852. .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 {
  5853. padding-right: 1rem;
  5854. }
  5855. .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 {
  5856. background-color: rgb(0, 158, 227);
  5857. color: white;
  5858. text-transform: uppercase;
  5859. border: none;
  5860. padding: 0.1rem 0.7rem;
  5861. margin-left: 2rem;
  5862. }
  5863. @media (max-width: 479px) {
  5864. .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 {
  5865. margin-left: 0rem;
  5866. margin-right: 2rem;
  5867. }
  5868. }
  5869. .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 {
  5870. background-color: rgb(0, 158, 227);
  5871. color: white;
  5872. text-transform: uppercase;
  5873. border: none;
  5874. padding: 0.1rem 0.7rem;
  5875. margin-left: 1rem;
  5876. }
  5877. @media (max-width: 479px) {
  5878. .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 {
  5879. flex-direction: column;
  5880. }
  5881. }
  5882. .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 {
  5883. margin-top: 2rem;
  5884. display: flex;
  5885. flex-direction: row;
  5886. flex-wrap: wrap;
  5887. }
  5888. @media (max-width: 810px) {
  5889. .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 {
  5890. flex-direction: column;
  5891. }
  5892. }
  5893. .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 {
  5894. width: 25%;
  5895. }
  5896. @media (max-width: 810px) {
  5897. .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 {
  5898. width: 100%;
  5899. }
  5900. }
  5901. .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 {
  5902. color: rgb(9, 57, 139);
  5903. line-height: 1.5rem;
  5904. padding: 0.5rem;
  5905. padding-right: 1rem;
  5906. padding-left: 1rem;
  5907. }
  5908. @media (max-width: 479px) {
  5909. .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 {
  5910. padding-left: 0rem;
  5911. padding-right: 0rem;
  5912. padding-top: 2rem;
  5913. }
  5914. }
  5915. .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 {
  5916. display: flex;
  5917. flex-direction: column;
  5918. }
  5919. .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 {
  5920. color: rgb(9, 57, 139);
  5921. }
  5922. .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 {
  5923. order: 1;
  5924. }
  5925. .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 {
  5926. width: 100%;
  5927. max-height: 175px;
  5928. object-fit: cover;
  5929. }
  5930. .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 {
  5931. display: block;
  5932. 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>');
  5933. }
  5934. .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 {
  5935. order: 2;
  5936. display: flex;
  5937. text-transform: uppercase;
  5938. font-size: 0.9rem;
  5939. font-weight: 800;
  5940. margin-top: 0.8rem;
  5941. line-height: 0.6rem;
  5942. }
  5943. .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 {
  5944. display: flex;
  5945. flex-direction: row;
  5946. margin: 0;
  5947. }
  5948. .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 {
  5949. padding-top: 0 !important;
  5950. padding-bottom: 0 !important;
  5951. }
  5952. .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 {
  5953. content: ",";
  5954. margin-right: 0.3rem;
  5955. }
  5956. .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 {
  5957. padding-top: 0 !important;
  5958. padding-bottom: 0 !important;
  5959. }
  5960. .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 {
  5961. margin-top: 0.5rem;
  5962. font-size: 0.9rem;
  5963. font-weight: 800;
  5964. order: 4;
  5965. }
  5966. .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 {
  5967. order: 3;
  5968. margin-top: 0.5rem;
  5969. font-size: 0.9rem;
  5970. font-weight: 800;
  5971. }
  5972. .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 {
  5973. margin: 0;
  5974. }
  5975. .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 {
  5976. order: 4;
  5977. color: red;
  5978. margin-top: 0.8rem;
  5979. font-size: 0.7rem;
  5980. }
  5981. .node-id-201 {
  5982. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5983. background-repeat: no-repeat;
  5984. background-position-y: 7rem;
  5985. max-width: 100vw;
  5986. background-size: contain;
  5987. }
  5988. .node-id-201 #block-contenudelapageprincipale {
  5989. scroll-margin: 8rem;
  5990. }
  5991. .node-id-201 .layout__region--top {
  5992. padding-bottom: 3rem;
  5993. height: 30vh;
  5994. }
  5995. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  5996. display: none;
  5997. height: inherit;
  5998. }
  5999. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  6000. font-family: "Source Code Pro";
  6001. font-size: 2rem;
  6002. font-weight: 800;
  6003. color: rgb(255, 255, 255);
  6004. background-color: rgb(0, 158, 227);
  6005. text-transform: uppercase;
  6006. }
  6007. .node-id-201 .layout__region--second {
  6008. width: 25%;
  6009. }
  6010. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes {
  6011. background-color: rgb(255, 255, 255);
  6012. }
  6013. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  6014. font-size: 1.5rem;
  6015. font-weight: 1000;
  6016. font-family: "Source Code Pro";
  6017. color: rgb(9, 57, 139);
  6018. text-transform: uppercase;
  6019. }
  6020. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  6021. text-transform: none !important;
  6022. }
  6023. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  6024. padding-right: 2rem;
  6025. }
  6026. .path-ressources .layout-container {
  6027. overflow: hidden;
  6028. }
  6029. @media (max-width: 810px) {
  6030. .path-ressources .layout-container {
  6031. overflow: hidden;
  6032. }
  6033. }
  6034. .path-ressources .layout-content {
  6035. min-height: 100vh;
  6036. width: 100vw;
  6037. }
  6038. .path-ressources .layout-content .region-content {
  6039. width: 100%;
  6040. margin: auto;
  6041. }
  6042. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  6043. font-size: 4em;
  6044. color: rgb(9, 57, 139);
  6045. font-weight: 400;
  6046. text-align: center;
  6047. margin-bottom: 1rem;
  6048. width: fit-content;
  6049. margin-left: 26%;
  6050. }
  6051. @media (max-width: 810px) {
  6052. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  6053. margin-left: 2rem;
  6054. text-align: left;
  6055. line-height: 4rem;
  6056. }
  6057. }
  6058. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  6059. display: flex;
  6060. flex-direction: column;
  6061. }
  6062. @media (max-width: 479px) {
  6063. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  6064. display: flex;
  6065. flex-direction: column;
  6066. }
  6067. }
  6068. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  6069. width: 60%;
  6070. margin: auto;
  6071. margin-left: 26%;
  6072. }
  6073. @media (max-width: 810px) {
  6074. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  6075. margin-left: 2rem;
  6076. width: 85%;
  6077. }
  6078. }
  6079. @media (max-width: 479px) {
  6080. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  6081. order: 1;
  6082. margin-left: 2rem;
  6083. }
  6084. }
  6085. .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 {
  6086. grid-column: 1/span 5;
  6087. }
  6088. @media (max-width: 810px) {
  6089. .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 {
  6090. padding-top: 1rem;
  6091. margin-top: 1rem;
  6092. }
  6093. }
  6094. @media (max-width: 479px) {
  6095. .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 {
  6096. padding-left: 0;
  6097. padding-right: 0;
  6098. }
  6099. }
  6100. .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 {
  6101. margin: auto;
  6102. background: rgb(255, 255, 255);
  6103. font-size: 1rem;
  6104. }
  6105. @media (max-width: 479px) {
  6106. .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 {
  6107. margin-top: 1rem;
  6108. }
  6109. }
  6110. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6111. grid-column: 6/span 5;
  6112. grid-row: 1;
  6113. margin-top: 4rem;
  6114. background-color: rgb(0, 158, 227);
  6115. height: fit-content;
  6116. width: 100%;
  6117. }
  6118. @media (max-width: 810px) {
  6119. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6120. grid-column: 5/span 5;
  6121. }
  6122. }
  6123. @media (max-width: 479px) {
  6124. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6125. grid-column: 5/span 5;
  6126. order: 2;
  6127. }
  6128. }
  6129. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .display {
  6130. display: block;
  6131. }
  6132. .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 {
  6133. display: flex;
  6134. flex-direction: column;
  6135. margin-top: 2rem;
  6136. margin-bottom: 2rem;
  6137. margin-left: 1.5rem;
  6138. margin-right: 1.5rem;
  6139. text-align: center;
  6140. }
  6141. .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 {
  6142. font-weight: 800;
  6143. color: rgb(255, 255, 255);
  6144. font-size: 1.3rem;
  6145. }
  6146. .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 {
  6147. margin-left: auto;
  6148. padding-top: 1rem;
  6149. display: block;
  6150. content: url("../images/pictos/noun_Arrow_3771902.svg");
  6151. }
  6152. @media (max-width: 810px) {
  6153. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6154. margin: auto;
  6155. }
  6156. }
  6157. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  6158. margin-top: 2rem;
  6159. width: 100%;
  6160. }
  6161. @media (max-width: 479px) {
  6162. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  6163. order: 3;
  6164. }
  6165. }
  6166. @media (max-width: 810px) {
  6167. .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 {
  6168. display: flex;
  6169. flex-direction: column;
  6170. }
  6171. }
  6172. .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 {
  6173. position: fixed;
  6174. top: 25rem;
  6175. left: 0;
  6176. background-color: rgb(255, 255, 255);
  6177. border: solid 0.2px rgba(0, 0, 0, 0.1);
  6178. margin-bottom: 5rem;
  6179. padding: 1rem;
  6180. padding-left: 2rem;
  6181. padding-right: 1.5rem;
  6182. z-index: 1;
  6183. transform: translateY(-210px);
  6184. margin-bottom: -210px;
  6185. width: 20%;
  6186. }
  6187. @media (max-width: 810px) {
  6188. .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 {
  6189. position: static;
  6190. margin-bottom: 2rem;
  6191. transform: none;
  6192. margin-bottom: 0px;
  6193. width: 80%;
  6194. }
  6195. }
  6196. @media (max-width: 479px) {
  6197. .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 {
  6198. margin-left: 0;
  6199. }
  6200. }
  6201. .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 {
  6202. content: "Afficher : ";
  6203. padding-right: 1rem;
  6204. font-weight: 800;
  6205. font-size: 1rem;
  6206. margin-bottom: 1rem;
  6207. display: block;
  6208. width: 100%;
  6209. }
  6210. @media (max-width: 479px) {
  6211. .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 {
  6212. padding-bottom: 1rem;
  6213. }
  6214. }
  6215. .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 {
  6216. background-color: transparent;
  6217. border: 1px solid black;
  6218. padding: 0.3rem 0.5rem 0.1rem 0.3rem;
  6219. margin-bottom: 0.5rem;
  6220. margin-right: 0.5rem;
  6221. font-size: 0.8rem;
  6222. color: rgb(9, 57, 139);
  6223. display: inline-flex;
  6224. flex-direction: row;
  6225. align-items: center;
  6226. }
  6227. .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 {
  6228. cursor: grab;
  6229. background-color: rgb(9, 57, 139);
  6230. color: white;
  6231. }
  6232. .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 {
  6233. color: rgb(9, 57, 139);
  6234. }
  6235. .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 {
  6236. content: url("../images/pictos/videos.svg");
  6237. padding-right: 0.5rem;
  6238. display: block;
  6239. }
  6240. .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 {
  6241. content: url("../images/pictos/videos-blanc.svg");
  6242. display: block;
  6243. }
  6244. .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 {
  6245. display: none !important;
  6246. }
  6247. .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 {
  6248. content: url("../images/pictos/podcasts.svg");
  6249. padding-right: 0.5rem;
  6250. display: block;
  6251. }
  6252. .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 {
  6253. content: url("../images/pictos/podcasts-blanc.svg");
  6254. display: block;
  6255. }
  6256. .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 {
  6257. content: url("../images/pictos/en-images.svg");
  6258. display: block;
  6259. padding-right: 0.5rem;
  6260. }
  6261. .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 {
  6262. content: url("../images/pictos/en-images-blanc.svg");
  6263. display: block;
  6264. }
  6265. .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 {
  6266. content: url("../images/pictos/ecrits.svg");
  6267. padding-right: 0.5rem;
  6268. display: block;
  6269. }
  6270. .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 {
  6271. content: url("../images/pictos/ecrits-blanc.svg");
  6272. display: block;
  6273. }
  6274. .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 {
  6275. content: url("../images/pictos/ecrits.svg");
  6276. padding-right: 0.5rem;
  6277. display: block;
  6278. }
  6279. .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 {
  6280. content: url("../images/pictos/ecrits-blanc.svg");
  6281. display: block;
  6282. }
  6283. .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 {
  6284. content: url("../images/pictos/ecrits.svg");
  6285. padding-right: 0.5rem;
  6286. display: block;
  6287. }
  6288. .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 {
  6289. content: url("../images/pictos/ecrits-blanc.svg");
  6290. display: block;
  6291. }
  6292. .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 {
  6293. background-color: rgb(9, 57, 139);
  6294. color: white;
  6295. }
  6296. .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 {
  6297. color: white;
  6298. }
  6299. .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 {
  6300. margin-top: 1rem;
  6301. }
  6302. .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 {
  6303. content: url("../images/pictos/videos-blanc.svg");
  6304. }
  6305. .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 {
  6306. content: url("../images/pictos/podcasts-blanc.svg");
  6307. }
  6308. .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 {
  6309. content: url("../images/pictos/en-images-blanc.svg");
  6310. }
  6311. .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 {
  6312. content: url("../images/pictos/ecrits-blanc.svg");
  6313. }
  6314. .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 {
  6315. content: url("../images/pictos/ecrits-blanc.svg");
  6316. }
  6317. .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 {
  6318. content: url("../images/pictos/ecrits-blanc.svg");
  6319. }
  6320. .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 {
  6321. content: "Filtrer par : ";
  6322. padding-right: 1rem;
  6323. font-weight: 800;
  6324. font-size: 1rem;
  6325. margin-bottom: 1rem;
  6326. }
  6327. @media (max-width: 479px) {
  6328. .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 {
  6329. padding-bottom: 1rem;
  6330. }
  6331. }
  6332. .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 {
  6333. display: none;
  6334. }
  6335. .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 {
  6336. font-size: 0.8rem;
  6337. }
  6338. .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 {
  6339. border-top: none;
  6340. border-left: none;
  6341. border-right: none;
  6342. font-size: 0.8rem;
  6343. justify-content: flex-start !important;
  6344. }
  6345. .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 {
  6346. display: none;
  6347. }
  6348. .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 {
  6349. display: inline-flex;
  6350. position: relative;
  6351. font-size: 0.8rem;
  6352. width: -webkit-fill-available; /* Safari/Chrome */
  6353. width: -moz-available; /* Firefox */
  6354. width: fill-available; /* standard futur */
  6355. width: 100%; /* fallback */
  6356. max-width: 100%;
  6357. }
  6358. .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 {
  6359. content: url("../images/pictos/loupe.svg");
  6360. display: inline-block;
  6361. }
  6362. .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 {
  6363. text-align: start !important;
  6364. max-width: 100% !important;
  6365. }
  6366. .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 {
  6367. position: absolute;
  6368. right: -4px;
  6369. top: 50%;
  6370. transform: translateY(-50%);
  6371. background: white;
  6372. border: none;
  6373. padding: 0.5rem;
  6374. margin: 0;
  6375. cursor: pointer;
  6376. color: #888;
  6377. display: none; /* masqué par défaut */
  6378. }
  6379. .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 {
  6380. color: #000;
  6381. }
  6382. .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 {
  6383. display: none;
  6384. }
  6385. .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 {
  6386. font-size: 0.8rem;
  6387. }
  6388. .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 {
  6389. display: none;
  6390. }
  6391. .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 {
  6392. font-size: 0.8rem;
  6393. }
  6394. .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 {
  6395. display: flex;
  6396. flex-direction: row;
  6397. flex-wrap: wrap;
  6398. }
  6399. .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 {
  6400. flex-wrap: wrap;
  6401. width: 85%;
  6402. }
  6403. .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 {
  6404. padding: 1rem;
  6405. width: 30% !important;
  6406. }
  6407. .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 {
  6408. transition: opacity 0.3s ease;
  6409. display: flex;
  6410. flex-direction: row;
  6411. flex-wrap: wrap;
  6412. padding-left: 26%;
  6413. }
  6414. @media (max-width: 810px) {
  6415. .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 {
  6416. padding-left: 0;
  6417. }
  6418. }
  6419. .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 {
  6420. width: 80%;
  6421. border-top: solid 1px rgba(0, 0, 0, 0.3);
  6422. }
  6423. .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 {
  6424. order: 1;
  6425. }
  6426. .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 {
  6427. background-color: rgba(0, 158, 227, 0.2);
  6428. }
  6429. .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 {
  6430. width: 45%;
  6431. min-width: 350px !important;
  6432. max-width: 500px;
  6433. }
  6434. .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 .field--name-title h2 {
  6435. line-height: 1.2rem;
  6436. }
  6437. .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 .field--name-field-sous-titre {
  6438. color: rgb(0, 158, 227);
  6439. line-height: 1.3 !important;
  6440. }
  6441. .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 {
  6442. order: 2;
  6443. }
  6444. .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 {
  6445. order: 3;
  6446. }
  6447. .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 .field--name-title h2 {
  6448. line-height: 1.4rem;
  6449. }
  6450. .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 {
  6451. padding-left: 0 !important;
  6452. }
  6453. .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 {
  6454. background-color: rgba(0, 158, 227, 0.2);
  6455. }
  6456. .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 {
  6457. order: 5;
  6458. }
  6459. .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 {
  6460. border: none;
  6461. }
  6462. .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 {
  6463. order: 4;
  6464. }
  6465. .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 {
  6466. order: 9;
  6467. }
  6468. .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 {
  6469. order: 6;
  6470. }
  6471. .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 {
  6472. order: 8;
  6473. }
  6474. .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) {
  6475. width: 100%;
  6476. position: relative;
  6477. z-index: 0;
  6478. padding-bottom: 1rem;
  6479. }
  6480. .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 {
  6481. content: "";
  6482. position: absolute;
  6483. left: -40%;
  6484. height: 100%;
  6485. width: 110vw;
  6486. z-index: 0;
  6487. }
  6488. @media (max-width: 810px) {
  6489. .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 {
  6490. left: 0;
  6491. }
  6492. }
  6493. .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) > * {
  6494. position: relative;
  6495. z-index: 1;
  6496. }
  6497. .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 {
  6498. top: 1rem;
  6499. text-transform: uppercase;
  6500. font-family: "Source Code Pro";
  6501. color: rgb(9, 57, 139) !important;
  6502. display: flex;
  6503. flex-direction: row;
  6504. align-items: center;
  6505. font-size: 1.7rem;
  6506. margin-block: 0em;
  6507. }
  6508. @media (max-width: 810px) {
  6509. .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 {
  6510. padding-left: 2rem;
  6511. width: 70%;
  6512. }
  6513. }
  6514. @media (max-width: 479px) {
  6515. .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 {
  6516. width: 65% !important;
  6517. }
  6518. }
  6519. .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 {
  6520. border: none;
  6521. }
  6522. .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 {
  6523. content: url("../images/pictos/picto-ressource-eqld.svg");
  6524. padding-right: 1rem;
  6525. }
  6526. .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 {
  6527. content: url("../images/pictos/picto-ressource-paroleslaureats.svg");
  6528. padding-right: 1rem;
  6529. }
  6530. .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 {
  6531. width: 80%;
  6532. }
  6533. .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 {
  6534. content: url("../images/pictos/picto-ressource-projetsimages.svg");
  6535. padding-right: 1rem;
  6536. }
  6537. .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 {
  6538. content: url("../images/pictos/picto-ressource-presse.svg");
  6539. padding-right: 1rem;
  6540. }
  6541. .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 {
  6542. background-color: rgb(255, 255, 255);
  6543. border: 1px solid rgb(0, 158, 227);
  6544. list-style: none;
  6545. padding: 0.5rem;
  6546. position: relative;
  6547. left: 60vw;
  6548. top: -1.5rem;
  6549. text-transform: uppercase;
  6550. font-size: 0.7rem;
  6551. font-weight: 500;
  6552. color: rgb(0, 158, 227);
  6553. display: inline-flex;
  6554. align-items: center;
  6555. }
  6556. @media (max-width: 810px) {
  6557. .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 {
  6558. left: 81vw;
  6559. }
  6560. }
  6561. @media (max-width: 479px) {
  6562. .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 {
  6563. left: 76vw;
  6564. top: -1.5rem;
  6565. }
  6566. }
  6567. .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 {
  6568. display: flex;
  6569. flex-direction: row;
  6570. }
  6571. .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 {
  6572. width: 100% !important;
  6573. display: flex;
  6574. flex-direction: row;
  6575. transform: none;
  6576. }
  6577. .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 {
  6578. width: 20%;
  6579. min-width: 250px;
  6580. max-width: 500px;
  6581. }
  6582. @media (max-width: 810px) {
  6583. .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 {
  6584. padding-left: 0rem !important;
  6585. flex-direction: column;
  6586. }
  6587. .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 {
  6588. width: 100% !important;
  6589. }
  6590. }
  6591. .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 {
  6592. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6593. display: inline-block;
  6594. transform: scale(0.5); /* Réduction à 50% */
  6595. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  6596. }
  6597. @media (max-width: 810px) {
  6598. .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 {
  6599. transform: scale(0.5); /* Réduction à 50% */
  6600. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  6601. }
  6602. }
  6603. .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 {
  6604. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6605. display: block;
  6606. display: inline-block;
  6607. transform: scaleX(-1);
  6608. transform: scale(-0.5, 0.5);
  6609. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6610. }
  6611. @media (max-width: 810px) {
  6612. .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 {
  6613. transform: scale(-0.5, 0.5);
  6614. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6615. }
  6616. }
  6617. .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,
  6618. .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 {
  6619. opacity: 1 !important;
  6620. }
  6621. .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,
  6622. .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 {
  6623. opacity: 0.3 !important;
  6624. }
  6625. .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,
  6626. .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 {
  6627. top: 94%;
  6628. }
  6629. .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 {
  6630. right: 35vw;
  6631. }
  6632. .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 {
  6633. left: 25vw;
  6634. }
  6635. @media (max-width: 1400px) {
  6636. .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 {
  6637. left: 20vw;
  6638. }
  6639. .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 {
  6640. right: 30vw;
  6641. }
  6642. }
  6643. @media (max-width: 810px) {
  6644. .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 {
  6645. left: 15vw;
  6646. }
  6647. .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 {
  6648. right: 35vw;
  6649. }
  6650. }
  6651. @media (max-width: 479px) {
  6652. .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 {
  6653. left: 8vw;
  6654. }
  6655. .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 {
  6656. right: 30vw;
  6657. }
  6658. }
  6659. div.view-type-slide:nth-child(2) > div:nth-child(4) {
  6660. padding-left: 0 !important;
  6661. }
  6662. div.view-type-slide:nth-child(2) > div:nth-child(4) .slick-list {
  6663. padding-left: 8% !important;
  6664. padding-right: 8% !important;
  6665. }
  6666. div.view-type-slide:nth-child(2) > div:nth-child(4) article {
  6667. padding-right: 0;
  6668. }
  6669. footer {
  6670. z-index: 1;
  6671. }
  6672. .carousel {
  6673. display: none;
  6674. }
  6675. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6676. display: flex !important;
  6677. flex-direction: column;
  6678. margin-left: 11%;
  6679. }
  6680. @media screen and (min-width: 1100px) {
  6681. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6682. display: flex;
  6683. }
  6684. }
  6685. @media screen and (max-width: 810px) {
  6686. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6687. margin-left: 0;
  6688. }
  6689. }
  6690. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block {
  6691. margin-left: 0;
  6692. }
  6693. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6694. margin-top: 5rem;
  6695. padding: 0;
  6696. order: 7;
  6697. width: 85%;
  6698. }
  6699. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6700. display: grid;
  6701. grid-template-columns: 10fr 1fr;
  6702. gap: 4rem;
  6703. justify-content: center;
  6704. margin: auto;
  6705. }
  6706. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6707. display: flex;
  6708. align-items: center;
  6709. position: relative;
  6710. width: 100%;
  6711. margin: 0 auto;
  6712. }
  6713. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container {
  6714. flex: 1;
  6715. text-align: center;
  6716. }
  6717. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container img {
  6718. width: 100%;
  6719. height: auto;
  6720. object-fit: contain;
  6721. max-height: 550px;
  6722. border: none;
  6723. }
  6724. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container .caption {
  6725. margin-top: 1rem;
  6726. font-family: sans-serif;
  6727. text-align: center;
  6728. font-size: 1rem;
  6729. color: #444;
  6730. }
  6731. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow {
  6732. font-size: 2rem;
  6733. color: #333;
  6734. background: none;
  6735. border-radius: 50%;
  6736. width: 40px;
  6737. height: 40px;
  6738. line-height: 40px;
  6739. text-align: center;
  6740. cursor: pointer;
  6741. user-select: none;
  6742. transition: background 0.3s ease;
  6743. }
  6744. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow:hover {
  6745. background: #bbb;
  6746. }
  6747. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.left {
  6748. margin-right: 10px;
  6749. }
  6750. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.right {
  6751. margin-left: 10px;
  6752. }
  6753. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .caption {
  6754. margin-top: 10px;
  6755. font-family: sans-serif;
  6756. grid-column: 2;
  6757. grid-row: 2;
  6758. }
  6759. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper {
  6760. grid-column: 2;
  6761. display: flex;
  6762. flex-direction: column;
  6763. align-items: center;
  6764. max-height: 60vh;
  6765. grid-row: 1/span 2;
  6766. top: 0px;
  6767. position: relative;
  6768. overflow: hidden;
  6769. }
  6770. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow {
  6771. cursor: pointer;
  6772. padding: 5px 10px;
  6773. background: #00aaff;
  6774. color: white;
  6775. border-radius: 50%;
  6776. user-select: none;
  6777. z-index: 2;
  6778. position: relative;
  6779. }
  6780. .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 {
  6781. transform: rotate(90deg);
  6782. }
  6783. .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 {
  6784. transform: rotate(90deg);
  6785. }
  6786. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails {
  6787. display: flex;
  6788. flex-direction: column;
  6789. gap: 6px;
  6790. overflow-y: auto;
  6791. max-height: 100%;
  6792. scroll-behavior: smooth;
  6793. position: relative;
  6794. z-index: 0;
  6795. }
  6796. .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 {
  6797. display: none;
  6798. }
  6799. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails img {
  6800. width: 80px;
  6801. height: 60px;
  6802. object-fit: contain;
  6803. border: 2px solid transparent;
  6804. cursor: pointer;
  6805. opacity: 0.3;
  6806. transition: transform 0.3s ease, opacity 0.3s ease;
  6807. }
  6808. .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 {
  6809. transform: scale(1.3);
  6810. margin-top: 0.8rem;
  6811. margin-bottom: 0.8rem;
  6812. opacity: 1;
  6813. z-index: 1;
  6814. }
  6815. @media screen and (max-width: 810px) {
  6816. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6817. display: flex;
  6818. flex-direction: column;
  6819. gap: 2rem;
  6820. align-items: center;
  6821. width: 100vw;
  6822. }
  6823. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6824. width: 90%;
  6825. }
  6826. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails-wrapper {
  6827. width: 100%;
  6828. display: flex !important;
  6829. flex-direction: row !important; /* 👈 corrige l'orientation */
  6830. justify-content: center;
  6831. align-items: center;
  6832. overflow-x: auto;
  6833. overflow-y: hidden;
  6834. max-height: none;
  6835. padding: 1rem 0;
  6836. position: relative;
  6837. }
  6838. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails {
  6839. display: flex !important;
  6840. flex-direction: row !important; /* 👈 force l'alignement horizontal */
  6841. gap: 0.8 rem !important;
  6842. overflow-x: auto;
  6843. overflow-y: hidden;
  6844. scroll-behavior: smooth;
  6845. padding: 0 1rem;
  6846. max-width: 100%;
  6847. flex-wrap: nowrap;
  6848. }
  6849. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails::-webkit-scrollbar {
  6850. display: none;
  6851. }
  6852. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails img {
  6853. width: 60px;
  6854. height: 45px;
  6855. flex-shrink: 0; /* évite l’écrasement */
  6856. }
  6857. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumb-arrow {
  6858. display: none; /* inutile si scroll horizontal */
  6859. }
  6860. }
  6861. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .field__items {
  6862. display: none;
  6863. }
  6864. @media screen and (max-width: 810px) {
  6865. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  6866. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodetitle,
  6867. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  6868. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  6869. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  6870. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  6871. margin-left: 7%;
  6872. }
  6873. }
  6874. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-projets-liee {
  6875. transform: translateY(-45.5rem);
  6876. }
  6877. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-liens,
  6878. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-fichiers,
  6879. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-ress {
  6880. transform: translateY(-16rem);
  6881. }
  6882. .carousel {
  6883. display: none;
  6884. }
  6885. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6886. display: flex !important;
  6887. flex-direction: column;
  6888. margin-left: 11%;
  6889. width: 60%;
  6890. }
  6891. @media screen and (min-width: 1100px) {
  6892. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6893. display: flex;
  6894. }
  6895. }
  6896. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block {
  6897. margin-left: 0;
  6898. }
  6899. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6900. display: none;
  6901. }
  6902. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  6903. order: 1;
  6904. }
  6905. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodetitle {
  6906. order: 2;
  6907. }
  6908. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  6909. order: 3;
  6910. }
  6911. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-edition {
  6912. order: 5;
  6913. }
  6914. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  6915. order: 4;
  6916. }
  6917. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  6918. order: 6;
  6919. }
  6920. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-videos {
  6921. order: 7;
  6922. margin-top: 2rem;
  6923. }
  6924. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-projets-liee {
  6925. margin-top: 0rem;
  6926. }
  6927. /*partials*/
  6928. .layout-container {
  6929. position: relative;
  6930. width: 100vw;
  6931. }
  6932. .layout-container header {
  6933. position: fixed;
  6934. z-index: 99;
  6935. width: 100vw;
  6936. }
  6937. #header-top {
  6938. height: 7rem;
  6939. background-color: rgb(255, 255, 255);
  6940. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  6941. display: flex;
  6942. flex-direction: row;
  6943. color: rgb(0, 0, 0);
  6944. top: 0%;
  6945. scroll-margin: 8rem;
  6946. }
  6947. @media (max-width: 810px) {
  6948. #header-top {
  6949. height: 5rem;
  6950. }
  6951. }
  6952. #header-top .region-header-top-left {
  6953. display: flex;
  6954. flex-direction: row;
  6955. padding-left: 4%;
  6956. align-items: center;
  6957. color: rgb(0, 0, 0);
  6958. flex: 1;
  6959. }
  6960. #header-top .region-header-top-left #block-logogouv {
  6961. display: flex;
  6962. height: 100%;
  6963. align-items: center;
  6964. }
  6965. @media (max-width: 810px) {
  6966. #header-top .region-header-top-left #block-logogouv .field--name-field-logo {
  6967. height: 100%;
  6968. }
  6969. }
  6970. #header-top .region-header-top-left #block-logogouv img {
  6971. width: auto;
  6972. height: 100%;
  6973. }
  6974. #header-top .region-header-top-left #block-eql-logoepau {
  6975. height: 100%;
  6976. align-content: center;
  6977. padding-left: 1rem;
  6978. }
  6979. #header-top .region-header-top-rigth {
  6980. display: flex;
  6981. flex-direction: row;
  6982. width: 40%;
  6983. align-items: center;
  6984. justify-content: flex-end;
  6985. }
  6986. #header-top .region-header-top-rigth #block-eql-identitedusite {
  6987. text-transform: uppercase;
  6988. font-family: "Source Code Pro";
  6989. color: rgb(9, 57, 139) !important;
  6990. font-size: 1rem;
  6991. text-align: end;
  6992. width: 30%;
  6993. }
  6994. #header-top .region-header-top-rigth #block-eql-identitedusite :visited {
  6995. color: rgb(9, 57, 139) !important;
  6996. }
  6997. #header-top .region-header-top-rigth #block-eql-identitedusite :link {
  6998. color: rgb(9, 57, 139) !important;
  6999. }
  7000. @media (max-width: 883px) {
  7001. #header-top .region-header-top-rigth #block-eql-identitedusite {
  7002. display: none;
  7003. }
  7004. }
  7005. #header-top .region-header-top-rigth #block-logoeql {
  7006. padding-left: 1rem;
  7007. padding-right: 2rem;
  7008. height: 100%;
  7009. align-items: center;
  7010. }
  7011. @media (max-width: 810px) {
  7012. #header-top .region-header-top-rigth #block-logoeql {
  7013. padding-right: 1rem;
  7014. }
  7015. }
  7016. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo {
  7017. height: 100%;
  7018. }
  7019. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a {
  7020. display: flex;
  7021. align-items: center;
  7022. height: 100%;
  7023. }
  7024. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a img {
  7025. width: auto;
  7026. height: 80%;
  7027. }
  7028. #header-top .region-header-top-rigth #block-burger {
  7029. z-index: 1;
  7030. background-color: rgb(0, 158, 227);
  7031. font-size: 0.7rem;
  7032. color: black;
  7033. display: block;
  7034. width: 7rem;
  7035. height: 100%;
  7036. margin-top: 0;
  7037. aspect-ratio: 1;
  7038. }
  7039. #header-top .region-header-top-rigth #block-burger :hover {
  7040. cursor: pointer;
  7041. }
  7042. @media (max-width: 810px) {
  7043. #header-top .region-header-top-rigth #block-burger {
  7044. width: 4rem;
  7045. }
  7046. }
  7047. #header-top .region-header-top-rigth #block-burger h2 {
  7048. padding-top: 1rem;
  7049. font-size: 1em;
  7050. font-weight: light;
  7051. color: rgb(0, 158, 227);
  7052. }
  7053. @media (max-width: 810px) {
  7054. #header-top .region-header-top-rigth #block-burger h2 {
  7055. padding-top: 0;
  7056. }
  7057. }
  7058. #header-top .region-header-top-rigth #block-burger h2:after {
  7059. display: block;
  7060. margin: auto;
  7061. height: 70px;
  7062. content: url('data:image/svg+xml,<svg width="50" 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="black" stroke-width="2"/><path id="path930-3" d="M 5,25 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/><path id="path930-6" d="M 5,37 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/></svg>');
  7063. }
  7064. @media (max-width: 810px) {
  7065. #header-top .region-header-top-rigth #block-burger h2:after {
  7066. content: url('data:image/svg+xml,<svg width="40" 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="black" stroke-width="2"/><path id="path930-3" d="M 5,25 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/><path id="path930-6" d="M 5,37 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/></svg>');
  7067. }
  7068. }
  7069. #header-top .region-header-top-rigth #block-burger #block-burger-menu {
  7070. display: block;
  7071. margin: 0;
  7072. align-self: center;
  7073. text-align: center;
  7074. }
  7075. #header-top .region-header-top-rigth #block-burger .ul1:not(.sous-liste) {
  7076. width: 300%;
  7077. position: relative;
  7078. right: 260px;
  7079. margin: 0;
  7080. padding-top: 2rem;
  7081. padding-bottom: 2rem;
  7082. z-index: 99;
  7083. }
  7084. #header-top .region-header-top-rigth #block-burger ul {
  7085. display: none;
  7086. background-color: rgb(0, 158, 227);
  7087. line-height: 2rem;
  7088. list-style: none;
  7089. }
  7090. #header-top .region-header-top-rigth #block-burger ul .ul1 .sous-liste a {
  7091. opacity: 1;
  7092. }
  7093. #header-top .region-header-top-rigth #block-burger ul a {
  7094. opacity: 1;
  7095. color: rgb(255, 255, 255);
  7096. font-weight: 800;
  7097. font-size: 1rem;
  7098. }
  7099. #header-top .region-header-top-rigth #block-burger.opened ul {
  7100. display: block;
  7101. }
  7102. #header-top #block-socialnetwork-2 {
  7103. display: none;
  7104. position: relative;
  7105. top: -33px;
  7106. align-self: flex-end;
  7107. margin-left: auto;
  7108. }
  7109. #header-top #block-socialnetwork-2 .field--name-body {
  7110. min-height: 75px;
  7111. }
  7112. #header-top #block-socialnetwork-2 p {
  7113. display: flex;
  7114. flex-direction: row-reverse;
  7115. margin-bottom: 0;
  7116. min-height: 65px;
  7117. justify-content: space-around;
  7118. width: 140px;
  7119. }
  7120. #header-top #block-socialnetwork-2 p a {
  7121. color: rgb(255, 255, 255);
  7122. font-size: 0;
  7123. }
  7124. #header-top #block-socialnetwork-2 p svg.ext {
  7125. display: none;
  7126. }
  7127. #header-top #block-socialnetwork-2 p .link-twitter {
  7128. display: flex;
  7129. background-color: black;
  7130. width: 40px;
  7131. justify-content: center;
  7132. align-items: flex-end;
  7133. }
  7134. #header-top #block-socialnetwork-2 p .link-twitter:before {
  7135. content: url("../images/pictos/logo_x_blanc.svg");
  7136. min-width: 30px;
  7137. padding-bottom: 0.5rem;
  7138. }
  7139. #header-top #block-socialnetwork-2 p .link-youtube {
  7140. display: flex;
  7141. background-color: black;
  7142. min-width: 40px;
  7143. justify-content: center;
  7144. align-items: flex-end;
  7145. }
  7146. #header-top #block-socialnetwork-2 p .link-youtube:before {
  7147. content: url("../images/pictos/youtube_white.svg");
  7148. min-width: 25px;
  7149. padding-bottom: 0.5rem;
  7150. }
  7151. #header-top #block-socialnetwork-2 p .link-linkedin {
  7152. display: flex;
  7153. background-color: black;
  7154. min-width: 40px;
  7155. justify-content: center;
  7156. align-items: flex-end;
  7157. }
  7158. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  7159. content: url("../images/pictos/linkedin_white.svg");
  7160. min-width: 35px;
  7161. padding-bottom: 0.2rem;
  7162. }
  7163. .region-header-bottom {
  7164. box-shadow: 0 4px 4px 3px rgba(0, 0, 0, 0.1);
  7165. }
  7166. .region-header-bottom #block-headermenu {
  7167. align-self: baseline;
  7168. width: 100%;
  7169. background-color: white;
  7170. border-top: solid rgb(0, 158, 227) 1px;
  7171. }
  7172. .region-header-bottom ul {
  7173. font-size: 1rem;
  7174. font-weight: 900;
  7175. list-style: none;
  7176. display: flex;
  7177. flex-direction: row;
  7178. justify-content: space-evenly;
  7179. width: 100%;
  7180. padding-inline-start: 0px;
  7181. padding: 1rem;
  7182. margin-top: 0 !important;
  7183. padding-bottom: 0.5rem;
  7184. }
  7185. .region-header-bottom ul .is-active {
  7186. color: rgb(0, 158, 227);
  7187. }
  7188. .region-header-bottom ul ul {
  7189. position: absolute;
  7190. left: -28%;
  7191. z-index: 1000;
  7192. display: flex;
  7193. flex-direction: column;
  7194. min-width: 210px;
  7195. width: fit-content;
  7196. justify-content: space-between;
  7197. padding-inline-start: 0px;
  7198. }
  7199. .region-header-bottom ul ul .is-active {
  7200. color: rgb(0, 158, 227);
  7201. }
  7202. .region-header-bottom ul ul {
  7203. opacity: 0;
  7204. visibility: hidden;
  7205. transform: translateY(-10px);
  7206. transition: opacity 0.3s ease, transform 0.3s ease;
  7207. }
  7208. .region-header-bottom ul li {
  7209. position: relative;
  7210. display: flex;
  7211. flex-direction: column;
  7212. background-color: rgb(255, 255, 255);
  7213. padding-bottom: 0.8rem;
  7214. max-width: inherit;
  7215. padding-left: 1rem;
  7216. padding-right: 0.5rem;
  7217. height: fit-content;
  7218. }
  7219. .region-header-bottom ul li a {
  7220. color: rgb(0, 0, 0);
  7221. }
  7222. .region-header-bottom ul li .is-active {
  7223. color: rgb(0, 158, 227);
  7224. }
  7225. .region-header-bottom ul li :hover {
  7226. color: rgb(0, 158, 227);
  7227. }
  7228. .region-header-bottom ul li:hover ul {
  7229. opacity: 1;
  7230. visibility: visible;
  7231. transform: translateY(0);
  7232. }
  7233. .region-header-bottom ul .ul1.sous-liste.ul2 {
  7234. padding-left: 1rem;
  7235. }
  7236. #fotter-bottom {
  7237. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  7238. display: flex;
  7239. flex: 1 1 120px;
  7240. flex-direction: row;
  7241. background-color: rgb(255, 255, 255);
  7242. padding-top: 3rem;
  7243. }
  7244. @media (max-width: 810px) {
  7245. #fotter-bottom {
  7246. flex-direction: column;
  7247. padding-right: 1rem;
  7248. }
  7249. }
  7250. #fotter-bottom .region {
  7251. display: block;
  7252. padding-left: 2rem;
  7253. padding-right: 1rem;
  7254. padding-bottom: 1rem;
  7255. border-left: rgb(0, 158, 227) solid 1px;
  7256. }
  7257. #fotter-bottom .region h2 {
  7258. margin-top: 0;
  7259. color: rgb(9, 57, 139);
  7260. font-size: 1.2rem;
  7261. }
  7262. #fotter-bottom .region-footer-bottom-left {
  7263. margin-left: 3rem;
  7264. border: none;
  7265. }
  7266. @media (max-width: 810px) {
  7267. #fotter-bottom .region-footer-bottom-left {
  7268. width: 100%;
  7269. margin-left: 0rem;
  7270. }
  7271. }
  7272. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  7273. display: flex;
  7274. flex-direction: row;
  7275. justify-content: flex-start;
  7276. flex-wrap: wrap;
  7277. padding-top: 1rem;
  7278. }
  7279. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  7280. padding-right: 1rem;
  7281. padding-bottom: 1rem;
  7282. }
  7283. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  7284. width: auto;
  7285. height: 30px;
  7286. }
  7287. #fotter-bottom .region-footer-bottom-right {
  7288. display: flex;
  7289. flex-direction: column-reverse;
  7290. justify-content: flex-end;
  7291. }
  7292. @media (max-width: 810px) {
  7293. #fotter-bottom .region-footer-bottom-right {
  7294. width: 100%;
  7295. }
  7296. }
  7297. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  7298. margin-bottom: 1rem;
  7299. }
  7300. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  7301. margin-top: 0;
  7302. display: flex;
  7303. flex-direction: row-reverse;
  7304. justify-content: flex-end;
  7305. }
  7306. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  7307. color: rgb(255, 255, 255);
  7308. font-size: 0;
  7309. padding-left: 1rem;
  7310. }
  7311. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a.link-linkedin {
  7312. padding-left: 0;
  7313. }
  7314. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  7315. display: none;
  7316. }
  7317. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  7318. display: none;
  7319. }
  7320. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  7321. content: url("../images/pictos/logo_x_rond.png");
  7322. min-width: 50px;
  7323. align-self: center;
  7324. }
  7325. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  7326. display: flex;
  7327. }
  7328. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  7329. content: url("../images/pictos/youtube_rond.svg");
  7330. min-width: 50px;
  7331. }
  7332. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  7333. display: flex;
  7334. }
  7335. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  7336. content: url("../images/pictos/linkedin_rond.svg");
  7337. min-width: 50px;
  7338. }
  7339. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  7340. margin-top: 0;
  7341. color: rgb(9, 57, 139);
  7342. font-weight: 800;
  7343. list-style: none;
  7344. padding-left: 0;
  7345. }
  7346. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  7347. color: rgb(9, 57, 139);
  7348. font-size: 1.2rem;
  7349. text-decoration: underline;
  7350. margin-top: 0;
  7351. }
  7352. #fotter-bottom .region-footer-bottom-middle {
  7353. width: 60%;
  7354. }
  7355. @media (max-width: 810px) {
  7356. #fotter-bottom .region-footer-bottom-middle {
  7357. width: 100%;
  7358. }
  7359. }
  7360. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper {
  7361. display: flex;
  7362. flex-direction: row;
  7363. justify-content: flex-start;
  7364. flex-wrap: wrap;
  7365. }
  7366. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper .node-type-partenaires_logo_footer_ {
  7367. padding-right: 1rem;
  7368. padding-bottom: 1rem;
  7369. }
  7370. .slick-prev {
  7371. color: rgb(0, 158, 227);
  7372. left: 25px;
  7373. }
  7374. .path-frontpage .slick-dots {
  7375. bottom: -40px !important;
  7376. }
  7377. .path-frontpage .slick-prev::before,
  7378. .path-frontpage .slick-next::before {
  7379. opacity: 1;
  7380. }
  7381. /* Slider */
  7382. .slick-slider {
  7383. position: relative;
  7384. display: block;
  7385. box-sizing: border-box;
  7386. -webkit-touch-callout: none;
  7387. -webkit-user-select: none;
  7388. -khtml-user-select: none;
  7389. -moz-user-select: none;
  7390. -ms-user-select: none;
  7391. user-select: none;
  7392. -ms-touch-action: pan-y;
  7393. touch-action: pan-y;
  7394. -webkit-tap-highlight-color: transparent;
  7395. }
  7396. .slick-list {
  7397. position: relative;
  7398. overflow: hidden;
  7399. display: block;
  7400. margin: 0;
  7401. padding: 0;
  7402. }
  7403. .slick-list:focus {
  7404. outline: none;
  7405. }
  7406. .slick-list.dragging {
  7407. cursor: pointer;
  7408. cursor: hand;
  7409. }
  7410. .slick-slider .slick-track,
  7411. .slick-slider .slick-list {
  7412. -webkit-transform: translate3d(0, 0, 0);
  7413. -moz-transform: translate3d(0, 0, 0);
  7414. -ms-transform: translate3d(0, 0, 0);
  7415. -o-transform: translate3d(0, 0, 0);
  7416. transform: translate3d(0, 0, 0);
  7417. }
  7418. .slick-track {
  7419. position: relative;
  7420. left: 0;
  7421. top: 0;
  7422. display: block;
  7423. margin-left: auto;
  7424. margin-right: auto;
  7425. }
  7426. .slick-track:before, .slick-track:after {
  7427. content: "";
  7428. display: table;
  7429. }
  7430. .slick-track:after {
  7431. clear: both;
  7432. }
  7433. .slick-loading .slick-track {
  7434. visibility: hidden;
  7435. }
  7436. .slick-slide {
  7437. float: left;
  7438. height: 100%;
  7439. min-height: 1px;
  7440. }
  7441. [dir=rtl] .slick-slide {
  7442. float: right;
  7443. }
  7444. .slick-slide img {
  7445. display: block;
  7446. }
  7447. .slick-slide.slick-loading img {
  7448. display: none;
  7449. }
  7450. .slick-slide {
  7451. display: none;
  7452. }
  7453. .slick-slide.dragging img {
  7454. pointer-events: none;
  7455. }
  7456. .slick-initialized .slick-slide {
  7457. display: block;
  7458. }
  7459. .slick-loading .slick-slide {
  7460. visibility: hidden;
  7461. }
  7462. .slick-vertical .slick-slide {
  7463. display: block;
  7464. height: auto;
  7465. border: 1px solid transparent;
  7466. }
  7467. .slick-arrow.slick-hidden {
  7468. display: none;
  7469. }
  7470. /* Slider */
  7471. .slick-loading .slick-list {
  7472. background: #fff url("./ajax-loader.gif") center center no-repeat;
  7473. }
  7474. /* Icons */
  7475. /* Arrows */
  7476. .slick-prev,
  7477. .slick-next {
  7478. position: absolute;
  7479. display: block;
  7480. height: 60px;
  7481. width: 60px;
  7482. line-height: 0px;
  7483. font-size: 0px;
  7484. cursor: pointer;
  7485. background: transparent;
  7486. color: transparent;
  7487. top: 50%;
  7488. -webkit-transform: translate(0, -50%);
  7489. -ms-transform: translate(0, -50%);
  7490. transform: translate(0, -50%);
  7491. padding: 0;
  7492. border: none;
  7493. outline: none;
  7494. }
  7495. .slick-prev:hover,
  7496. .slick-next:hover {
  7497. outline: none;
  7498. background: transparent;
  7499. color: transparent;
  7500. }
  7501. .slick-prev:hover:before,
  7502. .slick-next:hover:before {
  7503. opacity: 0.2;
  7504. }
  7505. .slick-prev.slick-disabled:before,
  7506. .slick-next.slick-disabled:before {
  7507. opacity: 0;
  7508. }
  7509. .slick-prev:before,
  7510. .slick-next:before {
  7511. font-family: "marianne";
  7512. font-size: 60px;
  7513. line-height: 1;
  7514. color: rgb(0, 158, 227);
  7515. opacity: 0;
  7516. -webkit-font-smoothing: antialiased;
  7517. -moz-osx-font-smoothing: grayscale;
  7518. }
  7519. .slick-prev {
  7520. z-index: 1;
  7521. left: 25px;
  7522. }
  7523. [dir=rtl] .slick-prev {
  7524. left: auto;
  7525. right: 25px;
  7526. }
  7527. .slick-prev:before {
  7528. content: "←";
  7529. }
  7530. [dir=rtl] .slick-prev:before {
  7531. content: "→";
  7532. }
  7533. .slick-next {
  7534. right: 25px;
  7535. }
  7536. [dir=rtl] .slick-next {
  7537. left: 25px;
  7538. right: auto;
  7539. }
  7540. .slick-next:before {
  7541. content: "→";
  7542. }
  7543. [dir=rtl] .slick-next:before {
  7544. content: "←";
  7545. }
  7546. /* Dots */
  7547. .slick-dotted.slick-slider {
  7548. margin-bottom: 30px;
  7549. }
  7550. 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 {
  7551. width: 600px;
  7552. }
  7553. .slick-dots {
  7554. list-style: none;
  7555. display: block;
  7556. text-align: center;
  7557. padding: 0;
  7558. margin: 0;
  7559. width: 100%;
  7560. }
  7561. .slick-dots li {
  7562. position: relative;
  7563. display: inline-block;
  7564. height: 20px;
  7565. width: 20px;
  7566. margin: 0 5px;
  7567. padding: 0;
  7568. cursor: pointer;
  7569. }
  7570. .slick-dots li button {
  7571. border: 0;
  7572. background: transparent;
  7573. display: block;
  7574. height: 20px;
  7575. width: 20px;
  7576. outline: none;
  7577. line-height: 0px;
  7578. font-size: 0px;
  7579. color: transparent;
  7580. padding: 5px;
  7581. cursor: pointer;
  7582. }
  7583. .slick-dots li button:hover, .slick-dots li button:focus {
  7584. outline: none;
  7585. }
  7586. .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  7587. opacity: 0.2;
  7588. }
  7589. .slick-dots li button:before {
  7590. position: absolute;
  7591. top: 0;
  7592. left: 0;
  7593. content: "•";
  7594. width: 20px;
  7595. height: 20px;
  7596. font-family: "marianne";
  7597. font-size: 50px;
  7598. line-height: 20px;
  7599. text-align: center;
  7600. color: black;
  7601. opacity: 0.2;
  7602. -webkit-font-smoothing: antialiased;
  7603. -moz-osx-font-smoothing: grayscale;
  7604. }
  7605. .slick-dots li.slick-active button:before {
  7606. color: black;
  7607. opacity: 0.5;
  7608. }
  7609. #views-exposed-form-projets-block-1 {
  7610. flex-direction: row;
  7611. position: relative;
  7612. align-items: center;
  7613. }
  7614. @media (max-width: 810px) {
  7615. #views-exposed-form-projets-block-1 select {
  7616. max-width: 58%;
  7617. }
  7618. }
  7619. #views-exposed-form-base-de-donnees-block-1 {
  7620. flex-direction: column;
  7621. margin-top: 1rem;
  7622. }
  7623. @media (max-width: 479px) {
  7624. #views-exposed-form-base-de-donnees-block-1 {
  7625. justify-content: center;
  7626. }
  7627. }
  7628. #views-exposed-form-base-de-donnees-block-1 .js-form-item {
  7629. margin-right: 0 !important;
  7630. margin-bottom: 0.5rem !important;
  7631. padding: 0.2rem !important;
  7632. }
  7633. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7634. #views-exposed-form-base-de-donnees-block-1 .js-form-item select {
  7635. width: 100%;
  7636. text-align: end;
  7637. }
  7638. #views-exposed-form-base-de-donnees-block-1 .js-form-item label {
  7639. padding-right: 0.5rem !important;
  7640. flex: 2 0 auto !important;
  7641. }
  7642. #views-exposed-form-base-de-donnees-block-1,
  7643. #views-exposed-form-projets-block-1,
  7644. #views-exposed-form-projets-page-1 {
  7645. display: flex;
  7646. flex-wrap: wrap;
  7647. }
  7648. @media (max-width: 810px) {
  7649. #views-exposed-form-base-de-donnees-block-1,
  7650. #views-exposed-form-projets-block-1,
  7651. #views-exposed-form-projets-page-1 {
  7652. font-size: 0.8rem;
  7653. }
  7654. }
  7655. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7656. #views-exposed-form-projets-block-1 .js-form-item,
  7657. #views-exposed-form-projets-page-1 .js-form-item {
  7658. display: flex;
  7659. flex-direction: row;
  7660. max-width: 100%;
  7661. margin-right: 1rem;
  7662. margin-bottom: 1rem;
  7663. padding: 0.5rem 1rem;
  7664. align-items: baseline;
  7665. border: solid black 0.5px;
  7666. justify-content: space-evenly;
  7667. }
  7668. @media (max-width: 810px) {
  7669. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7670. #views-exposed-form-projets-block-1 .js-form-item,
  7671. #views-exposed-form-projets-page-1 .js-form-item {
  7672. display: flex;
  7673. flex-direction: row;
  7674. justify-content: space-between;
  7675. max-width: 85%;
  7676. }
  7677. }
  7678. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7679. #views-exposed-form-projets-block-1 .js-form-item label,
  7680. #views-exposed-form-projets-page-1 .js-form-item label {
  7681. flex: 2 1 auto;
  7682. padding-right: 2rem;
  7683. }
  7684. #views-exposed-form-base-de-donnees-block-1 .js-form-item label::after,
  7685. #views-exposed-form-projets-block-1 .js-form-item label::after,
  7686. #views-exposed-form-projets-page-1 .js-form-item label::after {
  7687. content: " : ";
  7688. }
  7689. @media (max-width: 810px) {
  7690. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7691. #views-exposed-form-projets-block-1 .js-form-item label,
  7692. #views-exposed-form-projets-page-1 .js-form-item label {
  7693. padding-right: 1rem;
  7694. }
  7695. }
  7696. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7697. #views-exposed-form-projets-block-1 .js-form-item input,
  7698. #views-exposed-form-projets-page-1 .js-form-item input {
  7699. flex: 2 1 auto;
  7700. max-width: 55%;
  7701. }
  7702. @media (max-width: 810px) {
  7703. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7704. #views-exposed-form-projets-block-1 .js-form-item input,
  7705. #views-exposed-form-projets-page-1 .js-form-item input {
  7706. max-width: 100%;
  7707. }
  7708. }
  7709. #views-exposed-form-base-de-donnees-block-1 .js-form-item .form-checkbox,
  7710. #views-exposed-form-projets-block-1 .js-form-item .form-checkbox,
  7711. #views-exposed-form-projets-page-1 .js-form-item .form-checkbox {
  7712. margin-right: 1rem;
  7713. }
  7714. #views-exposed-form-base-de-donnees-block-1 .js-form-item .select-wrapper,
  7715. #views-exposed-form-projets-block-1 .js-form-item .select-wrapper,
  7716. #views-exposed-form-projets-page-1 .js-form-item .select-wrapper {
  7717. margin: 0;
  7718. }
  7719. #views-exposed-form-base-de-donnees-block-1 .js-form-type-checkbox label::after,
  7720. #views-exposed-form-projets-block-1 .js-form-type-checkbox label::after,
  7721. #views-exposed-form-projets-page-1 .js-form-type-checkbox label::after {
  7722. content: none;
  7723. }
  7724. #views-exposed-form-base-de-donnees-block-1 .form-actions input,
  7725. #views-exposed-form-projets-block-1 .form-actions input,
  7726. #views-exposed-form-projets-page-1 .form-actions input {
  7727. color: white;
  7728. font-weight: 600;
  7729. text-transform: uppercase;
  7730. padding: 0.3rem 0.7rem;
  7731. background-color: rgb(0, 158, 227);
  7732. border: none;
  7733. }
  7734. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7735. #views-exposed-form-projets-block-1 input,
  7736. #views-exposed-form-projets-block-1 select,
  7737. #views-exposed-form-projets-page-1 input,
  7738. #views-exposed-form-projets-page-1 select {
  7739. border: none;
  7740. background-color: transparent;
  7741. font-family: "Marianne";
  7742. font-size: 1rem;
  7743. }
  7744. @media (max-width: 810px) {
  7745. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7746. #views-exposed-form-projets-block-1 input,
  7747. #views-exposed-form-projets-block-1 select,
  7748. #views-exposed-form-projets-page-1 input,
  7749. #views-exposed-form-projets-page-1 select {
  7750. font-size: 0.8rem;
  7751. }
  7752. }
  7753. article.node-type-ressource {
  7754. margin-bottom: 1rem;
  7755. padding-right: 1rem;
  7756. }
  7757. article.node-type-ressource h2 {
  7758. text-align: left !important;
  7759. }
  7760. article.node-type-ressource .ext {
  7761. color: black;
  7762. }
  7763. article.node-type-ressource svg.ext {
  7764. display: none;
  7765. }
  7766. article.node-type-ressource :visited {
  7767. color: black;
  7768. }
  7769. article.node-type-ressource a {
  7770. color: black;
  7771. }
  7772. article.node-type-ressource .wrapper-ressource {
  7773. display: flex;
  7774. flex-direction: column;
  7775. position: relative;
  7776. }
  7777. article.node-type-ressource .wrapper-ressource .card-link {
  7778. position: absolute;
  7779. inset: 0;
  7780. z-index: 10;
  7781. display: block;
  7782. }
  7783. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource {
  7784. order: 2;
  7785. }
  7786. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7787. order: 1;
  7788. }
  7789. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource,
  7790. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7791. grid-column: 1;
  7792. text-transform: uppercase;
  7793. line-height: 1.1rem;
  7794. margin-top: 0.5rem;
  7795. }
  7796. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource a,
  7797. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media a {
  7798. color: rgb(0, 158, 227);
  7799. font-weight: 900;
  7800. font-size: 0.8rem;
  7801. pointer-events: none;
  7802. cursor: default;
  7803. }
  7804. article.node-type-ressource .wrapper-ressource .field--name-title {
  7805. grid-column: 2;
  7806. margin-top: 0.5rem;
  7807. order: 4;
  7808. margin-bottom: 0;
  7809. }
  7810. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7811. margin: 0;
  7812. line-height: 1.2rem;
  7813. margin-left: 0 !important;
  7814. line-height: 0;
  7815. margin-bottom: 0 !important;
  7816. }
  7817. article.node-type-ressource .wrapper-ressource .field--name-title h2 a {
  7818. color: rgb(0, 0, 0);
  7819. font-size: 0.9rem;
  7820. font-weight: 900;
  7821. font-style: normal;
  7822. display: -webkit-box;
  7823. -webkit-box-orient: vertical;
  7824. -webkit-line-clamp: 4;
  7825. overflow: hidden;
  7826. text-overflow: ellipsis;
  7827. line-height: 1.4em;
  7828. }
  7829. @media (max-width: 810px) {
  7830. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7831. line-height: 0 !important;
  7832. }
  7833. }
  7834. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- {
  7835. grid-column: 2;
  7836. margin-top: 0.5rem;
  7837. font-weight: 800;
  7838. line-height: 1.1rem;
  7839. order: 6 !important;
  7840. font-size: 0.8rem;
  7841. }
  7842. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- p {
  7843. margin: 0;
  7844. }
  7845. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- .field__label {
  7846. display: none;
  7847. }
  7848. article.node-type-ressource .wrapper-ressource .field--name-field-sous-titre {
  7849. grid-column: 2;
  7850. margin-top: 0.8rem;
  7851. order: 5;
  7852. font-size: 0.9rem;
  7853. font-weight: 900;
  7854. line-height: 1.3 !important;
  7855. display: -webkit-box;
  7856. -webkit-box-orient: vertical;
  7857. -webkit-line-clamp: 3;
  7858. overflow: hidden;
  7859. text-overflow: ellipsis;
  7860. }
  7861. article.node-type-ressource .wrapper-ressource .field--name-field-edition {
  7862. order: 7;
  7863. grid-column: 2;
  7864. margin-top: 0.5rem;
  7865. font-size: 0.8rem;
  7866. }
  7867. article.node-type-ressource .wrapper-ressource .field--name-field-edition p {
  7868. margin: 0;
  7869. }
  7870. article.node-type-ressource .wrapper-ressource .field--name-field-edition .field__label {
  7871. display: none;
  7872. }
  7873. article.node-type-ressource .wrapper-ressource .field--name-field-images {
  7874. order: 3;
  7875. grid-column: 1;
  7876. }
  7877. article.node-type-ressource .wrapper-ressource .field--name-field-images .field__item {
  7878. height: 100px;
  7879. }
  7880. article.node-type-ressource .wrapper-ressource .field--name-field-images img {
  7881. height: 100%;
  7882. width: auto;
  7883. border: solid 1px gray;
  7884. }
  7885. article.node-type-ressource .wrapper-ressource .field--name-field-date-de-parution {
  7886. grid-column: 2;
  7887. margin-top: 0.3rem;
  7888. order: 8;
  7889. font-size: 0.8rem;
  7890. }
  7891. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs {
  7892. order: 9;
  7893. grid-column: 2;
  7894. display: flex;
  7895. margin-top: 0.5rem;
  7896. flex-direction: row;
  7897. flex-wrap: wrap;
  7898. }
  7899. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item {
  7900. margin-right: 0.5rem;
  7901. padding-right: 0.3rem;
  7902. margin-bottom: 0.3rem;
  7903. font-size: 0.7rem;
  7904. }
  7905. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item a {
  7906. background: rgb(9, 57, 139);
  7907. color: rgb(255, 255, 255);
  7908. font-weight: 800;
  7909. padding-left: 0.1rem;
  7910. padding-right: 0.1rem;
  7911. display: inline-flex;
  7912. pointer-events: none;
  7913. cursor: default;
  7914. }
  7915. article.node-type-ressource .wrapper-ressource ul.links.inline {
  7916. display: none;
  7917. }
  7918. article.node-type-ressource.type-publications-issues-du-programme {
  7919. min-width: 300px;
  7920. }
  7921. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource {
  7922. display: grid;
  7923. grid-template-columns: 1fr 1.8fr;
  7924. grid-template-rows: repeat(5 1fr);
  7925. }
  7926. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-ressource {
  7927. order: 2;
  7928. grid-row: 2;
  7929. grid-column: 1/span 2;
  7930. margin-bottom: 0.5rem;
  7931. }
  7932. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-media {
  7933. order: 1;
  7934. grid-row: 1;
  7935. grid-column: 1/span 2;
  7936. }
  7937. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images {
  7938. order: 3;
  7939. grid-row: 3/span 5;
  7940. height: auto;
  7941. width: 90%;
  7942. }
  7943. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images img {
  7944. height: auto;
  7945. width: 90%;
  7946. border: 1px solid #a3a3a3;
  7947. }
  7948. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title {
  7949. grid-row: 3;
  7950. margin-top: 0;
  7951. padding-bottom: 0.4rem;
  7952. }
  7953. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 {
  7954. margin-left: 0 !important;
  7955. line-height: 0;
  7956. }
  7957. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 a {
  7958. color: rgb(0, 158, 227);
  7959. font-size: 1.3rem;
  7960. font-style: normal;
  7961. line-height: 1.2em !important;
  7962. }
  7963. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre {
  7964. margin-top: 0;
  7965. line-height: 1;
  7966. grid-row: 4;
  7967. }
  7968. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a,
  7969. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a:visited {
  7970. grid-row: 4;
  7971. color: rgb(0, 158, 227);
  7972. font-size: 1rem;
  7973. font-weight: 800;
  7974. }
  7975. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-edition {
  7976. grid-row: 6;
  7977. line-height: 1.1;
  7978. }
  7979. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-date-de-parution {
  7980. grid-row: 7;
  7981. }
  7982. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-mots-clefs {
  7983. grid-row: 8;
  7984. margin-top: 0.5rem;
  7985. left: -0.2rem;
  7986. position: relative;
  7987. }
  7988. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-ressource {
  7989. order: 2;
  7990. }
  7991. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-media {
  7992. order: 1;
  7993. }
  7994. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-images {
  7995. order: 3;
  7996. }
  7997. @media (max-width: 479px) {
  7998. article.node-type-ressource {
  7999. margin-left: 0;
  8000. }
  8001. }
  8002. article.node-type-ressource.type-presse .field--name-field-images {
  8003. display: none;
  8004. }
  8005. .type-les-projets-en-images.views-row {
  8006. width: 50% !important;
  8007. min-width: 550px !important;
  8008. max-width: 0 !important;
  8009. }
  8010. @media (max-width: 479px) {
  8011. .type-les-projets-en-images.views-row {
  8012. min-width: 100% !important;
  8013. }
  8014. }
  8015. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  8016. display: grid;
  8017. grid-template-columns: 2fr 1fr !important;
  8018. width: 100%;
  8019. max-width: 100%;
  8020. column-gap: 1rem;
  8021. align-items: start;
  8022. }
  8023. @media (max-width: 479px) {
  8024. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  8025. display: flex;
  8026. flex-direction: column;
  8027. padding-left: 1rem !important;
  8028. }
  8029. }
  8030. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images {
  8031. grid-column: 1;
  8032. grid-row: 3/span 8;
  8033. width: 100%;
  8034. }
  8035. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images img {
  8036. width: 100%;
  8037. height: auto;
  8038. margin-top: 1rem;
  8039. object-fit: cover;
  8040. border: 1px solid #ccc;
  8041. }
  8042. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  8043. height: fit-content;
  8044. }
  8045. @media (max-width: 479px) {
  8046. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  8047. height: auto;
  8048. }
  8049. }
  8050. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-media {
  8051. grid-column: 1/span 2;
  8052. grid-row: 2;
  8053. }
  8054. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-ressource {
  8055. grid-column: 1/span 2;
  8056. grid-row: 1;
  8057. }
  8058. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title,
  8059. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre,
  8060. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s-,
  8061. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition,
  8062. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution,
  8063. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  8064. grid-column: 2;
  8065. width: 100%;
  8066. box-sizing: border-box;
  8067. padding: 0;
  8068. margin: 0;
  8069. }
  8070. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title {
  8071. grid-row: 3;
  8072. margin-bottom: 0.5rem;
  8073. }
  8074. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre {
  8075. grid-row: 4;
  8076. }
  8077. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s- {
  8078. grid-row: 5;
  8079. }
  8080. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition {
  8081. grid-row: 6;
  8082. line-height: 1;
  8083. }
  8084. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution {
  8085. grid-row: 7;
  8086. }
  8087. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  8088. grid-row: 8;
  8089. }
  8090. .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 {
  8091. margin: 0;
  8092. padding: 0;
  8093. }