bundle.css 321 KB

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