bundle.css 312 KB

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