bundle.css 322 KB

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