bundle.css 349 KB

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