style-rtl.css 169 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081
  1. /*
  2. Theme Name: Spice Software
  3. Theme URI: https://spicethemes.com/spice-software-wordpress-theme/
  4. Author: spicethemes
  5. Author URI: https://spicethemes.com
  6. Description: Spice Software WordPress Theme is a lightweight, elegant, fully responsive, and translation-ready theme that allows you to create stunning blogs and websites. The theme is well suited for companies, law firms, eCommerce, finance, agency, travel, photography, design, arts, personal, and any other creative websites and blogs. The theme is developed using the Bootstrap 4 framework. It comes with a predesigned home page, good-looking header designs, and a number of content sections that you can easily customize. It also has lots of customization options (banner, services, testimonial, etc) that will help you create a beautiful, unique website in a short time. Spice Software is compatible with popular plugins like Polylang, WooCommerce, and Contact Form 7. Spice Software theme is available in several locales.This theme comes with GDPR compatible. (DEMO: https://spice-software.spicethemes.com/)
  7. Tags: one-column, two-columns, right-sidebar, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, sticky-post, threaded-comments, translation-ready, rtl-language-support
  8. Version: 1.1.7
  9. Requires at least: 4.5
  10. Tested up to: 6.0
  11. Requires PHP: 5.4
  12. License: GNU General Public License v2 or later
  13. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  14. Text Domain: spice-software
  15. */
  16. /*--------------------------------------------------------------
  17. >>> TABLE OF CONTENTS:
  18. ----------------------------------------------------------------
  19. 1.0 Common
  20. 2.0 Forms
  21. 3.0 Buttons
  22. 4.0 Lists
  23. 5.0 Tables
  24. 6.0 Links
  25. 7.0 Header Contact Details
  26. 8.0 Social Icons
  27. 9.0 Woocommerce Header Cart
  28. 10.0 Main Slider
  29. 11.0 Next Preview Button
  30. 12.0 Cta Section
  31. 13.0 Section Module
  32. 14.0 Section Header
  33. 15.0 Mixed Classes
  34. 16.0 Service Section
  35. 17.0 Cta-2 Section
  36. 18.0 Portfolio Section
  37. 19.0 Funfact Section
  38. 20.0 Blog Section
  39. 20.1 Blog Meta
  40. 20.2 Blog Sidebar
  41. 20.3 Blog list View
  42. 21.0 Testimonial Section
  43. 22.0 Shop and product section
  44. 23.0 Gallery Section
  45. 24.0 Team member Section
  46. 25.0 Sponsors Section
  47. 26.0 Footer Sidebar Section
  48. 27.0 Pagination
  49. 28.0 Aboutus Page
  50. 29.0 Contact
  51. 30.0 404 ERROR PAGE
  52. 31.0 Mobile Header Responsive
  53. 32.0 Alignment
  54. 25.0 Accessibility
  55. --------------------------------------------------------------*/
  56. /*--------------------------------------------------------------
  57. 1.0 Common
  58. --------------------------------------------------------------*/
  59. html {
  60. overflow-y: scroll;
  61. overflow-x: hidden;
  62. -ms-overflow-style: scrollbar;
  63. }
  64. html { font-size: 1rem; }
  65. @media (min-width: 768px) and (max-width: 991px) {
  66. html { font-size: 0.875rem; }
  67. }
  68. @media (min-width: 200px) and (max-width: 768px) {
  69. html { font-size: 0.75rem; }
  70. }
  71. body,
  72. button,
  73. input,
  74. select,
  75. textarea {
  76. color: #21202E;
  77. font-family: "Roboto", "Work Sans", "Helvetica Neue", helvetica, arial, sans-serif;
  78. line-height: 1.6;
  79. -webkit-font-smoothing: antialiased;
  80. }
  81. h1, h2, h3,
  82. h4, h5, h6 {
  83. clear: both;
  84. line-height: 1.5;
  85. margin: 0 0 1.875rem;
  86. color: #333333;
  87. font-weight: 700;
  88. font-family: 'Roboto', sans-serif;
  89. }
  90. h1 { font-size: 2.250rem; /* 36px */ }
  91. h2 { font-size: 1.875rem; /* 30px */ }
  92. h3 { font-size: 1.500rem; /* 24px */ }
  93. h4 { font-size: 1.250rem; /* 20px */ }
  94. h5 { font-size: 1.000rem; /* 16px */ }
  95. h6 { font-size: 0.875rem; /* 14px */ }
  96. p { margin: 0 0 1.6rem; padding: 0;font-size: 1rem; color:#727272;font-family: 'Roboto', sans-serif;}
  97. p:last-child { margin-bottom: 0rem; padding: 0; }
  98. dfn, cite, em, i { font-style: italic; }
  99. blockquote {
  100. font-size: 1.500rem;
  101. font-style: normal;
  102. margin: 0 0 1.563rem;
  103. overflow: hidden;
  104. padding: 0.625rem 1.25rem;
  105. quotes: "" "";
  106. color: #333333;
  107. font-weight: 400;
  108. position: relative;
  109. background-color: #f5f6fa;
  110. }
  111. blockquote cite { color: #061018; font-size: 1.000rem; display: block; font-style: normal; font-weight: 400; margin-top: 0.5em; }
  112. q { quotes: "“" "”" "‘" "’"; }
  113. blockquote:before, blockquote:after { content: ""; }
  114. /*:focus {
  115. outline: thin dotted;
  116. }*/
  117. dl dd a, dl dd a:hover, dl dd a:focus, ul li a:focus { color: #727272; }
  118. body .bg-default{background-color:#f4f4f4;}
  119. .entry-meta .tag-links a {
  120. background-color: #ffffff;
  121. border: 1px solid #e9e9e9;
  122. color: #727272;
  123. font-size: 0.875rem;
  124. display: inline-block;
  125. padding: 0.188rem 1.25rem;
  126. margin: 0 0 0.625rem 0.500rem;
  127. }
  128. .entry-meta .tag-links a:hover, .entry-meta .tag-links a:focus {
  129. color: #ffffff;
  130. }
  131. .entry-meta > span {
  132. color: #727272;
  133. margin: 0px 0px 0px -5px;
  134. }
  135. .entry-meta a {
  136. color: #727272;
  137. padding: 0;
  138. }
  139. .blog-author {
  140. background-color: #ffffff;
  141. border: 1px solid #e9e9e9;
  142. margin: 0 0 5rem;
  143. padding: 2.188rem 1.875rem 1.875rem;
  144. }
  145. .blog-author.media .avatar img {
  146. border-radius: 50%;
  147. }
  148. .blog-author .avatar {
  149. margin: 0 0 0px 2.5rem;
  150. height: 12.5rem;
  151. width: 12.5rem;
  152. }
  153. .blog-author .post-by {
  154. color: #727272;
  155. font-size: 0.938rem;
  156. font-weight: 400;
  157. margin-bottom: 0.625rem;
  158. }
  159. .blog-author .name {
  160. margin: 0 0 0.625rem;
  161. }
  162. p:last-child {
  163. margin-bottom: 0rem;
  164. padding: 0;
  165. }
  166. .blog .standard-view .entry-content img {
  167. max-width: 100%;
  168. height: auto;
  169. }
  170. .wp-caption.alignnone img, .wp-caption.aligncenter img, .wp-image-907 {
  171. width: 100%;
  172. height: auto;
  173. }
  174. .aligncenter {
  175. clear: both;
  176. display: block;
  177. margin-right: auto;
  178. margin-left: auto;
  179. }
  180. .wp-block-latest-comments__comment-meta{background-color: #fff;}
  181. .widget .wp-block-latest-comments__comment-meta{background-color: transparent;}
  182. .has-media-on-the-right.is-stacked-on-mobile {
  183. margin-top: calc(2 * 1rem);
  184. margin-bottom: calc(2 * 1rem);
  185. right: calc( -12.5% - 75px);
  186. max-width: calc( 125% + 150px);
  187. }
  188. .post .entry-content {
  189. display: block;
  190. overflow: hidden;
  191. margin: 0px;
  192. }
  193. .wp-block-cover-image .wp-block-subhead:not(.has-text-color), .wp-block-cover-image h1:not(.has-text-color), .wp-block-cover-image h2:not(.has-text-color), .wp-block-cover-image h3:not(.has-text-color), .wp-block-cover-image h4:not(.has-text-color), .wp-block-cover-image h5:not(.has-text-color), .wp-block-cover-image h6:not(.has-text-color), .wp-block-cover-image p:not(.has-text-color), .wp-block-cover .wp-block-subhead:not(.has-text-color), .wp-block-cover h1:not(.has-text-color), .wp-block-cover h2:not(.has-text-color), .wp-block-cover h3:not(.has-text-color), .wp-block-cover h4:not(.has-text-color), .wp-block-cover h5:not(.has-text-color), .wp-block-cover h6:not(.has-text-color), .wp-block-cover p:not(.has-text-color) {
  194. color: #ffffff;
  195. }
  196. .wp-block-cover-image-text a, .wp-block-cover-image-text a:active, .wp-block-cover-image-text a:focus, .wp-block-cover-image-text a:hover, .wp-block-cover-text a, .wp-block-cover-text a:active, .wp-block-cover-text a:focus, .wp-block-cover-text a:hover, section.wp-block-cover-image h2 a, section.wp-block-cover-image h2 a:active, section.wp-block-cover-image h2 a:focus, section.wp-block-cover-image h2 a:hover {
  197. color: #fff;
  198. }
  199. .alignwide, .aligncenter {
  200. margin-bottom: 1.87rem;
  201. }
  202. .funfact-icon {color:#ffffff;}
  203. address { margin: 0 0 1.5em; }
  204. pre {
  205. background: #eee;
  206. font-size: 1.000rem;
  207. line-height: 1.6;
  208. margin-bottom: 1.6em;
  209. max-width: 100%;
  210. overflow: auto;
  211. padding: 1.6em;
  212. }
  213. hr { background-color: #bbb; border: 0; height: 1px; margin-bottom: 1.5em; }
  214. code, kbd, tt, var { font-size: 1.000rem; }
  215. abbr, acronym { border-bottom: 1px dotted #666; cursor: help; }
  216. mark, ins { background: #eee; text-decoration: none; }
  217. big { font-size: 125%; }
  218. iframe { border: 0; }
  219. #wrapper {
  220. background-color: #f8f8f8;
  221. margin: 0px auto;
  222. }
  223. .section-space .sticky.post{
  224. background-color: #00bfff26;
  225. }
  226. cite{ font-style: italic !important; }
  227. .bypostauthor{}
  228. #attachment_907 { width: 100% !important; }
  229. .alignnone img{ display: block; height: auto; width: 99%; }
  230. img.alignleft, .wp-caption.alignleft{ margin-left: 30px; }
  231. img.alignright, .wp-caption.alignright{ margin-right: 30px; float: left;}
  232. img.wp-caption .alignnone { display: block; margin: 0 auto; height: auto; width: 100%; }
  233. .wp-caption .wp-caption-text, .gallery-caption, .entry-caption{
  234. clear: right;
  235. font-style: italic;
  236. line-height: 1.5em;
  237. margin: 0.75em 0;
  238. text-align: center;
  239. }
  240. .wp-caption.alignright { margin: 5px 20px 20px 0;}
  241. .wp-caption p.wp-caption-text {
  242. font-size: 14px;
  243. margin: 12px 0;
  244. text-align: center;
  245. font-style: italic;
  246. line-height: 1.5em;
  247. }
  248. .wp-caption.alignleft { margin: 5px 0 20px 20px;}
  249. .gallery .gallery-icon img {
  250. height: auto;
  251. max-width: 90%;
  252. padding: 0;
  253. border: 5px solid #fff !important;
  254. -moz-box-shadow: 0 0 5px 2px rgba(33, 28, 28, .3);
  255. -webkit-box-shadow: 0 0 5px 2px rgba(33, 28, 28, .3);
  256. box-shadow: 0 0 5px 2px rgba(33, 28, 28, .3);
  257. }
  258. .gallery-item .gallery-caption, .hc_service_column .gallery-item .gallery-caption {
  259. font-size: 14px;
  260. margin: 12px 0;
  261. text-align: center;
  262. font-style: italic;
  263. line-height: 1.5em;
  264. }
  265. a img.alignright { float: left; }
  266. a img.alignnone { margin: 5px 0 20px 20px; }
  267. a img.alignleft { float: right; }
  268. a img.aligncenter { display: block; margin-right: auto; margin-left: auto; }
  269. @media screen and (min-width: 30rem){
  270. img.alignleft { float: right; margin-left: 20px; }
  271. }
  272. .img-fluid{width: 100%; height: auto;}
  273. .alignleft { display: inline; float: right; margin-left: 20px; }
  274. .aligncenter { clear: both; display: block; margin-right: auto; margin-left: auto; }
  275. fieldset {
  276. margin-bottom: 1rem;
  277. border: 1px solid #e9e9e9;
  278. margin: 0 2px;
  279. padding: 0.35rem 0.950rem 0.75rem;
  280. }
  281. fieldset p { margin: 0px 0 20px; }
  282. legend {
  283. -webkit-box-sizing: border-box;
  284. -moz-box-sizing: border-box;
  285. box-sizing: border-box;
  286. font-size: 1.500rem;
  287. color: #0f0f16;
  288. font-weight: 600;
  289. display: table;
  290. max-width: 100%;
  291. border-bottom: none;
  292. width: auto;
  293. padding: 0;
  294. white-space: normal;
  295. }
  296. /*--------------------------------------------------------------
  297. 2.0 Forms
  298. --------------------------------------------------------------*/
  299. label { color: #21202e;display: block;font-weight: 500;margin-bottom: 0.5em;font-size: 1rem; }
  300. fieldset { margin-bottom: 1em; }
  301. input[type="text"],
  302. input[type="email"],
  303. input[type="url"],
  304. input[type="password"],
  305. input[type="search"],
  306. input[type="number"],
  307. input[type="tel"],
  308. input[type="range"],
  309. input[type="date"],
  310. input[type="month"],
  311. input[type="week"],
  312. input[type="time"],
  313. input[type="datetime"],
  314. input[type="datetime-local"],
  315. input[type="color"],
  316. textarea {
  317. color: #333333;
  318. background: #ffffff;
  319. border: 1px solid #eeeeee;
  320. -webkit-border-radius: 0px;
  321. border-radius: 0px;
  322. display: block;
  323. padding: 0.7em;
  324. width: 100%;
  325. }
  326. input[type="text"]:focus,
  327. input[type="email"]:focus,
  328. input[type="url"]:focus,
  329. input[type="password"]:focus,
  330. input[type="search"]:focus,
  331. input[type="number"]:focus,
  332. input[type="tel"]:focus,
  333. input[type="range"]:focus,
  334. input[type="date"]:focus,
  335. input[type="month"]:focus,
  336. input[type="week"]:focus,
  337. input[type="time"]:focus,
  338. input[type="datetime"]:focus,
  339. input[type="datetime-local"]:focus,
  340. input[type="color"]:focus,
  341. textarea:focus {
  342. color: #333333;
  343. border-color: #e8e8e8;
  344. }
  345. select {
  346. border: 1px solid #f3f3f3;
  347. -webkit-border-radius: 0px;
  348. border-radius: 0px;
  349. height: 3em;
  350. max-width: 100%;
  351. }
  352. input[type="radio"],
  353. input[type="checkbox"] {
  354. margin-left: 0.5em;
  355. }
  356. input[type="radio"] + label,
  357. input[type="checkbox"] + label {
  358. font-weight: 400;
  359. }
  360. .form-submit input[type="submit"]{
  361. /* margin: 20px;*/
  362. }
  363. button,
  364. input[type="button"],
  365. input[type="submit"] {
  366. background: #ee591f;
  367. border: 0;
  368. -webkit-border-radius: 5px;
  369. border-radius: 5px;
  370. -webkit-box-shadow: none;
  371. box-shadow: none;
  372. color: #fff;
  373. cursor: pointer;
  374. display: inline-block;
  375. font-size: 0.938rem;
  376. font-weight: 600;
  377. line-height: 1;
  378. padding: 1rem 2.188rem;
  379. text-shadow: none;
  380. -webkit-transition: background 0.2s;
  381. transition: background 0.2s;
  382. }
  383. input + button,
  384. input + input[type="button"],
  385. input + input[type="submit"] {
  386. padding: 0.75em 2em;
  387. }
  388. button.secondary,
  389. input[type="reset"],
  390. input[type="button"].secondary,
  391. input[type="reset"].secondary,
  392. input[type="submit"].secondary {
  393. background-color: #ddd;
  394. color: #222;
  395. }
  396. button:hover,
  397. button:focus,
  398. input[type="button"]:hover,
  399. input[type="button"]:focus,
  400. input[type="submit"]:hover,
  401. input[type="submit"]:focus {
  402. background: #333333;
  403. }
  404. button.secondary:hover,
  405. button.secondary:focus,
  406. input[type="reset"]:hover,
  407. input[type="reset"]:focus,
  408. input[type="button"].secondary:hover,
  409. input[type="button"].secondary:focus,
  410. input[type="reset"].secondary:hover,
  411. input[type="reset"].secondary:focus,
  412. input[type="submit"].secondary:hover,
  413. input[type="submit"].secondary:focus {
  414. background: #bbb;
  415. }
  416. /* Placeholder text color */
  417. ::-webkit-input-placeholder { color: #333333; }
  418. :-moz-placeholder { color: #333333; }
  419. ::-moz-placeholder { color: #333333; }
  420. :-ms-input-placeholder { color: #333333; }
  421. /*===================================================================================
  422. 3.0 BUTTONS
  423. ===================================================================================*/
  424. .btn-small {
  425. min-width: 8.5rem;
  426. font-size: 0.938rem;
  427. padding: 0.688rem;
  428. }
  429. .btn-ex-small { min-width: 9rem; font-size: 1.000rem; padding: 0.4rem 2.188rem; }
  430. .btn-small, .btn-ex-small {
  431. display: inline-block;
  432. -webkit-font-smoothing: antialiased;
  433. position: relative;
  434. letter-spacing: 0;
  435. border-radius: 0;
  436. text-align: center;
  437. transition: .3s;
  438. font-weight: 500;
  439. }
  440. .btn-default:focus,.btn-light:focus,.btn-border:focus{outline: thin dotted;}
  441. .btn-default {
  442. color: #ffffff;
  443. border-radius: 3px;
  444. }
  445. .btn-default:hover, .btn-default:focus { background: #ffffff; color: #333333; border: 1px solid #ffffff; }
  446. .btn-light {
  447. background: transparent;
  448. color: #ffffff;
  449. border-radius: 3px;
  450. }
  451. .btn-light:hover, .btn-light:focus {
  452. color: #ffffff;
  453. }
  454. .btn-default-dark {
  455. color: #ffffff;
  456. }
  457. .btn-default-dark:hover, .btn-default-dark:focus { background: #333333; color: #fff; }
  458. .btn-border { background: #ffffff; color: #333333; border: 2px solid #22a2c4; }
  459. .btn-border:hover, .btn-border:focus { color: #ffffff; border: 2px solid #22a2c4;}
  460. /*--------------------------------------------------------------
  461. 4.0 Lists
  462. --------------------------------------------------------------*/
  463. ul, ol { margin: 0 1.125em 1.5em 0; padding: 0; }
  464. ul { list-style: disc; }
  465. ol { list-style: decimal; }
  466. li > ul, li > ol { margin-bottom: 0; margin-right: 1.5em; }
  467. dt { font-weight: 700; }
  468. dd { margin: 0 1.5em 1.5em; }
  469. /*ul, ol { font-weight: normal; margin: 20px 0 0; }
  470. ul > li, ol > li { margin: 0; padding: 4px 0; }
  471. ul, ol { padding: 0 0 0 20px; }*/
  472. /*--------------------------------------------------------------
  473. 5.0 Tables
  474. --------------------------------------------------------------*/
  475. table { border-collapse: collapse; margin: 0 0 1.5em; width: 100%; word-wrap: break-word; }
  476. thead th { border-bottom: 2px solid #bbb; padding-bottom: 0.5em; }
  477. th { padding: 0.4em; text-align: right; }
  478. tr { border-bottom: 1px solid #eee; }
  479. td { padding: 0.4em; }
  480. th:first-child, td:first-child { padding-right: 0; }
  481. th:last-child, td:last-child { padding-left: 0; }
  482. /*--------------------------------------------------------------
  483. 6.0 Links
  484. --------------------------------------------------------------*/
  485. a { color: #333333; text-decoration: none !important; transition: 0.3s;cursor: pointer; }
  486. /*a:focus { outline: thin dotted; text-decoration: none !important; color: #ee591f; }*/
  487. /*==================================================================================
  488. 7.0 HEADER CONTACT DETAILS
  489. ===================================================================================*/
  490. /*.navbar.navbar-light {
  491. padding-top: 0.5rem;
  492. padding-bottom: 0.5rem;
  493. }*/
  494. .navbar-light h2{margin: 0; padding-bottom: 0;font-size: 2.250rem;}
  495. .header-sidebar {
  496. background: #21202e;
  497. padding: 0;
  498. min-height: 2.813rem;
  499. }
  500. .head-contact-info {
  501. padding: 0.438rem 0 0.438rem;
  502. margin: 0px;
  503. display: block;
  504. float: left;
  505. }
  506. .head-contact-info li {
  507. display: inline-block;
  508. margin: 0rem;
  509. /*padding-left: 0.625rem;*/
  510. color: #ffffff;
  511. font-size: 0.938rem;
  512. position: relative;
  513. }
  514. .header-sidebar .widget .head-contact-info li.phone::after ,
  515. /*.header-sidebar .widget i.fa-map-marker::after ,*/
  516. .header-sidebar .widget .head-contact-info li.envelope::after
  517. {
  518. content: "|";
  519. font-family: FontAwesome;
  520. color: #fff;
  521. position: relative;
  522. left: 0;
  523. margin-right: 10px;
  524. margin-left: 5px;
  525. }
  526. .header-sidebar .widget li .fa-phone{
  527. padding-right: 0;
  528. }
  529. .head-contact-info li:last-child { padding-left: 0; }
  530. .head-contact-info li a { color: #ffffff; }
  531. .head-contact-info i { padding-left: 0.625rem; padding-right: 0.063rem; }
  532. @media (max-width: 991px) {
  533. .header-sidebar { padding: 0.875rem 0; }
  534. .head-contact-info li { margin: 0 0 0.625rem; }
  535. .address-info { text-align: center; }
  536. .custom-social-icons li { padding: 0; }
  537. .head-contact-info { float: none; }
  538. }
  539. @media (max-width: 991px) {
  540. .header-sidebar .widget{text-align: center;}
  541. .dropdown-menu {border:unset;}
  542. .navbar-collapse ul,.navbar-collapse ol {
  543. margin: 1.5em 1.125em 1.5em 0em;
  544. }
  545. }
  546. .footer-sidebar ul {
  547. list-style: none;
  548. margin: 0;
  549. }
  550. @media (max-width: 500px) {
  551. .head-contact-info li { display: block; padding-left: 0; }
  552. /*.head-contact-info li::after { display: none; }*/
  553. }
  554. /*===================================================================================
  555. 8.0 SOCIAL ICONS
  556. /*===================================================================================*/
  557. .custom-social-icons { margin: 0; padding: 0; }
  558. @media (min-width: 991px){
  559. .header-sidebar .widget .custom-social-icons {
  560. float: right;
  561. padding-left: 1.188rem;
  562. }}
  563. .widget .address-info i {
  564. padding-left: 0.625rem;
  565. padding-right: 0.063rem;
  566. }
  567. .custom-social-icons li { display: inline-block;padding: 0.438rem 0.1rem;}
  568. .custom-social-icons li > a:hover,
  569. .custom-social-icons li > a:focus {
  570. background-color: #fff;
  571. }
  572. .custom-social-icons li > a:before { display: none; }
  573. .custom-social-icons li > a {
  574. font-size: 0.838rem;
  575. line-height: 2.3;
  576. transition: all 0.3s;
  577. display: inline-block;
  578. border-radius: 50%;
  579. cursor: pointer;
  580. box-shadow: none;
  581. color: #fff;
  582. margin: 0;
  583. padding: 0;
  584. text-align: center;
  585. height: 1.75rem;
  586. width: 1.75rem;
  587. }
  588. .contact .custom-social-icons li > a {
  589. background-color: #eeeeee;
  590. }
  591. @media (max-width: 1200px){
  592. .contact-form-map .row{
  593. margin-left: 0;
  594. margin-right: 0;
  595. }}
  596. .custom-social-icons li a i { padding: 0; }
  597. .widget em {
  598. font-style: normal;
  599. display: inline-block;
  600. margin: 0;
  601. color: #ffffff;
  602. font-size: 0.938rem;
  603. position: relative;
  604. padding: 0.413rem 0 0.313rem;
  605. }
  606. @media (min-width: 991px){
  607. .widget em {
  608. float: left;
  609. }
  610. }
  611. /*===================================================================================*/
  612. /* Search Box Style
  613. /*===================================================================================*/
  614. /* 1. Search bar Fullwidth - hidden search field */
  615. #searchbar_fullwidth {
  616. display: none;
  617. /* float: left; */
  618. float: none;
  619. width: 100%;
  620. height: 3.875rem;
  621. border-top: 1px solid #d8d8d8;
  622. padding-right: 9.375rem;
  623. padding-left: 9.375rem;
  624. z-index: 1;
  625. position: relative;
  626. background: #fff;
  627. -webkit-box-shadow: 1px 3px 2px rgba(0,0,0,0.3);
  628. -moz-box-shadow: 1px 3px 2px rgba(0,0,0,0.3);
  629. box-shadow: 1px 3px 2px rgba(0,0,0,0.3);
  630. }
  631. #search_box_fullwidth {
  632. display: block;
  633. width: 88%;
  634. border: 0;
  635. outline: none;
  636. padding: 0;
  637. height: 3.75rem;
  638. line-height: 3.75rem;
  639. font-size: 1.25rem;
  640. font-weight: 500;
  641. color: #64646d;
  642. }
  643. #search_submit_fullwidth {
  644. display: block;
  645. float: left;
  646. margin: 0.563rem 0 0.563rem;
  647. font-size: 1.750rem;
  648. background: none;
  649. color: #202020;
  650. border: 0;
  651. outline: none;
  652. line-height: 1.5;
  653. cursor: pointer;
  654. padding: 0;
  655. }
  656. /* 2. Search Bar Fullscreen - hidden search field */
  657. #searchbar_fullscreen {
  658. position: fixed;
  659. top: 0px;
  660. right: 0px;
  661. width: 100%;
  662. height: 100%;
  663. background-color: rgba(0, 0, 0,0.95);
  664. -webkit-transition: all 0.5s ease-in-out;
  665. -moz-transition: all 0.5s ease-in-out;
  666. -o-transition: all 0.5s ease-in-out;
  667. -ms-transition: all 0.5s ease-in-out;
  668. transition: all 0.5s ease-in-out;
  669. -webkit-transform: translate(0px, -100%) scale(0, 0);
  670. -moz-transform: translate(0px, -100%) scale(0, 0);
  671. -o-transform: translate(0px, -100%) scale(0, 0);
  672. -ms-transform: translate(0px, -100%) scale(0, 0);
  673. transform: translate(0px, -100%) scale(0, 0);
  674. opacity: 0;
  675. z-index: 1000;
  676. }
  677. #searchbar_fullscreen input[type="search"] {
  678. position: absolute;
  679. top: 50%;
  680. width: 100%;
  681. color: #64646d;
  682. background: rgba(0, 0, 0, 0);
  683. font-size: 3.125rem;
  684. font-weight: 400;
  685. text-align: center;
  686. border: 0px;
  687. margin: 0rem auto;
  688. margin-top: -3.188rem;
  689. padding-right: 1.875rem;
  690. padding-left: 1.875rem;
  691. outline: none;
  692. }
  693. @media (max-width: 991px){
  694. #searchbar_fullscreen input[type="search"] {
  695. font-size: 2.125rem;
  696. margin-top: -1.25rem;
  697. }
  698. }
  699. #searchbar_fullscreen .btn {
  700. position: absolute;
  701. top: 50%;
  702. right: 50%;
  703. margin-top: 3.813rem;
  704. margin-right: -2.813rem;
  705. border-radius: 2px;
  706. border: black;
  707. color: #ffffff;
  708. padding: 0.563rem 1.563rem;
  709. font-size: 0.938rem;
  710. font-weight: 400;
  711. }
  712. #searchbar_fullscreen .close {
  713. position: fixed;
  714. top: 0.938rem;
  715. left: 0.938rem;
  716. color: #fff;
  717. background-color: #ce1b28;
  718. border-color: green;
  719. opacity: 1;
  720. padding: 0.625rem 1.063rem;
  721. font-size: 1.688rem;
  722. }
  723. #searchbar_fullscreen.open {
  724. -webkit-transform: translate(0px, 0px) scale(1, 1);
  725. -moz-transform: translate(0px, 0px) scale(1, 1);
  726. -o-transform: translate(0px, 0px) scale(1, 1);
  727. -ms-transform: translate(0px, 0px) scale(1, 1);
  728. transform: translate(0px, 0px) scale(1, 1);
  729. opacity: 1;
  730. }
  731. /*===================================================================================*/
  732. /* Search Box
  733. /*===================================================================================*/
  734. .nav-search{
  735. margin-left: 25px;
  736. display: inline-block;
  737. line-height: 16px;
  738. position: relative;
  739. top: 0px;
  740. }
  741. .nav .open> .search-icon, .nav .open> .search-icon:focus{
  742. background-color: unset;
  743. border-color: unset;
  744. }
  745. .navbar .search-box-outer .dropdown-menu {
  746. top: 32px !important;
  747. right: auto !important;
  748. left: 0px;
  749. padding: 0px;
  750. width: 324px !important;
  751. margin: 0px !important;
  752. background-color: #fff !important;
  753. }
  754. @media (max-width:786px){
  755. .navbar .search-box-outer .dropdown-menu {
  756. position: absolute;
  757. right: 0 !important;}}
  758. .search-box-outer .dropdown-menu > li {
  759. padding: 0.25rem 0.5rem;
  760. border: none;
  761. background: none;
  762. }
  763. .search-form {
  764. width: 100%;
  765. }
  766. .search-form label {
  767. width: 98%;
  768. }
  769. .search-form .screen-reader-text {
  770. display: none;
  771. }
  772. .search-panel .form-container {
  773. padding: 10px 0 2px 0;
  774. }
  775. .search-panel input[type="search"]{
  776. display: block;
  777. width: 100%;
  778. height: 40px;
  779. /* color: #000000; */
  780. line-height: 24px;
  781. background: #ffffff;
  782. border: 1px solid #e0e0e0;
  783. padding: 7px 7px 7px 90px;
  784. -webkit-transition: all 300ms ease;
  785. -ms-transition: all 300ms ease;
  786. -o-transition: all 300ms ease;
  787. -moz-transition: all 300ms ease;
  788. transition: all 300ms ease;
  789. font-size: large;
  790. }
  791. .search-form input[type="submit"] {
  792. cursor: pointer;
  793. position: absolute;
  794. width: auto;
  795. transition: all .3s ease-in-out;
  796. color: #fff;
  797. font-weight: 600;
  798. height: 40px;
  799. right: auto;
  800. left: 8px;
  801. font-size: 15px;
  802. top: 14px;
  803. padding: 12px 25px;
  804. }
  805. .search-box-outer .dropdown-toggle::after {
  806. display:none;
  807. }
  808. .search-box-outer a{
  809. font-size: 14px;
  810. font-weight: 600;
  811. font-family: Montserrat;
  812. }
  813. .search-box-outer a i{
  814. padding-left: 3px;
  815. }
  816. @media (min-width: 768px) and (max-width: 992px){
  817. .search-box-outer .dropdown-menu {
  818. top: 35px;
  819. }
  820. }
  821. .search-box-outer .sub-arrow{display: none !important;}
  822. /*===================================================================================
  823. 9.0 Woocommerce Header Cart
  824. ===================================================================================*/
  825. .header-module {
  826. padding-right: 0rem;
  827. }
  828. .nav-search {
  829. margin-left: 0rem;
  830. display: inline-block;
  831. line-height: 1rem;
  832. position: relative;
  833. top: 0px;
  834. padding: 0 0 0 0.5rem;
  835. }
  836. @media(max-width: 768px){
  837. .nav-search {
  838. margin-top: 0.938rem;
  839. margin-bottom: 0.938rem;
  840. }
  841. }
  842. .cart-header {
  843. position: relative;
  844. /*border-left: 1px solid #747474;*/
  845. /*padding: 0 0 0 0.5rem;*/
  846. padding: 0 0.5rem 0 0;
  847. display: inline-block;
  848. }
  849. .cart-header > a.cart-icon {
  850. -wekbit-transition: all 0.3s;
  851. -moz-transition: all 0.3s;
  852. -o-transition: all 0.3s;
  853. transition: all 0.3s;
  854. display: inline-block;
  855. font-size: 0.875rem;
  856. line-height: 1.3;
  857. color: #21202e;
  858. padding: 0;
  859. }
  860. .navbar .nav .nav-item .cart-header > a:focus {color:#21202e;}
  861. .cart-header > a .cart-total {
  862. background: #EE591F;
  863. font-size: 0.8rem;
  864. line-height: 1.6;
  865. color: #f8f8f8;
  866. text-align: center;
  867. font-weight: 400;
  868. padding: 1px;
  869. width: 1.25rem;
  870. height: 1.25rem;
  871. -webkit-border-radius: 50%;
  872. -moz-border-radius: 50%;
  873. border-radius: 50%;
  874. -wekbit-transition: all 0.3s;
  875. -moz-transition: all 0.3s;
  876. -o-transition: all 0.3s;
  877. transition: all 0.3s;
  878. }
  879. span.cart-total {
  880. position: absolute;
  881. top: -5px;
  882. }
  883. span.cart-total span{display: inline-block;}
  884. @media (max-width: 991px) {
  885. .cart-header {
  886. /*border-left: none;*/
  887. margin-top: 0.938rem;
  888. margin-bottom: 0.938rem;
  889. }
  890. }
  891. .woocommerce img.custom-logo, .woocommerce-page img.custom-logo {
  892. max-width: unset;
  893. }
  894. /*===================================================================================
  895. 10.0 Main Slider - Owl Carousel
  896. ===================================================================================*/
  897. .main-slider { position: relative; }
  898. .main-slider .overlay, .video-slider .overlay {
  899. position: absolute;
  900. top: 0;
  901. bottom: 0;
  902. right: 0;
  903. left: 0;
  904. height: 100%;
  905. width: 100%;
  906. background-color: rgba(1, 7, 12, 0.65);
  907. }
  908. #slider-carousel { margin: 0px; }
  909. #slider-carousel .item {
  910. position: relative;
  911. background-color: #fff;
  912. background-repeat: no-repeat;
  913. background-position: center center;
  914. width: 100%;
  915. z-index: 0;
  916. background-size: cover;
  917. height: 37.5rem !important;
  918. }
  919. .home-section {
  920. position: relative;
  921. background-color: #333333;
  922. background-repeat: no-repeat;
  923. background-position: center center;
  924. width: 100%;
  925. z-index: 1;
  926. background-size: cover;
  927. height: 37.5rem!important ;
  928. }
  929. @media (max-width:786px){
  930. .video-slider.home-section {
  931. height: auto !important;
  932. }
  933. }
  934. .slider-caption { position: relative; display: table; height: 100%; z-index: 1; }
  935. .caption-content { display: table-cell; vertical-align: middle; /*text-align: center;*/ }
  936. .slider-caption .title {
  937. font-size: 3.125rem;
  938. line-height: 1.1;
  939. color: #fefefe;
  940. text-shadow: 0px 4px 3px rgba(0, 0, 0, .4);
  941. margin: 0 0 1.000rem;
  942. font-family: 'Roboto', sans-serif;
  943. }
  944. .slider-caption .btn-default {
  945. margin-left: 0.938rem;
  946. }
  947. .slider-caption .description { font-size: 0.938rem; color: #ffffff;margin: 0 0 1.3rem; text-shadow: 0px 4px 3px rgba(0, 0, 0, .4);}
  948. .slider-caption .heading {
  949. font-size: 0.938rem;
  950. color: #ffffff;
  951. border-right: 4px solid #22a2c4;
  952. background-color: rgba(104,104,104,0.4);
  953. width: 27%;
  954. text-align: center;
  955. padding: 0.313rem 0;margin-bottom: 0.938rem; }
  956. .slider-caption .text-right .heading {float:left;}
  957. .slider-caption .text-center .heading {margin: auto;}
  958. .slider-caption .ptop-15 .btn-small { margin-right: 0.313rem; margin-left: 0.313rem; }
  959. @media only screen and (max-width: 600px) {
  960. .slider-caption .title { font-size: 3.000rem; margin: 0 0 1.000rem; }
  961. .slider-caption br { display: none; }
  962. .slider-caption .ptop-15 { padding-top: 1.563rem; }
  963. }
  964. /*Slider Pointer*/
  965. .pointer-scroll {
  966. background: #22a2c4;
  967. position: absolute;
  968. font-family: 'fontAwesome';
  969. content: '\f103';
  970. bottom: -33px;
  971. right: 0;
  972. left: 0;
  973. border: 2px solid #ffffff;
  974. color: #fff;
  975. z-index: 2;
  976. text-align: center;
  977. font-size: 1.700rem;
  978. line-height: 2;
  979. display: block;
  980. width: 4.125rem;
  981. height: 4.125rem;
  982. margin: 0px auto;
  983. border-radius: 50%;
  984. -webkit-animation: intro 2s;
  985. animation: intro 2s;
  986. }
  987. .pointer-scroll:hover, .pointer-scroll:focus { color: #fff; }
  988. @media (max-width: 767px) {
  989. .pointer-scroll { bottom: -1.563rem; width: 3.125rem; height: 3.125rem; font-size: 1.350rem; }
  990. }
  991. .pointer-scroll .scroll {
  992. -webkit-animation: finger 1s infinite;
  993. animation: finger 1s infinite;
  994. }
  995. @-webkit-keyframes intro {
  996. 0% {
  997. opacity: 1;
  998. -webkit-transform: translateY(40px);
  999. transform: translateY(40px);
  1000. }
  1001. 100% {
  1002. opacity: 1;
  1003. -webkit-transform: translateY(0);
  1004. transform: translateY(0);
  1005. }
  1006. }
  1007. @keyframes intro {
  1008. 0% {
  1009. opacity: 1;
  1010. -webkit-transform: translateY(40px);
  1011. transform: translateY(40px);
  1012. }
  1013. 100% {
  1014. opacity: 1;
  1015. -webkit-transform: translateY(0);
  1016. transform: translateY(0);
  1017. }
  1018. }
  1019. @-webkit-keyframes finger {
  1020. 0% {
  1021. opacity: 1;
  1022. }
  1023. 100% {
  1024. opacity: 0;
  1025. -webkit-transform: translateY(10px);
  1026. transform: translateY(10px);
  1027. }
  1028. }
  1029. @keyframes finger {
  1030. 0% {
  1031. opacity: 1;
  1032. }
  1033. 100% {
  1034. opacity: 0;
  1035. -webkit-transform: translateY(10px);
  1036. transform: translateY(10px);
  1037. }
  1038. }
  1039. /*===================================================================================
  1040. 11.0 OWL SLIDER NEXT - PREV BUTTONS
  1041. ===================================================================================*/
  1042. .owl-carousel .owl-prev, .owl-carousel .owl-next{
  1043. display: inline-block;
  1044. background-color: rgba(33, 32, 46, 0.5);
  1045. opacity: 0;
  1046. color: #fff;
  1047. font-size: 1.563rem;
  1048. line-height: 2.3;
  1049. padding: 0 !important;
  1050. margin: 0px;
  1051. -moz-border-radius: 0px;
  1052. -webkit-border-radius: 0px;
  1053. border-radius: 3px;
  1054. position: absolute;
  1055. top: 50%;
  1056. -webkit-transform: translateY(-50%);
  1057. -ms-transform: translateY(-50%);
  1058. transform: translateY(-50%);
  1059. width: 3.438rem;
  1060. height:3.438rem;
  1061. z-index: 10;
  1062. overflow: hidden;
  1063. cursor: pointer;
  1064. text-align: center;
  1065. -webkit-transition: all .3s ease;
  1066. -moz-transition: all .3s ease;
  1067. transition: all .3s ease;
  1068. }
  1069. .owl-carousel .owl-prev { right: 1.875rem; }
  1070. .owl-carousel .owl-next { left: 1.875rem; }
  1071. .owl-carousel:hover .owl-prev { right: 10rem; opacity: 1; }
  1072. .owl-carousel:hover .owl-next { left: 10rem; opacity: 1; }
  1073. @media (max-width:768px){
  1074. .owl-carousel:hover .owl-prev { right: 3rem;}
  1075. .owl-carousel:hover .owl-next { left: 3rem; }
  1076. }
  1077. .owl-carousel .owl-prev:hover,
  1078. .owl-carousel .owl-prev:focus {
  1079. color: #fff;
  1080. }
  1081. .owl-carousel .owl-next:hover,
  1082. .owl-carousel .owl-next:focus {
  1083. color: #fff;
  1084. }
  1085. .bcslider-section .overlay {
  1086. position: absolute;
  1087. top: 0;
  1088. bottom: 0;
  1089. right: 0;
  1090. left: 0;
  1091. height: 100%;
  1092. width: 100%;
  1093. background-color: rgba(0, 0, 0, 0.6);
  1094. }
  1095. .bcslider-section .owl-theme .owl-dots {
  1096. position: absolute;
  1097. top: 80%;
  1098. right: 0;
  1099. left: 0;
  1100. z-index: 1000;
  1101. }
  1102. /*===================================================================================
  1103. 12.0 CTA SECTION CSS
  1104. ===================================================================================*/
  1105. .cta_main { padding: 1.438rem 0.938rem;}
  1106. /*.cta_content h2{ font-size: 1.875rem;color: #fff;font-weight: 700;margin: 0;font-family: 'Roboto', sans-serif;}*/
  1107. .cta_content h1 {font-size: 1.875rem;color: #fff;font-weight: 700;margin: 0;font-family: 'Roboto', sans-serif;}
  1108. .cta_content .btn-light {
  1109. padding: 0.688rem 1.875rem;
  1110. background-color: #fff;
  1111. border:1px solid #fff;}
  1112. .cta_content .btn-light:hover {
  1113. color: #fff;
  1114. border:1px solid #fff;
  1115. }
  1116. .cta_content .btn-light:focus { box-shadow: none;background: #333333;}
  1117. .cta_content a:after {
  1118. content: "\f054";
  1119. padding: 0.25rem 0.5rem;
  1120. font-family:fontawesome;
  1121. font-size: 0.688rem;
  1122. font-weight: 400;
  1123. }
  1124. .cta_content a:hover::after {color:#fff;}
  1125. @media (min-width: 768px) {
  1126. .cta_content .btn-light{float: left;}}
  1127. /*===================================================================================
  1128. 14.0 SECTION HEADER
  1129. ===================================================================================*/
  1130. .section-header .section-title { margin-bottom: 0.313rem;font-size: 2.25rem;font-family: 'Roboto', sans-serif;font-weight: 700;}
  1131. .section-header { padding: 0; position: relative; text-align: center; }
  1132. @media (min-width: 768px){.section-header /*{margin: 0.8rem 14rem;*/}}
  1133. .section-header .section-title { margin-bottom: 0.313rem;font-size: 2.25rem;font-family: 'Roboto', sans-serif;font-weight: 700;}
  1134. .section-header .section-subtitle {font-size: 0.938rem; font-weight: 400; color: #777777;margin: 0 0 2.875rem; }
  1135. @media (min-width: 768px) { .section-header.text-left { text-align: right; width: 80%; } }
  1136. hr.divider { border-top: none; width: 4.375rem; height: 0.125rem; margin: 0.938rem auto 21px; }
  1137. .right-header .navbar-brand {
  1138. margin-right: 1rem !important;
  1139. }
  1140. @media (min-width: 768px){
  1141. .full-header .navbar-nav {
  1142. float: left;
  1143. }
  1144. }
  1145. @media (max-width: 768px){
  1146. /*Toggle Button*/
  1147. .navbar-toggler:hover,
  1148. .navbar-toggler:focus {
  1149. background-color: transparent;
  1150. }
  1151. .navbar-toggler {
  1152. border-color: rgba(0,0,0,.1);
  1153. }
  1154. }
  1155. /*Right header*/
  1156. .header-rgt {
  1157. width: 100%;
  1158. position: relative;
  1159. }
  1160. .custom-logo-link-url{ margin-left: 1rem;}
  1161. .header-rgt .custom-logo-link-url, .header-rgt .navbar-brand {
  1162. float: left;
  1163. margin-right: 1rem;
  1164. margin-left: 0rem;
  1165. }
  1166. .custom-logo-link-url .site-title{
  1167. margin: 0;
  1168. }
  1169. .header-rgt .navbar-toggler,.content-center .navbar-toggler{
  1170. margin-top: 15px;
  1171. }
  1172. .navbar .header-rgt .search-box-outer .dropdown-menu {
  1173. right: 0 !important;
  1174. left: auto;
  1175. }
  1176. /*Center header*/
  1177. .content-center{
  1178. text-align: center;
  1179. width: 100%;
  1180. margin: auto;
  1181. }
  1182. .auto{margin:0 auto;}
  1183. .content-center .navbar-brand {
  1184. padding-top: 1rem;
  1185. padding-bottom: 1rem;
  1186. text-align: center;
  1187. float: none;
  1188. }
  1189. @media (max-width: 768px){
  1190. .content-center .header-module {
  1191. text-align: right;
  1192. }}
  1193. /*===================================================================================
  1194. 15.0 MIXED CLASS
  1195. ===================================================================================*/
  1196. .section-space{padding: 4.688rem 0 4.375rem;position: relative;background-color: #f8f8f8;}
  1197. /*===================================================================================
  1198. 16.0 SERVICE SECTION
  1199. ===================================================================================*/
  1200. .services { background-color: #ffffff; color: #fff;}
  1201. .services .post { background-color: #f5f5f5; margin: 0 0 1.875rem; padding: 2.188rem 1.25rem 2.188rem; border-radius: 0px; transition: 0.3s; }
  1202. .services .post:hover {
  1203. -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
  1204. box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.3);
  1205. color: #fff;
  1206. }
  1207. .services .post-thumbnail {
  1208. position: relative;
  1209. -webkit-transition-duration: 0.2s;
  1210. transition-duration: 0.2s;
  1211. text-align: center;
  1212. /*margin: 0 auto 1.875rem;*/
  1213. }
  1214. .services .post-thumbnail img {
  1215. border-radius: 2px;
  1216. width: 80px;
  1217. height: 80px;
  1218. }
  1219. .services .post-thumbnail a { position: relative; z-index: 1; }
  1220. .services .post-thumbnail i.fa {
  1221. border-radius: 5%;
  1222. width: 5rem;
  1223. height: 5rem;
  1224. font-size: 1.875rem;
  1225. line-height: 1.095;
  1226. padding: 1.438rem;
  1227. color: #ffffff;
  1228. position: relative;
  1229. /*border: 1px solid #21202e;*/
  1230. }
  1231. .services .entry-header { display: block; margin: 0 0 0.75rem; padding: 0; }
  1232. .services .entry-header .entry-title { margin: 0;padding: 0}
  1233. .services .entry-header .entry-title a { position: relative; z-index: 1; }
  1234. .services p { margin: 0; }
  1235. .services .col-md-4:nth-child(3n+1){ clear:right; }
  1236. @media (min-width: 768px) and (max-width: 992px) {
  1237. .services .col-md-4:nth-child(3n+1) { clear: none; }
  1238. .services .col-sm-6:nth-child(2n+1) { clear:right; }
  1239. }
  1240. .services .post:hover .post-thumbnail i.fa{
  1241. background-color: #ffffff;
  1242. }
  1243. .services .post:hover .entry-header .entry-title a, .services .post:hover .entry-content p,
  1244. .services .post:hover .entry-header h4.entry-title {
  1245. color: #ffffff;
  1246. }
  1247. .services .btn-default-dark,.blog .btn-default-dark{
  1248. padding: 0.688rem 2.5rem;
  1249. border-radius: 3px;
  1250. }
  1251. /*===================================================================================
  1252. 17.0 CTA-2 SECTION
  1253. ===================================================================================*/
  1254. .cta-2{
  1255. background: url('assets/images/bg/cta-3.jpg');
  1256. background-repeat: no-repeat;
  1257. background-position: center right;
  1258. width: 100%;
  1259. background-size: cover;
  1260. padding: /*7.5rem*/ 0;
  1261. }
  1262. .cta-2 .overlay{
  1263. position: relative;
  1264. top: 0;
  1265. bottom: 0;
  1266. right: 0;
  1267. left: 0;
  1268. height: 100%;
  1269. width: 100%;
  1270. padding: 15px;
  1271. background-color: rgba(0, 0, 0, 0.6);
  1272. }
  1273. @media (min-width:768px){.cta-2 .overlay{padding: 120px;}}
  1274. .cta-2 .title,.cta-2 p{margin-bottom: 0.5rem;}
  1275. .cta-btn{margin-top:1.313rem}
  1276. .cta-2 .btn-light{padding: 0.688rem 2rem; }
  1277. .cta-2 .btn-default{margin-left:1.25rem;padding: 0.688rem 2rem;}
  1278. /*===================================================================================
  1279. 18.0 TESTIMONIAL SECTION
  1280. ===================================================================================*/
  1281. .testimonial
  1282. { height: 100%;
  1283. margin: 0;
  1284. overflow: hidden;
  1285. width: 100%;
  1286. position: relative;}
  1287. .testimonial .item {margin-top:30px;}
  1288. .testi-1 {
  1289. background: url('assets/images/bg/wavy-dots.png');
  1290. background-repeat:repeat;
  1291. }
  1292. .testimonial .overlay{
  1293. position: absolute;
  1294. top: 0;
  1295. bottom: 0;
  1296. right: 0;
  1297. left: 0;
  1298. height: 100%;
  1299. width: 100%;
  1300. background-color: rgba(255, 255, 255, 0);
  1301. }
  1302. .testmonial-block {
  1303. background-color: transparent;
  1304. border-right: none;
  1305. position: relative;
  1306. margin: 0 15px;
  1307. padding: 0 2.5rem 0rem;
  1308. font-size: unset;
  1309. border-right: none;
  1310. }
  1311. .testmonial-block .avatar { margin: 0px auto 1.3rem; width: 9.4rem; height: 9.2rem; }
  1312. .testmonial-block .avatar img {box-shadow: #727272 0px 8px 25px -5px; margin: 0.125rem; }
  1313. .description-box { background-color: #ffffff; border-radius: 0px; margin: 0 0 2.188rem
  1314. ; padding: 1.875rem; position: relative; min-height: 182px; }
  1315. .description-box:before {
  1316. border-right: 0.875rem solid transparent;
  1317. border-left: 0.875rem solid transparent;
  1318. border-top: 0.938rem solid #ffffff;
  1319. color: #00a7d1;
  1320. left: 0;
  1321. right: 30px;
  1322. bottom: -15px;
  1323. width: 0;
  1324. height: 0;
  1325. content: "";
  1326. position: absolute;
  1327. display: block;
  1328. }
  1329. @media (min-width: 768px){.testmonial-block .entry-content {/*margin: 1.875rem 11.875rem 1.5rem;*/}}
  1330. .testmonial-block .entry-content { position: relative;}
  1331. .testmonial-block .entry-content p { font-weight: 400; }
  1332. @media (max-width: 1200px) { .testmonial-block .entry-content p br { display: none; visibility: hidden; }}
  1333. .testmonial-block .name {
  1334. color: #21202e;
  1335. font-size: 1.25rem;
  1336. font-weight: 600;
  1337. font-style: normal !important;
  1338. margin: 0px 0 -0.188rem;
  1339. display: block;
  1340. }
  1341. .testmonial-block .designation { font-size: 1.000rem; color: #727272;font-weight: 100; padding-top: 5px;}
  1342. .testmonial-block .entry-content h3{ margin: 0 0 0.5rem;}
  1343. .testmonial{
  1344. padding-bottom:3.75rem !important;
  1345. }
  1346. .testimonial .rating {
  1347. margin: 6px 0px;
  1348. text-align: center;
  1349. }
  1350. .page-template-template-testimonial-5 .testmonial-block .entry-content,
  1351. .page-template-template-testimonial-6 .testmonial-block .entry-content,
  1352. .page-template-template-testimonial-7 .testmonial-block .entry-content,
  1353. .page-template-template-testimonial-8 .testmonial-block .entry-content {
  1354. margin:0;
  1355. }
  1356. .page-template-template-testimonial-5 blockquote.testmonial-block.text-center ,
  1357. .page-template-template-testimonial-6 blockquote.testmonial-block.text-center ,
  1358. .page-template-template-testimonial-7 blockquote.testmonial-block.text-center ,
  1359. .page-template-template-testimonial-8 blockquote.testmonial-block.text-center
  1360. {
  1361. margin-top: 2rem;
  1362. }
  1363. /*===================================================================================*/
  1364. /* 19.0 FUNFACT SECTION
  1365. /*===================================================================================*/
  1366. .funfact {
  1367. position: relative;
  1368. }
  1369. .funfact-inner {
  1370. cursor: pointer;
  1371. padding: 1.563rem 0 0.625rem;
  1372. }
  1373. .funfact-icon {
  1374. font-size: 2.913rem !important;
  1375. margin-bottom: 20px;
  1376. transition: 0.3s;
  1377. border: 1px solid #fff;
  1378. border-radius: 50%;
  1379. padding: 20px;
  1380. width: 90px;
  1381. height: 90px;
  1382. }
  1383. @media (max-width:768px){.funfact-icon {padding: 25px}}
  1384. .funfact-inner:hover .funfact-icon {
  1385. background-color: #fff
  1386. }
  1387. .funfact-title { margin-bottom: 7px; color: #ffffff; }
  1388. .funfact-inner .description { color: #fff; font-size: 1.25rem; margin: 0; }
  1389. /*--------------------------------------------------------------
  1390. 20.1 Blog Article
  1391. --------------------------------------------------------------*/
  1392. .blog .post {
  1393. background: #fff;
  1394. position: relative;
  1395. transition: all 0.3s;
  1396. margin-bottom: 3.125rem;
  1397. box-shadow: 0px 0px 1px 1px #e8e8e8;
  1398. border-radius: 3px;
  1399. }
  1400. .blog .post .post-thumbnail {
  1401. position: relative;
  1402. overflow: hidden;
  1403. margin: 0;
  1404. text-align: center;
  1405. background-color: #000;
  1406. z-index: 1;
  1407. border-radius: 3px;
  1408. }
  1409. .blog .list-view .post-thumbnail {
  1410. width: 21.25rem;
  1411. height: auto;
  1412. float: right;
  1413. }
  1414. .blog .post-thumbnail img {
  1415. -webkit-transition: all 0.30s linear;
  1416. transition: all 0.30s linear;
  1417. }
  1418. .blog .post:hover .post-thumbnail img {
  1419. zoom: 1;
  1420. filter: alpha(opacity=30);
  1421. -webkit-opacity: 0.3;
  1422. opacity: 0.3;
  1423. -webkit-transform: translateY(0px);
  1424. transform: translateY(0px);
  1425. transform: scale(1.15,1.15);
  1426. -webkit-transform: scale(1.15,1.15);
  1427. -moz-transform: scale(1.15,1.15);
  1428. -ms-transform: scale(1.15,1.15);
  1429. -o-transform: scale(1.15,1.15);
  1430. }
  1431. .post .click-view {
  1432. margin: 0;
  1433. position: absolute;
  1434. top: 50%;
  1435. left: 0;
  1436. right: 0;
  1437. width: 100%;
  1438. -webkit-transform: translateY(-50%);
  1439. -ms-transform: translateY(-50%);
  1440. transform: translateY(-50%);
  1441. }
  1442. .blog .click-view a {
  1443. font-size: 3.5rem;
  1444. line-height: 1;
  1445. font-weight: 100;
  1446. display: inline-block;
  1447. margin: 0;
  1448. padding: 1px;
  1449. opacity: 0;
  1450. text-decoration: none;
  1451. text-align: center;
  1452. color: #fff;
  1453. background-color: transparent;
  1454. -wekbit-transition: all 0.3s;
  1455. -moz-transition: all 0.3s;
  1456. -o-transition: all 0.3s;
  1457. transition: all 0.3s;
  1458. -wekbit-transform: translateY(20px);
  1459. -moz-transform: translateY(20px);
  1460. -o-transform: translateY(20px);
  1461. -ms-transform: translateY(20px);
  1462. transform: translateY(20px);
  1463. }
  1464. .blog .post:hover a {
  1465. -wekbit-transform: translateY(0);
  1466. -moz-transform: translateY(0);
  1467. -o-transform: translateY(0);
  1468. -ms-transform: translateY(0);
  1469. transform: translateY(0);
  1470. opacity: 1; }
  1471. .blog .list-view .post .click-view a , .grid-view .click-view a , .blog-masonry .click-view a ,
  1472. .bg-default .post .click-view a {
  1473. font-size:2.25rem;
  1474. }
  1475. .blog .post:hover{box-shadow: 0 0 3px 3px #e8e8e8;}
  1476. /*----------------- BLOG post-content ------------*/
  1477. .blog .post .post-content{
  1478. padding: 2.125rem 2.5rem 1.125rem;
  1479. }
  1480. .entry-date {
  1481. padding-top: 0px;
  1482. border-radius: 4px;
  1483. line-height: normal;
  1484. position: absolute;
  1485. margin-top: -96px;
  1486. z-index: 1;
  1487. left: 0;
  1488. margin-left: 0.625rem;
  1489. padding: 10px 15px;
  1490. }
  1491. /*.day {
  1492. display: block;
  1493. text-align: center;
  1494. color: #FFF;
  1495. font-size: 17px;
  1496. font-weight: bold;
  1497. line-height: 0.8;
  1498. }*/
  1499. .section-space .date {
  1500. display: block;
  1501. text-align: center;
  1502. color: #FFF;
  1503. font-size: 17px;
  1504. font-weight: bold;
  1505. line-height: 1.3;
  1506. }
  1507. /*.month {
  1508. display: block;
  1509. text-align: center;
  1510. color: #fff;
  1511. font-size: 17px;
  1512. font-weight: bold;
  1513. }*/
  1514. .remove-image{
  1515. /* height: 3.3rem;
  1516. width: 3.3rem;*/
  1517. width: fit-content;
  1518. border-radius: 4px;
  1519. line-height: normal;
  1520. margin-bottom: 1.25rem;
  1521. padding: 10px 15px;
  1522. }
  1523. .blog .list-view .entry-date {
  1524. margin-top: -1.5rem;
  1525. right: 10px;
  1526. /*margin-left: 12px;*/
  1527. left: unset;
  1528. }
  1529. .entry-header h4{margin-bottom: 0;padding-bottom:0.625rem;}
  1530. .entry-content p{margin-bottom: 0;padding-bottom: 0.938rem;}
  1531. .entry-meta{margin-bottom: 0.875rem;}
  1532. .entry-meta a{display: inline-block;}
  1533. .entry-content p a {margin-bottom: 0;padding-bottom: 0;color: #727272;font-weight: bold;}
  1534. .entry-meta i {
  1535. padding-left: 10px;
  1536. transition: 0.3s;
  1537. }
  1538. .entry-meta span{padding-left: 1.25rem;/*color: #727272*/;transition: 0.3s;}
  1539. @media (max-width: 768px) {
  1540. .blog .list-view .post-thumbnail {
  1541. width: 100%;
  1542. float: none;
  1543. }
  1544. .blog .list-view .media {
  1545. display: block;
  1546. }
  1547. .blog .list-view .entry-date {
  1548. margin-top: 0.5rem;
  1549. top: 0;
  1550. right: unset;
  1551. }
  1552. }
  1553. /*--------------------------------------------------------------
  1554. 20.2 BLOG PAGINATION
  1555. --------------------------------------------------------------*/
  1556. /*.nav-pagination{padding: 3.125rem 0 0;}
  1557. .blog .nav-pagination {padding: 1.5rem 0 0;}
  1558. ul.pagination{padding: 0;margin: 0;}
  1559. .pagination .page-link {
  1560. color: #777777;
  1561. padding: 0.57rem 0.75rem;
  1562. }*/
  1563. .page-numbers {
  1564. position: relative;
  1565. display: inline-block;
  1566. padding: .57rem .75rem;
  1567. margin-right: -6px;
  1568. line-height: 1.25;
  1569. /* background-color: #fff;*/
  1570. border: 1px solid #DEE2E6;
  1571. }
  1572. body.dark .woocommerce nav.woocommerce-pagination ul li{
  1573. border-left:none ;
  1574. background-color: #000;
  1575. }
  1576. .pagination,.nav-pagination{
  1577. margin: 0 0 3.125rem;
  1578. }
  1579. .nav-pagination,.navigation.pagination{padding: 3.125rem 0 0;}
  1580. .blog .nav-pagination,.blog.navigation.pagination {padding: 1.5rem 0 0;}
  1581. ul.pagination{padding: 0;margin: 0;}
  1582. .pagination li:first-child .page-link, .pagination li:last-child .page-link,
  1583. .pagination .nav-links a.page-numbers:first-child ,.pagination .nav-links a.page-numbers:last-child {
  1584. color: #777777;
  1585. }
  1586. .pagination .page-link.active, .woocommerce .woocommerce-pagination li .page-numbers.current,.pagination .page-numbers.current,
  1587. .pagination .page-numbers:hover {
  1588. background-color: #e9ecef;
  1589. }
  1590. .woocommerce-pagination .page-numbers,.woocommerce-pagination{
  1591. margin: 0 0 3.125rem;
  1592. }
  1593. .woocommerce-pagination{padding: 3.125rem 0 0;}
  1594. .woocommerce-pagination ul.page-numbers{padding: 0;margin: 0; border-radius: .25rem;
  1595. }
  1596. .woocommerce-pagination ul.page-numbers a.page-numbers, a.page-numbers {
  1597. color: #777777;
  1598. padding: 0.57rem 0.75rem;
  1599. }
  1600. .woocommerce .woocommerce-pagination li .page-numbers,
  1601. .woocommerce .woocommerce-pagination li .page-numbers.current{
  1602. position: relative;
  1603. display: inline-block;
  1604. padding: .5rem .75rem;
  1605. margin-right: 0px;
  1606. line-height: 1.25;
  1607. background-color: #fff;
  1608. border-top-right-radius: .25rem;
  1609. border-bottom-right-radius: .25rem;
  1610. border: none;
  1611. }
  1612. /*--------------------------------------------------------------
  1613. 20.2 BLOG SIDEBAR
  1614. --------------------------------------------------------------*/
  1615. .sidebar .custom-social-icons li > a:hover{
  1616. color: #fff;
  1617. }
  1618. .sidebar .head-contact-info , .sidebar .widget em , .footer-sidebar .widget em{
  1619. padding: 0;
  1620. margin: 0px;
  1621. float: none;
  1622. }
  1623. .sidebar .widget address i , .footer-sidebar .widget address i {padding-left: 0.625rem; padding-right: 0.063rem;}
  1624. .sidebar table , .sidebar address{margin: 0;}
  1625. .sidebar .right-sidebar {
  1626. padding-right: 20px;
  1627. }
  1628. .sidebar .left-sidebar {
  1629. padding-left : 20px;
  1630. }
  1631. @media only screen and (max-width: 768px) {
  1632. .sidebar .right-sidebar {
  1633. padding-right: 0px;
  1634. }
  1635. .sidebar .left-sidebar {
  1636. padding-left : 0px;
  1637. }
  1638. }
  1639. .sidebar .widget {
  1640. color: #333333;
  1641. border:1px solid #e8e8e8;
  1642. border-radius: 3px;
  1643. padding: 2.063rem 1.875rem 2.25rem;
  1644. margin: 0 0 3.125rem;
  1645. }
  1646. .widget .widget-title {
  1647. padding: 0rem 0rem 1.188rem;
  1648. font-size: 1.25rem;
  1649. font-weight:600;
  1650. margin: 0;
  1651. z-index: 1;
  1652. position: relative;
  1653. }
  1654. .widget .input-group .form-control , .widget .search-field {
  1655. font-size: 0.875rem;
  1656. padding-right: 1.25rem;
  1657. padding-left: 1.875rem;
  1658. }
  1659. .widget .search-submit , .widget .search-field [type=submit] {
  1660. position: absolute;
  1661. left: 0.625rem;
  1662. top: 0.825rem;
  1663. background: transparent;
  1664. z-index: 3;
  1665. display: block;
  1666. padding: 0;
  1667. }
  1668. .woocommerce-widget-layered-nav li:first-child ,
  1669. .widget_recent_reviews li:first-child ,
  1670. .widget_top_rated_products li:first-child ,
  1671. .widget_products li:first-child ,
  1672. .widget_nav_menu li:first-child ,
  1673. .widget_pages li:first-child ,
  1674. .widget_product_categories li:first-child ,
  1675. .widget_links li:first-child ,
  1676. .widget_categories li:first-child ,
  1677. .widget_archive li:first-child ,
  1678. .widget_recent_entries li:first-child ,
  1679. .widget_meta li:first-child ,
  1680. .widget_recent_comments li:first-child {
  1681. position: relative;
  1682. margin-top: 0;
  1683. padding-top: 0 !important;
  1684. }
  1685. .woocommerce-widget-layered-nav ul ,
  1686. .widget_recent_reviews ul ,
  1687. .widget_top_rated_products ul ,
  1688. .widget_products ul ,
  1689. .widget_nav_menu ul ,
  1690. .widget_pages ul ,
  1691. .widget_product_categories ul ,
  1692. .widget_links ul ,
  1693. .widget_categories ul ,
  1694. .widget_archive ul ,
  1695. .widget_recent_entries ul ,
  1696. .widget_meta ul ,
  1697. .widget_recent_comments ul {
  1698. list-style: none;
  1699. margin-right: 0;
  1700. padding-top: 0;
  1701. margin: 0;
  1702. }
  1703. .woocommerce-widget-layered-nav li ,
  1704. .widget_recent_reviews li ,
  1705. .widget_top_rated_products li ,
  1706. .widget_products li ,
  1707. .widget_nav_menu li ,
  1708. .widget_pages li ,
  1709. .widget_product_categories li ,
  1710. .widget_categories li ,
  1711. .widget_archive li ,
  1712. .widget_recent_entries li ,
  1713. .widget_meta li ,
  1714. .widget_recent_comments li {
  1715. border-bottom: 1px solid #e8e8e8;
  1716. padding-top: 0.813rem;
  1717. padding-bottom: 0.813rem;
  1718. margin: 0;
  1719. position: relative;
  1720. }
  1721. .woocommerce-widget-layered-nav li:last-child ,
  1722. .widget_recent_reviews li:last-child ,
  1723. .widget_top_rated_products li:last-child ,
  1724. .widget_products li:last-child ,
  1725. .widget_nav_menu li:last-child ,
  1726. .widget_pages li:last-child ,
  1727. .widget_product_categories li:last-child ,
  1728. .widget_links li:last-child ,
  1729. .widget_categories li:last-child ,
  1730. .widget_archive li:last-child ,
  1731. .widget_recent_entries li:last-child ,
  1732. .widget_meta li:last-child,
  1733. .widget_recent_comments li:last-child {
  1734. border-bottom: none;
  1735. padding-bottom: 0;
  1736. }
  1737. .sidebar em ,.sidebar .head-contact-info li
  1738. {color: #333333;font-size:0.875rem;}
  1739. .sidebar ul li a {font-size: 0.875rem;}
  1740. .widget_nav_menu li::before ,
  1741. .widget_pages li::before ,
  1742. .widget_product_categories li::before ,
  1743. .widget_links li::before ,
  1744. .widget_categories li::before ,
  1745. .widget_archive li::before ,
  1746. .widget_recent_entries li::before ,
  1747. .widget_meta li::before,
  1748. .widget_recent_comments li::before {
  1749. content: "\f105";
  1750. font-family: FontAwesome;
  1751. color: #333333;
  1752. margin-left: 5px;
  1753. margin-right: 1px;
  1754. float: right;
  1755. }
  1756. .widget .tagcloud a {
  1757. background-color: #ececec;
  1758. font-size: 1rem !important;
  1759. display: inline-block;
  1760. padding: 5px 10px;
  1761. color: #727272;
  1762. margin: 0 0.125rem 0.625rem;
  1763. }
  1764. .widget .tagcloud a:hover{
  1765. color: #fff !important;
  1766. }
  1767. .woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img, .woocommerce-page ul.product_list_widget li img {
  1768. width: 60px !important;
  1769. float: right;
  1770. margin-right: 0;
  1771. padding-right: 0px;
  1772. }
  1773. .widget select{
  1774. margin: 0px 0px;
  1775. width: 100%;
  1776. padding: 6px 12px;
  1777. height: 45px;
  1778. border-radius: 2px;
  1779. font-size: 0.875rem;
  1780. border: 1px solid #e9e9e9;
  1781. letter-spacing: 1px;
  1782. font-weight: 600;
  1783. -webkit-box-shadow: none;
  1784. box-shadow: none;
  1785. color: #333333;
  1786. background: #fff;
  1787. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  1788. border: 1px solid #e9e9e9;
  1789. display: block;
  1790. }
  1791. .widget .post {
  1792. position: relative;
  1793. margin-bottom: 1.875rem;
  1794. background: none;
  1795. border-radius: 0;
  1796. box-shadow: none;
  1797. }
  1798. .widget .post .post-thumbnail {
  1799. margin: 0 0 0 10px;
  1800. overflow: hidden;
  1801. float: right;
  1802. display: block;
  1803. width: 4.5rem;
  1804. height: 4.75rem;
  1805. border-radius: 0;
  1806. background-color: unset;
  1807. }
  1808. .widget .post .post-thumbnail .img-fluid{width:72px;height: 76px;border-radius: 2px;}
  1809. .widget .post:hover {
  1810. box-shadow: unset;
  1811. }
  1812. .widget .post .entry-date {
  1813. color: #93a0a7;
  1814. font-size: 0.875rem;
  1815. line-height: 1.25rem;
  1816. margin-left: 0.5rem;
  1817. font-weight: 400;
  1818. height: 0;
  1819. width: 0;
  1820. background: unset;
  1821. padding-top: 0px;
  1822. border-radius:0;
  1823. line-height: normal;
  1824. position: relative;
  1825. margin-top: 0;
  1826. left:0;
  1827. }
  1828. .widget .entry-title{margin: 0;}
  1829. .widget .post:last-child{margin-bottom: 0;}
  1830. .widget .post .entry-date:before{
  1831. font-family: FontAwesome;
  1832. content: "\f017";
  1833. margin-left: 0.625rem;
  1834. }
  1835. .widget .post:hover img {
  1836. opacity: unset;
  1837. transform:unset;
  1838. -webkit-transform: unset;
  1839. }
  1840. .sidebar .tab-content{margin-top: 0; padding-top: 0;}
  1841. /*===============================Gallery==========================*/
  1842. .widget.widget_media_gallery img
  1843. {
  1844. max-width: 100%;
  1845. height: auto;
  1846. }
  1847. .gallery { display: flex; flex-flow: row wrap; justify-content: center; margin-bottom: 0; }
  1848. .gallery-item { display: inline-block; margin-left: 16px; margin-bottom: 16px; text-align: center; vertical-align: top; width: 100%; }
  1849. .gallery-columns-2 .gallery-item { max-width: calc((100% - 16px * 1) / 2) !important; }
  1850. .gallery-columns-2 .gallery-item:nth-of-type(2n+2) { margin-left: 0 !important; }
  1851. .gallery-columns-3 .gallery-item { max-width: calc((100% - 16px * 2) / 3) !important; }
  1852. .gallery-columns-3 .gallery-item:nth-of-type(3n+3) { margin-left: 0 !important; }
  1853. .gallery-columns-4 .gallery-item { max-width: calc((100% - 16px * 3) / 4) !important; }
  1854. .gallery-columns-4 .gallery-item:nth-of-type(4n+4) { margin-left: 0 !important; }
  1855. .gallery-columns-5 .gallery-item { max-width: calc((100% - 16px * 4) / 5) !important; }
  1856. .gallery-columns-5 .gallery-item:nth-of-type(5n+5) { margin-left: 0 !important; }
  1857. .gallery-columns-6 .gallery-item { max-width: calc((100% - 16px * 5) / 6) !important; }
  1858. .gallery-columns-6 .gallery-item:nth-of-type(6n+6) { margin-left: 0 !important; }
  1859. .gallery-columns-7 .gallery-item { max-width: calc((100% - 16px * 6) / 7) !important; }
  1860. .gallery-columns-7 .gallery-item:nth-of-type(7n+7) { margin-left: 0 !important; }
  1861. .gallery-columns-8 .gallery-item { max-width: calc((100% - 16px * 7) / 8) !important; }
  1862. .gallery-columns-8 .gallery-item:nth-of-type(8n+8) { margin-left: 0 !important; }
  1863. .gallery-columns-9 .gallery-item { max-width: calc((100% - 16px * 8) / 9) !important; }
  1864. .gallery-columns-9 .gallery-item:nth-of-type(9n+9) { margin-left: 0 !important; }
  1865. .gallery-item:last-of-type { padding-left: 0; }
  1866. .gallery-caption {
  1867. display: block;
  1868. font-size: 0.71111em;
  1869. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1870. line-height: 1.6;
  1871. margin: 0;
  1872. padding: 0.5rem;
  1873. }
  1874. .gallery-item > div > a {
  1875. display: block;
  1876. line-height: 0;
  1877. box-shadow: 0 0 0 0 transparent;
  1878. }
  1879. .standard-view.blog-single .gallery-item > div > a:focus {
  1880. box-shadow: none;
  1881. outline: none;
  1882. }
  1883. /*===================================================================================*/
  1884. /* 20.0 TEAM SECTION
  1885. /*===================================================================================*/
  1886. .team .card {
  1887. font-weight: 400;
  1888. border: 0;
  1889. -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
  1890. box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
  1891. min-height: 400px;
  1892. }
  1893. .team .card-wrapper {
  1894. position: relative;
  1895. width: 100%;
  1896. margin: 0.125rem 0.125rem 1.75rem;
  1897. -webkit-perspective: 800px;
  1898. perspective: 800px;
  1899. padding: 3px;
  1900. }
  1901. /*.rotate-btn {cursor: pointer;}*/
  1902. .team .card-wrapper .avatar {
  1903. display: block;
  1904. width: 120px;
  1905. margin-top: -60px;
  1906. overflow: hidden;
  1907. }
  1908. .team .card-wrapper .card-rotating {
  1909. height: 100%;
  1910. -webkit-transition: .5s;
  1911. transition: .5s;
  1912. -webkit-transform-style: preserve-3d;
  1913. transform-style: preserve-3d;
  1914. }
  1915. .team .card-wrapper .card-rotating .face {
  1916. position: absolute;
  1917. z-index: 2;
  1918. width: 100%;
  1919. background: #fff;
  1920. -webkit-backface-visibility: hidden;
  1921. backface-visibility: hidden;
  1922. }
  1923. .team .card-wrapper .card-rotating .front {
  1924. z-index: 1;
  1925. }
  1926. .team .card-wrapper .card-rotating .front, .card-wrapper .card-rotating .back {
  1927. -webkit-transition: 1s;
  1928. transition: 1s;
  1929. }
  1930. .team .card-wrapper .card-up {
  1931. height: 200px;
  1932. overflow: hidden;
  1933. }
  1934. .team .card-wrapper .card-up img {
  1935. vertical-align: middle;
  1936. }
  1937. .team .card-img, .card-img-top {
  1938. border-top-right-radius: calc(0.25rem - 1px);
  1939. border-top-left-radius: calc(0.25rem - 1px);
  1940. }
  1941. .team .card-img, .card-img-top, .card-img-bottom {
  1942. -ms-flex-negative: 0;
  1943. flex-shrink: 0;
  1944. width: 100%;
  1945. }
  1946. .team .card-wrapper .avatar img {
  1947. width: 100%;
  1948. background: none repeat scroll 0 0 #fff;
  1949. border: 5px solid #fff;
  1950. }
  1951. .team .card-wrapper .card-rotating .back {
  1952. -webkit-transform: rotateY(-180deg);
  1953. transform: rotateY(-180deg);
  1954. }
  1955. .grey-text {
  1956. color: #9e9e9e;
  1957. }
  1958. .team .card-wrapper:hover .card-rotating {
  1959. -webkit-transform: rotateY(180deg);
  1960. transform: rotateY(180deg);
  1961. cursor: pointer;
  1962. }
  1963. .team .list-inline-item a{
  1964. border-radius: 50%;
  1965. text-align: center;
  1966. height: 1.75rem;
  1967. width: 1.75rem;
  1968. font-size: 0.938rem;
  1969. line-height: 0;
  1970. transition: all 0.3s;
  1971. display: inline-block;
  1972. border-radius: 50%;
  1973. cursor: pointer;
  1974. box-shadow: none;
  1975. margin: 0;
  1976. padding: 0;
  1977. }
  1978. .team .list-inline-item a:hover,.list-inline-item a:focus {
  1979. color: #fff;
  1980. }
  1981. /*===================================================================================*/
  1982. /* Team SECTION 3
  1983. /*===================================================================================*/
  1984. .team3 .img-holder img{
  1985. max-width: 100%;
  1986. border-radius: 50%;
  1987. color: #fff;
  1988. width: 12rem;
  1989. height: 12rem;
  1990. -webkit-transition: all 0.2s linear;
  1991. transition: all 0.2s linear;
  1992. -webkit-transform: scale3d(1, 1, 1);
  1993. transform: scale3d(1, 1, 1);
  1994. }
  1995. .team3 .team-grid .card-body .list-inline li > a {
  1996. color: #878e94;
  1997. }
  1998. .team3 .team-grid .card-body .list-inline li > a:hover {
  1999. background-color: unset;
  2000. }
  2001. .team3 .team-grid .position {
  2002. color: #878e94;
  2003. }
  2004. .team3 .owl-carousel.owl-drag .owl-item{
  2005. background: #f5f6fa !important;
  2006. }
  2007. .team3 .team-grid {
  2008. margin: 0.125rem 0.125rem 1.75rem;
  2009. padding-bottom: 0.75rem;
  2010. padding-top: 2.25rem;
  2011. box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  2012. }
  2013. .team3 .owl-theme .owl-nav.disabled+.owl-dots {
  2014. margin-top: 3.25rem;
  2015. }
  2016. .team3 .team-grid .img-holder::before {position:unset;}
  2017. .team3 .team-grid:hover .img-holder img{
  2018. transform: scale3d(0.9, 0.9, 1);
  2019. }
  2020. /*===================================================================================
  2021. 21.0 SHOP AND PRODUCT SECTION
  2022. ===================================================================================*/
  2023. .shop .container { overflow: hidden; }
  2024. .shop .owl-carousel .owl-stage-outer { overflow: visible; }
  2025. .shop-bg .products {
  2026. background-color: unset;
  2027. }
  2028. .post-type-archive .shop-bg .product {
  2029. background-color: #fff;
  2030. }
  2031. .products {
  2032. background-color: #fff;
  2033. padding: 0;
  2034. margin: 0 0 3.75rem;
  2035. transition: 0.3s;
  2036. position: relative;
  2037. text-align: center;
  2038. /*box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16);*/
  2039. }
  2040. section.related.products .product {
  2041. background-color: #fff;
  2042. }
  2043. .section-space.shop.woocommerce .page-title
  2044. {
  2045. display: none;
  2046. }
  2047. .woocommerce div.product .woocommerce-tabs ul.tabs::before {
  2048. border-bottom: 1px solid #E9E9E9;
  2049. }
  2050. .woocommerce div.product .woocommerce-tabs ul.tabs li, .woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  2051. border: 1px solid #E9E9E9;
  2052. }
  2053. .woocommerce a:focus{
  2054. outline: none;
  2055. }
  2056. .woocommerce .comment-reply-title {
  2057. border-bottom: none;
  2058. }
  2059. .woocommerce .form-row {
  2060. display: block;
  2061. }
  2062. .woocommerce ul.products li.product .onsale, .products span.onsale, .woocommerce span.onsale{
  2063. min-width: auto;
  2064. min-height: auto;
  2065. left: inherit;
  2066. color: #FFFFFF;
  2067. border-radius: 0;
  2068. font-size: 0.938rem;
  2069. line-height: 1;
  2070. font-weight: 500;
  2071. padding: 3px 7px;
  2072. margin: 0;
  2073. position: absolute;
  2074. right: 20px;
  2075. top: 20px;
  2076. transition: all 0.3s;
  2077. }
  2078. .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  2079. box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  2080. }
  2081. .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  2082. transition: all 0.6s;
  2083. text-align: center;
  2084. padding: 0.4rem 0.4rem 1.5rem;
  2085. margin-bottom: 2rem;
  2086. }
  2087. .woocommerce ul.products li.product .button, .owl-item .item .cart .add_to_cart_button {
  2088. color: #fff;
  2089. }
  2090. .woocommerce a.remove, .woocommerce .woocommerce-Button, .woocommerce .cart input.button, .woocommerce input.button.alt, .woocommerce button.button, .woocommerce #respond input#submit, .woocommerce .cart input.button:hover, .woocommerce .cart input.button:focus, .woocommerce input.button.alt:hover, .woocommerce input.button.alt:focus, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce ul.products li.product:hover .button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce .return-to-shop a.button {
  2091. background-color: #333333;
  2092. color: #FFFFFF !important;
  2093. }
  2094. .woocommerce-page ul.products li.product:hover {
  2095. box-shadow: 0 14px 25px 0 rgba(0,0,0,0.2);
  2096. }
  2097. .woocommerce ul.products li.product .price {
  2098. display: block;
  2099. color: #333333;
  2100. font-size: 1.000rem;
  2101. font-weight: 600;
  2102. margin-bottom: .5em;
  2103. }
  2104. /*
  2105. .woocommerce nav.woocommerce-pagination ul li {
  2106. background: #EBE9EB;
  2107. color: #333333;
  2108. border-radius: 50%;
  2109. }
  2110. .woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
  2111. color: #FFFFFF;
  2112. }
  2113. .woocommerce nav.woocommerce-pagination ul, .woocommerce nav.woocommerce-pagination ul li {
  2114. border: none;
  2115. margin:3px;
  2116. }*/
  2117. /*.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  2118. cursor: pointer;
  2119. display: inline-block;
  2120. font-family: 'Open Sans', Sans-serif;
  2121. font-weight: 600;
  2122. transition: all 0.3s ease 0s;
  2123. font-size: 1.125rem;
  2124. border-radius: 50%;
  2125. margin: 0px;
  2126. padding: 15px;
  2127. vertical-align: baseline;
  2128. white-space: nowrap;
  2129. width: 50px;
  2130. height: 50px;
  2131. }*/
  2132. .woocommerce-loop-product__title {
  2133. font-size: 1.125rem !important;
  2134. text-transform: capitalize;
  2135. }
  2136. .woocommerce div.product form.cart .button, .woocommerce a.button, .woocommerce a.button:hover, .woocommerce a.button, .woocommerce .woocommerce-Button, .woocommerce .cart input.button, .woocommerce input.button.alt, .woocommerce button.button, .woocommerce #respond input#submit, .woocommerce .cart input.button:hover, .woocommerce .cart input.button:focus, .woocommerce input.button.alt:hover, .woocommerce input.button.alt:focus, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce button.button.alt {
  2137. border: 1px solid transparent !important;
  2138. }
  2139. .woocommerce .product_meta{color:#333333;}
  2140. .woocommerce-page .cart input.button:hover, .woocommerce .cart input.button:focus, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus, .woocommerce input.button.alt:hover, .woocommerce input.button.alt:focus, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus {
  2141. box-shadow: none;
  2142. }
  2143. .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,.woocommerce a.button,.woocommerce a.button:hover {
  2144. color: #fff;
  2145. }
  2146. .woocommerce-page .services .post{
  2147. background-color: #FFFFFF;
  2148. background-color: #FFFFFF;
  2149. box-shadow: 0px 0px 0px 2px #E9E9E9;
  2150. border-radius: 0;
  2151. margin-bottom: 40px;
  2152. padding: 30px 15px 25px;
  2153. transition: all 0.4s ease 0s;
  2154. }
  2155. .woocommerce-page .services .post .entry-content {
  2156. display: block;
  2157. overflow: hidden;
  2158. margin: 0px;
  2159. }
  2160. .woocommerce table.shop_table {
  2161. border-radius: 0;
  2162. margin: 0 0 40px -1px;
  2163. padding: 0;
  2164. }
  2165. .woocommerce-cart table.cart td.actions .coupon .input-text {
  2166. width: 200px;
  2167. padding: 6px 12px;
  2168. border-radius: 0;
  2169. height: 44px;
  2170. }
  2171. .woocommerce-cart .cart-collaterals .cart_totals tr th, .woocommerce-cart .cart-collaterals .cart_totals tr td {
  2172. border-top: none;
  2173. }
  2174. .woocommerce #review_form #respond textarea, .woocommerce-cart table.cart td.actions .coupon .input-text {
  2175. border: 1px solid #E9E9E9;
  2176. }
  2177. .woocommerce ul.products li.product .price del, .woocommerce ul.products li.product .price ins, .woocommerce div.product p.price ins, .woocommerce ul.products li.product .price, .woocommerce .variations td.label, .woocommerce table.shop_table td, .woocommerce-cart .cart-collaterals .cart_totals table td, .woocommerce .woocommerce-ordering select, .woocommerce-cart table.cart td.actions .coupon .input-text, .select2-container .select2-choice {
  2178. color: #64646D;
  2179. }
  2180. .woocommerce .wc-bacs-bank-details-heading, .woocommerce h2:NOT(.site-title), .woocommerce .title h3 {
  2181. font-size: 1.125rem ;
  2182. }
  2183. .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  2184. padding: .750rem 1.2rem;
  2185. margin-bottom: 0;
  2186. box-shadow: none;
  2187. }
  2188. .woocommerce-error, .woocommerce-info, .woocommerce-message {
  2189. padding: 0.675rem 3rem 0.675rem 1.250rem;
  2190. }
  2191. .woocommerce-error, .woocommerce-info, .woocommerce-message {
  2192. background-color: #FBFBFB;
  2193. box-shadow: 0 7px 3px -5px #E0E0E0;
  2194. }
  2195. .woocommerce div.product p.price, .woocommerce div.product span.price, .woocommerce .posted_in a, .woocommerce-product-rating a, .woocommerce .tagged_as a, .woocommerce div.product form.cart .variations td.label label, .woocommerce #reviews #comments ol.commentlist li .meta strong, .woocommerce table.shop_table th, .woocommerce-cart table.cart td a, .owl-item .item .cart .add_to_cart_button, .woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a, .woocommerce-error, .woocommerce-info, .woocommerce-message {
  2196. color: #333333;
  2197. }
  2198. .woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
  2199. right: 1rem;
  2200. }
  2201. .woocommerce {
  2202. text-align: right;
  2203. }
  2204. .woocommerce form .form-row {
  2205. padding: 0;
  2206. margin: 0 0 15px;
  2207. }
  2208. .woocommerce form .form-row label, .woocommerce-page form .form-row label, .wc_payment_method label, .woocommerce #review_form #respond p label {
  2209. font-weight: 600;
  2210. font-size: 0.938rem;
  2211. }
  2212. .woocommerce form .form-row .required {
  2213. text-decoration: none;
  2214. }
  2215. .woocommerce form .form-row input.input-text {
  2216. border-radius: 0;
  2217. height: 45px;
  2218. padding: 6px 12px;
  2219. }
  2220. .woocommerce .col-1,.woocommerce .col-2 {
  2221. max-width: 100% !important;
  2222. }
  2223. .woocommerce form .form-row .input-text, .woocommerce-page form .form-row .input-text {
  2224. padding: 6px 12px;
  2225. }
  2226. .woocommerce ul.products li.product .button, .woocommerce a.added_to_cart, .woocommerce div.product form.cart .button {
  2227. box-shadow: none;
  2228. font-weight: 700;
  2229. line-height: 1.3;
  2230. border-radius: 0px;
  2231. padding: .600rem 0.7rem;
  2232. transition: all 0.5s;
  2233. margin-top: 0.7rem;
  2234. height: auto;
  2235. font-size: 0.9375rem;
  2236. }
  2237. .woocommerce a.added_to_cart {
  2238. background: #333333;
  2239. border: 1px solid #FFFFFF;
  2240. }
  2241. .select2-container--default .select2-selection--single .select2-selection__rendered {
  2242. border-radius: 0;
  2243. padding: 6px 12px;
  2244. }
  2245. .select2-container--default .select2-selection--single {
  2246. border: 1px solid #E9E9E9;
  2247. }
  2248. .select2-container .select2-selection--single, .select2-container--default .select2-selection--single .select2-selection__arrow {
  2249. height: 45px;
  2250. }
  2251. .woocommerce div.product p.price {
  2252. text-align: right;
  2253. font-weight: 600;
  2254. }
  2255. .woocommerce div.product p.price, .woocommerce div.product span.price {
  2256. font-size: 1.25rem;
  2257. }
  2258. .woocommerce div.product form.cart {
  2259. margin-top: 2rem;
  2260. padding: 0;
  2261. }
  2262. /*.screen-reader-text {
  2263. border: 0;
  2264. clip: rect(1px, 1px, 1px, 1px);
  2265. -webkit-clip-path: inset(50%);
  2266. clip-path: inset(50%);
  2267. height: 1px;
  2268. margin: -1px;
  2269. overflow: hidden;
  2270. padding: 0;
  2271. position: absolute;
  2272. width: 1px;
  2273. word-wrap: normal !important;
  2274. }*/
  2275. .woocommerce .quantity .qty {
  2276. width: 3.5rem;
  2277. text-align: right;
  2278. height: 44px;
  2279. padding: .500rem 0.7rem;
  2280. border-radius: 0;
  2281. }
  2282. .woocommerce div.product form.cart .button {
  2283. padding: .700rem 1.2rem;
  2284. margin-top: 0;
  2285. }
  2286. .single-product .products{box-shadow: unset;}
  2287. .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  2288. z-index: 2;
  2289. border-radius: 0;
  2290. }
  2291. .woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  2292. content: unset;
  2293. }
  2294. .woocommerce .posted_in a, .woocommerce-product-rating a, .woocommerce .tagged_as a {
  2295. transition: all 0.5s;
  2296. font-weight: 600;
  2297. }
  2298. .woocommerce div.product .woocommerce-tabs .panel {
  2299. box-shadow: none;
  2300. padding: 1rem 1rem 1rem;
  2301. border-radius: 0;
  2302. }
  2303. .woocommerce div.product .woocommerce-tabs .panel {
  2304. background: #fff;
  2305. border: 1px solid #E9E9E9;
  2306. }
  2307. .woocommerce .related h2 {
  2308. margin: 0 0 20px;
  2309. }
  2310. .woocommerce div.product div.summary {
  2311. margin-bottom: 2em;
  2312. padding: 0.4rem 0.9rem 1.5rem;
  2313. background-color: #fff;
  2314. border: 1px solid #E9E9E9;
  2315. }
  2316. .item-img { width: 100%; position: relative; }
  2317. .add-to-cart {
  2318. position: absolute;
  2319. bottom: 45%;
  2320. right: 0;
  2321. width: 100%;
  2322. background: transparent padding-box content-box;
  2323. padding: 0 2.5rem;
  2324. opacity: 0;
  2325. visibility: hidden;
  2326. transition: all 0.3s ease-in-out;
  2327. transform: translateY(100%);
  2328. z-index: 0;
  2329. }
  2330. .products:hover .add-to-cart { opacity: 1; visibility: visible; transform: translateY(0); }
  2331. .add-to-cart a {
  2332. background: #FFFFFF;
  2333. display: inline-block;
  2334. font-size: 1.75rem;
  2335. padding: 8px 8px;
  2336. font-weight: 600;
  2337. border-radius: 50%;
  2338. width: 60px;
  2339. height: 60px;
  2340. }
  2341. @media (max-width:992px){
  2342. .add-to-cart a {
  2343. padding: 15px 15px;
  2344. }}
  2345. .added_to_cart.wc-forward
  2346. {
  2347. color: #fff;
  2348. }
  2349. .add-to-cart a:hover {
  2350. color: #FFFFFF;
  2351. }
  2352. .product-price { padding: 1.25rem 0 1.125rem; }
  2353. .product-price > .woocommerce-loop-product__title { font-size: 1.125rem; text-transform: capitalize; margin-bottom: 5px; }
  2354. .product-price .woocommerce-Price-amount { color: #333333; font-size: 1.000rem; font-weight: 600; }
  2355. .product-price del { padding-left: 5px; }
  2356. .product-price del, .product-price del > span { color: #C0C0C0 !important; }
  2357. .products .item-img {
  2358. background-color: #000000;
  2359. }
  2360. .products:hover .item-img img {
  2361. zoom: 1;
  2362. filter: alpha(opacity=30);
  2363. -webkit-opacity: 0.3;
  2364. opacity: 0.3;
  2365. -webkit-transform: translateY(0px);
  2366. transform: translateY(0px);
  2367. transition: all 0.3s ease-in-out;
  2368. }
  2369. .woocommerce div.product form.cart .variations select {
  2370. color: #333333;
  2371. }
  2372. .woocommerce div.product form.cart .variations tr {
  2373. border:0;
  2374. }
  2375. /*===================================================================================
  2376. 22.0 CONTACT DEATIL SECTION
  2377. ===================================================================================*/
  2378. .contact-detail {
  2379. width: 100%;
  2380. }
  2381. .contact-area { margin: 0px; padding: 30px 0px; }
  2382. .contact-icon { float: right; margin: 0 0 0 25px; padding: 0; }
  2383. .contact-icon i {
  2384. font-size: 45px;
  2385. -webkit-transition: all 0.2s linear;
  2386. transition: all 0.2s linear;
  2387. -webkit-transform: scale3d(1, 1, 1);
  2388. transform: scale3d(1, 1, 1);
  2389. }
  2390. .contact-area:hover .contact-icon i { -webkit-transform: scale3d(1.3, 1.3, 1);
  2391. transform: scale3d(1.3, 1.3, 1); }
  2392. .contact-area h6 {
  2393. color: #727272;
  2394. font-family: 'Open Sans';
  2395. font-weight:600;
  2396. font-size: 14px;
  2397. letter-spacing: 1px;
  2398. line-height: 20px;
  2399. margin: 0 0 7px;
  2400. }
  2401. .contact-area h4{
  2402. color: #727272;
  2403. font-family: 'Open Sans';
  2404. font-weight:600;
  2405. font-size: 1.25rem;
  2406. letter-spacing: 1px;
  2407. line-height: 20px;
  2408. margin: 0 0 0px;
  2409. word-break: break-word;
  2410. }
  2411. /*===================================================================================
  2412. 22.0 FOOTER SECTION site info
  2413. ===================================================================================*/
  2414. .site-info {
  2415. background-color: #000000;
  2416. color: #ffffff;
  2417. font-size: 0.938rem;
  2418. padding: 1.25rem 0;
  2419. }
  2420. .site-info p{
  2421. color: #ffffff;
  2422. }
  2423. /*.site-info .site-branding p{color:#fff;}*/
  2424. .site-privacy{text-align: left;}
  2425. .logo-scroll {margin: 0px auto;display: block;}
  2426. .logo-scroll img {display: block;margin: 0 auto;}
  2427. .logo-scroll a {display: block;outline: unset;}
  2428. .logo-scroll img{opacity:0.4;}
  2429. .logo-scroll img:hover{opacity:1;}
  2430. @media (max-width:600px){
  2431. .site-info {text-align: center;}
  2432. .site-privacy {text-align: center;}
  2433. }
  2434. .section-space .owl-carousel:hover .owl-next{
  2435. left: 2rem;
  2436. }
  2437. .section-space .owl-carousel:hover .owl-prev {
  2438. right:2rem;
  2439. }
  2440. .section-space .owl-carousel .owl-prev,.section-space .owl-carousel .owl-next {
  2441. top:40%;
  2442. }
  2443. .section-space.shop .owl-carousel .owl-prev,.section-space.shop .owl-carousel .owl-next {
  2444. top:30%;
  2445. }
  2446. .section-space.sponsors .owl-carousel .owl-prev,.section-space.sponsors .owl-carousel .owl-next {
  2447. top:20%;
  2448. }
  2449. .site-page .post {
  2450. background: #fff;
  2451. position: relative;
  2452. transition: all 0.3s;
  2453. margin-bottom: 3.125rem;
  2454. box-shadow: 0px 0px 1px 1px #E8E8E8;
  2455. border-radius: 3px;
  2456. }
  2457. /*--------------------------------------------------------------
  2458. 20.1 Breadcrumb
  2459. --------------------------------------------------------------*/
  2460. .page-title-section
  2461. {
  2462. background: #17212c url(assets/images/Breadcrumb/breadcrumb-6.jpg);
  2463. background-attachment: scroll;
  2464. background-position: top center;
  2465. background-repeat: no-repeat;
  2466. background-size: cover;
  2467. position: relative;
  2468. padding: 126px 0;
  2469. width: 100%;
  2470. height: 100%;
  2471. overflow: hidden;
  2472. }
  2473. .page-title-section .page-title h1
  2474. {
  2475. text-align: center;
  2476. font-weight: bold;
  2477. line-height: 1.3;
  2478. font-size: 2rem;
  2479. color: #fefefe;
  2480. margin: 0 0 10px;
  2481. word-break: break-word;
  2482. }
  2483. .page-breadcrumb li {
  2484. display: inline-block;
  2485. }
  2486. .page-breadcrumb
  2487. {
  2488. margin: 0;
  2489. padding: 0;
  2490. color: white;
  2491. text-align:center;
  2492. font-weight: 700;
  2493. font-size: 1rem;
  2494. }
  2495. .page-breadcrumb li a
  2496. {
  2497. color: #fff;
  2498. word-break: break-word;
  2499. }
  2500. .page-breadcrumb .icon::before
  2501. {
  2502. font-size: 0.938rem;
  2503. content: "/";
  2504. font-family: FontAwesome;
  2505. padding-left: 0.625rem;
  2506. padding-right: 0.625rem;
  2507. color: #fff;
  2508. }
  2509. /*.breadcrumb-overlay {
  2510. height: 100%;
  2511. position: relative;
  2512. width: 100%;
  2513. padding: 100px 0 100px;
  2514. background-color: rgba(0,0,0,0.6);}*/
  2515. .page-title-section .overlay {
  2516. position: absolute;
  2517. top: 0;
  2518. bottom: 0;
  2519. right: 0;
  2520. left: 0;
  2521. height: 100%;
  2522. width: 100%;
  2523. }
  2524. /*===================================================================================
  2525. 22.0 ABOUT PAGE
  2526. ===================================================================================*/
  2527. .page-section-space {
  2528. padding: 6.25rem 0 4.375rem;
  2529. }
  2530. .about-section {
  2531. background-color: #f5f5f5;
  2532. /* color: #fff;*/
  2533. /*margin-top: 1.25rem;*/
  2534. }
  2535. .about-header{padding-right: 1.125rem;
  2536. padding-bottom: 0.75rem;}
  2537. .about-title {
  2538. margin-bottom: 1rem;
  2539. }
  2540. .about-subtitle{
  2541. margin-bottom: 0.75rem;
  2542. }
  2543. .about-header .btn-small{ padding: 0.688rem 2.3rem;margin-top: 0.5rem;}
  2544. .about-header p{margin-bottom: 1rem;}
  2545. .about-header .btn-default:hover,.about-header .btn-default:focus {
  2546. background: #ffffff;
  2547. color: #333333;
  2548. }
  2549. .img-decorate{
  2550. height: 120px;
  2551. width: 120px;
  2552. position: absolute;
  2553. top: -20px;
  2554. right: -20px;
  2555. z-index: 1;
  2556. border-radius: 10%;
  2557. }
  2558. @media (max-width: 576px){
  2559. .img-decorate {
  2560. height: 60px;
  2561. width: 60px;
  2562. right: 18px;
  2563. top: 0px;
  2564. }
  2565. .about-section .view img{padding: 20px 10px 0 0;}
  2566. }
  2567. @media (min-width: 768px) and (max-width: 1199.98px) {
  2568. .img-decorate {
  2569. height: 60px;
  2570. width: 60px;
  2571. right: 0px;
  2572. }
  2573. }
  2574. /*===================================================================================
  2575. 22.0 CONTACT PAGE
  2576. ===================================================================================*/
  2577. .contact-detail-area{
  2578. text-align: center;
  2579. transition: all .4s ease 0s;
  2580. box-shadow: 0 0 0px 1px rgb(163, 163, 163,0.5);
  2581. padding: 3.25rem 2.5rem 2.625rem;
  2582. margin-bottom: 2rem;
  2583. }
  2584. .contact-detail-area address, .contact-detail-area a {
  2585. color: #727272;
  2586. }
  2587. .contact-detail-area i {
  2588. border-radius: 10%;
  2589. display: block;
  2590. font-size: 2.5rem;
  2591. line-height: 1.7;
  2592. height: 70px;
  2593. box-shadow: 0 0 10px 1px rgb(163, 163, 163,0.5);
  2594. margin-bottom: 0;
  2595. margin-right: auto;
  2596. margin-left: auto;
  2597. transition: all .1s ease 0s;
  2598. width: 70px;
  2599. background: #fff;
  2600. }
  2601. .contact-detail-area h5 {
  2602. font-size: 1.25rem;
  2603. margin: 1.563rem 0;
  2604. text-align: center}
  2605. .contact-detail-area address {
  2606. font-size: 1rem;
  2607. margin-bottom: 5px;
  2608. text-align: center
  2609. }
  2610. .contact-detail-area:hover{
  2611. box-shadow: 0 0 10px 1px rgba(163, 163, 163,0.5);
  2612. background-color: #fff;
  2613. }
  2614. .contact-detail-area:hover i {
  2615. box-shadow: 0 0 0px 1px rgba(163, 163, 163,0.5);
  2616. }
  2617. .wpcf7-form-control-wrap:after {
  2618. font-family: 'FontAwesome';
  2619. left: 30px;
  2620. position: absolute;
  2621. top: 12px;
  2622. }
  2623. .wpcf7-form-control-wrap {
  2624. position: relative;
  2625. display: block;
  2626. clear:both;
  2627. width: 90%;
  2628. }
  2629. .your-name:after , .comment-form .your-name:after{ content: "\f007";}
  2630. .your-email:after , .comment-form .your-email:after{ content: "\f0e0";}
  2631. .your-subject:after , .comment-form .your-subject:after{ content: "\f078";}
  2632. .your-message:after , .comment-form .your-message:after{ content: "\f040";}
  2633. input::placeholder, textarea::placeholder{color:#727272;font-size:12px;}
  2634. .wpcf7-form input,. .wpcf7-form textarea ,
  2635. .comments-form input
  2636. {margin-bottom:2rem;padding-left: 2.5em; }
  2637. .button-holder{margin:0 auto;}
  2638. .page-template-template-contact-us form.wpcf7-form.init {
  2639. display: inline;
  2640. }
  2641. .page-template-template-contact-us form.wpcf7-form.init p {
  2642. float: right;
  2643. width:33%;
  2644. }
  2645. .page-template-template-contact-us form.wpcf7-form.init p input[type="text"],.page-template-template-contact-us form.wpcf7-form.init p input[type="email"]{
  2646. width:100%
  2647. }
  2648. .page-template-template-contact-us form.wpcf7-form.init p textarea{
  2649. width:100%
  2650. }
  2651. .page-template-template-contact-us form.wpcf7-form.init p:nth-child(4n+1){
  2652. /*float:none;*/
  2653. width:100%;
  2654. }
  2655. form.wpcf7-form.init textarea{
  2656. height:125px;
  2657. }
  2658. .page-template-template-contact-us form.wpcf7-form.init p:nth-child(5n+1){
  2659. margin:0;
  2660. padding:0;
  2661. float:none;
  2662. text-align:center;
  2663. width: 100%;
  2664. }
  2665. form.wpcf7-form p:nth-child(5n+1){
  2666. text-align:center;
  2667. }
  2668. .page-template-template-contact-us span.wpcf7-form-control-wrap.your-message {
  2669. width: 96%;
  2670. }
  2671. @media (max-width: 500px) {
  2672. .page-template-template-contact-us form.wpcf7-form.init p {
  2673. float: none;
  2674. width:100%;
  2675. }
  2676. .page-template-template-contact-us .wpcf7-form-control-wrap {
  2677. width: 100%;
  2678. }
  2679. .page-template-template-contact-us span.wpcf7-form-control-wrap.your-message {
  2680. width: 100%;
  2681. }
  2682. }
  2683. /*===================================================================================
  2684. 23.0 PORTFOLIO PAGE
  2685. ===================================================================================*/
  2686. .md-pills .nav-link.active {
  2687. color: #fff;
  2688. }
  2689. button.close {
  2690. position: absolute;
  2691. left: 0;
  2692. z-index: 2;
  2693. padding-left: 1rem;
  2694. padding-top: .6rem;
  2695. }
  2696. .flex-center {
  2697. display: -webkit-box;
  2698. display: -ms-flexbox;
  2699. display: flex;
  2700. -webkit-box-align: center;
  2701. -ms-flex-align: center;
  2702. align-items: center;
  2703. -webkit-box-pack: center;
  2704. -ms-flex-pack: center;
  2705. justify-content: center;
  2706. height: 100%;
  2707. }
  2708. .tab-content {
  2709. padding-top: 2.3rem;
  2710. }
  2711. .portfolio .md-pills .nav-link {
  2712. padding: .2rem 1.3rem;
  2713. border-radius: 3px;
  2714. }
  2715. .portfolio .tab-content .portfolio-thumbnail {
  2716. background-color: #000000;
  2717. }
  2718. .portfolio .tab-content .portfolio-thumbnail {
  2719. position: relative;
  2720. overflow: hidden;
  2721. margin: 0px 0 30px;
  2722. width: 100%;
  2723. text-align: right;
  2724. border-radius: 3px;
  2725. }
  2726. .portfolio .tab-content .portfolio-thumbnail .entry-title{
  2727. margin-bottom:0.313rem
  2728. }
  2729. .portfolio .tab-content .portfolio-thumbnail p {
  2730. color: #fff;
  2731. }
  2732. .portfolio .tab-content .portfolio-thumbnail::before, .portfolio .tab-content .portfolio-thumbnail::after {
  2733. position: absolute;
  2734. top: 0px;
  2735. left: 0px;
  2736. bottom: 0px;
  2737. right: 0px;
  2738. content: '';
  2739. opacity: 0;
  2740. -webkit-transition: opacity 0.60s, -webkit-transform 0.60s;
  2741. transition: opacity 0.60s, transform 0.60s;
  2742. }
  2743. .portfolio .tab-content .portfolio-thumbnail figcaption {
  2744. position: absolute;
  2745. bottom: 0%;
  2746. width: 100%;
  2747. -webkit-transform: translateY(100%);
  2748. transform: translateY(100%);
  2749. padding: 15px 30px 25px;
  2750. background-color: transparent;
  2751. -webkit-transition: 0.4s;
  2752. transition: 0.4s;
  2753. z-index: 1;
  2754. }
  2755. .portfolio .tab-content .portfolio-thumbnail:hover img {
  2756. zoom: 1;
  2757. filter: alpha(opacity=20);
  2758. -webkit-opacity: 0.2;
  2759. opacity: 0.2;
  2760. -webkit-transition: opacity 0.60s, -webkit-transform 0.60s;
  2761. transition: opacity 0.60s, transform 0.60s;
  2762. }
  2763. .portfolio .tab-content .portfolio-thumbnail:hover figcaption, .portfolio .tab-content .portfolio-thumbnail:hover .entry-title, .portfolio .tab-content .portfolio-thumbnail:hover p, .portfolio .tab-content .portfolio-thumbnail:hover i {
  2764. -webkit-transform: translateY(0);
  2765. transform: translateY(0);
  2766. -moz-transform: translateY(0);
  2767. opacity: 1;
  2768. }
  2769. .portfolio .tab-content .portfolio-thumbnail i {
  2770. background-color: transparent;
  2771. border-radius: 5%;
  2772. position: absolute;
  2773. font-size: 2rem;
  2774. line-height: 1.2;
  2775. width: 2.5rem;
  2776. height: 2.5rem;
  2777. top: 30px;
  2778. left: 30px;
  2779. text-align: center;
  2780. -webkit-transform: translateY(-55px);
  2781. transform: translateY(-55px);
  2782. -webkit-transition: 0.3s;
  2783. transition: 0.3s;
  2784. font-style: normal;
  2785. z-index: 1;
  2786. opacity: 0;
  2787. }
  2788. .portfolio .tab-content .portfolio-thumbnail:hover::before, .portfolio .tab-content .portfolio-thumbnail:hover::after {
  2789. opacity: 1;
  2790. -webkit-transform: scale(1);
  2791. transform: scale(1);
  2792. }
  2793. .portfolio button:hover{background:transparent;}
  2794. @media (min-width:600px){.portfolio .view img{height: 100%}}
  2795. /*===================================================================================
  2796. 23.0 Error 404 PAGE
  2797. ===================================================================================*/
  2798. .error-page{
  2799. background: url('assets/images/bg/404.png');
  2800. background-attachment: scroll;
  2801. background-position: top center;
  2802. background-repeat: no-repeat;
  2803. position: relative;
  2804. width: 100%;
  2805. height: 100%;
  2806. overflow: hidden;
  2807. padding: 11rem;
  2808. margin-top: 6.25rem;}
  2809. .error-page h2{font-size: 6.25rem;margin: 0;line-height: 1.1;}
  2810. .error-page h3{margin: 0;font-size:2.25rem;font-weight: 400}
  2811. .error-page .btn-small{padding: 0.75rem 3.125rem;font-size: 1rem;font-weight: 700}
  2812. .error-page .custom-social-icons li > a{background-color: #727272;}
  2813. .error-page .custom-social-icons li > a{background-color: #727272;}
  2814. .error-page .custom-social-icons li > a:hover,.error-page .custom-social-icons li > a:focus {
  2815. color:#fff;
  2816. }
  2817. .error-page .social-icon{padding-top:2rem;}
  2818. @media (max-width: 1200px){.error-page{background-size:contain;} }
  2819. /*===================================================================================
  2820. 26.0 footer Sidebar SECTION
  2821. ===================================================================================*/
  2822. @media (min-width: 768px){
  2823. .s-l-space {
  2824. padding-right: 0.625rem;
  2825. }
  2826. }
  2827. .footer-sidebar{padding: 6.25rem 0 5rem;}
  2828. .footer-sidebar .widget {
  2829. color: #ffffff;
  2830. padding: 0 0 1.25rem;
  2831. margin: 0;
  2832. }
  2833. @media (max-width: 576px){
  2834. .footer-sidebar .widget {
  2835. padding: 1.625rem 0 1.125rem;
  2836. }
  2837. .blog .right-sidebar {
  2838. padding-top: 1.875rem;
  2839. }
  2840. }
  2841. .site-footer{
  2842. background-color:#21202e;
  2843. position: relative;
  2844. z-index: 1;
  2845. }
  2846. .footer-sidebar .woocommerce div.product p.price,
  2847. .footer-sidebar .woocommerce div.product span.price,
  2848. .footer-sidebar .woocommerce .posted_in a,
  2849. .footer-sidebar .woocommerce-product-rating a,
  2850. .footer-sidebar .woocommerce .tagged_as a,
  2851. .footer-sidebar .woocommerce div.product form.cart .variations td.label label,
  2852. .footer-sidebar .woocommerce #reviews #comments ol.commentlist li .meta strong,
  2853. .footer-sidebar .woocommerce table.shop_table th,
  2854. .footer-sidebar .woocommerce-cart table.cart td a,
  2855. .footer-sidebar .owl-item .item .cart .add_to_cart_button,
  2856. .footer-sidebar .woocommerce ul.cart_list li a,
  2857. .footer-sidebar .woocommerce ul.product_list_widget li a,
  2858. .footer-sidebar .woocommerce-error,
  2859. .footer-sidebar .woocommerce-info,
  2860. .footer-sidebar .woocommerce-message {
  2861. color: #ffffff;
  2862. }
  2863. .footer-sidebar .woocommerce .posted_in a:hover,
  2864. .footer-sidebar .woocommerce-product-rating a:hover,
  2865. .footer-sidebar .woocommerce .tagged_as a:hover,
  2866. .footer-sidebar .woocommerce-cart table.cart td a:hover,
  2867. .footer-sidebar .woocommerce ul.cart_list li a:hover,
  2868. .footer-sidebar a{color:#fff;}
  2869. .footer-sidebar address {
  2870. margin: 0 0 0.5em;
  2871. }
  2872. .footer-sidebar .footer-logo{margin-bottom: 20px;}
  2873. .footer-sidebar .widget .widget-title {
  2874. position: relative;
  2875. padding-bottom: 0.5rem;
  2876. /*color:#fff;*/
  2877. margin: 0 0 1rem;
  2878. }
  2879. .header-sidebar .widget:last-child {
  2880. margin: 0;
  2881. }
  2882. .head-contact-info li:first-child {
  2883. padding: 0;
  2884. }
  2885. .header-sidebar .widget {
  2886. color: #fff;
  2887. box-shadow: none;
  2888. padding: 0;
  2889. margin: 0;
  2890. }
  2891. .footer-sidebar .widget_text{
  2892. font-size: 0.938rem;
  2893. line-height: 2.35;
  2894. }
  2895. .footer-sidebar .widget_text p,.footer-sidebar .widget_text h6{
  2896. margin: 0;
  2897. color: #fff;
  2898. line-height: 1.6;
  2899. margin-bottom: 0.625rem;
  2900. }
  2901. @media (max-width: 576px){
  2902. .footer-sidebar .widget_archive li:before,.footer-sidebar .widget_categories li:before,.footer-sidebar .widget_links li:before,.footer-sidebar .widget_meta li:before,.footer-sidebar .widget_nav_menu li:before,.footer-sidebar .widget_pages li:before,.footer-sidebar .widget_recent_comments li:before,.footer-sidebar .widget_recent_entries li:before {
  2903. padding-right: 7px;
  2904. } }
  2905. .footer-sidebar .widget li{
  2906. border-bottom: none;
  2907. padding-top: 0.313rem;
  2908. padding-bottom: 0.313rem;
  2909. margin: 0;
  2910. position: relative;
  2911. }
  2912. /*.footer-sidebar .widget li:before{content: none;}*/
  2913. .footer-sidebar .widget .widget-title:after img{content: none;padding: 0}
  2914. /*===================================================================================*/
  2915. /* FOOTER COPYRIGHTS - SITE INFO
  2916. /*===================================================================================*/
  2917. .site-info { background-color: #020508; /*color: #bec3c7;*/ font-size: 0.938rem; padding: 1.25rem 0; position: relative;width: 100%;z-index: 1;}
  2918. .site-info a { color: #ffffff; }
  2919. .site-info.layout-1 li:before, .site-info.layout-2 li:before {
  2920. right:auto;
  2921. position: absolute;
  2922. margin-right: -20px;
  2923. }
  2924. .site-info.layout-1 .widget, .site-info.layout-2 .widget { margin: 0; padding: 0; box-shadow: none ;}
  2925. /**/
  2926. .site-info .widget_archive li, .site-info .widget_categories li, .site-info .widget_links li,
  2927. .site-info .widget_meta li, .site-info .widget_nav_menu li, .site-info .widget_pages li,
  2928. .site-info .widget_recent_comments li, .site-info .widget_recent_entries li {
  2929. padding-top: 0px;
  2930. padding-bottom: 14px;
  2931. border-bottom: none;
  2932. }
  2933. @media (min-width: 768px){
  2934. .site-info.layout-1 .section-1{text-align: right;}
  2935. .site-info.layout-1 .section-2{text-align: left;}
  2936. .site-info.layout-1 .section-2 .widget .widget-title:after {
  2937. right: auto;
  2938. left: 0;
  2939. }}
  2940. .site-info.layout-1 .widget .widget-title:after {
  2941. right: 49%;
  2942. }
  2943. .site-info.layout-1 .calendar_wrap{text-align: right;}
  2944. .site-info.layout-1 .nav-menu li, .site-info.layout-2 .nav-menu li{
  2945. display: inline-block;
  2946. margin-left: 15px;
  2947. }
  2948. .site-info.layout-1 .nav-menu, .site-info.layout-2 .nav-menu{
  2949. margin: 0;
  2950. }
  2951. @media (min-width: 500px) {
  2952. .site-info .left
  2953. {
  2954. text-align: right;
  2955. }
  2956. }
  2957. .site-info .right
  2958. {
  2959. text-align: left;
  2960. }
  2961. .site-info.layout-2 .right .widget .widget-title:after {
  2962. right: 90%;
  2963. }
  2964. .site-info.layout-2 .calendar_wrap{text-align: justify;}
  2965. /*--------------------------------------------------------------
  2966. Footer line style
  2967. --------------------------------------------------------------*/
  2968. .lines{
  2969. position: absolute;
  2970. top: 0;
  2971. right: 0;
  2972. left: 0;
  2973. height: 100%;
  2974. margin: auto;
  2975. width: 78vw;
  2976. z-index: -1;
  2977. }
  2978. .lines .line{
  2979. position: absolute;
  2980. width: 1px;
  2981. height: 100%;
  2982. top: 0;
  2983. right: 50%;
  2984. background: rgba(255,255,255,.1);
  2985. overflow: hidden;
  2986. }
  2987. .lines .line::after {
  2988. content: "";
  2989. display: block;
  2990. position: absolute;
  2991. height: 15vh;
  2992. width: 100%;
  2993. top: -50%;
  2994. right: 0;
  2995. background: linear-gradient(to bottom,rgba(255,255,255,0) 0,#fff 75%,#fff 100%);
  2996. -webkit-animation: 37s cubic-bezier(.4,.26,0,.97) infinite run;
  2997. animation: 37s cubic-bezier(.4,.26,0,.97) infinite run;
  2998. -webkit-animation-fill-mode: forwards;
  2999. animation-fill-mode: forwards;
  3000. }
  3001. .lines .line:nth-child(1){margin-right:-19%}
  3002. .lines .line:nth-child(1)::after {
  3003. -webkit-animation-delay:2s;
  3004. animation-delay:2s
  3005. }
  3006. .lines .line:nth-child(3){margin-right:19%}
  3007. .lines .line:nth-child(3)::after {
  3008. -webkit-animation-delay:2.5s;
  3009. animation-delay:2.5s
  3010. }
  3011. @-webkit-keyframes run{0%{top:-50%}100%{top:110%}}
  3012. @keyframes run{0%{top:-50%}100%{top:110%}}
  3013. /*===================================================================================*/
  3014. /* Page Scroll Up
  3015. /*===================================================================================*/
  3016. .scroll-up.right {
  3017. position: fixed;
  3018. display: none;
  3019. bottom: 12px;
  3020. /*left: 30px;*/
  3021. z-index: 999;
  3022. }
  3023. .scroll-up.left {
  3024. position: fixed;
  3025. display: none;
  3026. bottom: 12px;
  3027. right: 30px;
  3028. z-index: 999;
  3029. }
  3030. .scroll-up a {
  3031. display: block;
  3032. height: 2.5rem;
  3033. width: 2.5rem;
  3034. text-align: center;
  3035. line-height: 2;
  3036. border-radius: 3px;
  3037. font-size: 1.25rem;
  3038. color: #fff;
  3039. opacity: 1;
  3040. transition: all 0.3s ease 0s;
  3041. box-shadow: 0 0 10px rgba(0,0,0,.2);
  3042. }
  3043. /*.scroll-up a:hover,
  3044. .scroll-up a:active {
  3045. background:#fff;
  3046. color: #ee591f;
  3047. }*/
  3048. /*===================================================================================*/
  3049. /* Blog Single
  3050. /*===================================================================================*/
  3051. /* Related Post */
  3052. .related-post {margin-bottom: 3.125rem;}
  3053. .related-post .single-post {border: 1px solid #e8e8e8;}
  3054. .related-post .single-post:hover{background-color: #fff;}
  3055. .related-post .single-post .post-content{padding: 1.25rem;}
  3056. .related-post .next{text-align: left;}
  3057. .related-post .title{margin-bottom: 15px;}
  3058. .related-post .single-post .fa {
  3059. height: 35px;
  3060. width: 35px;
  3061. background-color:transparent;
  3062. border:1px solid #e8e8e8;
  3063. font-size: 20px;
  3064. font-weight: 700;
  3065. padding: 7px 12px 0;
  3066. transition: 0.3s;
  3067. }
  3068. .related-post .next .fa{margin-right: 20px;}
  3069. .related-post .preview .fa{margin-left: 20px;}
  3070. .related-post .single-post a:hover .fa{
  3071. color: #fff;
  3072. }
  3073. @media (max-width: 768px) {
  3074. .related-post .next{text-align: right;}
  3075. }
  3076. /*Comment Section*/
  3077. .comment-section { float: none; margin: 0 0 30px 10px; padding: 0; }
  3078. .comment-box { margin: 0 !important; padding: 0; position: relative; }
  3079. .pull-left-comment { float: right; margin-left: 20px; }
  3080. .comment-img {
  3081. border-radius: 100%;
  3082. height: 70px;
  3083. margin: 2px 0 20px;
  3084. width: 70px;
  3085. }
  3086. .comment-detail {
  3087. border-bottom: 1px solid #e9e9e9;
  3088. margin-bottom: 35px;
  3089. margin-right: 0;
  3090. padding: 0 0 15px;
  3091. }
  3092. .comment-detail-title {
  3093. color: #242526;
  3094. font-family: 'Open Sans';
  3095. font-weight:600;
  3096. font-size: 15px;
  3097. letter-spacing: 0;
  3098. line-height: 20px;
  3099. margin: 0 0 7px;
  3100. }
  3101. .comment-date {
  3102. display: block;
  3103. color: #8f969c;
  3104. font-family: 'Open Sans';
  3105. font-weight:400;
  3106. font-size: 14px;
  3107. line-height: 20px;
  3108. margin: 0 0 8px;
  3109. padding-right: 0px;
  3110. vertical-align: middle;
  3111. }
  3112. .comment-date a { color: #8f969c; }
  3113. .comment-detail p {
  3114. color: #727272;
  3115. font-family: 'Open Sans';
  3116. font-weight:400;
  3117. font-size: 14px;
  3118. letter-spacing: 0.5px;
  3119. line-height: 25px;
  3120. margin: 0;
  3121. text-align: justify;
  3122. }
  3123. .reply { font-size: 13px; float: left; }
  3124. .reply a {
  3125. display: inline-block;
  3126. font-family: 'Open Sans';
  3127. font-weight:600;
  3128. font-size: 15px;
  3129. letter-spacing: 0;
  3130. line-height: 20px;
  3131. padding: 0;
  3132. transition: all 0.3s ease 0s;
  3133. }
  3134. /* comment form */
  3135. .comment-form .comment-reply-title{
  3136. padding-bottom: 0.938rem
  3137. }
  3138. .comment-form .button-holder input{margin-top: 25px;}
  3139. .comment-form .blog-form-group:after {
  3140. font-family: 'FontAwesome';
  3141. left: 30px;
  3142. margin-top: -40px;
  3143. position: absolute;
  3144. }
  3145. .comment-form .blog-form-group-textarea:after {
  3146. font-family: 'FontAwesome';
  3147. left: 30px;
  3148. margin-top: -115px;
  3149. position: absolute;
  3150. }
  3151. @media (max-width: 768px) {
  3152. .comment-form .blog-form-group:after {
  3153. margin-top: -30px;
  3154. }
  3155. .comment-form .blog-form-group-textarea:after {
  3156. margin-top: -85px;
  3157. }
  3158. }
  3159. .site-info ul li:first-child {
  3160. margin-right: 0px;
  3161. }
  3162. .footer-sidebar .widget_text p{padding-top: 0.25rem;}
  3163. .footer-sidebar .widget li:before {color:#fff;}
  3164. /*===================================================================================*/
  3165. /* SERVICE SECTION 2
  3166. /*===================================================================================*/
  3167. .services2 .post {
  3168. position: relative;
  3169. background:#fff;
  3170. margin-bottom: 2rem;
  3171. padding:1.25rem 1.563rem;
  3172. transition: 0.25s;
  3173. -webkit-transition: all 0.25s ease-in;
  3174. -moz-transition: all 0.25s ease-in;
  3175. transition: all 0.25s ease-in;
  3176. }
  3177. .services2 .post::before {
  3178. content: "";
  3179. position: absolute;
  3180. right: 0;
  3181. top: 0;
  3182. width: 2px;
  3183. height: 100%;
  3184. transition: .5s;
  3185. z-index: 0;
  3186. }
  3187. .services2 .post:hover::before {
  3188. width: 100%;
  3189. }
  3190. .services2 .post:hover .entry-content p {
  3191. color: #fff;
  3192. position:relative;
  3193. }
  3194. .services2 .post-thumbnail {
  3195. position: relative;
  3196. text-align: right;
  3197. }
  3198. .services2 .post-thumbnail i.fa {
  3199. font-size: 2.25rem;
  3200. text-align: center;
  3201. }
  3202. .services2 .post:hover .post-thumbnail i.fa {
  3203. color: #fff;
  3204. }
  3205. .services2 .post:hover{
  3206. color: #fff;
  3207. -webkit-transition: all 0.25s ease-in;
  3208. -moz-transition: all 0.25s ease-in;
  3209. transition: all 0.25s ease-in;
  3210. }
  3211. .services2 .post .entry-header .entry-title a {transition: 0s; }
  3212. .services2 .entry-header .entry-title a:hover { color:#fff !important;}
  3213. .services2 .post:hover .entry-header .entry-title a,.services2 .post:hover .entry-header .entry-title{color:#fff; position: relative;}
  3214. .services2 .post-thumbnail img {
  3215. width: 70px;
  3216. height: 70px;
  3217. }
  3218. /*===================================================================================*/
  3219. /* SERVICE SECTION 3
  3220. /*===================================================================================*/
  3221. .services3 .post { margin: 0; padding: 0 1.25rem 3.438rem; transition: 0.3s; }
  3222. .services3 .post-thumbnail {
  3223. position: relative;
  3224. text-align: center;
  3225. margin: 0 auto 1.550rem;
  3226. }
  3227. .services3 .post-thumbnail img { border-radius: 2px; }
  3228. .services3 .post-thumbnail i.fa, .services3 .post-thumbnail img {
  3229. border-radius: 50%;
  3230. color: #fff;
  3231. width: 5rem;
  3232. height: 5rem;
  3233. font-size: 2.25rem;
  3234. line-height: 1.8;
  3235. padding: 5px;
  3236. border: 4px solid #fff;
  3237. -webkit-transition: all 0.2s linear;
  3238. transition: all 0.2s linear;
  3239. -webkit-transform: scale3d(1, 1, 1);
  3240. transform: scale3d(1, 1, 1);
  3241. }
  3242. .services3 .post-thumbnail img {
  3243. border: 0px solid #fff;
  3244. }
  3245. .services3 .post:hover .post-thumbnail img{padding: 0;}
  3246. .services3 .post:hover .post-thumbnail i.fa, .services3 .post:hover .post-thumbnail img {
  3247. /*background: #f5f6fa;*/
  3248. border: 4px solid #fff;
  3249. -webkit-transform: scale3d(1.2, 1.2, 1);
  3250. transform: scale3d(1.2, 1.2, 1);
  3251. }
  3252. .services3 .post:hover .post-thumbnail i.fa{background: #f5f6fa;}
  3253. .services3 .post-thumbnail img{
  3254. width: 80px;
  3255. height: 80px;
  3256. }
  3257. /*===================================================================================*/
  3258. /* SERVICE SECTION 4
  3259. /*===================================================================================*/
  3260. .services4 .post {
  3261. margin-bottom: 3rem;
  3262. padding: 1rem 5.25rem 1rem 1.125rem;
  3263. -webkit-transition: .5s all ease;
  3264. -moz-transition: .5s all ease;
  3265. transition: .5s all ease;
  3266. position: relative;
  3267. }
  3268. .services4 .post:hover {
  3269. -webkit-box-shadow: -5px 7px 9px -4px rgb(158, 158, 158);
  3270. -moz-box-shadow: -5px 7px 9px -4px rgb(158, 158, 158);
  3271. box-shadow: -5px 7px 9px -4px rgb(158, 158, 158);
  3272. }
  3273. .services4 .post-thumbnail {
  3274. position: absolute;
  3275. right: 0;
  3276. top: 0;
  3277. text-align: right;
  3278. padding: 1rem 0;
  3279. }
  3280. .services4 .post-thumbnail i.fa, .services4 .post-thumbnail img {
  3281. font-size: 2.5rem;
  3282. text-align: center;
  3283. -webkit-transition: -webkit-transform .2s ease-in-out;
  3284. transition: transform .2s ease-in-out;
  3285. }
  3286. .services4 .post:hover .post-thumbnail i.fa, .services4 .post:hover .post-thumbnail img{
  3287. webkit-transform: rotate(360deg);
  3288. transform: rotate(360deg);
  3289. -webkit-transition: .5s all ease;
  3290. -moz-transition: .5s all ease;
  3291. transition: .5s all ease;
  3292. }
  3293. .services4.service_wrapper .entry-header {margin: 0 0 0.938rem;}
  3294. .services4 .post-thumbnail img{
  3295. width: 60px;
  3296. border-radius: 3px;
  3297. }
  3298. /*===================================================================================*/
  3299. /* Testimonial SECTION 2
  3300. /*===================================================================================*/
  3301. #testimonial-carousel2 .avatar,.page-template-template-testimonial-6 .avatar {
  3302. display: inline-block;
  3303. position: absolute;
  3304. right: 20px;
  3305. }
  3306. #testimonial-carousel2 .testmonial-block,.page-template-template-testimonial-6 .testmonial-block {
  3307. box-shadow: -5px 5px 6px rgba(255, 255, 255, 0.01);
  3308. padding: 30px 190px 30px 30px;
  3309. margin: 0 15px 30px 15px;
  3310. overflow: hidden;
  3311. position: relative;
  3312. min-height: 200px;
  3313. }
  3314. #testimonial-carousel2 .testmonial-block .entry-content,.page-template-template-testimonial-6 .testmonial-block .entry-content {
  3315. margin: 0px 0 0.25rem;
  3316. }
  3317. #testimonial-carousel2 .testmonial-block .entry-content:before,
  3318. #testimonial-carousel2 .testmonial-block .entry-content.quote:before,
  3319. .page-template-template-testimonial-6 .testmonial-block .entry-content:before,
  3320. .page-template-template-testimonial-6 .testmonial-block .entry-content.quote:before {
  3321. top: 0;
  3322. }
  3323. .testi-2:before {
  3324. content: "";
  3325. display: block;
  3326. height: 100%;
  3327. position: absolute;
  3328. top: 0;
  3329. right: 0;
  3330. width: 100%;
  3331. z-index: 0;
  3332. }
  3333. .testimonial.testi-2 {
  3334. /*background: url(../images/bg/bg-img.jpg) 112% 50% no-repeat;*/
  3335. /*background: url('assets/images/bg/bg-img.jpg') 112% 50% no-repeat;;*/
  3336. }
  3337. #testimonial-carousel2 .testmonial-block:before,.page-template-template-testimonial-6 .testmonial-block:before{
  3338. content: "";
  3339. position: absolute;
  3340. bottom: 0;
  3341. right: 0;
  3342. border-right: 25px solid transparent;
  3343. border-left: 25px solid transparent;
  3344. transform: rotate(-45deg);
  3345. transform-origin: 80% -30% 0;
  3346. }
  3347. @media (max-width:768px){
  3348. #testimonial-carousel2 .testmonial-block,.page-template-template-testimonial-6 .testmonial-block {
  3349. padding: 15px;
  3350. margin: 0 15px 15px;
  3351. }
  3352. #testimonial-carousel2 .avatar,.page-template-template-testimonial-6 .avatar {
  3353. position: relative;
  3354. }
  3355. #testimonial-carousel2 .avatar,.page-template-template-testimonial-6 .avatar {
  3356. right: 0px;
  3357. }
  3358. #testimonial-carousel2 .testmonial-block .avatar,.page-template-template-testimonial-6 .testmonial-block .avatar {
  3359. margin: 0 0px 1.75rem;
  3360. }
  3361. }
  3362. /*===================================================================================*/
  3363. /* Team SECTION 2
  3364. /*===================================================================================*/
  3365. .team2 .team-grid .card-body .list-inline li > a {
  3366. color: #878e94;
  3367. }
  3368. .team2 .team-grid .card-body .list-inline li > a:hover {
  3369. background-color: unset;
  3370. }
  3371. .team2 .team-grid .card-body p {
  3372. color: #878e94;
  3373. }
  3374. .team2 .team-grid .img-holder img {
  3375. -webkit-transition: all 0.2s linear;
  3376. transition: all 0.2s linear;
  3377. -webkit-transform: scale3d(1, 1, 1);
  3378. transform: scale3d(1, 1, 1);
  3379. }
  3380. .team2 .team-grid .img-holder::before {position:unset;}
  3381. .team2 .team-grid:hover .img-holder img{
  3382. transform: scale3d(0.9, 0.9, 1);
  3383. }
  3384. /*===================================================================================*/
  3385. /* Testimonial SECTION 3
  3386. /*===================================================================================*/
  3387. .testimonial.testi-3 {
  3388. background: url('assets/images/bg/bg-img.jpg') -12% 50% no-repeat;
  3389. }
  3390. #testimonial-carousel3 .testmonial-block,.page-template-template-testimonial-7 .testmonial-block {
  3391. padding: 0 1rem 3.125rem 1rem;
  3392. text-align: center;
  3393. }
  3394. .testi-3 .owl-theme .owl-dots {
  3395. margin: 0rem 0rem 0rem;
  3396. }
  3397. #testimonial-carousel3 figcaption,.page-template-template-testimonial-7 figcaption{padding-bottom: 0.5rem;}
  3398. #testimonial-carousel3 .testmonial-block .avatar,.page-template-template-testimonial-7 .testmonial-block .avatar {
  3399. margin: 0px auto 1.75rem;
  3400. }
  3401. .testi-3:before {
  3402. content: "";
  3403. display: block;
  3404. height: 100%;
  3405. position: absolute;
  3406. top: 0;
  3407. right: 0;
  3408. width: 100%;
  3409. z-index: 0;
  3410. }
  3411. .testi-3 .entry-content:before, .testi-3 .entry-content.quote:before {
  3412. opacity: 1;
  3413. font-size: 1rem;
  3414. top: 7px;
  3415. right: -11px;
  3416. left: auto;
  3417. }
  3418. #testimonial-carousel3 .testmonial-block .entry-content,.page-template-template-testimonial-7 .testmonial-block .entry-content {
  3419. margin: 0px 0 0.5rem;
  3420. }
  3421. @media (min-width: 992px){.testi-3 .entry-content:before, .testi-3 .entry-content.quote:before {right: -15px;}}
  3422. #testimonial-carousel2 .testmonial-block .avatar {
  3423. margin: 0 0px 1.75rem;
  3424. }
  3425. }
  3426. /*===================================================================================*/
  3427. /* Testimonial SECTION 4
  3428. /*===================================================================================*/
  3429. .testimonial.testi-4 {
  3430. background: url(assets/images/bg/bg-img.jpg) -12% 50% no-repeat;
  3431. }
  3432. #testimonial-carousel4 .testmonial-block,.page-template-template-testimonial-8 .testmonial-block{
  3433. box-shadow: 0px 6px 6px 0px rgba(255, 255, 255, 0.1);
  3434. margin-bottom: 2px;
  3435. }
  3436. #testimonial-carousel4 .testmonial-block .entry-content:before,
  3437. #testimonial-carousel4 .testmonial-block .entry-content.quote:before,
  3438. .page-template-template-testimonial-8 .testmonial-block .entry-content:before,
  3439. .page-template-template-testimonial-8 .testmonial-block .entry-content.quote:before{
  3440. font-size: 3.875rem;
  3441. top: -18px;
  3442. }
  3443. #testimonial-carousel4 .testmonial-block .avatar,
  3444. .page-template-template-testimonial-8 .testmonial-block .avatar {
  3445. margin: 0px auto 0.75rem 0.987rem;
  3446. display: inline-block;
  3447. width: 4.563rem;
  3448. height: 5.563rem;
  3449. }
  3450. #testimonial-carousel4 .testmonial-block .entry-content,
  3451. .page-template-template-testimonial-8 .testmonial-block .entry-content {
  3452. margin: 0px 0 0.5rem;
  3453. }
  3454. #testimonial-carousel4 .testmonial-block figcaption,
  3455. .page-template-template-testimonial-8 .testmonial-block figcaption{
  3456. display: inline-block;
  3457. vertical-align: middle;
  3458. text-align: right;
  3459. }
  3460. #testimonial-carousel4.owl-theme .owl-nav.disabled+.owl-dots,
  3461. .page-template-template-testimonial-8.owl-theme .owl-nav.disabled+.owl-dots {
  3462. margin-bottom: 1.75rem;
  3463. margin-top: 2rem;
  3464. }
  3465. .testi-4:before {
  3466. content: "";
  3467. display: block;
  3468. height: 100%;
  3469. position: absolute;
  3470. top: 0;
  3471. right: 0;
  3472. width: 100%;
  3473. z-index: 0;
  3474. }
  3475. /*===================================================================================*/
  3476. /* Team SECTION 4
  3477. /*===================================================================================*/
  3478. .team4 .team-grid {
  3479. margin: 2px auto;
  3480. padding-bottom: 0px;
  3481. margin: 0.125rem 0.125rem 1.75rem;
  3482. text-align: center;
  3483. position: relative;
  3484. -webkit-transition: all 0.3s ease;
  3485. -moz-transition: all 0.3s ease;
  3486. transition: all 0.3s ease;
  3487. box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
  3488. -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
  3489. -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
  3490. }
  3491. .team4 .list-inline > a {
  3492. cursor: pointer;
  3493. }
  3494. @media (min-width: 768px){
  3495. .team4 .avatar{width: 222px;
  3496. height: auto;}
  3497. }
  3498. .team4 .overlay {
  3499. position: relative;
  3500. overflow: hidden;
  3501. }
  3502. .team4 .team-grid:hover .overlay::before {
  3503. opacity: 1;
  3504. width: 100%;
  3505. visibility: visible;
  3506. }
  3507. .team4 .overlay::before {
  3508. position: absolute;
  3509. top: 0;
  3510. left: 0;
  3511. width: 0;
  3512. height: 100%;
  3513. background: rgba(0, 0, 0, 0.7);
  3514. content: "";
  3515. opacity: 0;
  3516. z-index: 6;
  3517. visibility: hidden;
  3518. -webkit-transition: all 0.3s ease;
  3519. -moz-transition: all 0.3s ease;
  3520. transition: all 0.3s ease;
  3521. }
  3522. .team4 .team-grid .img-holder::before {position:unset;}
  3523. .team4 .team-grid:hover .list-inline {
  3524. opacity: 1;
  3525. visibility: visible;
  3526. transform: translateX(0);
  3527. transition-delay: .2s;
  3528. }
  3529. .team4 .list-inline li a {
  3530. color: #061018;
  3531. display: block;
  3532. -webkit-transition: all 0.3s ease;
  3533. -moz-transition: all 0.3s ease;
  3534. -ms-transition: all 0.3s ease;
  3535. -o-transition: all 0.3s ease;
  3536. transition: all 0.3s ease;
  3537. }
  3538. .team4 .list-inline {
  3539. background: #ffffff;
  3540. display: inline-block;
  3541. position: absolute;
  3542. top: 10px;
  3543. right: 0;
  3544. padding: 8px 20px;
  3545. border-radius: 300px;
  3546. z-index: 44;
  3547. -webkit-transform: translateX(100%);
  3548. -moz-transform: translateX(100%);
  3549. transform: translateX(100%);
  3550. -webkit-transition: all 0.3s ease;
  3551. -moz-transition: all 0.3s ease;
  3552. transition: all 0.3s ease;
  3553. opacity: 0;
  3554. visibility: hidden;
  3555. }
  3556. .team4 .team-grid .list-inline .list-inline-item{
  3557. margin-left: 0rem;
  3558. }
  3559. .team4 .team-grid .list-inline li > a:hover {
  3560. background-color: unset;
  3561. }
  3562. /*--------------------------------------------------------------
  3563. Portfolio Gallery
  3564. --------------------------------------------------------------*/
  3565. .portfolio.portfolio-gallery .col-2,.portfolio.portfolio-gallery .col-3,
  3566. .portfolio.portfolio-gallery .col-4,.portfolio.portfolio-gallery .col-6,
  3567. .portfolio.portfolio-gallery .col-lg-2,.portfolio.portfolio-gallery .col-lg-3,
  3568. .portfolio.portfolio-gallery .col-lg-4,.portfolio.portfolio-gallery .col-lg-6,
  3569. .portfolio.portfolio-gallery .col-md-2,.portfolio.portfolio-gallery .col-md-3,
  3570. .portfolio.portfolio-gallery .col-md-4,.portfolio.portfolio-gallery .col-md-6,
  3571. .portfolio.portfolio-gallery .col-sm-2,.portfolio.portfolio-gallery .col-sm-3,
  3572. .portfolio.portfolio-gallery .col-sm-4,.portfolio.portfolio-gallery .col-sm-6{
  3573. padding: 0 !important;
  3574. }
  3575. .portfolio.portfolio-gallery .modal-body .col-md-6.py-5{padding: 3rem!important;}
  3576. .portfolio.portfolio-gallery{
  3577. line-height: 1.6;
  3578. }
  3579. .portfolio.portfolio-gallery .tab-content .portfolio-thumbnail {
  3580. margin: 0px;
  3581. border-radius: 0;
  3582. }
  3583. .portfolio.portfolio-gallery .card-img-top {
  3584. border-top-right-radius: 0;
  3585. border-top-left-radius: 0;
  3586. }
  3587. /*--------------------------------------------------------------
  3588. Sticky Menu Classes
  3589. --------------------------------------------------------------*/
  3590. .stickymenu{
  3591. position: fixed;
  3592. top: 0;
  3593. width: 100%;
  3594. background-color: rgba(255,255,255,0.93);
  3595. box-shadow: 0 3px 5px rgba(0,0,0,0.05);
  3596. z-index: 1000;
  3597. }
  3598. body.admin-bar .stickymenu{
  3599. top: 32px;
  3600. }
  3601. @media (max-width: 600px){
  3602. body.admin-bar .stickymenu{
  3603. top: 0;
  3604. }
  3605. }
  3606. .stickymenu1{
  3607. display: none;
  3608. position: fixed;
  3609. top: 0;
  3610. width: 100%;
  3611. background-color: rgba(255,255,255,0.93);
  3612. box-shadow: 0 3px 5px rgba(0,0,0,0.05);
  3613. z-index: 1000;
  3614. }
  3615. .navbar.shrink{transition: all 0.4s ease-in-out;
  3616. -webkit-transition: all 0.4s ease-in-out;
  3617. -moz-transition: all 0.4s ease-in-out ;
  3618. background-color: rgba(255,255,255,0.93);}
  3619. .navbar.shrink1 {
  3620. padding-top: 0rem;
  3621. padding-bottom: 0rem;
  3622. width: 100%;
  3623. box-shadow: 0 3px 5px rgba(0,0,0,0.05);
  3624. z-index: 1000;
  3625. position: fixed;
  3626. top: 0;
  3627. }
  3628. .shrink1{
  3629. width: 100%;
  3630. box-shadow: 0 3px 5px rgba(0,0,0,0.05);
  3631. z-index: 1000;
  3632. position: fixed;
  3633. top: 0;
  3634. }
  3635. /*--------------------------------------------------------------
  3636. Footer Layout
  3637. --------------------------------------------------------------*/
  3638. .main-footer {
  3639. background-color: #061018;
  3640. margin: 0;
  3641. padding: 0;
  3642. position: relative;
  3643. border-top: 0px solid #828282;
  3644. background-image: url(assets/images/bg/bg-img.jpg);
  3645. background-repeat: no-repeat;
  3646. background-position: center center;
  3647. background-attachment: fixed;
  3648. }
  3649. .main-footer .footer-overlay{
  3650. display: block;
  3651. height: 100%;
  3652. position: absolute;
  3653. right: 0;
  3654. top:0;
  3655. width: 100%;
  3656. z-index: 0;
  3657. background-color: rgba(1, 7, 12, 0.50);
  3658. }
  3659. .site-info .footer-sidebar{
  3660. padding: 0rem;
  3661. }
  3662. .site-info .footer-sidebar.text-center .widget .widget-title:after {
  3663. margin: 0 auto;
  3664. }
  3665. @media (min-width: 1200px){
  3666. .site-info .footer-sidebar .right-info .widget .widget-title:after {
  3667. left: 0;
  3668. position: absolute;
  3669. }
  3670. .site-info .right-info{text-align: left;}
  3671. }
  3672. .site-info .copyright{padding-bottom: 1rem;}
  3673. .site-info ul.site-privacy {float: left;margin-bottom: 0;}
  3674. .site-info ul.site-privacy li a {color: #fff ;font-size: 0.938rem;font-weight: 100;}
  3675. .site-info ul.site-privacy li {
  3676. display: inline-block;
  3677. margin-right: 20px;
  3678. position: relative;
  3679. color: #fff;
  3680. font-size: 14px;
  3681. line-height: initial;
  3682. }
  3683. .site-info ul.site-privacy li::before {
  3684. content: "";
  3685. width: 4px;
  3686. height: 1px;
  3687. background: #fff;
  3688. right: -11px;
  3689. top: 50%;
  3690. position: absolute;
  3691. transform: translateY(-50%);
  3692. }
  3693. .site-info ul.site-privacy li:first-child::before {
  3694. margin-right: 0;
  3695. content: none;
  3696. }
  3697. .site-info span a {font-weight: 500;/*color: #fff ;*/}
  3698. @media only screen and (max-width: 767px) {
  3699. .site-info ul.site-privacy , .site-info span {
  3700. text-align: center;
  3701. margin-top: 10px;
  3702. float: none;
  3703. }
  3704. }
  3705. @media (max-width: 600px){
  3706. .site-info .footer-sidebar{
  3707. text-align: unset;
  3708. }
  3709. .site-info .footer-sidebar .widget .widget-title:after {
  3710. margin: 0 auto;
  3711. }}
  3712. .site-info .footer-sidebar.text-center .widget .widget-title:after {
  3713. margin: 0 auto;
  3714. }
  3715. .site-info .footer-sidebar .nav-menu li {
  3716. display: inline-block;
  3717. margin-left: 15px;
  3718. }
  3719. /*--------------------------------------------------------------
  3720. contact Layout 1
  3721. --------------------------------------------------------------*/
  3722. @media (min-width: 768px){
  3723. .contact1 .section-header,.contact2 .section-header,.contact3 .section-header {
  3724. margin: 0rem 0rem 0.8rem;
  3725. }}
  3726. .contact1 .contact-form-map{margin: 0rem 0rem 4.375rem;}
  3727. .contact2 .contact-detail-area {
  3728. padding: 3.25rem 0.5rem 2.625rem;
  3729. margin-top: 2rem;
  3730. }
  3731. .contact-area img{
  3732. max-width: 100px;
  3733. }
  3734. /*Boxed layout*/
  3735. @media (min-width: 1200px){
  3736. body.boxed {
  3737. width: 1210px;
  3738. -webkit-box-shadow: 0 0 10px 0 rgba(48, 48, 48, 0.5);
  3739. box-shadow: 0 0 10px 0 rgba(48, 48, 48, 0.5);
  3740. margin: 30px auto;
  3741. position: relative;
  3742. background: url(assets/images/bg-pattern/bg-img1.png) repeat fixed;
  3743. }
  3744. }
  3745. /*Author & Comment form*/
  3746. .blog-author {
  3747. background-color: #FFFFFF;
  3748. border: 1px solid #ECEFF3;
  3749. margin: 0 0 5rem;
  3750. padding: 2.188rem 1.875rem 1.875rem;
  3751. }
  3752. .blog-author.media .avatar img {
  3753. border-radius: 50%!important;
  3754. }
  3755. .blog-author .avatar {
  3756. margin: 0 0 0px 2.5rem;
  3757. height: 12.5rem;
  3758. width: 12.5rem;
  3759. }
  3760. .blog-author {
  3761. background-color: #FFFFFF;
  3762. border: 1px solid #ECEFF3;
  3763. margin: 0 0 5rem;
  3764. padding: 2.188rem 1.875rem 1.875rem;
  3765. }
  3766. .comment-section {
  3767. background-color: #FFFFFF;
  3768. margin: 0 0 3rem;
  3769. padding: 10px 20px 10px 20px;
  3770. }
  3771. .pull-left-comment {
  3772. float: right;
  3773. margin-left: 1.875rem;
  3774. width: 6.25rem;
  3775. height: 6.25rem;
  3776. }
  3777. .comment-reply-title {
  3778. margin: 0 0 1.875rem;
  3779. border-bottom: 1px solid #323232;
  3780. padding-bottom: 0.625rem;
  3781. }
  3782. .media-body h5 {
  3783. margin: 0;
  3784. }
  3785. @media only screen and (max-width: 600px){
  3786. .blog-author .avatar {
  3787. width: 8.5rem;
  3788. height: 8.5rem;
  3789. }
  3790. }
  3791. .comment-detail {
  3792. border-bottom: 1px solid #ECEFF3;
  3793. margin: 0 0 2.813rem;
  3794. padding-bottom: 2.25rem;
  3795. }
  3796. form#commentform label {
  3797. display: inline!important;
  3798. }
  3799. .comment-form {
  3800. margin-bottom: 3.75rem;
  3801. }
  3802. /*Author & Comment form*/
  3803. .wpgmza-google-maps-api-error-overlay{
  3804. background:unset!important;
  3805. }
  3806. img.custom-logo{
  3807. width: 100%;
  3808. }
  3809. .page-breadcrumb a{
  3810. color: #ffffff;
  3811. }
  3812. /*
  3813. .site-info li.menu-item::before{
  3814. content: "\f105";
  3815. font-family: FontAwesome;
  3816. margin-right: 5px;
  3817. margin-left: 1px;
  3818. }*/
  3819. .site-info li.menu-item{
  3820. list-style: none;
  3821. }
  3822. .header-sidebar .widgettitle{
  3823. color: #ffffff;
  3824. }
  3825. .header-sidebar .textwidget p{
  3826. color: #ffffff;
  3827. }
  3828. .section-space.sponsors{
  3829. background-color: #f8f8f8;
  3830. }
  3831. /*.entry-header h4 a {
  3832. font-size: 2rem !important;
  3833. }*/
  3834. .scroll-up a:hover {
  3835. color: #fff;
  3836. }
  3837. .owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
  3838. display: none;
  3839. }
  3840. /*===================================================================================*/
  3841. /* 25.0 Accessibility
  3842. /*===================================================================================*/
  3843. /* Text meant only for screen readers. */
  3844. .screen-reader-text {
  3845. clip: rect(1px, 1px, 1px, 1px);
  3846. position: absolute !important;
  3847. height: 1px;
  3848. width: 1px;
  3849. overflow: hidden;
  3850. word-wrap: normal !important;
  3851. /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  3852. }
  3853. .screen-reader-text:focus {
  3854. background-color: #f1f1f1;
  3855. border-radius: 3px;
  3856. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  3857. clip: auto !important;
  3858. color: #21759b;
  3859. display: block;
  3860. font-size: 14px;
  3861. font-size: 0.875rem;
  3862. font-weight: bold;
  3863. height: auto;
  3864. right: 5px;
  3865. line-height: normal;
  3866. padding: 15px 23px 14px;
  3867. text-decoration: none;
  3868. top: 5px;
  3869. width: auto;
  3870. z-index: 100000;
  3871. /* Above WP toolbar. */
  3872. }
  3873. /*===================================================================================*/
  3874. /* Mega Menu CSS
  3875. /*===================================================================================*/
  3876. @media (min-width: 992px){
  3877. .hp-mega-menu{position: static !important;}
  3878. .navbar ul li.hp-mega-menu ul .dropdown-menu{display:block !important; padding: .5rem 0;}
  3879. .navbar ul li.hp-mega-menu a {position: relative;padding: .1rem 1.000rem;}
  3880. .navbar ul > li.hp-mega-menu > ul {width: 100% !important;}
  3881. .navbar ul li.col-two ul > li {width: 50%;}
  3882. .navbar ul li.col-three ul > li {width: 33.33%;}
  3883. .navbar ul li.col-four ul > li {width: 25%;}
  3884. .navbar ul li.hp-mega-menu ul > li {float: right !important;}
  3885. .navbar ul > li.hp-mega-menu > ul > li > a {font-size: 20px;font-weight: 700;cursor: auto;padding-bottom: 0.625rem;}
  3886. .navbar ul li.hp-mega-menu ul li .dropdown-menu {left: auto !important;right: auto !important;padding-bottom: 0;padding-top: 0;}
  3887. .nav.navbar ul li.hp-mega-menu ul li .dropdown-menu {position: relative;opacity: 1;transform: scaleY(1);}
  3888. .navbar ul li.hp-mega-menu ul li ul.dropdown-menu {opacity: 1 !important;transform: scaleY(1);visibility: visible;box-shadow: none;}
  3889. .navbar ul li.hp-mega-menu ul li ul.dropdown-menu {display: block;width: 99%;margin-top: auto !important;}
  3890. .navbar ul li.hp-mega-menu ul li ul li {border: none;}
  3891. .navbar ul li.hp-mega-menu ul li ul li {width: 100% !important;float: none !important;margin: 0;}
  3892. .navbar ul li.hp-mega-menu ul li ul li:last-child a {border: none;}
  3893. .navbar ul li.hp-mega-menu ul{
  3894. max-width: 1140px !important;
  3895. margin-right:auto !important;
  3896. right:20% !important;
  3897. left:20% !important;
  3898. top:100% !important;
  3899. }
  3900. .navbar ul li.hp-mega-menu .sub-arrow{display:none;}
  3901. .navbar ul li.hp-mega-menu ul li .dropdown-menu {
  3902. left: auto !important;
  3903. right: auto !important;
  3904. padding-bottom: 0;
  3905. padding-top: 0;
  3906. }
  3907. .navbar ul li.hp-mega-menu ul li .dropdown-menu {
  3908. position: relative;
  3909. opacity: 1;
  3910. transform: scaleY(1);
  3911. }
  3912. .navbar .nav .dropdown-menu {
  3913. border-bottom: unset !important;
  3914. }}
  3915. @media (min-width: 992px) and (max-width: 1199.98px) {
  3916. .navbar ul li.hp-mega-menu ul {
  3917. max-width: 925px !important;
  3918. right: 5% !important;
  3919. left: 5% !important;
  3920. }}
  3921. .mega-sub-menu.pull-right{
  3922. right: auto !important;
  3923. left: 0px !important;
  3924. padding: 0px !important;
  3925. width: 324px !important;
  3926. border-radius: 0px !important;
  3927. border: 0 !important;
  3928. margin: 0px !important;
  3929. background-color: #fff !important;
  3930. box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 12px 0 rgba(0, 0, 0, 0.12) !important;
  3931. padding: 7px 14px !important;
  3932. }
  3933. .mega-sub-menu.pull-right input[type="search"] {
  3934. width: 90% !important;
  3935. }
  3936. .mega-sub-menu.pull-right .search-form input[type="submit"] {
  3937. top: 10px !important;
  3938. }
  3939. @media (max-width: 600px){
  3940. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link,#mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  3941. font-size: 12px;
  3942. font-weight: 600
  3943. }
  3944. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link{
  3945. font-size: 12px;
  3946. font-weight: 700
  3947. }
  3948. }
  3949. @media only screen and (max-width: 600px){
  3950. .mega-cart,.mega-search {
  3951. display: inline-block !important;
  3952. margin-top: 15px !important;
  3953. }
  3954. .mega-search{
  3955. padding-left: 25px !important;
  3956. }
  3957. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary li.mega-menu-item.mega-search.mega-toggle-on > ul.mega-sub-menu {
  3958. right: 0 !important;
  3959. left: auto !important;
  3960. width: 300px !important;
  3961. top: 37px !important;
  3962. position: absolute;
  3963. }
  3964. .mega-menu-item.mega-menu-item-type-post_type,.mega-menu-item.mega-menu-item-type-custom{
  3965. border-bottom: 1px solid #ededed55 !important;
  3966. }
  3967. }
  3968. #blg_masonary_layout #loadMore
  3969. {
  3970. position: absolute;
  3971. bottom: 0;
  3972. }
  3973. .masonry .blog-not-found{
  3974. border-top: 1px solid #eceff3;
  3975. padding-top: 30px;
  3976. }
  3977. /*@media (min-width: 768px){
  3978. .mega-menu-spice-software-press-primary .navbar-expand-lg .navbar-toggler {
  3979. display: none;
  3980. }
  3981. .mega-menu-spice-software-press-primary .navbar-expand-lg .navbar-collapse {
  3982. display: -webkit-box!important;
  3983. display: -ms-flexbox!important;
  3984. display: flex!important;
  3985. -ms-flex-preferred-size: auto;
  3986. flex-basis: auto;
  3987. }}*/
  3988. @media only screen and (min-width: 768px) {
  3989. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
  3990. line-height: inherit;
  3991. display: table-cell;
  3992. vertical-align: middle;
  3993. }
  3994. }
  3995. @media only screen and (max-width: 768px) {
  3996. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
  3997. display: none;
  3998. }
  3999. }
  4000. @media only screen and (max-width: 768px) {
  4001. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-item {
  4002. display: list-item;
  4003. margin: 0;
  4004. clear: both ;
  4005. border: 0;
  4006. }
  4007. @media only screen and (max-width: 768px){}
  4008. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-item > a.mega-menu-link {
  4009. border-radius: 0;
  4010. border: 0;
  4011. margin: 0;
  4012. line-height: 40px;
  4013. height: 40px;
  4014. padding: 0 10px;
  4015. background: transparent;
  4016. text-align: right;
  4017. color: #061018;
  4018. font-size: 12px;
  4019. }}
  4020. @media only screen and (max-width: 768px){
  4021. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary li.mega-menu-item > ul.mega-sub-menu {
  4022. display: none;
  4023. visibility: visible;
  4024. opacity: 1;
  4025. }}
  4026. @media only screen and (max-width: 768px){
  4027. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
  4028. float: left;
  4029. }}
  4030. @media only screen and (max-width: 768px) {
  4031. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
  4032. border-top-right-radius: 0;
  4033. border-top-left-radius: 0;
  4034. }
  4035. }
  4036. @media (max-width: 768px){
  4037. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  4038. font-size: 12px;
  4039. font-weight: 600;
  4040. }}
  4041. @media only screen and (max-width: 768px){
  4042. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
  4043. clear: both;
  4044. }}
  4045. @media only screen and (max-width: 768px){
  4046. .mega-menu-item.mega-menu-item-type-post_type, .mega-menu-item.mega-menu-item-type-custom {
  4047. border-bottom: 1px solid #ededed55 !important;
  4048. }}
  4049. @media only screen and (max-width: 768px){
  4050. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-flyout ul.mega-sub-menu {
  4051. float: right;
  4052. position: static;
  4053. width: 100%;
  4054. padding: 0;
  4055. border: 0;
  4056. border-radius: 0;
  4057. }}
  4058. @media only screen and (min-width: 768px){
  4059. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-item > a.mega-menu-link:hover {
  4060. background: rgba(34, 34, 34, 0);
  4061. /*color: #2d6ef8;*/
  4062. font-weight: bold;
  4063. text-decoration: none;
  4064. border-color: rgba(34, 34, 34, 0);
  4065. }}
  4066. @media only screen and (max-width: 768px){
  4067. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
  4068. color: #2d6ef8;
  4069. background: rgba(255, 255, 255, 0.1);
  4070. }}
  4071. @media only screen and (max-width: 768px){
  4072. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
  4073. display: block;
  4074. }
  4075. }
  4076. @media only screen and (max-width: 768px){
  4077. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
  4078. content: '\f343';
  4079. }}
  4080. @media only screen and (min-width: 768px){
  4081. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
  4082. width: 33.33333%;
  4083. }}
  4084. @media only screen and (min-width: 768px){
  4085. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
  4086. opacity: 0;
  4087. transform: translate(0, 10px);
  4088. transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
  4089. }}
  4090. @media only screen and (max-width: 768px){
  4091. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
  4092. border: 0;
  4093. padding: 10px;
  4094. border-radius: 0;
  4095. }
  4096. }
  4097. @media only screen and (min-width: 768px){
  4098. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
  4099. opacity: 1;
  4100. transform: translate(0, 0);
  4101. }}
  4102. @media only screen and (max-width: 768px){
  4103. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
  4104. float: right;
  4105. position: static;
  4106. width: 100%;
  4107. }}
  4108. @media only screen and (max-width: 768px){
  4109. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
  4110. width: 100%;
  4111. clear: both;
  4112. }}
  4113. @media (max-width: 768px){
  4114. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  4115. font-size: 12px;
  4116. font-weight: 700;
  4117. }}
  4118. @media only screen and (max-width: 768px){
  4119. .mega-search {
  4120. padding-left: 25px !important;
  4121. }}
  4122. @media only screen and (max-width: 768px){
  4123. .mega-cart, .mega-search {
  4124. display: inline-block !important;
  4125. margin-top: 15px !important;
  4126. }}
  4127. @media only screen and (max-width: 768px){
  4128. #mega-menu-wrap-spice-software-press-primary #mega-menu-spice-software-press-primary li.mega-menu-item.mega-search.mega-toggle-on > ul.mega-sub-menu {
  4129. right: 0 !important;
  4130. left: auto !important;
  4131. width: 300px !important;
  4132. top: 37px !important;
  4133. position: absolute;
  4134. }}
  4135. /*@media (max-width:600px){
  4136. .content-center {
  4137. width: unset;
  4138. }}*/
  4139. .navbar ul li a:after{
  4140. text-decoration: none !important;
  4141. background-image: linear-gradient(currentColor, currentColor) !important;
  4142. background-position: 100% 100% !important;
  4143. background-repeat: no-repeat !important;
  4144. background-size: 0% 2px !important;
  4145. transition: background-size .3s !important;
  4146. }
  4147. .navbar ul li a:hover:after, .navbar ul li a:focus:after {
  4148. background-size: 100% 2px !important;
  4149. }
  4150. .taxonomy-list a {
  4151. color: #fff;
  4152. }
  4153. .taxonomy-list a:hover {
  4154. color: #ee591f;
  4155. }
  4156. .woocommerce button[type="submit"] {
  4157. display: inline-block;
  4158. font-weight: 400;
  4159. text-align: center;
  4160. white-space: nowrap;
  4161. vertical-align: middle;
  4162. -webkit-user-select: none;
  4163. -moz-user-select: none;
  4164. -ms-user-select: none;
  4165. user-select: none;
  4166. /*border: 1px solid transparent;
  4167. padding: 10px;*/
  4168. font-size: 1rem;
  4169. line-height: 1.5;
  4170. border-radius: .25rem;
  4171. transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  4172. }
  4173. .footer-sidebar .woocommerce ul.product_list_widget li span {
  4174. padding-right: 10px;
  4175. }
  4176. .footer-sidebar .widget ins {
  4177. color: #1c314c;
  4178. }
  4179. #loadMore
  4180. {
  4181. background-color: #fff;
  4182. border: 1px solid #e9e9e9;
  4183. font-size: 0.875rem;
  4184. display: inline-block;
  4185. padding: 0.188rem 1.25rem;
  4186. margin: 0 0 0.625rem 0.500rem;
  4187. }
  4188. .back-img,.video-slider.home-section.back-img{
  4189. position: relative;
  4190. background-color: #fff;
  4191. background-repeat: no-repeat;
  4192. background-position: center center;
  4193. width: 100%;
  4194. z-index: 0;
  4195. background-size: cover;
  4196. height: 37.5rem !important;
  4197. }
  4198. .section-space.blog .entry-content a:not(.more-link),
  4199. .section-space .comment-section .media-body a:not(.comment-reply-link){
  4200. text-decoration: underline!important;
  4201. font-weight: bold;
  4202. }
  4203. .woocommerce-cart .blog .post .entry-content a,
  4204. .woocommerce-checkout .blog .post .entry-content a,
  4205. .woocommerce-account .blog .post .entry-content a,
  4206. .comment-section a.comment-reply-link{
  4207. text-decoration: none!important;
  4208. }
  4209. @media (max-width: 576px){
  4210. .woocommerce-page table.cart td.actions .coupon .input-text+.button {
  4211. float: right;
  4212. margin-top: 5px;
  4213. }
  4214. }
  4215. .footer-sidebar .textwidget a{
  4216. text-decoration: underline!important;
  4217. }
  4218. @media (min-width:1200px) {
  4219. .boxed .stickymenu,.boxed .stickymenu1{ width: 1210px;}
  4220. }
  4221. .entry-content a {
  4222. text-decoration: underline!important;
  4223. }
  4224. .woocommerce-cart .entry-content a,
  4225. .woocommerce-checkout .entry-content a,
  4226. .woocommerce-account .entry-content a,
  4227. .comment-section a.comment-reply-link,.woocommerce-account .page .post .entry-content a,
  4228. .woocommerce-page .page .post .entry-content a{
  4229. text-decoration: none!important;
  4230. }
  4231. .blog .post .entry-content a.more-link{
  4232. text-decoration: none!important;
  4233. }
  4234. @media (max-width: 576px){
  4235. .woocommerce-page table.cart td.actions .coupon .input-text+.button {
  4236. float: right;
  4237. margin-top: 5px;
  4238. }
  4239. }
  4240. #myDiv{
  4241. margin: 30px 0;
  4242. }
  4243. /*.col-md-6.port-view {
  4244. margin: 0;
  4245. padding: 0;
  4246. }*/
  4247. @media (min-width: 768px)
  4248. {
  4249. .section-header,.page-template-template-testimonial-6-php .testimonial .section-header{
  4250. margin: 0.8rem 14rem;
  4251. }
  4252. }
  4253. .section-header {
  4254. margin: 0;
  4255. }
  4256. .woocommerce .products .star-rating{
  4257. display: inline-block;
  4258. }
  4259. @media (max-width: 500px) {
  4260. .error-page {
  4261. padding: 2rem 0 3rem;
  4262. }
  4263. }
  4264. @media (min-width: 992px) {
  4265. .navbar.nav-rgt .container {
  4266. display: block;
  4267. }
  4268. }
  4269. .entry-content a.wp-block-button__link{
  4270. color: #fff;
  4271. }
  4272. .media.comment-box{
  4273. display:block;
  4274. }
  4275. .blog .standard-view article .entry-header {
  4276. word-break: break-word;
  4277. }
  4278. .breadcrumb_last {
  4279. word-wrap: break-word;
  4280. }
  4281. .blog .post .entry-content a, .page .post .entry-content a,
  4282. .page .about-content a,.page .about-section a,.page:not(.page-template-template-business-php,.page-template-template-service) .services a{text-decoration:underline!important;}
  4283. .testi-grid{margin-top: 30px;}
  4284. /*===================================================================================*/
  4285. /* PRE LOADERS 1
  4286. /*===================================================================================*/
  4287. /* Loader 1 css */
  4288. div#preloader1 {
  4289. margin: auto;
  4290. position: fixed;
  4291. width: 100%;
  4292. height: 100%;
  4293. background-color: #fff;
  4294. z-index: 9999999;
  4295. display: flex;
  4296. align-content: center;
  4297. justify-content: center;
  4298. }
  4299. .spice-software-preloader-cube {
  4300. top: 40%;
  4301. right: 50%;
  4302. margin-right: -25px;
  4303. margin-top: -25px;
  4304. width: 50px;
  4305. height: 50px;
  4306. position: absolute;
  4307. -webkit-transform: rotateZ(45deg);
  4308. transform: rotateZ(45deg);
  4309. }
  4310. .spice-software-preloader-cube .spice-software-cube {
  4311. float: right;
  4312. width: 50%;
  4313. height: 50%;
  4314. position: relative;
  4315. -webkit-transform: scale(1.1);
  4316. -ms-transform: scale(1.1);
  4317. transform: scale(1.1);
  4318. }
  4319. .spice-software-preloader-cube .spice-software-cube2 {
  4320. -webkit-transform: scale(1.1) rotateZ(90deg);
  4321. transform: scale(1.1) rotateZ(90deg);
  4322. }
  4323. .spice-software-preloader-cube .spice-software-cube4 {
  4324. -webkit-transform: scale(1.1) rotateZ(270deg);
  4325. transform: scale(1.1) rotateZ(270deg);
  4326. }
  4327. .spice-software-preloader-cube .spice-software-cube3 {
  4328. -webkit-transform: scale(1.1) rotateZ(180deg);
  4329. transform: scale(1.1) rotateZ(180deg);
  4330. }
  4331. .spice-software-preloader-cube .spice-software-cube:before {
  4332. content: '';
  4333. position: absolute;
  4334. top: 0;
  4335. right: 0;
  4336. width: 100%;
  4337. height: 100%;
  4338. -webkit-animation: hp-foldCubeAngle 2.4s infinite linear both;
  4339. animation: hp-foldCubeAngle 2.4s infinite linear both;
  4340. -webkit-transform-origin: 100% 100%;
  4341. -ms-transform-origin: 100% 100%;
  4342. transform-origin: 100% 100%;
  4343. }
  4344. .spice-software-preloader-cube .spice-software-cube2:before {
  4345. -webkit-animation-delay: .3s;
  4346. animation-delay: .3s;
  4347. }
  4348. .spice-software-preloader-cube .spice-software-cube4:before {
  4349. -webkit-animation-delay: .9s;
  4350. animation-delay: .9s;
  4351. }
  4352. .spice-software-preloader-cube .spice-software-cube3:before {
  4353. -webkit-animation-delay: .6s;
  4354. animation-delay: .6s;
  4355. }
  4356. @keyframes hp-foldCubeAngle{0%,10%{-webkit-transform:perspective(140px) rotateX(-180deg);transform:perspective(140px) rotateX(-180deg);opacity:0}25%,75%{-webkit-transform:perspective(140px) rotateX(0);transform:perspective(140px) rotateX(0);opacity:1}100%,90%{-webkit-transform:perspective(140px) rotateY(180deg);transform:perspective(140px) rotateY(180deg);opacity:0}}
  4357. @media (min-width: 1200px){
  4358. body.boxed div#preloader { width: 1210px; }}
  4359. /*===================================================================================*/
  4360. /* PRE LOADERS 2
  4361. /*===================================================================================*/
  4362. #preloader2{
  4363. margin: auto;
  4364. position: fixed;
  4365. z-index: 9999999;
  4366. display: flex;
  4367. width: 100%;
  4368. height: 100%;
  4369. background-color: #fff;
  4370. }
  4371. #preloader2 .square{
  4372. position: relative;
  4373. width: 50px;
  4374. height: 50px;
  4375. margin: 0 auto;
  4376. border-radius: 4px;
  4377. animation-fill-mode: both;
  4378. animation: motion 2.5s infinite cubic-bezier(0.89, 0.03, 0.06, 1.5);
  4379. }
  4380. .loader-2{
  4381. position: fixed;
  4382. top: 48%;
  4383. right: 48%;
  4384. width: 77px;
  4385. height: 67px;
  4386. }
  4387. #preloader2 .path{
  4388. height: 10px;
  4389. width: 110px;
  4390. overflow: hidden;
  4391. position: absolute;
  4392. bottom: 0;
  4393. }
  4394. #preloader2 .path > div{
  4395. background: #444;
  4396. width: 10px;
  4397. height: 10px;
  4398. border-radius: 2px;
  4399. margin: 0 15px;
  4400. position: absolute;
  4401. top: 0;
  4402. right: 0;
  4403. animation-fill-mode: both;
  4404. animation: dynamic 5s infinite cubic-bezier(0.89, 0.03, 0.06, 1.5);
  4405. }
  4406. #preloader2 .path > div:nth-child(1){ right: 40px; }
  4407. #preloader2 .path > div:nth-child(2){ right: 80px; }
  4408. #preloader2 .path > div:nth-child(3){ right: 120px; }
  4409. #preloader2 .path > div:nth-child(4){ right: 160px; }
  4410. #preloader2 .path > div:nth-child(5){ right: 200px; }
  4411. #preloader2 .path > div:nth-child(6){ right: 240px; }
  4412. #preloader2 .path > div:nth-child(7){ right: 280px; }
  4413. @keyframes motion{
  4414. 50%{ transform: rotate(90deg); }
  4415. 100%{ transform: rotate(180deg); }
  4416. }
  4417. @keyframes dynamic{
  4418. 0%{ transform: translateX(40px); }
  4419. 25%{ transform: translateX(80px); }
  4420. 50%{ transform: translateX(120px); }
  4421. 75%{ transform: translateX(160px); }
  4422. 100%{ transform: translateX(200px); }
  4423. }
  4424. /* End Of Loader 2 css */
  4425. /*===================================================================================*/
  4426. /* PRE LOADERS 3
  4427. /*===================================================================================*/
  4428. #preloader3{
  4429. width: 100%;
  4430. height: 100%;
  4431. background-color: #000;
  4432. position: fixed;
  4433. z-index: 1000;
  4434. }
  4435. .loader{
  4436. width: 15em;
  4437. height: 15em;
  4438. margin: 0 auto;
  4439. border-radius: 50%;
  4440. position: relative;
  4441. animation: hypnosis 5s infinite linear;
  4442. top: 30%;
  4443. }
  4444. .loader div{
  4445. font-size: 1.5em;
  4446. width: 10em;
  4447. height: 10em;
  4448. border-radius: 50%;
  4449. transform-origin: 5em 5em;
  4450. position: relative;
  4451. }
  4452. .loader div span,
  4453. .loader div span:before,
  4454. .loader div span:after {
  4455. border-top: .3em solid white;
  4456. border-radius: 50%;
  4457. position: absolute;
  4458. right: .5;
  4459. animation: color 10s infinite;
  4460. }
  4461. .loader div span{
  4462. width: 9em;
  4463. height: 9em;
  4464. transform-origin: 5em 2.9em;
  4465. top: 0em;
  4466. }
  4467. .loader div span:before,
  4468. .loader div span:after{
  4469. content: "";
  4470. }
  4471. .loader div span:before{
  4472. width: 8em;
  4473. height: 8em;
  4474. border: 0 solid white;
  4475. border-width: 0 0 0 .3em;
  4476. left: .1em;
  4477. top: -.2em;
  4478. }
  4479. .loader div span:after{
  4480. width: 6.5em;
  4481. height: 6.5em;
  4482. border: 0 solid white;
  4483. border-width: 0 0 .3em 0;
  4484. left: .4em;
  4485. bottom: 1.2em;
  4486. }
  4487. .loader div span:nth-child(2){
  4488. font-size: .6em;
  4489. transform-origin: 8.3em 4.8em;
  4490. transform: rotate(-90deg);
  4491. }
  4492. .loader div span:nth-child(3){
  4493. font-size: .2em;
  4494. transform-origin: 8em 8.7em;
  4495. transform: rotate(180deg);
  4496. }
  4497. .loader div:nth-child(2),
  4498. .loader div:nth-child(3),
  4499. .loader div:nth-child(4){
  4500. position: absolute;
  4501. top: 0;
  4502. right: 0;
  4503. }
  4504. .loader div:nth-child(3),
  4505. .loader div:nth-child(4){
  4506. animation: hypnosis 4s linear infinite reverse;
  4507. }
  4508. .loader div:nth-child(2){ transform: rotate(90deg); }
  4509. .loader div:nth-child(3){ animation-delay: -2s; }
  4510. .loader div:nth-child(4){ animation-delay: -4s; }
  4511. .loader div:nth-child(2) span,
  4512. .loader div:nth-child(2) span:before,
  4513. .loader div:nth-child(2) span:after{
  4514. border-color: skyblue;
  4515. animation-delay: 2.5s;
  4516. }
  4517. .loader div:nth-child(3) span,
  4518. .loader div:nth-child(3) span:before,
  4519. .loader div:nth-child(3) span:after{
  4520. border-color: crimson;
  4521. animation-delay: 2s;
  4522. }
  4523. .loader div:nth-child(4) span,
  4524. .loader div:nth-child(4) span:before,
  4525. .loader div:nth-child(4) span:after{
  4526. border-color: gold;
  4527. animation-delay: .5s;
  4528. }
  4529. @keyframes hypnosis{
  4530. 100%{ transform: rotate(360deg); }
  4531. }
  4532. @keyframes color{
  4533. 10%{ border-color: #845EC2; }
  4534. 20%{ border-color: #FEF950; }
  4535. 30%{ border-color: #FF6F91; }
  4536. 40%{ border-color: #17A554; }
  4537. 50%{ border-color: #33A896; }
  4538. 60%{ border-color: #2247A9; }
  4539. 70%{ border-color: #E8353C; }
  4540. 80%{ border-color: #F3F3CC; }
  4541. 90%{ border-color: #4FFBDF; }
  4542. }
  4543. /* End Of Loader One css */
  4544. /*===================================================================================*/
  4545. /* PRE LOADERS 4
  4546. /*===================================================================================*/
  4547. #preloader4{
  4548. width: 100%;
  4549. height: 100%;
  4550. background-color: #000;
  4551. position: fixed;
  4552. z-index: 1000;
  4553. }
  4554. .loader-4
  4555. {
  4556. right: 45%;
  4557. top: 40%;
  4558. width: 100px;
  4559. height: 100px;
  4560. position: absolute;
  4561. }
  4562. .loader-4 .loader-inner-1,
  4563. .loader-4 .loader-inner-2,
  4564. .loader-4 .loader-inner-3,
  4565. .loader-4 .loader-inner-4
  4566. {
  4567. display: block;
  4568. width: 20px;
  4569. height: 20px;
  4570. border-radius: 20px;
  4571. position: absolute;
  4572. }
  4573. .loader-4 .loader-inner-1:before,
  4574. .loader-4 .loader-inner-2:before,
  4575. .loader-4 .loader-inner-3:before,
  4576. .loader-4 .loader-inner-4:before
  4577. {
  4578. content:"";
  4579. display: block;
  4580. width: 20px;
  4581. height: 20px;
  4582. border-radius: 20px;
  4583. position: absolute;
  4584. left: 0;
  4585. animation-name: loading-1;
  4586. animation-iteration-count: infinite;
  4587. animation-direction: normal;
  4588. animation-duration: 2s;
  4589. }
  4590. .loader-4 .loader-inner-1
  4591. {
  4592. top: 0;
  4593. right: 0;
  4594. transform: rotate(70deg);
  4595. }
  4596. .loader-4 .loader-inner-1:before
  4597. {
  4598. background: #FCE6CF;
  4599. }
  4600. .loader-4 .loader-inner-2
  4601. {
  4602. top: 0;
  4603. left: 0;
  4604. transform: rotate(160deg);
  4605. }
  4606. .loader-4 .loader-inner-2:before
  4607. {
  4608. background: #1E3C72;
  4609. }
  4610. .loader-4 .loader-inner-3
  4611. {
  4612. bottom: 0;
  4613. left: 0;
  4614. transform: rotate(-110deg);
  4615. }
  4616. .loader-4 .loader-inner-3:before
  4617. {
  4618. background: #ffcf0e;
  4619. }
  4620. .loader-4 .loader-inner-4
  4621. {
  4622. bottom: 0;
  4623. right: 0;
  4624. transform: rotate(-20deg);
  4625. }
  4626. .loader-4 .loader-inner-4:before
  4627. {
  4628. background: #ff2350;
  4629. }
  4630. @keyframes loading-1
  4631. {
  4632. 0%
  4633. {
  4634. width: 20px;
  4635. left: 0;
  4636. }
  4637. 30%
  4638. {
  4639. width: 120px;
  4640. left: -100px;
  4641. }
  4642. 60%
  4643. {
  4644. width: 20px;
  4645. left: -100px;
  4646. }
  4647. }
  4648. .header_menu{
  4649. width: 100%;
  4650. height: 100px;
  4651. display: flex;
  4652. flex-direction: row;
  4653. align-items: center;
  4654. /* border:1px solid red;*/
  4655. }
  4656. .logo{
  4657. width: 20%;
  4658. text-align: center;
  4659. }
  4660. .logo img{
  4661. height: 300px;
  4662. }
  4663. .menu_list{
  4664. width: 80%;
  4665. text-align: left;
  4666. padding-left: 50px;
  4667. }
  4668. .menu_list li{
  4669. display: inline-block;
  4670. text-transform: uppercase;
  4671. list-style: none;
  4672. letter-spacing: 2px;
  4673. padding-right: 50px;
  4674. }
  4675. .menu_list li a{
  4676. color:rgba(255, 255, 255, .8);
  4677. text-decoration: none;
  4678. }
  4679. .menu_list li a:hover{
  4680. color:orange;
  4681. }
  4682. .header_content{
  4683. text-transform: uppercase;
  4684. width: 100%;
  4685. height: 200px;
  4686. position: absolute;
  4687. top: 50%;
  4688. right: 50%;
  4689. color:rgba(255, 255, 255, .8);
  4690. transform: translate(50%, -50%);
  4691. text-align: center;
  4692. /* border:1px solid red;*/
  4693. }
  4694. .header_content h2{
  4695. margin-bottom: 50px;
  4696. font-size: 17px;
  4697. font-weight: 500;
  4698. letter-spacing: 0.3em;
  4699. }
  4700. .header_content h1{
  4701. margin-bottom: 50px;
  4702. font-size: 50px;
  4703. font-weight: 500;
  4704. letter-spacing: 0.7em;
  4705. }
  4706. .header_content button{
  4707. height: auto;
  4708. padding:8px 37px;
  4709. color:#fff;
  4710. font-size: 12px;
  4711. background-color: transparent;
  4712. margin-left: 20px;
  4713. }
  4714. .header_content button a{
  4715. text-transform: uppercase;
  4716. text-decoration: none;
  4717. color: white;
  4718. letter-spacing: 1px;
  4719. }
  4720. .header_content button:hover{
  4721. background-color: orange;
  4722. border:1px solid white;
  4723. }
  4724. /* End Of Loader Four css */
  4725. /*===================================================================================*/
  4726. /* PRE LOADERS 5
  4727. /*===================================================================================*/
  4728. #preloader5{
  4729. width: 100%;
  4730. height: 100%;
  4731. background-color: #fff;
  4732. position: fixed;
  4733. z-index: 1000;
  4734. }
  4735. .loader-5
  4736. {
  4737. position: absolute;
  4738. top: 45%;
  4739. right: 50%;
  4740. transform: translate(50%, -50%);
  4741. }
  4742. .loader-5 span
  4743. {
  4744. position: absolute;
  4745. width: 20px;
  4746. height: 20px;
  4747. background: #262626;
  4748. animation: animates 4s infinite forwards ease-in-out;
  4749. }
  4750. .loader-5 span:nth-child(1)
  4751. {
  4752. background: #00485f;
  4753. right: -24px;
  4754. top: -24px;
  4755. animation-delay: 0.5s;
  4756. }
  4757. .loader-5 span:nth-child(2)
  4758. {
  4759. background: #00deea;
  4760. right: 0px;
  4761. top: -24px;
  4762. animation-delay: 1s;
  4763. }
  4764. .loader-5 span:nth-child(4)
  4765. {
  4766. background: #00485f;
  4767. right: -24px;
  4768. top: 0px;
  4769. animation-delay: 1.5s;
  4770. }
  4771. .loader-5 span:nth-child(3)
  4772. {
  4773. background: #00deea;
  4774. right: 0px;
  4775. top: 0px;
  4776. animation-delay: 2s;
  4777. }
  4778. @keyframes animates
  4779. {
  4780. 0%
  4781. {
  4782. transform: rotateY(0deg);
  4783. }
  4784. 20%
  4785. {
  4786. transform: rotateY(360deg);
  4787. }
  4788. 40%
  4789. {
  4790. transform: rotateX(180deg);
  4791. }
  4792. 60%
  4793. {
  4794. transform: rotateX(0deg);
  4795. }
  4796. 80%
  4797. {
  4798. transform: rotateX(360deg);
  4799. }
  4800. 100%
  4801. {
  4802. transform: rotateY(180deg);
  4803. }
  4804. }
  4805. /* End Of Loader Five css */
  4806. /*===================================================================================*/
  4807. /* PRE LOADERS 6
  4808. /*===================================================================================*/
  4809. #preloader6{
  4810. width: 100%;
  4811. height: 100%;
  4812. background-color: #000;
  4813. position: fixed;
  4814. z-index: 1000;
  4815. }
  4816. .loader-6{
  4817. width: 180px;
  4818. height: 40px;
  4819. position: relative;
  4820. margin: 50px auto 0;
  4821. top:40%;
  4822. }
  4823. .loader-6 .inner_loader{
  4824. background: #db2651;
  4825. width: 30px;
  4826. height: 30px;
  4827. border-radius: 50%;
  4828. display: inline-block;
  4829. animation: move-ball 1s infinite linear;
  4830. }
  4831. .loader-6 .inner_loader:nth-child(2){
  4832. background: #1da1f2;
  4833. animation-delay: -0.2s;
  4834. }
  4835. .loader-6 .inner_loader:nth-child(3){
  4836. background: #1ba506;
  4837. animation-delay: -0.4s;
  4838. }
  4839. .loader-6 .inner_loader:nth-child(4){
  4840. background: #ec5f20;
  4841. animation-delay: -0.6s;
  4842. }
  4843. .loader-6 .inner_loader:nth-child(5){
  4844. background: #742cc0;
  4845. animation-delay: -0.8s;
  4846. }
  4847. @keyframes move-ball{
  4848. 0%{
  4849. box-shadow: 0px 21px 15px 0px rgba(0, 0, 0, 0.25);
  4850. filter: brightness(1.1);
  4851. transform: translatey(0) scale(1);
  4852. }
  4853. 25%{
  4854. box-shadow: 0px 38.5px 25px 0px rgba(0, 0, 0, 0.25);
  4855. filter: brightness(1);
  4856. transform: translatey(-17.5px) scale(0.75);
  4857. }
  4858. 50%{
  4859. box-shadow: 0px 21px 15px 0px rgba(0, 0, 0, 0.25);
  4860. filter: brightness(0.8);
  4861. transform: translatey(0px) scale(0.5);
  4862. }
  4863. 75%{
  4864. box-shadow: 0px 3.5px 5px 0px rgba(0, 0, 0, 0.25);
  4865. filter: brightness(1);
  4866. transform: translatey(17.5px) scale(0.75);
  4867. }
  4868. 100%{
  4869. box-shadow: 0px 21px 15px 0px rgba(0, 0, 0, 0.25);
  4870. filter: brightness(1.1);
  4871. transform: translatey(0) scale(1);
  4872. }
  4873. }
  4874. /* End Of Loader Six css */
  4875. @media (min-width: 1200px){
  4876. body.boxed div#preloader1,body.boxed div#preloader2, body.boxed div#preloader3,body.boxed div#preloader4,body.boxed div#preloader5,body.boxed div#preloader6 { width: 1210px; }}
  4877. @media (min-width: 991px) {
  4878. .navbar4 .header-lt {
  4879. z-index: 999;
  4880. position: initial;
  4881. width: inherit;
  4882. }
  4883. .navbar4 .col-lg-4 {
  4884. position: initial;
  4885. display: table-header-group;
  4886. z-index: 0;
  4887. }
  4888. .navbar4 .header-lt::before {
  4889. position: absolute;
  4890. content: '';
  4891. top: 0;
  4892. bottom: 0;
  4893. left: auto;
  4894. right: 0;
  4895. /* background-color: #ee591f;*/
  4896. width: 24vw;
  4897. z-index: -1;
  4898. display: block;
  4899. }
  4900. .boxed .navbar4 .header-lt::before {width: 18vw;}
  4901. .navbar4 .header-lt::after {
  4902. position: absolute;
  4903. content: '';
  4904. top: 0;
  4905. bottom: 0;
  4906. right: auto;
  4907. left: auto;
  4908. /*background-color: #ee591f;*/
  4909. -webkit-transform-origin: bottom;
  4910. -moz-transform-origin: bottom;
  4911. -ms-transform-origin: bottom;
  4912. -o-transform-origin: bottom;
  4913. transform-origin: bottom;
  4914. -webkit-transform: skew(-15deg);
  4915. -moz-transform: skew(-15deg);
  4916. -ms-transform: skew(-15deg);
  4917. -o-transform: skew(-15deg);
  4918. transform: skew(-15deg);
  4919. z-index: -1;
  4920. width: 17.475rem;
  4921. display: block;
  4922. }
  4923. .navbar.navbar4 .header-lt .navbar-brand::after, .navbar4 .header-lt .custom-logo-link-url::after {
  4924. right: auto;
  4925. left: auto;
  4926. width: 12px;
  4927. top: 0;
  4928. margin-right: 16rem;
  4929. z-index: 100;
  4930. bottom: 0;
  4931. background-color: #000;
  4932. display: block;
  4933. position: absolute;
  4934. content: '';
  4935. -webkit-transform-origin: bottom;
  4936. -moz-transform-origin: bottom;
  4937. -ms-transform-origin: bottom;
  4938. -o-transform-origin: bottom;
  4939. transform-origin: bottom;
  4940. -webkit-transform: skew(-15deg);
  4941. -moz-transform: skew(-15deg);
  4942. -ms-transform: skew(-15deg);
  4943. -o-transform: skew(-15deg);
  4944. transform: skew(-15deg);
  4945. }
  4946. }
  4947. .navbar4 .site-title-name, .navbar4 .site-description {
  4948. color: #ffffff;
  4949. }
  4950. @media (max-width: 991px) {
  4951. .navbar4 .navbar-toggler {
  4952. float: left;
  4953. margin: 15px 0 0 15px;
  4954. }
  4955. }
  4956. .navbar4 .custom-logo-link-url {
  4957. margin-left: 1rem;
  4958. display: inline-block;
  4959. vertical-align: middle;
  4960. }
  4961. .index5.header-logo {
  4962. text-align: center;
  4963. padding: 15px 0;
  4964. display: block;
  4965. background-color: #ffffff;
  4966. }
  4967. .navbar.navbar1 {
  4968. margin: 0;
  4969. background-color: #000000;
  4970. padding: 0;
  4971. }
  4972. .navbar1.navbar .nav .nav-item:hover .nav-link, .navbar1.navbar .nav .nav-item.active .nav-link {
  4973. color: #ffffff;
  4974. /*background: #ee591f;*/
  4975. }
  4976. .navbar.navbar1 .nav .nav-item .nav-link {
  4977. color: #ffffff;
  4978. padding: 16px 20px;
  4979. }
  4980. .navbar.navbar1 ul li a .menu-text:after {
  4981. content: none;
  4982. }
  4983. .navbar1.navbar .nav .nav-item {
  4984. margin: 0;
  4985. }
  4986. .navbar1.navbar .spice-software-header-button {
  4987. margin-top: 7px !important;
  4988. margin-left: 15px !important;
  4989. margin-right: 15px !important;
  4990. padding-bottom: 0;
  4991. }
  4992. .navbar1 .search-box-outer a ,
  4993. .navbar1 .cart-header > a.cart-icon {color: #ffffff;}
  4994. .navbar1 .navbar-toggler {margin: 10px auto;}
  4995. @media (max-width: 991px) {
  4996. .navbar1 .navbar-collapse ul,.navbar1 .navbar-collapse ol {
  4997. margin: 0;
  4998. }
  4999. .navbar.navbar1 .nav .nav-item .nav-link {padding: 10px 15px;}
  5000. .header-module {
  5001. padding-right: 0rem;
  5002. }
  5003. }
  5004. .index2.header-logo {
  5005. background-color: #181a1f;
  5006. float: none;
  5007. padding: 10px 0;
  5008. }
  5009. .index2 .custom-logo-link-url {
  5010. margin-left: 1rem;
  5011. display: inline-block;
  5012. vertical-align: middle;
  5013. }
  5014. .index2 .site-title-name, .index2 .site-description {
  5015. color: #ffffff;
  5016. }
  5017. .navbar.navbar2 {
  5018. padding-top: 0;
  5019. padding-bottom: 0;
  5020. }
  5021. .navbar2 .spice-software-header-button {
  5022. margin-top: 8px;
  5023. }
  5024. .navbar2 .navbar-toggler {margin: 10px auto;}
  5025. .index2.header-logo .header-module {
  5026. padding-right: 0rem;
  5027. padding-top: 25px;
  5028. float: left;
  5029. }
  5030. .index2 .search-box-outer a , .index2 .cart-header > a.cart-icon {color: #ffffff;}
  5031. .index2 .search-box-outer .dropdown-menu {
  5032. top: 50px !important;
  5033. right: auto !important;
  5034. left: 0px;
  5035. padding: 0px;
  5036. width: 324px !important;
  5037. margin: 0px !important;
  5038. background-color: #fff !important;
  5039. border-top: solid 1px #ee591f;
  5040. }
  5041. .header1 {background-color: #ee591f;}
  5042. .header2 {background-color: #ee591f;}
  5043. .navbar3 {
  5044. padding-top: 1.5rem;
  5045. padding-bottom: 1.5rem;
  5046. background-color: #00000080;
  5047. position: absolute;
  5048. top: 45px;
  5049. z-index: 2;
  5050. left: 0;
  5051. right: 0;
  5052. }
  5053. .navbar.navbar3 .nav .nav-item .nav-link {color: #21202e;}
  5054. .navbar.navbar3 .site-title-name, .navbar.navbar3 .site-description {
  5055. color: #21202e;
  5056. }
  5057. .navbar.navbar3 .search-box-outer a , .navbar.navbar3 .cart-header > a.cart-icon {color: 00BFFF;}
  5058. .stickymenu1 {
  5059. display: none;
  5060. position: fixed !important;
  5061. top: 0;
  5062. width: 100%;
  5063. z-index: 999;
  5064. /*background-color: rgba(0, 0, 0,0.7) !important;*/
  5065. }
  5066. @media (min-width: 992px) {
  5067. .navbar1 .navbar-nav > .dropdown.active > a:after {
  5068. content: '';
  5069. position: absolute;
  5070. border-top: .3em solid;
  5071. border-left: .3em solid transparent;
  5072. border-right: .3em solid transparent;
  5073. display: block;
  5074. top: 0;
  5075. color: #181A1F;
  5076. right: 50%;
  5077. }
  5078. }
  5079. @media (min-width: 992px) {
  5080. .navbar1 .navbar-nav > .dropdown.active > a:after {
  5081. content: '';
  5082. position: absolute;
  5083. border-top: .3em solid;
  5084. border-left: .3em solid transparent;
  5085. border-right: .3em solid transparent;
  5086. display: block;
  5087. top: 0;
  5088. color: #FFFFFF;
  5089. right: 50%;
  5090. }
  5091. }
  5092. @media (min-width: 992px) {
  5093. .navbar1 .navbar-nav > .dropdown.active > a:after {
  5094. content: '';
  5095. position: absolute;
  5096. border-top: .3em solid;
  5097. border-left: .3em solid transparent;
  5098. border-right: .3em solid transparent;
  5099. display: block;
  5100. top: 0;
  5101. color: #ffffff;
  5102. right: 50%;
  5103. }
  5104. .navbar1 .navbar-nav > .active > a:after {
  5105. content: '';
  5106. position: relative;
  5107. border-top: .3em solid;
  5108. border-left: .3em solid transparent;
  5109. border-right: .3em solid transparent;
  5110. top: -14px;
  5111. left: 42%;
  5112. color: #ffffff;
  5113. }
  5114. }
  5115. /*===================================================================================*/
  5116. /* After menu
  5117. /*===================================================================================*/
  5118. /* update */
  5119. .spice_software_header_btn {
  5120. border: 0;
  5121. -webkit-box-shadow: none;
  5122. box-shadow: none;
  5123. color: #fff;
  5124. cursor: pointer;
  5125. font-size: 0.938rem;
  5126. font-weight: 600;
  5127. line-height: 1;
  5128. padding: 0.75rem 1.3rem;
  5129. text-shadow: none;
  5130. -webkit-transition: background 0.2s;
  5131. transition: background 0.2s;
  5132. }
  5133. .spice_software_header_btn:hover {background: #061018;color: #fff;}
  5134. @media (max-width: 991px){
  5135. .spice_software_header_btn {
  5136. line-height: 7;
  5137. border-bottom: 1px solid #ededed55;
  5138. }}
  5139. @media (max-width: 991px){
  5140. .navbar .nav .nav-item.html {
  5141. line-height: 40px;
  5142. border-bottom: 1px solid #ededed55;
  5143. }
  5144. .navbar .nav .nav-item.html p{line-height: 22px;margin-top: 10px;;margin-bottom: 10px;}
  5145. }
  5146. .navbar1 .nav-item.html{padding: 14px 20px;}
  5147. .navbar1.navbar .nav .nav-item.html a {color: #ffffff;}
  5148. @media (max-width: 992px){
  5149. .navbar1.navbar .nav .nav-item.html {
  5150. padding: 10px 10px;
  5151. color: #ffffff;
  5152. line-height: unset;
  5153. }}
  5154. @media (min-width: 992px){
  5155. .main-header-btn {
  5156. padding-bottom: 1.125rem;
  5157. padding-top: 0.45rem;
  5158. }
  5159. .main-header-btn.hw {padding-top: .350rem;}
  5160. .navbar1 .main-header-btn.hw a {/*padding: 17px 20px 22px !important;*/}
  5161. .nav-item.html.menu-item h1, .nav-item.html.menu-item h2{line-height:.9;margin: 0;margin-bottom: 10px;}
  5162. .nav-item.html.menu-item h3{line-height:1.0;margin: 0;margin-bottom: 10px;}
  5163. .nav-item.html.menu-item h4{line-height:1.3;margin: 0;margin-bottom: 10px;}
  5164. .nav-item.html.menu-item h5{line-height:1.8;margin: 0;margin-bottom: 10px;}
  5165. .nav-item.html.menu-item h6{line-height:2.0;margin: 0;margin-bottom: 10px;}
  5166. .navbar1.navbar .nav .nav-item .nav-link{padding: 14px 20px;margin-bottom: 0;}
  5167. .navbar1.navbar .nav .nav-item .nav-link{padding: 14px 20px; margin-bottom: 0;}
  5168. }
  5169. @media (max-width: 991px){
  5170. .main-header-btn {
  5171. border-bottom: 1px solid #ededed55;
  5172. }
  5173. .spice_software_header_btn {
  5174. line-height: 5;
  5175. }
  5176. /*.cart-header {
  5177. border-left: 1px solid transparent;
  5178. padding-left: 0;
  5179. }*/
  5180. .header-module .cart-header.search-woo {
  5181. border-right: 1px solid #cfddea;
  5182. padding-right: 15px;
  5183. }
  5184. body .navbar5 .hw .spice_software_header_btn {
  5185. line-height: 5;
  5186. }
  5187. }
  5188. .menu-html {
  5189. padding: 14px 20px;
  5190. color: #ffffff;
  5191. }
  5192. .menu-html a{color: #ffffff}
  5193. @media (max-width: 992px){
  5194. .menu-html {
  5195. padding: 10px 10px;
  5196. }}
  5197. .nav-item.menu-html.menu-item p {
  5198. color: #ffffff;
  5199. }
  5200. body .nav-item.menu-html h1, body .nav-item.menu-html h2, body .nav-item.menu-html h3, body .nav-item.menu-html h4, body .nav-item.menu-html h5, body .nav-item.menu-html h6 {
  5201. color: #fff;
  5202. }
  5203. @media (min-width: 991px){
  5204. .navbar.navbar6 .nav .nav-item .nav-link, .navbar.navbar6 .nav .nav-item .nav-link {
  5205. padding-top: 0.75rem;
  5206. padding-bottom: 0.75rem;
  5207. margin-bottom: 0;
  5208. }
  5209. .nav-item.radix-btn.menu-item {
  5210. padding-top: 0.75rem;
  5211. padding-bottom: 0.75rem;
  5212. }
  5213. .nav-item.radix-btn.menu-item {
  5214. padding-top: 0.9rem;
  5215. padding-bottom: 0.9rem;
  5216. }
  5217. }
  5218. .nav-item.radix-html a {
  5219. font-weight: 600;
  5220. /*color: #061018;*/
  5221. padding: 0;
  5222. }
  5223. .navbar.navbar6 ul li.radix-btn > a:after{display: none;}
  5224. .navbar.navbar6 ul li.radix-btn.radix-html > a:after{display: block;}
  5225. body .navbar.eight h1, body .navbar.eight h2, body .navbar.eight h3, body .navbar.eight h4, body .navbar.eight h5, body .navbar.eight h6, body .navbar.eight p{color: #ffffff;}
  5226. .navbar.navbar1 .nav-item .widget a, body .navbar.navbar5 .nav-item .widget h2{color: #ffffff;}
  5227. .nav-item .widget{box-shadow: none;padding: 13px 15px;margin: 0;}
  5228. .navbar1 .nav-item .widget,.navbar6 .nav-item .widget{box-shadow: none;padding: 13px 15px;margin: 0;}
  5229. @media(max-width: 768px){
  5230. .nav-item .widget {
  5231. box-shadow: none;
  5232. margin: 0;
  5233. padding: 10px 0 6px;
  5234. border-bottom: 1px solid #ededed55;
  5235. }
  5236. }
  5237. @media (min-width: 992px){
  5238. .navbar .nav .html{
  5239. padding: .45rem 0rem;
  5240. }
  5241. }
  5242. /*===================================================================================*/
  5243. /*Video Slider
  5244. /*===================================================================================*/
  5245. /* UPDATED */
  5246. #video_slider {
  5247. position: absolute;
  5248. bottom: 0;
  5249. top: 0;
  5250. min-width: 100%;
  5251. min-height: 100%;
  5252. }
  5253. .hero-section {
  5254. overflow: hidden;
  5255. }
  5256. #slider-carousel {
  5257. margin: 0px;
  5258. position: relative;
  5259. top: 0;
  5260. background: transparent;
  5261. }
  5262. #slider-carousel .item {background-color: transparent;}
  5263. .slider-caption.yes {
  5264. height: auto;
  5265. right: 0;
  5266. position: absolute;
  5267. left: 0;
  5268. z-index: 1;
  5269. top: 50%;
  5270. -webkit-transform: translateY(-50%);
  5271. -ms-transform: translateY(-50%);
  5272. }
  5273. .slider-caption.yes .widget.widget_text {
  5274. background-color: rgba(0,0,0,0.6);
  5275. padding: 40px 30px 20px;
  5276. border-radius: 7px;
  5277. margin-right: 30px;
  5278. }
  5279. @media (min-width: 767px){
  5280. .slider-caption.yes .widget.widget_text {
  5281. background-color: rgba(0,0,0,0.6);
  5282. }}
  5283. .slider-caption.yes .widget.widget_media_video h3,.slider-caption.yes .widget.widget_archive h3, .slider-caption.yes .widget.widget_archive a, .slider-caption.yes .widget.widget_calendar, .slider-caption.yes .widget.widget_calendar caption, .slider-caption.yes .widget.widget_calendar a, .slider-caption.yes .widget h3, .slider-caption.yes .widget a, .slider-caption.yes .widget .recentcomments{color: #ffffff;}
  5284. .slider-caption.yes .widget .tagcloud a,.slider-caption.yes .widget.widget_text h3.widget-title{color: #000;}
  5285. .hero-section .widget:last-child {
  5286. margin-bottom: 10px;
  5287. }
  5288. .hero-section .widget {
  5289. box-shadow: unset;
  5290. }
  5291. @media (max-width: 767px){
  5292. .hero-section #slider-carousel .item.yes {
  5293. height: 950px;
  5294. }}
  5295. @media (max-width: 767px){
  5296. .hero-section .widget {
  5297. margin-right: 0px;
  5298. margin-top: 30px;
  5299. }
  5300. .slider-caption.yes .widget.widget_text{
  5301. margin-right: 0px;
  5302. margin-top: 30px;
  5303. }}
  5304. @media (min-width: 1200px){
  5305. .hero-section .widget_media_video .wp-video-shortcode, .hero-section .widget_media_video iframe {
  5306. height: 300px !important;
  5307. width: 400px !important;
  5308. }}
  5309. .widget.widget_text input[type="text"], .widget.widget_text input[type="email"], .widget.widget_text input[type="url"], .widget.widget_text input[type="password"], .widget.widget_text input[type="search"], .widget.widget_text input[type="number"], .widget.widget_text input[type="tel"], .widget.widget_text input[type="range"], .widget.widget_text input[type="date"], .widget.widget_text input[type="month"], .widget.widget_text input[type="week"], .widget.widget_text input[type="time"], .widget.widget_text input[type="datetime"], .widget.widget_text input[type="datetime-local"], .widget.widget_text input[type="color"], .widget.widget_text textarea {
  5310. border-radius: 3px;
  5311. background-color: #ffffff !important;
  5312. border: 1px solid #e8e8e8 !important;
  5313. color: #707070 !important;
  5314. }
  5315. .widget.widget_text .wpcf7-form input[type="submit"] {
  5316. margin-top: 10px;
  5317. }
  5318. .slider-caption.yes .widget.widget_calendar {
  5319. padding-top: 15px;
  5320. padding-bottom: 15px;
  5321. background-color: rgba(0,0,0,0.5);
  5322. }
  5323. #slider-video {
  5324. border: 0.2rem solid #FFFFFF;
  5325. }
  5326. @media (min-width: 768px){
  5327. #slider-video {
  5328. padding: 15px 18px;
  5329. display: inline-block;
  5330. }}
  5331. .item-video a:after {
  5332. position: relative;
  5333. top: 12%;
  5334. right: 12%;
  5335. margin: 0px 0px 0 0;
  5336. width: 0;
  5337. height: 0;
  5338. border-top: 8px solid transparent;
  5339. border-bottom: 8px solid transparent;
  5340. border-right: 12px solid #FFFFFF;
  5341. content: '';
  5342. display: block;
  5343. }
  5344. .icon-dispear #slider-video {
  5345. border-radius: 50px;
  5346. padding: 9px 22px;
  5347. font-size: 0.938rem;
  5348. font-weight: 600;
  5349. border: 0.18rem solid #FFFFFF;
  5350. }
  5351. /*@media (min-width: 992px){
  5352. .navbar .nav .html{
  5353. padding: .5rem 0rem;
  5354. }
  5355. }*/
  5356. .navbar .nav .widget_nav_menu li a,.navbar .nav .widget_pages li a,.navbar .nav .widget_product_categories li a,.navbar .nav .widget_links li a,.navbar .nav .widget_categories li a,.navbar .nav .widget_archive li a,.navbar .nav .widget_recent_entries li a,.navbar .nav .widget_meta li a,.navbar .nav .widget_recent_comments li a {
  5357. color: #1C314C;
  5358. }
  5359. .video-slider #slider-carousel .item {
  5360. background-color: transparent;}
  5361. .video-slider.home-section {
  5362. overflow: hidden;}
  5363. /*slider widget*/
  5364. @media (max-width: 767px) {
  5365. #slider-carousel .item.yes { height: 950px !important;}
  5366. }
  5367. .slider-caption.yes .widget.widget_calendar td, .slider-caption.yes .widget.widget_calendar th {
  5368. border: none !important;
  5369. }
  5370. .slider-caption.yes .widget.widget_calendar {
  5371. padding: 1.875rem 1.563rem 2.5rem;
  5372. }
  5373. @media (max-width: 767px) {
  5374. .slide-widget .widget {
  5375. margin-right: 0px;
  5376. margin-top: 30px;
  5377. }
  5378. }
  5379. @media (max-width: 576px){
  5380. .slider-caption.yes aside.widget {
  5381. margin-top: 3rem;
  5382. }
  5383. }
  5384. .slider-caption.yes .wpcf7-form {
  5385. padding: 10px 0;
  5386. }
  5387. .slider-caption.yes .wpcf7-form textarea {
  5388. height: auto;
  5389. }
  5390. .slider-caption.yes .widget.widget_text h3.widget-title{
  5391. margin-bottom: 18px;
  5392. line-height: 1;
  5393. }
  5394. @media (max-width: 991px) {
  5395. .navbar.navbar-light.center li.main-header-btn {
  5396. text-align: right;
  5397. }
  5398. .index2.header-logo .header-module {
  5399. float: none;
  5400. text-align: center;
  5401. }
  5402. }
  5403. @media (min-width:1100px){
  5404. .container-fluid.streached
  5405. {
  5406. padding: 0;
  5407. }}
  5408. .container-fluid.streached .grid
  5409. {
  5410. margin-left: -15px;
  5411. margin-right: -15px;
  5412. }
  5413. @media (max-width: 768px) {
  5414. .navbar3 .navbar-toggler {
  5415. background-color: #000000;
  5416. }
  5417. }
  5418. nav .navbar-nav.sm-collapsible a.has-submenu {
  5419. padding-left: 3px;
  5420. }
  5421. @media (min-width: 992px)
  5422. {
  5423. .navbar .nav .html.lite-html {
  5424. padding: 0.85rem 0rem;
  5425. }}
  5426. .navbar .rgt .search-box-outer .dropdown-menu {
  5427. right: 0px !important;
  5428. }
  5429. .navbar1 .header-module{
  5430. margin-right: 10px;
  5431. }
  5432. @media (max-width: 650px)
  5433. {
  5434. .index2 .header-module .search-box-outer .dropdown-menu {
  5435. position: absolute;
  5436. right: -85px !important;
  5437. width: 260px!important;
  5438. }
  5439. }
  5440. @media (max-width: 768px)
  5441. {.navbar1 .search-box-outer .dropdown-menu,.navbar .search-box-outer .dropdown-menu {
  5442. right: 0 !important;
  5443. left: auto !important;
  5444. width: 295px !important;
  5445. top: 28px !important;
  5446. position: absolute;
  5447. }}
  5448. .boxed .stickymenu1,.boxed .header-sticky {
  5449. width: 1210px;
  5450. }
  5451. .list-inline {
  5452. margin: 0;
  5453. }
  5454. .navbar .bg-light {background-color:transparent !important;}
  5455. .woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img, .woocommerce-page ul.product_list_widget li img {
  5456. margin-left: 15px;
  5457. }
  5458. #searchbar_fullscreen #searchform input::placeholder{font-size:3.125rem;}
  5459. .blog .scroll-up a:hover i {
  5460. color: #FFF;
  5461. }
  5462. .textwidget a{
  5463. text-decoration: underline !important;
  5464. }
  5465. @media (min-width: 1200px)
  5466. {
  5467. body.boxed.admin-bar .stickymenu {
  5468. top: 30px;
  5469. }
  5470. }
  5471. a.page-numbers:focus{
  5472. outline: 2px solid #000;z-index: 2;}
  5473. #testimonial-carousel .fa-angle-right:before {
  5474. content: "\f104"!important;
  5475. }
  5476. #testimonial-carousel .fa-angle-left:before {
  5477. content: "\f105"!important;
  5478. }
  5479. #team-carousel .fa-arrow-left:before {
  5480. content: "\f061"!important;
  5481. }
  5482. #team-carousel .fa-arrow-right:before{
  5483. content: "\f060"!important;
  5484. }
  5485. .fa-angle-right:before {
  5486. content: "\f104"!important;
  5487. }
  5488. .fa-angle-left:before {
  5489. content: "\f105"!important;
  5490. }
  5491. .fa-arrow-left:before {
  5492. content: "\f061"!important;
  5493. }
  5494. .fa-arrow-right:before{
  5495. content: "\f060"!important;
  5496. }
  5497. .text-right {
  5498. text-align: left!important;
  5499. }
  5500. .text-left {
  5501. text-align: right!important;
  5502. }
  5503. .blog .post-thumbnail .click-view a:focus {
  5504. -wekbit-transform: translateY(0);
  5505. -moz-transform: translateY(0);
  5506. -o-transform: translateY(0);
  5507. -ms-transform: translateY(0);
  5508. transform: translateY(0);
  5509. opacity: 1;
  5510. }
  5511. @media (max-width: 650px)
  5512. {
  5513. body.boxed .stickymenu {
  5514. top: 0;
  5515. }
  5516. }
  5517. .sidebar .widget_block.widget_text a,.sidebar .widget.widget_block p a{
  5518. text-decoration: underline!important;
  5519. }
  5520. @media(max-width: 767px){
  5521. .index2.header-logo{
  5522. text-align: center;
  5523. }
  5524. }
  5525. .navbar.nav-rgt .nav .nav-item:last-child {
  5526. margin-left: 1.875rem;
  5527. }
  5528. /*===================================================================================*/
  5529. /*New Widget Css
  5530. /*===================================================================================*/
  5531. .sidebar .wp-block-search .wp-block-search__label,.sidebar .widget.widget_block h1,.sidebar .widget.widget_block h2,.sidebar .widget.widget_block h3,.sidebar .widget.widget_block h4,.sidebar .widget.widget_block h5,.sidebar .widget.widget_block h6{
  5532. padding: 0rem 0rem 1.188rem;
  5533. font-weight: 600;
  5534. margin: 0;
  5535. z-index: 1;
  5536. position: relative;
  5537. }
  5538. .wp-block-search .wp-block-search__label, .widget.widget_block h3{font-size:1.250rem;}
  5539. .widget .wp-block-search .wp-block-search__input {
  5540. font-size: 0.875rem;
  5541. padding-right: 1.25rem;
  5542. padding-left: 1.875rem;
  5543. }
  5544. .widget .wp-block-search__button {
  5545. position: absolute;
  5546. left: 3rem;
  5547. margin-top: 9px;
  5548. top: auto;
  5549. background: transparent;
  5550. z-index: 3;
  5551. display: block;
  5552. border: 0;
  5553. }
  5554. .wp-block-search__input:focus {
  5555. color: #495057;
  5556. background-color: #fff;
  5557. border-color: #80bdff;
  5558. outline: 0;
  5559. box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
  5560. }
  5561. .sidebar .widget.widget-block li:before {
  5562. content: "\f105";
  5563. font-family: FontAwesome;
  5564. color: #333333;
  5565. margin-left: 5px;
  5566. margin-right: 1px;
  5567. position: absolute;
  5568. left: 280px;
  5569. }
  5570. .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a:before,.wc-block-product-categories-list-item:before {
  5571. content: "\f105";
  5572. font-family: FontAwesome;
  5573. color: #333333;
  5574. margin-left: 5px;
  5575. margin-right: 1px;
  5576. float: right;
  5577. }
  5578. .sidebar .widget li{
  5579. list-style-type:none;
  5580. border-bottom: 1px solid #e8e8e8;
  5581. padding-top: 0.813rem;
  5582. padding-bottom: 0.813rem;
  5583. margin: 0;
  5584. position: relative;
  5585. }
  5586. .widget .wp-block-gallery li{padding:0;}
  5587. .widget .wp-block-gallery li:before,.widget .custom-social-icons li:before{
  5588. display:none;
  5589. }
  5590. .widget li:first-child,.footer-sidebar .widget li:first-child{
  5591. padding-top:0;
  5592. }
  5593. .widget li:last-child,.footer-sidebar .widget li:last-child{
  5594. padding-bottom: 0px;
  5595. border-bottom: none;
  5596. }
  5597. .sidebar .widget ul,.sidebar .widget ol{
  5598. list-style: none;
  5599. margin-right: 0;
  5600. padding-top: 0;
  5601. margin: 0;
  5602. }
  5603. .wp-calendar-nav{text-align: right;}
  5604. .widget .wp-block-calendar table th {
  5605. font-weight: 600;
  5606. border-bottom: 2px solid #bbb;
  5607. background:transparent;
  5608. }
  5609. .widget .wp-block-calendar tbody td,.widget .wp-block-calendar th {
  5610. border: 0;
  5611. padding: 0.4em;
  5612. text-align: right;
  5613. }
  5614. .widget .wp-block-tag-cloud a{
  5615. background-color: #ececec;
  5616. font-size: 1rem !important;
  5617. display: inline-block;
  5618. padding: 5px 10px;
  5619. color: #727272;
  5620. margin: 0 0.125rem 0.625rem;
  5621. }
  5622. .widget.widget_media_image .wp-block-image img{
  5623. max-width: 100%;
  5624. height: auto;
  5625. }
  5626. .wp-calendar-table #today{
  5627. font-weight: 600;
  5628. }
  5629. .widget .wp-block-latest-comments__comment:before{display: none;}
  5630. .footer-sidebar .wp-block-search .wp-block-search__label,.footer-sidebar .widget.widget_block h1,.footer-sidebar .widget.widget_block h2,.footer-sidebar .widget.widget_block h3,.footer-sidebar .widget.widget_block h4,.footer-sidebar .widget.widget_block h5,.footer-sidebar .widget.widget_block h6{
  5631. position: relative;
  5632. padding-bottom: 0.5rem;
  5633. margin: 0 0 1rem;
  5634. }
  5635. .footer-sidebar .wp-block-search__label:after,.footer-sidebar .widget_block h1:after,
  5636. .footer-sidebar .widget_block h2:after,.footer-sidebar .widget_block h3:after,.footer-sidebar .widget_block h4:after,.footer-sidebar .widget_block h5:after,
  5637. .footer-sidebar .widget_block h6:after{
  5638. content: '';
  5639. display: block;
  5640. height: 3px;
  5641. width: 25px;
  5642. margin-top: 5px;
  5643. }
  5644. .footer-sidebar .wp-block-search__label{font-weight: 700;}
  5645. .footer-sidebar .wp-block-calendar table caption,.footer-sidebar .wp-block-calendar table tbody {
  5646. color: #fff;
  5647. }
  5648. .footer-sidebar .widget .wp-block-search__button {
  5649. left: 1rem;
  5650. }
  5651. .wp-block-search__button:after{
  5652. content: "\f002";
  5653. font-family: "FontAwesome";
  5654. font-size: 0.938rem;
  5655. }
  5656. body .widget .wp-block-search__button {
  5657. color: transparent;font-size: 0;margin: 15px 9px;
  5658. }
  5659. .navbar-toggler,.navbar-toggler:hover, .navbar-toggler:focus {
  5660. background-color: #fff !important;
  5661. }
  5662. .woocommerce-page .sidebar .widget li > ul,.woocommerce-page .sidebar .widget li > ol {
  5663. margin-bottom: 0;
  5664. margin-right: 1.5em;
  5665. }
  5666. .sidebar .widget li:last-child{
  5667. border-bottom: none;
  5668. }
  5669. @media (min-width: 992px)
  5670. {
  5671. .header-module {
  5672. padding: 0.45rem 0rem;
  5673. }
  5674. .navbar1 .header-module {
  5675. padding: 0.95rem 0rem 0.75rem 0;
  5676. }
  5677. }
  5678. .navbar .mr-auto,.navbar .mx-auto {
  5679. margin-right: auto!important;
  5680. margin-left: unset!important;
  5681. }
  5682. .widget li.wp-block-rss__item .wp-block-rss__item-title:before{
  5683. content: "\f105";
  5684. font-family: FontAwesome;
  5685. color: #333333;
  5686. margin-left: 5px;
  5687. margin-right: 1px;
  5688. }
  5689. .widget li.wp-block-rss__item:before{
  5690. display: none;
  5691. }
  5692. .widget .wp-block-social-links .wp-block-social-link::before {
  5693. display: none;
  5694. }
  5695. .wp-block-social-links .wp-social-link.wp-social-link.wp-social-link {
  5696. padding: 0px;
  5697. }
  5698. .wp-block-social-links .wp-social-link.wp-social-link.wp-social-link a {
  5699. font-size: 1.3rem;
  5700. }
  5701. .footer-sidebar .widget.widget_block li:before ,.footer-sidebar .wp-block-page-list li:before, .footer-sidebar .widget li.wp-block-rss__item .wp-block-rss__item-title:before{
  5702. content: "\f105";
  5703. font-family: FontAwesome;
  5704. color: #fff;
  5705. margin-left: 5px;
  5706. margin-right: 1px;
  5707. }
  5708. .sidebar .widget.widget_block .wp-block-tag-cloud a {
  5709. text-decoration: none !important;
  5710. }
  5711. .wp-block-latest-comments__comment {
  5712. line-height: 1.6;
  5713. }
  5714. .widget_media_gallery .blocks-gallery-item {
  5715. float: right;
  5716. margin-top: 10px;
  5717. text-align: center;
  5718. width: 33%;
  5719. }
  5720. .columns-3 .blocks-gallery-item {
  5721. max-width: calc((100% - 16px * 2) / 3);
  5722. margin-bottom: 1rem !important;
  5723. }
  5724. @media (max-width: 768px){
  5725. .navbar.center ul.nav.navbar-nav {
  5726. text-align: initial;
  5727. }
  5728. }
  5729. .wpcf7 label {
  5730. text-align: -webkit-right;
  5731. }
  5732. .dark .section-space.testimonial.testi-4 blockquote{
  5733. border: none;
  5734. }
  5735. @media (min-width: 992px) {
  5736. .nav-rgt ul.navbar-nav {
  5737. margin-top: 15px;
  5738. }
  5739. }
  5740. .navbar1 a.text-dark:focus,.navbar1 a.text-dark:hover{
  5741. color: #fff!important;
  5742. }
  5743. .widget.woocommerce.woocommerce-widget-layered-nav span.count,
  5744. .widget .wc-block-product-categories-list-item-count{
  5745. float: left;
  5746. position: absolute;
  5747. }
  5748. .dark .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a:before,
  5749. .dark .woocommerce .wc-block-product-categories-list-item:before {
  5750. color: #999;
  5751. }
  5752. .sidebar .sub-menu li.menu-item {
  5753. margin-right: 10px;
  5754. }
  5755. .bcslider-section .wp-calendar-table tr{
  5756. color: #fff;
  5757. }
  5758. @media only screen and (max-width: 600px) {
  5759. .slider-caption.yes br { display: block; }
  5760. }
  5761. @media (min-width:768px){
  5762. .blog .list-view .right .entry-date {
  5763. margin-top: 0.8rem;
  5764. left: 0;
  5765. right: auto;
  5766. z-index:2;
  5767. }}
  5768. @media (max-width: 768px) {
  5769. .blog .list-view .right .entry-date {
  5770. margin-top: 0.8rem;
  5771. margin-right: 30px;
  5772. top: auto;
  5773. z-index:2;
  5774. }}
  5775. .sidebar .widget.widget_block li:before
  5776. {
  5777. content: "\f105";
  5778. font-family: FontAwesome;
  5779. color: #999999;
  5780. margin-left: 5px;
  5781. margin-right: 1px;
  5782. }
  5783. .search-box-outer input::-webkit-input-placeholder {
  5784. font-size: 20px;
  5785. line-height: 3;
  5786. }
  5787. body .home-blog .post .post-thumbnail a:focus{
  5788. display: block;
  5789. margin: 1px;
  5790. outline-color:#fff;
  5791. }
  5792. @media (min-width:768px){
  5793. .blog .list-view .right .entry-date {
  5794. margin-top: 0.8rem;
  5795. left: 0;
  5796. right: auto;
  5797. z-index:2;
  5798. }}
  5799. @media (max-width: 768px) {
  5800. .blog .list-view .right .entry-date {
  5801. margin-top: 0.8rem;
  5802. margin-right: 30px;
  5803. top: auto;
  5804. z-index:2;
  5805. }}
  5806. .footer-sidebar .widget p a:not(a.tag-cloud-link){
  5807. text-decoration: underline!important;
  5808. }
  5809. .footer-sidebar blockquote {
  5810. background-color: transparent;
  5811. }
  5812. .footer-sidebar .widget .wp-block-latest-posts__post-author,
  5813. .footer-sidebar .widget .wp-block-latest-posts__post-date{
  5814. color: #fff;
  5815. }
  5816. .loaded div#preloader1,.loaded .spice-software-loader,.loaded div#preloader2{
  5817. display: none;
  5818. }
  5819. .content-center .custom-logo-link-url,.index5 .custom-logo-link-url {
  5820. margin-right: 0rem;
  5821. }