Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

style.css 145KB

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