bundle.css 321 KB

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