bundle.css 285 KB

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