bundle.css 341 KB

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