bundle.css 325 KB

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