bundle.css 341 KB

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