bundle.css 316 KB

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