bundle.css 295 KB

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