123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781 |
- /* 0 - 600px: Phone 600 - 900px: Tablet portrait 900 - 1200px: Tablet landscape [1200 - 1800] is where our normal styles apply 1800px + : Big desktop $breakpoint arguement choices: - phone - tab-port - tab-land - big-desktop ORDER: Base + typography > general layout + grid > page layout > components 1em = 16px */
- body {
- box-sizing: border-box;
- overflow-x: hidden;
- }
-
- @media only screen and (max-width: 900px) {
- body {
- padding: 0;
- }
- }
-
- .bg-green {
- background-color: #3bb78f;
- background: linear-gradient(90deg, #3bb78f 0%, rgb(11, 171, 100) 35%, rgb(59, 183, 143) 100%);
- }
-
- .text-green-Awni {
- color: #0A886A;
- }
-
- .anwi_grey_bg {
- background-color: #ECECEC;
- }
-
- .orbitron_font {
- font-family: "Orbitron", sans-serif;
- }
-
- .satoshi_font {
- font-family: "Satoshi", sans-serif;
- }
-
- .font-1 {
- font-size: 1rem;
- }
-
- .font-3 {
- font-size: 3rem;
- }
-
- .font-1-2 {
- font-size: 1.2rem;
- }
-
- .font-1-5 {
- font-size: 1.5rem;
- }
-
- .font-1_5 {
- font-size: 2rem;
- }
-
- .font-1_7 {
- font-size: 1.7rem;
- }
-
- .font-2 {
- font-size: 2rem;
- }
-
- .font-2_2 {
- font-size: 2.2rem;
- }
-
- .font-2_7 {
- font-size: 2.7rem;
- }
-
- .font_4 {
- font-size: 4rem;
- }
-
- .font-5 {
- font-size: 5rem;
- }
-
- .font-6 {
- font-size: 6rem;
- }
-
- .font-7 {
- font-size: 7rem;
- }
-
- .font-10 {
- font-size: 10rem;
- }
-
- .subtitle_1 {
- font-size: 1.5rem;
- }
-
- .banner_heading_4 {
- font-size: 3rem;
- }
-
- .padding_top_14 {
- padding-top: 14rem;
- }
-
- .p-6 {
- padding: 5rem;
- }
-
- .ps-7 {
- padding-left: 6rem;
- }
-
- .px-6 {
- padding-left: 6rem;
- padding-right: 6rem;
- }
-
- .p-7 {
- padding: 7rem;
- }
-
- .padding_top_10 {
- padding-top: 10rem;
- }
-
- .padding_top_13 {
- padding-top: 13rem;
- }
-
- .padding_bottom_ONE_FIVE {
- padding-bottom: 1.5rem;
- }
-
- .h-10 {
- height: 10%;
- }
-
- .h-15 {
- height: 15%;
- }
-
- .h-20 {
- height: 20%;
- }
-
- .h-30 {
- height: 30%;
- }
-
- .h-33 {
- height: 33%;
- }
-
- .h-34 {
- height: 34%;
- }
-
- .h-35 {
- height: 35%;
- }
-
- .h-40 {
- height: 40%;
- }
-
- .vh_60 {
- height: 60vh;
- }
-
- .vh-70 {
- height: 70vh;
- }
-
- .vh-77 {
- height: 77vh;
- }
-
- .vh-85 {
- height: 85vh;
- }
-
- .vh-15 {
- height: 15vh;
- }
-
- .h-700p {
- height: 700px;
- }
-
- .h-25 {
- height: 25%;
- }
-
- .h-60 {
- height: 60%;
- }
-
- .h-75 {
- height: 75%;
- }
-
- .w-60 {
- width: 60%;
- }
-
- .w-20p {
- width: 20px;
- }
-
- .w-200 {
- width: 200px;
- }
-
- .fw-500 {
- font-weight: 500;
- }
-
- .fw-600 {
- font-weight: 600;
- }
-
- .fw-700 {
- font-weight: 700;
- }
-
- .h-200p {
- height: 200px;
- }
-
- .mt-7 {
- margin-top: 7rem;
- }
-
- .sec-space-1 {
- margin-top: 80px;
- }
-
- .sec-space-2 {
- margin-top: 60px;
- }
-
- .sec-space-3 {
- margin-top: 40px;
- }
-
- .sec-space-4 {
- margin-top: 20px;
- }
-
- .sec-space-5 {
- margin-top: 0px;
- }
-
- .h-100p {
- height: 100px;
- }
-
- .gap-1 {
- gap: 0.7rem;
- }
-
- .gap-2 {
- gap: 2rem;
- }
-
- .br-1 {
- border-radius: 1rem;
- }
-
- .cursor-pointer {
- cursor: pointer;
- }
-
- .mt-5C {
- margin-top: 5rem;
- }
-
- .button_dark {
- -webkit-clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
- clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
- padding-right: 1.7rem;
- padding-bottom: 0.6rem;
- padding-top: 0.6rem;
- border-radius: 10px;
- }
-
- .productOverviewBody {
- overflow-x: hidden;
- }
-
- .productoverviewmain {
- background-image: url("./../dist/assets/imgs/productoverview/productbg.png");
- background-color: white;
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center;
- position: relative;
- }
-
- .photo_dual {
- width: 40rem;
- }
-
- .price_footer {
- background: rgba(255, 255, 255, 0.25);
- /* box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
- */
- backdrop-filter: blur(4px);
- -webkit-backdrop-filter: blur(4px);
- border: 1px solid rgba(255, 255, 255, 0.18);
- border: 2px solid;
- position: absolute;
- z-index: 999;
- bottom: 0;
- left: 0;
- }
-
- @media (max-width: 768px) {
- .footerDesText {
- width: 100%;
- }
- }
-
- .boxImgContainer {
- width: 4rem;
- }
-
- .priceCut_multi {
- font-size: 0.7rem;
- }
-
- .PO_learnMore {
- font-size: 0.7rem;
- }
-
- .productOverview .overviewProductHeading {
- font-size: 2.1rem;
- font-family: "satoshi", sans-serif;
- font-weight: 500;
- }
-
- .productOverview .overviewProductFullTitle {
- padding: 2rem 11rem;
- font-size: 3rem;
- font-family: "orbitron", sans-serif;
- }
-
- .productOverview .overviewProductDes {
- padding: 0 2rem;
- font-size: 1.5rem;
- font-family: "satoshi", sans-serif;
- }
-
- .PO_galleryContainer .PO_gallery_display {
- min-height: 500px;
- width: 100%;
- background: white;
- background: linear-gradient(180deg, white 7%, rgba(255, 142, 158, 0.3019607843) 52%, rgba(235, 134, 148, 0.4705882353) 100%);
- position: relative;
- overflow: hidden;
- }
-
- .PO_galleryContainer .PO_gallery_display .PO_gallery_display_img {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -46%);
- }
-
- .PO_gallery_box {
- padding: 1rem;
- }
-
- .PO_galleryContainer .PO_gallery_box_inner {
- padding: 1rem;
- background-color: #eeeeee;
- }
-
- .mobileAw {
- display: none;
- }
-
- .productoverBox {
- height: 900px;
- }
-
- .productoverBox .productoverBox-1 {
- height: 225px;
- }
-
- .productoverBox .productoverBox-2 {
- height: 225px;
- }
-
- .productoverBox .productoverBox-2 .futureProof {
- position: relative;
- }
-
- .productoverBox .productoverBox-2 .futureProofImg {
- position: absolute;
- top: 0;
- right: 0;
- width: 50%;
- }
-
- .productoverBox .productoverBox-3 {
- height: 225px;
- }
-
- .productoverBox .productoverBox-4 {
- height: 225px;
- }
-
- .productoverBox .productoverBox-5 {
- height: 200px;
- overflow: hidden;
- }
-
- .productoverBox .productoverBox-5 .box_innerImg {
- position: absolute;
- right: 8%;
- top: 0;
- height: 100%;
- }
-
- .productoverBox .productoverBox-5 .box_innerImg img {
- scale: 1.2;
- }
-
- .productoverBox .productoverBox-6 {
- height: 150px;
- }
-
- .productoverBox .productoverBox-7 {
- height: 225px;
- position: relative;
- }
-
- .productoverBox .productoverBox-7 .gridTruelifeImg {
- position: absolute;
- width: 85%;
- bottom: 0;
- left: 0;
- }
-
- .productoverBox .productoverBox-8 {
- height: 60px;
- }
-
- .productoverBox .productoverBox-9 {
- height: 230px;
- }
-
- .productoverBox .productoverBox-10 {
- height: 150px;
- }
-
- .productoverBox .productoverBox-11 {
- height: 180px;
- }
-
- .productoverBox .productoverBox-12 {
- height: 75px;
- }
-
- .productoverBox .PO_box {
- height: 100%;
- }
-
- .productoverBox .PO_box>div {
- padding: 1rem 0rem;
- }
-
- .productoverBox .PO_box .box_inner {
- position: relative;
- }
-
- .productoverBox .PO_box .bgBox_Content {
- background: rgb(236, 236, 236);
- background: linear-gradient(90deg, rgb(236, 236, 236) 4%, rgb(118, 118, 118) 100%);
- }
-
- .productoverBox .PO_box .box_inner_right {
- padding-left: 1rem;
- }
-
- .productoverBox .PO_box .box_inner_left {
- padding-right: 1rem;
- }
-
- .specsgrid {
- display: grid;
- height: 100vh;
- gap: 20px;
- grid-template-columns: repeat(8, minmax(5%, 1fr));
- grid-template-rows: repeat(12, minmax(5%, 1fr));
- }
-
- .specsgrid .specsItem {
- background-color: red;
- }
-
- .specsgrid .specsItem-1 {
- grid-column: 1/4;
- grid-row: 1/4;
- }
-
- .specsgrid .specsItem-2 {
- grid-column: 1/4;
- grid-row: 1/4;
- }
-
- .displayscreenpad .displayscreenpadContainer {
- text-align: center;
- }
-
- .displayscreenpad .displayscreenpadHeading {
- font-size: 8rem;
- }
-
- .displayscreenpad .displayscreenpadMain {
- margin-top: -8%;
- }
-
- .displayscreenpad .displayscreenpadleft>img {
- left: -8%;
- }
-
- .displayscreenpad .displayscreenpadright>img {
- right: -10%;
- }
-
- .dual_des_heading {
- font-size: 3rem;
- }
-
- .dualLaptop {
- width: 100vw;
- top: -100px;
- margin-top: 100px;
- margin-bottom: -100px;
- position: relative;
- }
-
- .dualLaptop .zeroBMain_desP {
- font-size: 1.2rem;
- }
-
- .dualLaptop .zeroBMain_des {
- position: absolute;
- top: 0;
- right: 0;
- max-width: 700px;
- padding-right: 9rem;
- }
-
- .dualLaptop .dualImgs {
- position: absolute;
- }
-
- .dualLaptop .dualImgs .dualImgsInner {
- width: 50rem;
- }
-
- .dualLaptop .dualImgsOne {
- top: 0;
- left: -10rem;
- transform: rotate(343deg);
- width: 68%;
- }
-
- .dualLaptop .dualImgsTwo {
- top: 14rem;
- right: -62%;
- transform: rotate(339deg);
- }
-
- .dualLaptop .dualImgsTwo .dualImgsInner {
- width: 82%;
- }
-
- .tableLaptop {
- margin-top: 300px;
- height: 90vh;
- width: 100vw;
- position: relative;
- margin-bottom: 300px;
- }
-
- .tableLaptop .circleTableLaptop_Heading {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -311%);
- }
-
- .tableLaptop .justTableLaptop {
- position: absolute;
- width: 86%;
- top: -10px;
- right: 128px;
- z-index: 1;
- }
-
- .tableLaptop .circleTableLaptop {
- background-color: #ececec;
- height: 70rem;
- width: 70rem;
- border-radius: 50%;
- position: relative;
- overflow: hidden;
- }
-
- .tableLaptop .circleTableLaptop .circleTableLaptopTop {
- bottom: -3%;
- width: 80%;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, 2%);
- }
-
- .tableLaptop .circleTableLaptop_text {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, 106%);
- }
-
- .trueLifeDisplay .trueLifeDisplay_headingHD>.headingLife {
- font-size: 6rem;
- }
-
- .trueLifeDisplay .trueLifeDisplay_des {
- padding: 0 10rem;
- }
-
- .font_p_Dual {
- font-size: 1.2rem;
- }
-
- .tableLaptopTwo {
- width: 100vw;
- height: 100vh;
- background-image: url("./../dist/assets/imgs/sectiontest.png");
- background-color: white;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- }
-
- .dragondisplay {
- position: relative;
- background: rgb(255, 255, 255);
- background: linear-gradient(184deg, rgb(255, 255, 255) 4%, rgb(235, 255, 133) 100%);
- overflow: hidden;
- }
-
- .dragondisplay .dragondisplay_heading {
- position: absolute;
- bottom: -4%;
- margin: auto;
- width: 100%;
- }
-
- .dragondisplay .dragondisplay_heading>h1 {
- font-size: 8rem;
- text-align: center;
- }
-
- .dragondisplay .dragondisplay_des {
- max-width: 600px;
- position: absolute;
- right: 0;
- top: 13%;
- padding: 4rem;
- }
-
- .intelGen .intelGenUL {
- max-width: 250px;
- gap: 8rem;
- }
-
- .intelGen .intelGenUL .intelGenULHeading {
- font-size: 1.8rem;
- font-weight: 700;
- border-bottom: 2px solid;
- }
-
- .intelGen .cpuSection {
- background-image: url("././../dist/assets/imgs/productoverview/cpu.png");
- background-color: white;
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center;
- }
-
- @media (max-width: 1200px) {
- .productOverview .p-6 {
- padding: 0;
- }
-
- .productOverview .overviewProductFullTitle {
- padding: 2rem 5rem;
- font-size: 2rem;
- }
-
- .productOverview>div {
- padding: 0;
- }
-
- .dualLaptop .dualImgsTwo .dualImgsInner {
- transform: rotate(339deg) translateX(57%) translateY(55%);
- }
-
- .productOverview .overviewProductFullTitle {
- font-size: 1rem;
- padding: 2rem 0rem;
- }
-
- .productOverview .overviewProductDes {
- font-size: 0.7rem;
- padding: 0.5rem;
- }
-
- .PO_galleryContainer .PO_gallery_display .PO_gallery_display_img {
- width: 100%;
- }
-
- .PO_galleryContainer .PO_gallery_display {
- min-height: 300px;
- }
-
- .PO_gallery_box {
- padding: 0;
- }
-
- .PO_galleryContainer .PO_gallery_box_inner {
- padding: 0;
- }
-
- .productoverBox.px-6 {
- padding: 1rem;
- margin: 0;
- height: -webkit-max-content;
- height: -moz-max-content;
- height: max-content;
- }
-
- .displayscreenpad .displayscreenpadHeading {
- font-size: 4rem;
- }
-
- .dualLaptop .dual_des_heading {
- font-size: 2rem;
- }
-
- .dualLaptop .zeroBMain_des {
- padding-right: 0;
- }
-
- .dualLaptop .zeroBMain_des .zeroBMain_desP {
- font-size: 0.8rem;
- max-width: 400px;
- }
-
- .controlPanel .controlPanel_des {
- top: -110px;
- }
-
- .controlPanel .controlPanel_des>h1 {
- font-size: 2.5rem;
- }
- }
-
- @media (max-width: 1000px) {
- .dualpassage {
- padding-left: 10rem;
- padding-right: 2rem;
- }
- }
-
- @media (max-width: 790px) {
- .productOverview .p-6 {
- padding: 0;
- }
-
- .productOverview .overviewProductFullTitle {
- padding: 2rem 0;
- font-size: 1rem;
- }
-
- .productOverview .overviewProductDes {
- font-size: 0.7rem;
- }
-
- .displayscreenpad .displayscreenpadHeading {
- font-size: 2rem;
- }
-
- .dualLaptop .dual_des_heading {
- font-size: 1rem;
- }
-
- .dualLaptop .zeroBMain_des .zeroBMain_desP {
- font-size: 0.7rem;
- max-width: 400px;
- }
-
- .controlPanel .controlPanel_des>h1 {
- font-size: 1.9rem;
- }
- }
-
- @media (max-width: 670px) {
- .zeroBMain_des {
- display: none;
- }
-
- .mobileAw {
- display: block;
- }
- }
-
- @media only screen and (max-width: 600px) {
- .p-6 {
- padding: 0;
- }
-
- .productoverviewmain .displayscreenpad .displayscreenpadHeading {
- font-size: 5rem;
- }
-
- .banner_heading_4 {
- font-size: 2rem;
- }
-
- .displayscreenpad .displayscreenpadHeading {
- font-size: 2rem;
- }
-
- .displayscreenpad .displayscreenpadMain {
- top: 0;
- }
-
- .displayscreenpad .twoScreenHeading {
- font-size: 1rem;
- }
-
- .tableLaptop {
- margin-top: 20%;
- margin-bottom: 0;
- height: -webkit-max-content;
- height: -moz-max-content;
- height: max-content;
- }
-
- .tableLaptop .dual_des_heading {
- font-size: 1rem;
- }
-
- .tableLaptop .circleTableLaptop {
- height: 300px;
- }
-
- .tableLaptop .circleTableLaptop .circleTableLaptopTop {
- bottom: -3%;
- width: 80%;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, 2%);
- }
-
- .tableLaptop .circleTableLaptop_Heading {
- position: absolute;
- top: 4%;
- left: 50%;
- transform: translate(-50%, 0);
- }
-
- .tableLaptop .justTableLaptop {
- position: absolute;
- width: 86%;
- top: 26%;
- right: 30px;
- z-index: 1;
- }
-
- .tableLaptop .circleTableLaptop_text {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, 0%);
- }
-
- .trueLifeDisplay {
- margin-top: 50px;
- }
-
- .trueLifeDisplay .trueLifeDisplay_headingHD>h1,
- .trueLifeDisplay .trueLifeDisplay_headingHD .headingLife {
- font-size: 2rem;
- }
-
- .trueLifeDisplay .trueLifeDisplay_des {
- padding: 1rem;
- }
-
- .trueLifeDisplay .trueLifeDisplay_des .font_p_Dual {
- font-size: 0.9rem;
- }
-
- .controlPanel {
- margin-top: 3rem;
- padding-bottom: 100px;
- }
-
- .controlPanel>.p-5 {
- padding: 0 !important;
- }
-
- .controlPanel .bgControlpanel {
- min-height: 85vh;
- }
-
- .controlPanel .bgControlpanel .bgControlpaneltabs {
- top: 55%;
- right: 0;
- transform: translateY(-50%);
- }
-
- .controlPanel .controlPanel_des {
- top: 0%;
- width: 100%;
- left: 50%;
- text-align: center;
- transform: translateX(-50%);
- margin: 1rem 0;
- margin: 1rem 0;
- }
-
- .controlPanel .controlPanel_des>h1 {
- font-size: 1.2rem;
- }
-
- .controlPanel .bgControlpaneltabs {
- padding: 0.1rem !important;
- padding-top: 3rem !important;
- }
-
- .controlPanel .bgControlpaneltabs>.nav-tabs {
- padding: 0;
- }
-
- .controlPanel .bgControlpaneltabs>ul {
- padding: 1rem;
- }
-
- .controlPanel .bgControlpaneltabs #tabLaptopContent {
- padding: 1rem;
- }
-
- .proSection .designedProLaptop_title .designedProLaptop_title_text {
- font-size: 2rem;
- }
- }
-
- .proSection .designedProLaptop_title>.designedProLaptop_title_text {
- font-size: 6rem;
- }
-
- .proSection .designedProLaptopList>li {
- font-size: 2.5rem;
- }
-
- @media (max-width: 1200px) {
- .proSection .designedProLaptopList>li {
- font-size: 1.5rem;
- }
- }
-
- @media (max-width: 768px) {
- .proSection {
- padding: 1rem;
- }
-
- .proSection .designedProLaptop_title>.designedProLaptop_title_text {
- font-size: 4rem;
- }
-
- .proSection .designedProLaptopList {
- width: 100%;
- padding: 1rem;
- }
- }
-
- @media (max-width: 576px) {
- .proSection .designedProLaptop_title>.designedProLaptop_title_text {
- font-size: 2.5rem;
- }
- }
-
- .popupKeyboard {
- position: relative;
- overflow-x: hidden;
- padding-top: 11rem;
- }
-
- .popupKeyboard .popupKeyboard_hParent {
- position: absolute;
- top: 0;
- left: 0;
- }
-
- .popupKeyboard .popupKeyboard_heading>h1 {
- font-size: 9rem;
- }
-
- @media (max-width: 1200px) {
- .popupKeyboard .popupKeyboard_heading>h1 {
- font-size: 5rem;
- }
- }
-
- @media (max-width: 768px) {
- .controlPanel {
- padding-bottom: 100px;
- }
-
- .popupKeyboard .popupKeyboard_heading {
- padding: 1rem;
- }
-
- .popupKeyboard .popupKeyboard_heading>h1 {
- font-size: 3rem;
- }
-
- .popupKeyboard .popupKeyboard_des {
- padding: 1rem;
- font-size: 1rem;
- }
-
- .popupKeyboard .popupKeyboard_hParent {
- padding: 1rem;
- }
- }
-
- @media (max-width: 576px) {
- .popupKeyboard .popupKeyboard_heading {
- padding: 1rem;
- }
-
- .popupKeyboard .popupKeyboard_heading>h1 {
- font-size: 2rem;
- }
-
- .popupKeyboard .popupKeyboard_des {
- padding: 2rem;
- padding-top: 0;
- font-size: 0.8rem;
- }
- }
-
- .dragondisplay {
- position: relative;
- background: rgb(255, 255, 255);
- background: linear-gradient(184deg, rgb(255, 255, 255) 4%, rgb(235, 255, 133) 100%);
- overflow: hidden;
- }
-
- .dragondisplay .dragondisplay_heading {
- position: absolute;
- bottom: 0;
- margin: auto;
- width: 100%;
- }
-
- .dragondisplay .dragondisplay_heading>h1 {
- font-size: 8rem;
- text-align: center;
- }
-
- .dragondisplay .dragondisplay_des {
- max-width: 600px;
- position: absolute;
- right: 0;
- top: 13%;
- padding: 4rem;
- }
-
- @media (max-width: 1200px) {
- .dragondisplay .dragondisplay_heading>h1 {
- font-size: 4rem;
- text-align: center;
- }
- }
-
- @media (max-width: 768px) {
- .dragondisplay .dragondisplay_heading>h1 {
- font-size: 3rem;
- text-align: center;
- }
- }
-
- @media (max-width: 576px) {
- .dragondisplay .dragondisplay_heading>h1 {
- font-size: 1.5rem;
- text-align: center;
- }
- }
-
- .lensAnwi .box_lens .anwi_BoxLen {
- border-radius: 40px;
- box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.171) inset;
- }
-
- .lensAnwi .box_lens .box_lens_img {
- width: 45%;
- }
-
- .lensAnwi .box_lens .screenpadLens {
- font-size: 1.2rem;
- }
-
- .lensAnwi .box_lens .lenHeading {
- font-size: 2rem;
- }
-
- .lensAnwi .box_lens .anwi_BoxLen {
- gap: 10px;
- }
-
- @media (max-width: 1400px) {
- .lensAnwi .box_lens .lenHeading {
- font-size: 1rem;
- }
-
- .lensAnwi .box_lens .screenpadLens {
- font-size: 0.7rem;
- }
- }
-
- @media (max-width: 1200px) {
- .lensAnwi .row_lensAnwi {
- padding: 2rem;
- }
-
- .lensAnwi .box_lens .lenHeading {
- font-size: 0.7rem;
- }
-
- .lensAnwi .box_lens .screenpadLens {
- font-size: 0.5rem;
- }
- }
-
- @media (max-width: 576px) {
- .lensAnwi .box_lens .box_lens_img {
- width: 25%;
- }
-
- .dragondisplay .dragondisplay_heading>h1 {
- font-size: 1.5rem;
- text-align: center;
- }
- }
-
- .professinalGrade .professinalGradeImgContainer {
- background-image: url("././../dist/assets/imgs/productoverview/promask.png");
- background-color: white;
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center;
- }
-
- .professinalGrade .professinalGradeImg {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 50%;
- }
-
- @media (max-width: 1200px) {
- .professinalGrade h1 {
- font-size: 3rem;
- }
- }
-
- @media (max-width: 768px) {
- .professinalGrade h1 {
- font-size: 2rem;
- }
-
- .professinalGrade .font_p_Dual {
- font-size: 1rem;
- }
- }
-
- @media (max-width: 576px) {
- .professinalGrade p {
- padding-left: 1rem;
- }
-
- .professinalGrade .professinalGradeImg {
- width: 80%;
- }
- }
-
- .stunningSound {
- position: relative;
- padding-top: 15rem;
- overflow-x: hidden;
- }
-
- .stunningSound .stunningSound_heading {
- position: absolute;
- z-index: -1;
- top: 0;
- left: 0;
- }
-
- .stunningSound .stunningSound_heading>h1 {
- font-size: 10rem;
- }
-
- .stunningSound .stunningSound_des {
- position: absolute;
- right: 0;
- top: 30%;
- transform: translate(0%, 0%);
- max-width: 400px;
- }
-
- @media (max-width: 1200px) {
- .stunningSound .stunningSound_heading>h1 {
- font-size: 7rem;
- }
-
- .stunningSound .stunningSound_des {
- padding-right: 1rem;
- max-width: 300px;
- }
- }
-
- @media (max-width: 1000px) {
- .stunningSound .stunningSound_heading {
- top: 20%;
- }
-
- .stunningSound .stunningSound_heading>h1 {
- font-size: 5rem;
- }
-
- .stunningSound .stunningSound_des {
- top: 40%;
- right: 0;
- }
- }
-
- @media (max-width: 768px) {
- .stunningSound .stunningSound_heading>h1 {
- font-size: 4rem;
- }
-
- .stunningSound .stunningSound_des {
- max-width: 270px;
- top: 50%;
- right: 0;
- }
-
- .stunningSound .stunningSound_des p {
- font-size: 1rem;
- }
- }
-
- @media (max-width: 576px) {
- .stunningSound {
- padding-top: 1rem;
- }
-
- .stunningSound .stunningSound_heading {
- top: 15%;
- }
-
- .stunningSound .stunningSound_heading>h1 {
- font-size: 2rem;
- padding: 2rem;
- }
-
- .stunningSound .stunningSound_des {
- padding: 2rem;
- top: 25%;
- max-width: 100%;
- left: 0;
- }
- }
-
- .wifiSection {
- overflow-x: hidden;
- position: relative;
- }
-
- .wifiSection .wifiSectionDes {
- display: none;
- }
-
- .wifiSection .textWifiContainer {
- position: relative;
- }
-
- .wifiSection .textWifiContainer .wifiSection_des {
- max-width: 500px;
- position: absolute;
- right: 0;
- top: -48%;
- width: 100%;
- height: 100%;
- }
-
- .wifiSection .textWifiContainer .textWifiContainerHeading>h1 {
- font-size: 5rem;
- }
-
- @media (max-width: 1200px) {
- .wifiSection .textWifiContainer .textWifiContainerHeading>h1 {
- font-size: 5rem;
- }
- }
-
- @media (max-width: 1000px) {
- .wifiSection .textWifiContainer {
- display: none;
- }
-
- .wifiSection .wifiSectionDes {
- padding: 2rem;
- display: block;
- }
-
- .wifiSection .wifiSectionDes .wifiSection_des>p {
- font-size: 1rem;
- }
- }
-
- .circleTableLaptop_Heading {
- top: 20%;
- }
-
- .circleTableLaptop_text {
- bottom: 25%;
- }
-
- .circleTableLaptop_text>div {
- padding: 0px 22%;
- }
-
- @media (max-width: 1300px) {
- .circleTableLaptop_text {
- bottom: 18%;
- }
-
- .circleTableLaptop_text>div {
- font-size: 1rem;
- }
- }
-
- @media (max-width: 1000px) {
- .circleTableLaptop_Heading h1 {
- font-size: 1.5rem;
- }
-
- .circleTableLaptop_text {
- bottom: 25%;
- }
-
- .circleTableLaptop_text>div {
- font-size: 0.7rem;
- }
- }
-
- @media (max-width: 600px) {
- .circleTableLaptop_Heading {
- top: 0;
- }
-
- .circleTableLaptop_Heading h1 {
- font-size: 1.5rem;
- }
- }
-
- @media (max-width: 1200px) {
- .proConnectivity h1 {
- font-size: 2.5rem;
- }
-
- .proConnectivity .font_p_Dual {
- font-size: 1rem;
- }
- }
-
- @media (max-width: 768px) {
- .proConnectivity h1 {
- font-size: 2rem;
- }
-
- .proConnectivity .font_p_Dual {
- font-size: 0.7rem;
- }
- }
-
- @media (max-width: 600px) {
- .proConnectivity .connectivityPso_des {
- padding: 2rem;
- }
- }
-
- .osPlusSoftware {
- position: relative;
- padding-top: 10rem;
- }
-
- .osPlusSoftware .osContianer {
- position: absolute;
- top: 5rem;
- left: 50%;
- transform: translateX(-50%);
- }
-
- .osPlusSoftware .osContianer_des_font {
- font-size: 1.5rem;
- }
-
- @media (max-width: 1200px) {
- .osPlusSoftware {
- position: relative;
- }
-
- .osPlusSoftware .osContianerHeading>h1 {
- font-size: 5rem;
- }
-
- .osPlusSoftware .osContianer_des_font {
- font-size: 1.5rem;
- }
- }
-
- @media (max-width: 1000px) {
- .osPlusSoftware {
- padding-top: 1rem;
- }
-
- .osPlusSoftware .osContianer {
- top: 1rem;
- }
-
- .osPlusSoftware .osContianerHeading>h1 {
- font-size: 2rem;
- text-align: center;
- }
-
- .osPlusSoftware .osContianer_des_font {
- font-size: 1rem;
- }
- }
-
- @media (max-width: 768px) {
- .osPlusSoftware .osContianer {
- top: -1rem;
- }
-
- .osPlusSoftware .osContianerHeading>h1 {
- font-size: 2rem;
- text-align: center;
- }
-
- .osPlusSoftware .osContianer_des_font {
- font-size: 0.7rem;
- text-align: center;
- }
- }
-
- .controlPanel {
- margin-top: 10rem;
- padding-bottom: 300px;
- }
-
- .controlPanel .controlPanel_des {
- position: absolute;
- top: -170px;
- left: 80px;
- }
-
- .controlPanel .bgControlpanel {
- min-height: 100vh;
- background-color: #ececec;
- border-radius: 157px;
- position: relative;
- }
-
- .controlPanel .bgControlpanel .bgControlpaneltabs {
- position: absolute;
- top: 100px;
- right: 0;
- }
-
- .controlPanel .bgControlpanel .bgControlpaneltabs .nav-link:focus-visible,
- .controlPanel .bgControlpanel .bgControlpaneltabs .nav-item:focus-visible {
- outline: none !important;
- }
-
- .controlPanel .bgControlpanel .bgControlpaneltabs .nav-tabs {
- border-bottom: 1px solid;
- margin-bottom: 2rem;
- }
-
- .controlPanel .bgControlpanel .bgControlpaneltabs .nav-item {
- position: relative;
- border: none;
- }
-
- .controlPanel .bgControlpanel .bgControlpaneltabs .nav-tabs .nav-link {
- position: relative;
- color: black;
- font-weight: 500;
- }
-
- .controlPanel .bgControlpanel .bgControlpaneltabs .nav-tabs .nav-link.active {
- border: none;
- background-color: transparent;
- }
-
- .controlPanel .bgControlpanel .bgControlpaneltabs .nav-tabs .nav-link.active::before {
- display: block;
- }
-
- .controlPanel .bgControlpanel .bgControlpaneltabs .nav-item .nav-link::before {
- content: "";
- position: absolute;
- width: 100%;
- height: 5px;
- bottom: -2px;
- right: 0;
- display: none;
- background-color: black;
- }
-
- @media (max-width: 768px) {
- .controlPanel {
- padding-bottom: 100px;
- }
-
- .controlPanel .bgControlpanel {
- min-height: 50vh;
- }
- }
-
- @media (max-width: 600px) {
- .controlPanel .controlPanel_des {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- left: 50%;
- }
- }
-
- /* home page */
- /* BUtton */
- .button_dark.btn-dark {
- background-color: #000 !important;
- font-family: "Satoshi", sans-serif;
- }
-
- .button_dark.btn-dark:hover {
- background-color: #000 !important;
- font-family: "Satoshi", sans-serif;
- opacity: 1 !important;
- }
-
- /* main-container */
- /* .home-main-container #navbar-head {
- /* navbar
- } */
-
- .home-main-container #navbar-head .navbar-nav .nav-item .nav-link {
- color: #000;
- font-family: "Satoshi", sans-serif;
- }
-
- /* .home-main-container .hero-banner {
- /* background-image: url(../../dist/assets/imgs/Home_new/Home_banner_bg.png); */
- /* background-size: cover; */
- /* background-repeat: no-repeat; */
- /* background-position: center center;
- } */
-
- .home-main-container .hero-banner .banner-main-container .carousel-indicators .carousel_btn.active {
- color: #000;
- }
-
- .home-main-container .hero-banner .banner-main-container .owl-dots {
- text-align: center;
- margin-top: -15px !important;
- }
-
- .home-main-container .hero-banner .banner-main-container .owl-dots .owl-dot span {
- height: 5px !important;
- width: 35px !important;
- background: #fff;
- }
-
- .home-main-container .hero-banner .banner-main-container .owl-dots .owl-dot:hover span {
- background: #000;
- }
-
- .home-main-container .hero-banner .banner-main-container .owl-dots .owl-dot.active span {
- background: #000;
- }
-
- .home-main-container .ad_banner .card {
- background: url(../../dist/assets/imgs/Home_new/Home_banner_bg.png);
- }
-
- .home-main-container .Explore_fyro_container {
- background-color: #000;
- }
-
- .home-main-container .Explore_fyro_container .Explore_fyro_products_main_container .Fyro_main_card {
- background: url(.././dist/assets/imgs/Home_new/Explore_Fyro_bg.png);
- background-repeat: no-repeat;
- background-size: cover;
- }
-
- .home-main-container .Explore_fyro_container .Explore_fyro_products_main_container .Fyro_main_card .rtxA_200 {
- background-color: #FFDAD4;
- }
-
- .home-main-container .accessories_main_container .nvme_m_2 {
- background: #f2f2f2;
- width: 100%;
- max-width: 95%;
- }
-
- .home-main-container .accessories_main_container .ora_series {
- background: #ffeea9;
- }
-
- .home-main-container .accessories_main_container .keyboard_mouse {
- background: #06777c;
- }
-
- .home-main-container .zeno_steamlined_section {
- background-color: #000;
- }
-
- .home-main-container .zeno_steamlined_section .zeno_logo img {
- width: 150px;
- }
-
- .home-main-container .zeno_steamlined_section .zeno_products_main_container .Two_four_inch_Card {
- /* background: radial-gradient(#54aff6, #26549A); */
- width: 100%;
- max-width: 86%;
- }
-
- /* .home-main-container .zeno_steamlined_section .zeno_products_main_container .zeno_sleekbook_1 {
- background: radial-gradient(#FFEFAB, #FFDB45);
- }
-
- .home-main-container .zeno_steamlined_section .zeno_products_main_container .zeno_sleekbook_2 {
- background: radial-gradient(#FFFFFF, #CCCCCC);
- } */
-
- @media (min-width: 1900px) {
- /* .hero-banner {
- background-size: 100% 100%;
- } */
- }
-
- @media (min-width: 1024px) {
- .banner_heading_4 {
- font-size: 2rem;
- }
- }
-
- @media (min-width: 278px) and (max-width: 767px) {
- /* .hero-banner {
- height: 100vh;
- } */
-
- .carousel-inner .carousel_img {
- height: 80vh;
- }
-
- .fyro_card {
- padding-top: 0 !important;
- }
-
- .Two_four_inch_Card {
- margin-left: 0 !important;
- width: 100% !important;
- margin-bottom: 20px;
- }
-
- .accessories_main_container {
- text-align: center;
- }
-
- .accessories_main_container .ora_series {
- margin-top: 1rem !important;
- }
-
- .zeno_products_main_container {
- text-align: center;
- }
-
- .Fyro_main_card {
- text-align: center;
- }
-
- .ad_banner {
- text-align: center;
- }
-
- .ad_banner .ad_banner_img {
- width: 100% !important;
- }
-
- .owl-dots {
- text-align: center;
- margin-top: 0 !important;
- }
- }
-
- @media (min-width: 278px) and (max-width: 767px) {
- .home-main-container h5 {
- font-size: 1rem;
- }
-
- .home-main-container h6 {
- font-size: 1rem;
- }
-
- .home-main-container .sec-space-1 {
- margin-top: 40px;
- }
-
- .home-main-container .sec-space-2 {
- margin-top: 40px;
- }
-
- .home-main-container .banner-main-container {
- /* height: 550px; */
- display: block !important;
- text-align: center;
- }
-
- .home-main-container .banner-main-container .col-md-6 {
- padding-top: 7rem;
- }
-
- .home-main-container .banner-main-container .col-md-6 .button_dark {
- display: none;
- }
-
- .home-main-container .banner-main-container .mobile-home-img {
- width: 85%;
- }
-
- .home-main-container .banner-main-container h1 {
- font-size: 2rem;
- }
-
- .home-main-container .hero-banner {
- background-position: 0;
- /* height: 80vh; */
- }
-
- .home-main-container .aw-main-features {
- display: none;
- }
-
- .home-main-container .mobile-text-center {
- text-align: center;
- }
-
- .home-main-container .aw-feature-name h5 {
- transform: rotate(0deg);
- -ms-writing-mode: lr-tb;
- writing-mode: horizontal-tb;
- }
-
- .home-main-container .products-main-container .enterprise-prd {
- margin-top: 10px;
- }
-
- .home-main-container .products-main-container .consumer-prd {
- margin-top: 10px;
- }
-
- .home-main-container .news-letter-sec a.button_dark {
- padding: 10px 5px;
- }
-
- .home-main-container .owl-carousel.star-products-img-sec .d-flex {
- justify-content: center !important;
- }
-
- .home-main-container .owl-carousel.star-products-img-sec .owl-nav {
- text-align: center;
- margin-right: 0px;
- }
-
- .home-main-container .star-products .owl-dots {
- display: none;
- }
-
- .home-main-container .aw-support-sec-main-container .row {
- margin: 0px !important;
- text-align: center;
- }
-
- .home-main-container .aw-support-sec-main-container .col-md-4 {
- border: none !important;
- }
-
- .home-main-container .aw-support-sec-main-container .support-sec-heading {
- padding: 0 !important;
- }
-
- .home-main-container .offer-main-sec {
- margin-bottom: 0 !important;
- padding: 0 !important;
- }
-
- .home-main-container .offer-sec p {
- font-size: 0.85rem;
- }
-
- .footer-wrapper .accordion-button {
- font-family: "Satoshi", sans-serif;
- color: white;
- /* background-color: #000; */
- }
-
- .footer-wrapper .accordion-button:not(.collapsed)::after {
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
- }
-
- .footer-wrapper .accordion-body {
- font-family: "Satoshi", sans-serif;
- color: white;
- /* background-color: #000; */
- }
-
- .footer-wrapper .accordion-button.collapsed::after {
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
- }
-
- .footer-wrapper .footer-sub-content p {
- font-size: 0.85rem;
- }
- }
-
- .feature-bg-image.animated-feature-img {
- -webkit-animation: slide 1s ease 0.2s forwards;
- animation: slide 1s ease 0.2s forwards;
- opacity: 0;
- }
-
- @-webkit-keyframes slide {
- from {
- opacity: 0;
- }
-
- to {
- opacity: 1;
- }
- }
-
- @keyframes slide {
- from {
- opacity: 0;
- }
-
- to {
- opacity: 1;
- }
- }
-
- [alt=footer-rocket-img] {
- cursor: pointer;
- width: 70px;
- }
-
- .partners-img {
- height: 60px;
- }
-
- @media (min-width: 405px) and (max-width: 570px) {
- .home-main-container .banner-main-container .mobile-home-img {
- width: 60%;
- }
- }
-
- @media (min-width: 1800px) {
- .banner-wrapper {
- position: relative;
- }
-
- .banner-main-container {
- /* height: 650px !important; */
- max-height:625px !important
- /* min-height: 650px !important; */
- }
-
- .carousel_img {
- height: 100%;
- max-height: 750px
- }
-
- .offer-main-sec {
- position: absolute;
- bottom: 15%;
- right: 20%;
- width: 60%;
- }
- }
-
- .shopping-cart-main-container {
- background-color: #F5FFEA;
- padding-bottom: 50px;
- }
-
- .shopping-cart-main-container * {
- font-family: "Satoshi", sans-serif;
- }
-
- .shopping-cart-main-container h6 {
- padding: 10px;
- margin-bottom: 0;
- }
-
- .shopping-cart-main-container .cart-sec-highlighter .text-muted {
- color: #C5C5C5 !important;
- }
-
- .shopping-cart-main-container .alert-display-sec {
- z-index: 1;
- }
-
- .shopping-cart-main-container .alert-display-sec .alert-dismissible {
- background: rgba(255, 255, 255, 0.66);
- }
-
- .warrenty-sec img {
- width: 40px;
- }
-
- #footer-head .footer-wrapper.sec-space-1 {
- margin-top: 0;
- }
-
- @media (max-width: 1300px) {
- .cart-sec-highlighter h5 {
- font-size: 0.8rem;
- }
- }
-
- @media (max-width: 768px) {
-
- .cart-sec-highlighter,
- .shopping-cart-details-row-1 {
- display: none !important;
- }
-
- .buy-together-sec {
- text-align: center;
- }
-
- .buy-together-sec .row {
- padding: 10px;
- }
-
- .mobile-cart-img img {
- width: 200px;
- }
- }
-
- .clipPathSectionCol {
- position: relative;
- }
-
- .clipPathSectionCol .innerClipPathImg {
- position: absolute;
- top: 12%;
- left: 9%;
- width: 81%;
- }
-
- .clipPathSectionCol .innerClipPathImgFirstThree {
- position: absolute;
- top: 12%;
- left: 5%;
- width: 81%;
- }
-
- .clipPathSectionCol .innerClipPathImgFirstFour {
- position: absolute;
- top: 12%;
- left: 5%;
- width: 81%;
- }
-
- .clipPathSectionCol .innerClipPathImgFirstFour>img {
- transform: scale(0.7);
- }
-
- .clipPathSectionCol .innerClipPathImgSectionTwo {
- position: absolute;
- top: 50%;
- left: 28%;
- transform: translateY(-50%);
- width: 81%;
- }
-
- .clipPathSectionCol .innerClipPathImgSectionThree {
- position: absolute;
- top: 50%;
- left: 17%;
- transform: translateY(-50%);
- width: 81%;
- }
-
- .clipPathSectionCol .innerClipPathImgSectionFour {
- position: absolute;
- top: 50%;
- left: 17%;
- transform: translateY(-50%);
- width: 81%;
- }
-
- .allinoneLanding {
- position: relative;
- }
-
- .allinoneLanding #navbar-head * {
- color: white;
- }
-
- .allinoneLanding .headingAllinOne {
- position: absolute;
- bottom: 10%;
- left: 0;
- }
-
- .sectionTwoImgAllInone {
- transform: scale(1.4);
- }
-
- .allinoneDualMarginTop {
- margin-top: 100px;
- }
-
- .sectionfiveAllinOne .infoContainer {
- position: relative;
- }
-
- .sectionfiveAllinOne .infoContainer .infoContainerOneText {
- position: absolute;
- top: 20%;
- left: 50%;
- transform: translateX(-50%);
- }
-
- .sectionfiveAllinOne .infoContainer .infoContainerOneText>h1 {
- font-size: 1.7rem;
- }
-
- .infoContainerYellow {
- background-color: #FFB518;
- }
-
- .infoContainerOrange {
- background-color: #E05E00;
- color: white;
- }
-
- .infoContainerBlue {
- background-color: #461DCF;
- color: white;
- }
-
- .infoContainer_des {
- font-size: 0.8rem;
- }
-
- .supportBoxCircle {
- width: 100px;
- height: 100px;
- background-color: black;
- border-radius: 50%;
- }
-
- .carouselLanding {
- overflow-x: auto;
- display: flex;
- gap: 50px;
- margin-bottom: 4rem;
- }
-
- .carouselLanding .carouselLandingItem {
- width: 300px;
- }
-
- .carouselLanding .carouselLandingItem>div {
- border-radius: 25px;
- overflow: hidden;
- }
-
- .carouselLanding .carouselLandingItem .carouselLandingItemInner {
- position: relative;
- }
-
- .carouselLanding .carouselLandingItem .carouselLandingItemInner .carouselLandingItemInnerOverlay {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- background: rgba(0, 0, 0, 0.453);
- }
-
- .allinoneslider .carouselLanding {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- }
-
- .allinoneslider .owl-nav {
- bottom: 0;
- position: absolute;
- display: none;
- right: 15%;
- border: 1px solid;
- padding: 0.5rem 1.3rem;
- border-radius: 70px;
- }
-
- .allinoneslider .owl-nav span {
- font-size: 2rem;
- text-align: center;
- }
-
- .allinoneslider .owl-stage {
- width: 100% !important;
- }
-
- @media (max-width: 1400px) {
- .allinoneslider .owl-stage {
- width: -webkit-max-content !important;
- width: -moz-max-content !important;
- width: max-content !important;
- }
- }
-
- @media (max-width: 1300px) {
- .laptopsSection .headinglaptop {
- font-size: 5rem;
- }
-
- .headinglaptopSub {
- font-size: 1.2rem;
- }
- }
-
- @media (max-width: 1000px) {
- .laptopsSection .headinglaptop {
- font-size: 3rem;
- }
-
- .headinglaptopSub {
- font-size: 1.2rem;
- }
-
- .allinoneDualMarginTop .allinoneDualMarginTop_desContainer {
- padding: 2rem;
- }
-
- .allinoneDualMarginTop .allinoneDualMarginTop_desContainer h1 {
- font-size: 2rem;
- }
-
- .allinoneDualMarginTop .allinoneDualMarginTop_desContainer .allinoneDualMarginTop_p {
- font-size: 1rem;
- }
-
- .allinoneDualMarginTop {
- margin-top: 100px;
- }
- }
-
- @media (tab-port) {
- .laptopsSection .headinglaptop {
- font-size: 2rem;
- }
-
- .headinglaptopSub {
- font-size: 1rem;
- }
- }
-
- @media only screen and (max-width: 600px) {
- .headingAllinOne>h1 {
- font-size: 2rem;
- }
- }
-
- @media (max-width: 600px) {
- .supTitleSection {
- text-align: center;
- font-size: 1rem;
- }
-
- .allinoneDualMarginTop .clipPathSectionCol {
- padding-right: 0 !important;
- }
-
- .headingAllinOne {
- padding-left: 2rem !important;
- padding-right: 2rem !important;
- }
-
- .headingAllinOne>h1 {
- font-size: 2rem;
- }
-
- .laptopSectionDesP {
- padding: 1rem;
- width: 100%;
- align-items: center;
- }
-
- .allinoneDualMarginTop .clipPathSectionCol {
- padding-left: 0 !important;
- }
-
- .clipPathSectionCol .allinoneDualMarginTop_pContainer {
- padding: 2rem;
- align-items: center;
- }
-
- .clipPathSectionCol .innerClipPathImgSectionThree {
- top: 30%;
- }
-
- .clipPathSectionCol .innerClipPathImgSectionFour {
- top: 30%;
- }
-
- .supportBoxParent {
- padding: 2rem;
- gap: 1.5rem;
- }
-
- .allinoneDualMarginTop_p {
- text-align: center;
- font-size: 1rem;
- }
-
- .insightsAdvHeading {
- margin-top: 2rem;
- }
-
- .insightsAdv {
- width: 100vw;
- padding: 1rem;
- }
-
- .insightsAdv>ul {
- overflow-x: auto;
- }
-
- .carouselLanding {
- overflow-x: auto;
- display: block;
- gap: 0;
- margin-bottom: 1rem;
- }
-
- .carouselLanding .carouselLandingItem {
- width: 100%;
- }
-
- .carouselLanding .carouselLandingItem>div {
- border-radius: 25px;
- overflow: hidden;
- }
-
- .carouselLanding .carouselLandingItem .carouselLandingItemInner {
- position: relative;
- }
-
- .carouselLanding .carouselLandingItem .carouselLandingItemInner .carouselLandingItemInnerOverlay {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- background: rgba(0, 0, 0, 0.453);
- }
-
- .carouselLanding .mt-5C {
- margin-top: 0;
- }
- }
-
- @media (max-width: 576px) {
- .allinInMargintop {
- margin-top: 100px;
- }
-
- .content-main-allinone {
- padding: 1rem;
- }
-
- .scaleSmallAllinone {
- scale: 0.9;
- }
-
- .allinoneslider .owl-stage {
- width: -webkit-max-content !important;
- width: -moz-max-content !important;
- width: max-content !important;
- }
- }
-
- @media (max-width: 320px) {
- .laptopsSection .headinglaptopSub {
- text-align: center;
- font-size: 1rem;
- }
-
- .laptopsSection .laptopSectionDesP {
- gap: 2rem !important;
- }
-
- .allinoneDualMarginTop .allinoneDualMarginTop_p {
- text-align: center;
- font-size: 1rem;
- }
-
- .allinoneDualMarginTop .allinoneDualMarginTop_pContainer {
- width: 100%;
- }
-
- .allinoneDualMarginTop .clipPathSectionCol {
- padding-left: 0 !important;
- padding-right: 0 !important;
- }
-
- .clipPathSectionCol .innerClipPathImgSectionThree {
- top: 22%;
- }
-
- .clipPathSectionCol .innerClipPathImgSectionFour {
- top: 22%;
- }
-
- .clipPathSectionCol .innerClipPathImgFirstFour {
- top: 0;
- }
-
- .allinoneDualMarginTop {
- margin-top: 100px;
- }
-
- .allinoneDualMarginTop .innerClipPathImgFirstThree {
- top: 0;
- }
- }
-
- .animateHeadingLeft,
- .dualLaptopSlideLeftone {
- transform: translateX(1000%);
- transition: 0.8s ease;
- }
-
- .addTextanimationLeft {
- transform: translateX(0);
- }
-
- .animateHeadingRight,
- .dualLaptopSlideone {
- transform: translateX(-1000%);
- transition: 0.8s ease;
- }
-
- .addTextanimationRight {
- transform: translateX(0);
- }
-
- .laptoponanimation,
- .allinOnepc {
- opacity: 0;
- transition: 0.8s ease;
- }
-
- .addOpacity {
- opacity: 1;
- }
-
- .clipPathSectionCol .dualLaptopSlideLeftone {
- transform: translate(1000%, -50%);
- transition: 0.8s ease;
- }
-
- .clipPathSectionCol .dualLaptopSlideLeftoneLeft {
- transform: translate(0, -50%);
- }
-
- .cpuSlideLeftone {
- transform: translateX(-1000%);
- transition: 0.8s ease;
- }
-
- .controllerEight {
- transform: translateX(1000%);
- }
-
- .traslateZero {
- transform: translateX(0);
- }
-
- .clipPathSectionCol .innerClipPathImgSectionFour.controllerEight {
- transform: translate(1000%, -50%);
- transition: 0.8s ease;
- }
-
- .clipPathSectionCol .innerClipPathImgSectionFour.traslateZero {
- transform: translate(0, -50%);
- }
-
- /* 0 - 600px: Phone 600 - 900px: Tablet portrait 900 - 1200px: Tablet landscape [1200 - 1800] is where our normal styles apply 1800px + : Big desktop $breakpoint arguement choices: - phone - tab-port - tab-land - big-desktop ORDER: Base + typography > general layout + grid > page layout > components 1em = 16px */
- /* Orbitron */
- @font-face {
- font-family: "Orbitron";
- /* src: url("../dist/assets/font/") format("truetype");
- */
- src: url("../dist/assets/font/orbitron/Orbitron-Regular.ttf") format("truetype");
- font-weight: 400;
- font-style: normal;
- }
-
- @font-face {
- font-family: "Orbitron";
- src: url("../dist/assets/font/orbitron/Orbitron-Medium.ttf") format("truetype");
- font-weight: 500;
- font-style: normal;
- }
-
- @font-face {
- font-family: "Orbitron";
- src: url("../dist/assets/font/orbitron/Orbitron-SemiBold.ttf") format("truetype");
- font-weight: 600;
- font-style: normal;
- }
-
- @font-face {
- font-family: "Orbitron";
- src: url("../dist/assets/font/orbitron/Orbitron-Bold.ttf") format("truetype");
- font-weight: 700;
- font-style: normal;
- }
-
- /* Orbitron end */
- /* Satoshi */
- @font-face {
- font-family: "Satoshi";
- src: url("../dist/assets/font/satoshi/Satoshi-Regular.ttf") format("truetype");
- font-weight: 400;
- font-style: normal;
- }
-
- @font-face {
- font-family: "Satoshi";
- src: url("../dist/assets/font/satoshi/Satoshi-Medium.ttf") format("truetype");
- font-weight: 500;
- font-style: normal;
- }
-
- @font-face {
- font-family: "Satoshi";
- src: url("../dist/assets/font/satoshi/Satoshi-Bold.ttf") format("truetype");
- font-weight: 700;
- font-style: normal;
- }
-
- *,
- *::after,
- *::before {
- margin: 0;
- padding: 0;
- box-sizing: inherit;
- font-family: "Orbitron", sans-serif;
- }
-
- html {
- font-size: 100%;
- }
-
- body {
- box-sizing: border-box;
- overflow-x: hidden;
- }
-
- @media only screen and (max-width: 56.25em) {
- body {
- padding: 0;
- }
- }
-
- .bg-green {
- background-color: #3bb78f;
- background: linear-gradient(90deg, #3bb78f 0%, #0bab64 35%, #3bb78f 100%);
- }
-
- /* button */
- .button_dark {
- -webkit-clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
- clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
- padding-right: 1.7rem !important;
- padding-bottom: 0.6rem !important;
- padding-top: 0.6rem !important;
- border-radius: 10px;
- }
-
- /* navbar */
- #navbar-head {
- position: fixed;
- width: 100%;
- z-index: 9999;
- top: 0;
- box-shadow: 0 6PX 16PX 0 #1919190f;
- }
-
- #navbar-head .biz-nav-wrapper .navbar-brand img {
- width: 100px;
- }
-
- #navbar-head .biz-nav-wrapper .dropdown.has-mega-menu {
- position: static !important;
- }
-
- #navbar-head .biz-nav-wrapper .dropdown-menu .dropdown-items-row {
- width: 100%;
- margin: 0px;
- }
-
- #navbar-head .navbar-nav {
- gap: 2rem;
- }
-
- #navbar-head .navbar-nav .nav-item .nav-link {
- color: #000;
- font-family: "Satoshi", sans-serif;
- margin-top: 0.25rem;
- }
-
- #navbar-head .navbar-nav .dropdown.has-mega-menu:hover>.navbar {
- background-color: #fff;
- }
-
- #navbar-head .button_dark.btn-dark {
- font-weight: bold;
- }
-
- #navbar-head .dropdown-menu {
- width: 100%;
- left: 0;
- }
-
- #navbar-head .dropdown:hover>.dropdown-menu {
- display: block;
- }
-
- #navbar-head .dropdown-item-img img {
- width: 200px;
- }
-
- /* footer */
- .footer-wrapper {
- /* background-image: url(../dist/assets/imgs/Home/Footer-bg-1.png);
- */
- background-size: cover;
- background-color: #000;
- }
-
- .footer-wrapper .footer-content-main-container {
- background-image: url(../dist/assets/imgs/Home/Footer-pattern.png);
- background-size: contain;
- background-position: right 30px;
- background-repeat: no-repeat;
- }
-
- .footer-wrapper .last-col-footer {
- width: 20%;
- }
-
- .footer-wrapper .footer-logo img {
- width: 120px;
- }
-
- .footer-wrapper li {
- line-height: 2rem;
- font-family: "Satoshi", sans-serif;
- }
-
- .footer-wrapper .footer-sub-content p {
- line-height: 2rem;
- font-family: "Satoshi", sans-serif;
- }
-
- .footer-socailImg {
- width: 30px;
- }
-
- @media (min-width: 1990px) {
- .footer-wrapper .footer-rkt {
- right: 45px !important;
- }
- }
-
- @media (max-width: 1024px) {
- #navbar-head .navbar-nav {
- gap: 0;
- }
-
- #navbar-head .navbar-nav .dropdown-menu {
- margin-top: 0;
- }
-
- .navbar-toggler {
- color: rgba(255, 32, 32, 0);
- }
-
- .navbar-toggler span {
- display: block;
- background-color: #4f4f4f;
- height: 3px;
- width: 25px;
- margin-top: 5px;
- margin-bottom: 5px;
- position: relative;
- left: 0;
- opacity: 1;
- transition: all 0.35s ease-out;
- transform-origin: center left;
- }
-
- .navbar-toggler span:nth-child(1) {
- transform: translate(0%, 0%) rotate(0deg);
- margin-top: 0.3em;
- }
-
- .navbar-toggler span:nth-child(2) {
- opacity: 1;
- }
-
- .navbar-toggler span:nth-child(3) {
- transform: translate(0%, 0%) rotate(0deg);
- }
-
- .navbar-toggler:not(.collapsed) span:nth-child(1) {
- transform: translate(15%, -33%) rotate(45deg);
- }
-
- .navbar-toggler:not(.collapsed) span:nth-child(2) {
- opacity: 0;
- }
-
- .navbar-toggler:not(.collapsed) span:nth-child(3) {
- transform: translate(15%, 33%) rotate(-45deg);
- }
- }
-
- @media (max-width: 991px) {
- #navbar-head .accordion-button:not(.collapsed) {
- background-color: #fff;
- color: rgb(0, 0, 0);
- box-shadow: none;
- font-weight: bold;
- }
-
- #navbar-head .accordion-button {
- font-family: "Satoshi", sans-serif;
- }
-
- #navbar-head .accordion-body ul li,
- #navbar-head .accordion-body ul li a {
- font-size: 1rem;
- font-family: "Satoshi", sans-serif;
- color: #635c5c;
- line-height: 2.5rem;
- }
-
- #navbar-head .accordion-button:focus {
- box-shadow: none;
- }
-
- #navbar-head .accordion-button::after {
- background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
- transform: scale(0.7) !important;
- }
-
- #navbar-head .accordion-button:not(.collapsed)::after {
- background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
- }
-
- .delivery-to-sec .d-flex {
- font-size: 0.7rem;
- }
-
- .delivery-to-sec .button_dark {
- font-size: 0.7rem;
- }
- }
-
- #footer-head .accordion-item {
- border: 1px solid;
- box-shadow: none;
- }
-
- #footer-head .accordion-item .accordion-button:not(.collapsed) {
- box-shadow: none !important;
- }
-
- .footer-socailImg {
- width: 30px;
- }
-
- .footer-rkt:hover {
- -webkit-animation: rocketRotate 2s;
- animation: rocketRotate 2s;
- }
-
- @-webkit-keyframes rocketRotate {
- from {
- transform: rotate(0);
- }
-
- to {
- transform: rotate(360deg);
- }
- }
-
- @keyframes rocketRotate {
- from {
- transform: rotate(0);
- }
-
- to {
- transform: rotate(360deg);
- }
- }
-
- .mbil-name,
- .navbar-brand img {
- transition: all 0.2s ease;
- }
-
- .preorderimgcontainer{
- position: absolute;
- top: -5%;
- left:-5%;
-
- width:100px;
- }
-
- /*# sourceMappingURL=style.css.map */
|