暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

main.css 46KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971
  1. /* Orbitron */
  2. @font-face {
  3. font-family: "Orbitron";
  4. src: url("../assets/font/orbitron/Orbitron-Regular.ttf") format("truetype");
  5. font-weight: 400;
  6. font-style: normal;
  7. }
  8. @font-face {
  9. font-family: "Orbitron";
  10. src: url("../assets/font/orbitron/Orbitron-Medium.ttf") format("truetype");
  11. font-weight: 500;
  12. font-style: normal;
  13. }
  14. @font-face {
  15. font-family: "Orbitron";
  16. src: url("../assets/font/orbitron/Orbitron-SemiBold.ttf") format("truetype");
  17. font-weight: 600;
  18. font-style: normal;
  19. }
  20. @font-face {
  21. font-family: "Orbitron";
  22. src: url("../assets/font/orbitron/Orbitron-Bold.ttf") format("truetype");
  23. font-weight: 700;
  24. font-style: normal;
  25. }
  26. /* Orbitron end */
  27. /* Satoshi */
  28. @font-face {
  29. font-family: "Satoshi";
  30. src: url("../assets/font/satoshi/Satoshi-Regular.ttf") format("truetype");
  31. font-weight: 400;
  32. font-style: normal;
  33. }
  34. @font-face {
  35. font-family: "Satoshi";
  36. src: url("../assets/font/satoshi/Satoshi-Medium.ttf") format("truetype");
  37. font-weight: 500;
  38. font-style: normal;
  39. }
  40. @font-face {
  41. font-family: "Satoshi";
  42. src: url("../assets/font/satoshi/Satoshi-Bold.ttf") format("truetype");
  43. font-weight: 700;
  44. font-style: normal;
  45. }
  46. /* Satoshi end */
  47. *,
  48. *::after,
  49. *::before {
  50. margin: 0;
  51. padding: 0;
  52. box-sizing: inherit;
  53. font-family: "Satoshi", sans-serif !important;
  54. }
  55. .satoshi_font {
  56. font-family: "Satoshi", sans-serif !important;
  57. }
  58. html {
  59. font-size: 100%;
  60. scroll-behavior: smooth !important;
  61. }
  62. body {
  63. box-sizing: border-box;
  64. overflow-x: hidden;
  65. }
  66. ::-webkit-scrollbar {
  67. width: 6px;
  68. }
  69. ::-webkit-scrollbar-thumb {
  70. background-color: #0A1039;
  71. }
  72. ::-webkit-scrollbar-track {
  73. background: #f1f1f1;
  74. }
  75. .trademark_sup{
  76. font-size: 8px;
  77. }
  78. .copy-right_sup{
  79. font-size: 18px;
  80. top: -0.2em !important;
  81. }
  82. @media only screen and (max-width: 56.25em) {
  83. body {
  84. padding: 0;
  85. }
  86. }
  87. .bg-green {
  88. background-color: #3bb78f;
  89. background: linear-gradient(90deg, #3bb78f 0%, #0bab64 35%, #3bb78f 100%);
  90. }
  91. .font-3 {
  92. font-size: 3rem;
  93. }
  94. .font-1_5 {
  95. font-size: 2rem;
  96. }
  97. .font-1_7 {
  98. font-size: 1.7rem;
  99. }
  100. .font-2 {
  101. font-size: 2.2rem;
  102. }
  103. .font-2_2 {
  104. font-size: 2.2rem;
  105. }
  106. .subtitle_1 {
  107. font-size: 1.5rem;
  108. }
  109. .gap-1 {
  110. gap: 0.7rem;
  111. }
  112. .banner_heading_4 {
  113. font-size: 3rem;
  114. }
  115. .padding_top_14 {
  116. padding-top: 14rem;
  117. }
  118. .padding_top_10 {
  119. padding-top: 10rem;
  120. }
  121. .p-6 {
  122. padding: 5rem;
  123. }
  124. .vh_60 {
  125. height: 60vh;
  126. }
  127. .vh-77 {
  128. height: 77vh;
  129. }
  130. .vh-85 {
  131. height: 85vh;
  132. }
  133. .vh-15 {
  134. height: 15vh;
  135. }
  136. .fw-600 {
  137. font-weight: 600;
  138. }
  139. .fw-700 {
  140. font-weight: 700;
  141. }
  142. .h-200p {
  143. height: 200px;
  144. }
  145. /* button */
  146. .button_dark {
  147. clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  148. padding-right: 1.7rem;
  149. padding-bottom: 0.6rem;
  150. padding-top: 0.6rem;
  151. border-radius: 10px;
  152. }
  153. /* footer */
  154. .footer-wrapper li {
  155. line-height: 2rem;
  156. }
  157. /* -----------------------------productPages----------------------------------- */
  158. .font-weight-500 {
  159. font-weight: 500;
  160. }
  161. .font-weight-600 {
  162. font-weight: 600;
  163. }
  164. .font-weight-lighter {
  165. font-weight: lighter;
  166. }
  167. .product_page,.all_in_pg {
  168. background-color: #f8f4fc;
  169. }
  170. .product_head {
  171. font-size: 2rem;
  172. font-weight: 600;
  173. }
  174. .small_content {
  175. font-size: 0.7rem;
  176. }
  177. .product_details ul li {
  178. padding: 20px 31px 0px 20px;
  179. font-family: "Satoshi", sans-serif;
  180. }
  181. .product_details ul li::marker {
  182. content: '✓';
  183. font-weight: 600;
  184. }
  185. .product_heading {
  186. font-size: 1.5rem;
  187. }
  188. .product_page section,.all_in_pg section.product_view {
  189. padding-top: 50px;
  190. }
  191. .cookieAcceptBar {
  192. display: none;
  193. position: fixed;
  194. bottom: 0px;
  195. /* left: 0; */
  196. width: 100%;
  197. max-width: 20%;
  198. right: 0;
  199. background-color: #000000bd;
  200. color: #fff;
  201. padding: 5px 25px;
  202. z-index: 99999;
  203. }
  204. .cookieAcceptBar p {
  205. font-size: 14px;
  206. }
  207. #btnAcceptCookiePolicy {
  208. font-size: 0.8rem;
  209. }
  210. span.transform_text {
  211. position: absolute;
  212. left: -266px;
  213. top: 40%;
  214. font-size: 84px;
  215. transform: rotate(-90deg);
  216. /* transform: translate3d(-50%, -50%, 0); */
  217. -webkit-text-fill-color: transparent;
  218. -webkit-text-stroke: 1px rgb(200 199 199);
  219. -moz-text-fill-color: transparent;
  220. font-family: "Orbitron", sans-serif !important;
  221. }
  222. .zeno_sleekbook_2 {
  223. margin-top: 30px;
  224. }
  225. span.transform_fyro_text {
  226. position: absolute;
  227. left: -214px;
  228. /* top: 142%; */
  229. margin-top: 230px;
  230. font-size: 73px;
  231. transform: rotate(-90deg);
  232. /* transform: translate3d(-50%, -50%, 0); */
  233. -webkit-text-fill-color: transparent;
  234. -webkit-text-stroke: 1px rgb(200 199 199);
  235. -moz-text-fill-color: transparent;
  236. font-family: "Orbitron", sans-serif !important;
  237. }
  238. .pr-0 {
  239. padding-right: 0px !important;
  240. }
  241. .pl-0 {
  242. padding-left: 0px !important;
  243. }
  244. /* #carousel_item1 {
  245. background-image: url(../../dist/assets/imgs/Navbar/oradesktop-laptop-ram.jpg);
  246. background-size: cover;
  247. background-repeat: no-repeat;
  248. }
  249. #carousel_item2 {
  250. background-image: url(../../dist/assets/imgs/Navbar/Ora-NVMe.jpg);
  251. background-repeat: no-repeat;
  252. background-size: cover;
  253. } */
  254. .wrap-contact100 {
  255. width: 950px;
  256. background: #fff;
  257. overflow: hidden;
  258. display: -webkit-box;
  259. display: -webkit-flex;
  260. display: -moz-box;
  261. display: -ms-flexbox;
  262. display: flex;
  263. flex-wrap: wrap;
  264. align-items: stretch;
  265. flex-direction: row-reverse;
  266. }
  267. .modal-dialog {
  268. max-width: 950px;
  269. padding-top: 150px;
  270. margin: auto;
  271. }
  272. .form-floating {
  273. padding: 5px 0px 5px 0px;
  274. }
  275. #carousel_item1 .item {
  276. padding-top: 43px !important;
  277. }
  278. #carousel_item2 .item {
  279. padding-top: 65px !important;
  280. }
  281. @media (min-width:270px) and (max-width: 376px) {
  282. #carousel_item1 .item {
  283. padding-top: 128px !important;
  284. }
  285. }
  286. @media (min-width:377px) and (max-width:575px) {
  287. #carousel_item1 .item {
  288. padding-top: 110px !important;
  289. }
  290. }
  291. @media only screen and (max-width: 575px) {
  292. .w-sm-75 {
  293. width: 75% !important
  294. }
  295. .w-sm-25{
  296. width: 25% !important;
  297. }
  298. .w-sm-50{
  299. width: 50% !important;
  300. }
  301. .w-sm-75{
  302. width: 75% !important;
  303. }
  304. .product_partner .partners-img {
  305. height: 25px !important;
  306. padding-right: 5px;
  307. }
  308. .label_made img {
  309. height: 35px;
  310. }
  311. .product_details ul {
  312. padding: 0px;
  313. }
  314. .product_page section {
  315. padding-top: 60px;
  316. }
  317. .sec_nav_1,
  318. .sec_nav_2 {
  319. font-size: 0.8rem;
  320. }
  321. /*-------------------------------------- index page------------------------- */
  322. #carousel_item1 {
  323. height: 100%;
  324. }
  325. #carousel_item2 {
  326. height: 100%;
  327. background-size: cover;
  328. }
  329. /* .carousel-inner .carousel_img {
  330. height: 90vh !important;
  331. } */
  332. .home-main-container .hero-banner {
  333. background-position: 0;
  334. }
  335. .home-main-container .banner-main-container .col-md-6 {
  336. padding-top: 0rem !important;
  337. }
  338. .home-main-container .zeno_steamlined_section .zeno_products_main_container .Two_four_inch_Card {
  339. width: 100%;
  340. max-width: 100% !important;
  341. }
  342. .zeno_sleekbook_2 {
  343. margin-top: 0px;
  344. }
  345. .accessories_main_container .nvme_m_2 {
  346. padding: 15px !important;
  347. max-width: 100% !important;
  348. }
  349. .home-main-container .Explore_fyro_container .Explore_fyro_products_main_container .Fyro_main_card .rtxA_200 {
  350. margin-left: 1rem;
  351. margin-right: 1rem
  352. }
  353. .mobile-text-center p.card-text {
  354. margin-left: 12px;
  355. margin-right: 12px;
  356. }
  357. .zeno_section_heading_titleText h1,
  358. .Explore_fyro_heading_titleText h1 {
  359. font-size: 20px;
  360. }
  361. .mark_logo{
  362. top: 14px !important;
  363. left: 14px !important;
  364. width: 100%;
  365. max-width: 16% !important;
  366. }
  367. }
  368. @media only screen and (min-width: 1200px) {
  369. .border-left {
  370. border-left: 1px solid lightgray;
  371. }
  372. .product_partner .partners-img {
  373. height: 35px !important;
  374. padding-right: 5px;
  375. }
  376. .label_made img {
  377. height: 50px;
  378. }
  379. }
  380. @media(min-width:576px) and (max-width:767.98px) {
  381. .product_partner .partners-img {
  382. height: 35px !important;
  383. padding-right: 5px;
  384. }
  385. .label_made img {
  386. height: 50px;
  387. }
  388. /*-------------------------------------- index page------------------------- */
  389. .home-main-container .zeno_steamlined_section .zeno_products_main_container .Two_four_inch_Card {
  390. width: 100%;
  391. max-width: 100% !important;
  392. }
  393. .zeno_sleekbook_2 {
  394. margin-top: 0px;
  395. }
  396. .home-main-container .Explore_fyro_container .Explore_fyro_products_main_container .Fyro_main_card .rtxA_200 {
  397. margin-left: 2rem;
  398. margin-right: 2rem
  399. }
  400. .mobile-text-center h3.card-title {
  401. padding-top: 18px
  402. }
  403. }
  404. @media(min-width:768px) and (max-width:991.98px) {
  405. .product_partner .partners-img {
  406. height: 35px !important;
  407. padding-right: 5px;
  408. }
  409. .label_made img {
  410. height: 50px;
  411. }
  412. .modal-dialog {
  413. max-width: 950px;
  414. padding-top: 200px;
  415. margin: auto;
  416. }
  417. /*-------------------------------------- index page------------------------- */
  418. .banner_heading_4 {
  419. font-size: 1.8rem !important;
  420. }
  421. .home-main-container .zeno_steamlined_section .zeno_products_main_container .Two_four_inch_Card {
  422. width: 100%;
  423. max-width: 100% !important;
  424. }
  425. .zeno_sleekbook_2 {
  426. margin-top: 0px;
  427. }
  428. .accessories_main_container .nvme_m_2 {
  429. padding: 25px !important;
  430. max-width: 100% !important;
  431. }
  432. .accessories_main_container .ora_series .row,
  433. .accessories_main_container .keyboard_mouse .row {
  434. padding: 7px !important;
  435. }
  436. .accessories_main_container .ora_series .row .col-md-6.py-lg-4,
  437. .accessories_main_container .keyboard_mouse .row .col-md-6.py-lg-4 {
  438. padding-top: 0px !important;
  439. padding-bottom: 0px !important;
  440. }
  441. #carousel_item2 .item {
  442. padding-top: 48px !important;
  443. }
  444. #carousel_item1 .item {
  445. padding-top: 74px !important;
  446. }
  447. }
  448. @media(min-width:992px) and (max-width:1199.98px) {
  449. .product_partner .partners-img {
  450. height: 35px !important;
  451. padding-right: 5px;
  452. }
  453. .label_made img {
  454. height: 50px;
  455. }
  456. #carousel_item2 .item {
  457. padding-top: 73px !important;
  458. }
  459. .modal-dialog {
  460. max-width: 950px;
  461. padding-top: 230px;
  462. margin: auto;
  463. }
  464. }
  465. @media(min-width:1200px) {
  466. .w-lg-100 {
  467. width: 100% !important;
  468. }
  469. .modal-dialog {
  470. max-width: 950px;
  471. padding-top: 263px;
  472. margin: auto;
  473. }
  474. .text-lg-dark{
  475. color: #212529 !important;
  476. }
  477. .w-lg-25{
  478. width: 25% !important;
  479. }
  480. .w-lg-50{
  481. width: 50% !important;
  482. }
  483. .w-lg-75{
  484. width: 75% !important;
  485. }
  486. .bg-lg-white{
  487. background: #fff !important;
  488. }
  489. }
  490. @media(min-width:1204px) and (max-width:1399px) {
  491. .Two_four_inch_Card .card-body {
  492. padding-top: 20px !important;
  493. padding-bottom: 20px !important;
  494. }
  495. .zeno_sleekbook_1 .card-body div,
  496. .zeno_sleekbook_2 .card-body div {
  497. padding: 0px !important;
  498. }
  499. span.transform_text {
  500. position: absolute;
  501. left: -230px;
  502. top: 40%;
  503. font-size: 75px;
  504. transform: rotate(-90deg);
  505. /* transform: translate3d(-50%, -50%, 0); */
  506. -webkit-text-fill-color: transparent;
  507. -webkit-text-stroke: 1px rgb(200 199 199);
  508. -moz-text-fill-color: transparent;
  509. }
  510. .accessories_main_container .nvme_m_2 {
  511. padding: 25px !important;
  512. }
  513. .accessories_main_container .ora_series .row,
  514. .accessories_main_container .keyboard_mouse .row {
  515. padding: 16px !important;
  516. }
  517. .accessories_main_container .ora_series .row .col-md-6.py-lg-4,
  518. .accessories_main_container .keyboard_mouse .row .col-md-6.py-lg-4 {
  519. padding-top: 20px !important;
  520. padding-bottom: 20px !important;
  521. }
  522. #carousel_item1 .item {
  523. padding-top: 6px !important;
  524. }
  525. span.transform_fyro_text {
  526. position: absolute;
  527. left: -225px;
  528. /* top: 142%; */
  529. margin-top: 290px;
  530. font-size: 75px;
  531. transform: rotate(-90deg);
  532. /* transform: translate3d(-50%, -50%, 0); */
  533. -webkit-text-fill-color: transparent;
  534. -webkit-text-stroke: 1px rgb(200 199 199);
  535. -moz-text-fill-color: transparent;
  536. }
  537. #carousel_item2 .item {
  538. padding-top: 6px !important;
  539. }
  540. }
  541. @media(min-width:1000px) and (max-width:1203px) {
  542. .Two_four_inch_Card .card-body {
  543. padding-top: 62px !important;
  544. padding-bottom: 42px !important;
  545. }
  546. .zeno_sleekbook_1 .card-body div,
  547. .zeno_sleekbook_2 .card-body div {
  548. padding: 0px !important;
  549. }
  550. span.transform_text {
  551. position: absolute;
  552. left: -250px;
  553. top: 40%;
  554. font-size: 78px;
  555. transform: rotate(-90deg);
  556. /* transform: translate3d(-50%, -50%, 0); */
  557. -webkit-text-fill-color: transparent;
  558. -webkit-text-stroke: 1px rgb(200 199 199);
  559. -moz-text-fill-color: transparent;
  560. }
  561. .accessories_main_container .nvme_m_2 {
  562. padding: 25px !important;
  563. }
  564. .accessories_main_container .ora_series .row,
  565. .accessories_main_container .keyboard_mouse .row {
  566. padding: 10px !important;
  567. }
  568. .accessories_main_container .ora_series .row .col-md-6.py-lg-4,
  569. .accessories_main_container .keyboard_mouse .row .col-md-6.py-lg-4 {
  570. padding-top: 9px !important;
  571. padding-bottom: 9px !important;
  572. }
  573. }
  574. @media(min-width:1290px) and (max-width:1990px){
  575. span.transform_text {
  576. position: absolute;
  577. left: -273px;
  578. top: 39%;
  579. font-size: 87px;
  580. }
  581. span.transform_fyro_text {
  582. position: absolute;
  583. left: -225px;
  584. margin-top: 217px;
  585. font-size: 76px;
  586. }
  587. }
  588. .fs-9{
  589. font-size: 0.9rem;
  590. }
  591. .text-theme-color{
  592. color: #0A1039 !important;
  593. }
  594. .border-bottom-theme{
  595. border-top: 0px !important;
  596. border-right: 0px !important;
  597. border-left: 0px !important;
  598. border-bottom: 1px solid #0A1039 !important;
  599. }
  600. #Login_btn,
  601. #register_btn,
  602. #proceed,
  603. #forgot_password_submit {
  604. border: none;
  605. background-color: #0A1039;
  606. text-transform: uppercase;
  607. font-weight: 600;
  608. padding: 10px 25px;
  609. color: #fff;
  610. font-size: 13px;
  611. }
  612. .products-banner{
  613. padding: 6% 0%;
  614. /* background: #111827; */
  615. background-image: url(../assets/imgs/products-banner-bg.svg);
  616. color: #fff;
  617. background-repeat: no-repeat;
  618. background-size: cover;
  619. }
  620. .prod-tabs-nav {
  621. background: #42454b;
  622. }
  623. .prod-tabs-nav .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  624. color: #fff;
  625. background: none;
  626. text-decoration: underline;
  627. }
  628. .main_all_img ,.pre_img{
  629. background: url(../assets/imgs/allin_imgs/img_bg.png);
  630. }
  631. .mark_logo{
  632. top: 30px;left: 25px;
  633. }
  634. #configure_right_side .main-section .sub_head{
  635. font-size: 25px;
  636. font-weight: 600;
  637. }
  638. #configure_right_side .main-section .suggest_arc{
  639. text-decoration: none;
  640. font-size: 10px;
  641. padding: 0px 3px;
  642. }
  643. #configure_right_side .main-section .small_content{
  644. font-size: 0.9rem;
  645. }
  646. .config_tab_active{
  647. background: #edf1ff;
  648. }
  649. .zeno_section{
  650. background:url(../assets/imgs/allin_imgs/Zzxx.png);
  651. background-size: 100% 100%;
  652. background-repeat: no-repeat;
  653. }
  654. .zeno_section_wrapper .top_bar{
  655. width: 100%;
  656. max-width: 30%;
  657. height: 100%;
  658. max-height: 6px;
  659. }
  660. .zeno_feature{
  661. background: #706c6c85;
  662. border: 2px solid #c1b6b6;
  663. border-radius: 25px;
  664. }
  665. .zeno_feature img{
  666. border: 2px solid #877e7e;
  667. }
  668. .zeno_feature p{
  669. color: #e2e2e2;
  670. font-size: 1.1rem;
  671. font-weight: 500;
  672. }
  673. .h-120p{
  674. height:120px
  675. }
  676. html,body{
  677. height: 100%;
  678. }
  679. .w-60{
  680. width: 60% !important;
  681. }
  682. .zeno_2_sec{
  683. background: url(../assets/imgs/allin_imgs/24inch.png);
  684. background-size: 100% 100%;
  685. background-repeat: no-repeat;
  686. background-position: center;
  687. height: 100% !important;
  688. min-height: 700px;
  689. }
  690. .zeno_3_sec{
  691. background: url(../assets/imgs/allinone24inch/upgradability_bg.png);
  692. background-size: 100% 100%;
  693. background-repeat: no-repeat;
  694. background-position: center;
  695. /* height: 100vh !important; */
  696. /* z-index:10 */
  697. }
  698. .zeno_4_sec{
  699. background: url(../assets/imgs/allin_imgs/banner4.png);
  700. background-size: 100% 100%;
  701. background-repeat: no-repeat;
  702. background-position: center;
  703. height: 100% !important;
  704. min-height: 700px;
  705. }
  706. .zeno_5_sec{
  707. background: url(../assets/imgs/allin_imgs/banner5.png);
  708. background-size: 100% 100%;
  709. background-repeat: no-repeat;
  710. background-position: center;
  711. height: 100% !important;
  712. min-height: 700px;
  713. }
  714. .zeno_6_sec{
  715. background: url(../assets/imgs/allin_imgs/banner6.png);
  716. background-size: 100% 100%;
  717. background-repeat: no-repeat;
  718. background-position: center;
  719. height: 100% !important;
  720. min-height: 700px;
  721. }
  722. .zeno_7_sec{
  723. background: url(../assets/imgs/allin_imgs/banner7.png);
  724. background-size: 100% 100%;
  725. background-repeat: no-repeat;
  726. background-position: center;
  727. height: 100% !important;
  728. min-height: 700px;
  729. }
  730. .zeno_8_sec{
  731. background: url(../assets/imgs/allin_imgs/banner8.png);
  732. background-size: 100% 100%;
  733. background-repeat: no-repeat;
  734. background-position: center;
  735. height: 100% !important;
  736. min-height: 700px;
  737. }
  738. .zeno_9_sec{
  739. background: url(../assets/imgs/allin_imgs/banner9.png);
  740. background-size: 100% 100%;
  741. background-repeat: no-repeat;
  742. background-position: center;
  743. height: 100% !important;
  744. min-height: 700px;
  745. }
  746. .zeno_10_sec{
  747. background: url(../assets/imgs/allin_imgs/banner10.png);
  748. background-size: 100% 100%;
  749. background-repeat: no-repeat;
  750. background-position: center;
  751. height: 100% !important;
  752. min-height: 700px;
  753. }
  754. .zeno_11_sec{
  755. background: url(../assets/imgs/allin_imgs/banner11.png);
  756. background-size: 100% 100%;
  757. background-repeat: no-repeat;
  758. background-position: center;
  759. height: 100% !important;
  760. min-height: 700px;
  761. }
  762. .zeno_12_sec{
  763. background: url(../assets/imgs/allin_imgs/banner12.png);
  764. background-size: 100% 100%;
  765. background-repeat: no-repeat;
  766. background-position: center;
  767. height: 100% !important;
  768. min-height: 700px;
  769. }
  770. .zeno_13_sec{
  771. background: url(../assets/imgs/allin_imgs/banner13.png);
  772. background-size: 100% 100%;
  773. background-repeat: no-repeat;
  774. background-position: center;
  775. height: 100% !important;
  776. min-height: 700px;
  777. }
  778. @media(max-width: 575px) {
  779. .zeno_2_sec{
  780. background: url(../assets/imgs/allin_imgs/24inch.png);
  781. background-size: cover;
  782. background-repeat: no-repeat;
  783. background-position: right;
  784. height: 100% !important;
  785. min-height: 400px;
  786. }
  787. .zeno_3_sec{
  788. background: url(../assets/imgs/allinone24inch/upgradability_bg.png);
  789. background-size: 100% 100%;
  790. background-repeat: no-repeat;
  791. background-position: center;
  792. }
  793. .zeno_4_sec{
  794. background: url(../assets/imgs/allin_imgs/banner4.png);
  795. background-size: cover;
  796. background-repeat: no-repeat;
  797. background-position: unset;
  798. height: 100% !important;
  799. min-height: 438px;
  800. }
  801. .zeno_5_mbil_sec{
  802. background: url(../assets/imgs/allin_imgs/vivid-crystal-bg.png);
  803. background-size: cover;
  804. background-repeat: no-repeat;
  805. background-position: right;
  806. height: 100% !important;
  807. min-height: 400px;
  808. }
  809. .zeno_6_mbil_sec{
  810. background: url(../assets/imgs/allin_imgs/high-performance-bg.png);
  811. background-repeat: no-repeat;
  812. height: 100% !important;
  813. background-position: unset;
  814. }
  815. .zeno_7_sec{
  816. background: url(../assets/imgs/allin_imgs/banner7.png);
  817. background-size: 100% 100%;
  818. background-repeat: no-repeat;
  819. background-position: center;
  820. height: 100% !important;
  821. min-height: 700px;
  822. }
  823. .zeno_8_sec{
  824. background: url(../assets/imgs/allin_imgs/banner8.png);
  825. background-size: 100% 100%;
  826. background-repeat: no-repeat;
  827. background-position: center;
  828. height: 100% !important;
  829. min-height: 700px;
  830. }
  831. .zeno_9_sec{
  832. background: url(../assets/imgs/allin_imgs/banner9.png);
  833. background-size: cover;
  834. background-repeat: no-repeat;
  835. background-position: top;
  836. height: 100% !important;
  837. min-height: 400px;
  838. }
  839. .zeno_10_mbil_sec{
  840. background: url(../assets/imgs/allin_imgs/high-performance-bg.png);
  841. background-size: cover;
  842. background-repeat: no-repeat;
  843. background-position: right;
  844. height: 100% !important;
  845. min-height: 400px;
  846. }
  847. .zeno_10_sec{
  848. background-size:contain;
  849. background-position: center;
  850. }
  851. .zeno_11_sec{
  852. background-size: cover;
  853. background-position: center;
  854. }
  855. .zeno_12_sec{
  856. background-size: cover;
  857. background-position: inherit;
  858. }
  859. .zeno_13_sec{
  860. background-size: cover;
  861. background-position: inherit;
  862. }
  863. .zeno_11_mbil_sec{
  864. background: url(../assets/imgs/allin_imgs/support_bg.png);
  865. }
  866. .zeno_12_mbil_sec{
  867. background: url(../assets/imgs/allin_imgs/space-server-bg.png);
  868. }
  869. .zeno_13_mbil_sec{
  870. background: url(../assets/imgs/allin_imgs/professional-bg.png);
  871. }
  872. .warrenty_sec {
  873. bottom: 31% !important;
  874. left: 34px !important;
  875. }
  876. .warrenty_sec img{
  877. width:100%;
  878. max-width: 90%;
  879. }
  880. .stunning_visuals_mbil_wrapper{
  881. background: url(../assets/imgs/allinone14inch/stunningvisual.png);
  882. background-size: 100% 100%;
  883. background-position: center;
  884. height: 100vh;
  885. }
  886. }
  887. .w-50p{
  888. width: 50px;
  889. }
  890. .w-30p{
  891. width: 30px;
  892. }
  893. .hover-zoom:hover{
  894. transform: scale(1.1);
  895. }
  896. /* PRODUCT PAGE */
  897. #item_search{
  898. position: sticky;
  899. top:75px;
  900. }
  901. /* END OF PRODUCT PAGE */
  902. /* LOGIN SECTION */
  903. .mainLogin{
  904. margin-top: 10px;
  905. position: relative;
  906. }
  907. .loginContainer{
  908. width:100%;
  909. height: 90%;
  910. position: relative;
  911. /* margin-top: 100px; */
  912. }
  913. .space-login{
  914. margin: 20px 0;
  915. }
  916. .authBox{
  917. /* margin: 28px auto 0; */
  918. max-width: 400px;
  919. height: 95%;
  920. /* margin-top: 50px; */
  921. box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  922. }
  923. .authpic{
  924. display: flex;
  925. justify-items: center;
  926. align-items: center;
  927. max-height: 300px;
  928. }
  929. .formitemLogo{
  930. width: 100%;
  931. display: flex;
  932. height: 150px;
  933. }
  934. .authHeading{
  935. font-size: 1.3rem;
  936. font-weight: 600;
  937. }
  938. .formContanerAuth{
  939. padding: 25px;
  940. }
  941. .borderradius-1{
  942. border-radius: 4px !important;
  943. }
  944. /* END OF lOGIN SECTION */
  945. /* ORDER DETAILS */
  946. .bg-return{
  947. background-color: #f7f0e1 !important;
  948. }
  949. .close_exchange{
  950. bottom:10px;
  951. }
  952. .text-a-color{
  953. color:#4462d7e8 !important;
  954. }
  955. .text-order-brown{
  956. color: #ffb10b !important;
  957. }
  958. .btn-order-text{
  959. font-size: 1rem !important;
  960. }
  961. .order-summary{
  962. background-color:#f3e2be !important;
  963. }
  964. .fs-7{
  965. font-size: 0.7rem;
  966. }
  967. @media only screen and (min-width: 280px) and (max-width: 575px) {
  968. .close_exchange{
  969. bottom:-30px;
  970. font-size: 13px !important;
  971. line-height: 20px;
  972. }
  973. .btn-order-text{
  974. font-size: 0.8rem !important;
  975. padding: 3px 8px !important;
  976. margin: 5px 0px !important;
  977. }
  978. .order_details_page .order_img{
  979. width:100%;
  980. max-width:60% !important
  981. }
  982. }
  983. /* END OF ORDER DETAILS PAGE */
  984. /* SUPPORT PAGE */
  985. @media only screen and (min-width: 1440px){
  986. #home-banner {
  987. width: 100%;
  988. }
  989. }
  990. @media only screen and (min-width: 1440px){
  991. #home-banner .banner-home--wrapper {
  992. position: relative;
  993. width: 100vw;
  994. }
  995. }
  996. @media only screen and (min-width: 1440px){
  997. #home-banner .banner-home--wrapper .banner-home--banner {
  998. overflow: hidden;
  999. max-height: 750px;
  1000. }
  1001. }
  1002. @media only screen and (min-width: 1440px){
  1003. #home-banner .banner-home--wrapper .banner-home--banner .img {
  1004. width: 100vw;
  1005. display: block;
  1006. height: 750px;
  1007. object-fit: cover;
  1008. }
  1009. }
  1010. @media only screen and (min-width: 1440px){
  1011. #home-banner .banner-home--wrapper_upper {
  1012. /* position: absolute; */
  1013. text-align: center;
  1014. /* width: 1440px; */
  1015. top: 110px;
  1016. left: calc(50vw - 720px);
  1017. }
  1018. }
  1019. @media only screen and (min-width: 1440px){
  1020. #home-banner .banner-home--wrapper_upper__title1 {
  1021. font-size: 48px;
  1022. line-height: 64px;
  1023. margin-bottom: 8px;
  1024. }
  1025. }
  1026. @media only screen and (min-width: 1440px){
  1027. #home-banner .banner-home--wrapper_upper__title2 {
  1028. font-size: 30px;
  1029. line-height: 40px;
  1030. margin-bottom: 16px;
  1031. }
  1032. }
  1033. @media only screen and (min-width: 1440px){
  1034. #home-banner .banner-home--wrapper_upper .banner-home--search {
  1035. width: 600px;
  1036. }
  1037. }
  1038. @media only screen and (min-width: 1440px){
  1039. #home-banner .banner-home--wrapper_upper .banner-home--search .el-pc-input {
  1040. background-color: #fff;
  1041. border-radius: 4px;
  1042. color: #000;
  1043. border: 1px solid rgba(0,0,0,.12);
  1044. border-bottom: 0;
  1045. border-bottom-right-radius: 0;
  1046. border-bottom-left-radius: 0;
  1047. }
  1048. }
  1049. .el-input {
  1050. position: relative;
  1051. font-size: 14px;
  1052. display: inline-block;
  1053. width: 100%;
  1054. }
  1055. @media only screen and (min-width: 1440px){
  1056. #home-banner .banner-home--wrapper_upper .banner-home--search .el-pc-input .el-input__inner {
  1057. color: #000;
  1058. opacity: .6;
  1059. padding-left: 60px;
  1060. padding-right: 60px;
  1061. height: 60px;
  1062. line-height: 60px;
  1063. font-size: 16px;
  1064. border: 0;
  1065. }
  1066. }
  1067. .el-input--prefix .el-input__inner {
  1068. padding-left: 30px;
  1069. }
  1070. .el-input--suffix .el-input__inner {
  1071. padding-right: 30px;
  1072. }
  1073. .el-input__inner {
  1074. -webkit-appearance: none;
  1075. background-color: #fff;
  1076. background-image: none;
  1077. border-radius: 4px;
  1078. border: 1px solid #dcdfe6;
  1079. box-sizing: border-box;
  1080. color: #606266;
  1081. display: inline-block;
  1082. font-size: inherit;
  1083. height: 40px;
  1084. line-height: 40px;
  1085. outline: 0;
  1086. padding: 0 15px;
  1087. transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  1088. width: 100%;
  1089. }
  1090. @media only screen and (max-width: 1439.98px){
  1091. #home-banner {
  1092. width: 100%;
  1093. }
  1094. #home-banner .banner-home--wrapper {
  1095. position: relative;
  1096. width: 100%;
  1097. }
  1098. #home-banner .banner-home--wrapper .banner-home--banner {
  1099. overflow: hidden;
  1100. max-height: 375px;
  1101. }
  1102. #home-banner .banner-home--wrapper .banner-home--banner .img {
  1103. width: 100vw;
  1104. display: block;
  1105. height: 375px;
  1106. object-fit: cover;
  1107. }
  1108. #home-banner .banner-home--wrapper_upper {
  1109. /* position: absolute; */
  1110. text-align: center;
  1111. top: 48px;
  1112. width: 100%;
  1113. padding: 0 16px;
  1114. box-sizing: border-box;
  1115. }
  1116. #home-banner .banner-home--wrapper_upper__title1 {
  1117. font-size: 22px;
  1118. line-height: 30px;
  1119. margin-bottom: 8px;
  1120. }
  1121. #home-banner .banner-home--wrapper_upper__title2 {
  1122. font-size: 16px;
  1123. line-height: 22px;
  1124. margin-bottom: 16px;
  1125. }
  1126. #home-banner .banner-home--wrapper_upper .banner-home--search .el-pc-input {
  1127. background-color: #fff;
  1128. border-radius: 4px;
  1129. border: 1px solid rgba(0,0,0,.12);
  1130. border-bottom: 0;
  1131. border-bottom-right-radius: 0;
  1132. border-bottom-left-radius: 0;
  1133. }
  1134. #home-banner .banner-home--wrapper_upper .banner-home--search .el-pc-input .el-input__inner {
  1135. color: #000;
  1136. opacity: .6;
  1137. height: 40px;
  1138. line-height: 40px;
  1139. padding: 8px 72px 8px 16px;
  1140. font-size: 16px;
  1141. border: 0;
  1142. }
  1143. /* we help */
  1144. #home-help .home-help--wrapper {
  1145. width: 100%;
  1146. padding: 40px 0;
  1147. box-sizing: border-box;
  1148. }
  1149. #home-help .home-help--wrapper_content {
  1150. width: 100%;
  1151. margin: 0 auto;
  1152. padding: 0 20px;
  1153. text-align: center;
  1154. }
  1155. #home-help .home-help--wrapper_content-title {
  1156. font-size: 22px;
  1157. line-height: 32px;
  1158. margin-bottom: 12px;
  1159. font-family: satoshi,sans-serif;
  1160. }
  1161. #home-help .home-help--wrapper_content-items .grow-1 .grow-width, #home-help .home-help--wrapper_content-items .grow-2 .grow-width {
  1162. display: -ms-flexbox;
  1163. display: flex;
  1164. padding: 20px 0;
  1165. border-bottom: 1px solid rgba(0,0,0,.12);
  1166. -ms-flex-direction: row-reverse;
  1167. flex-direction: row-reverse;
  1168. }
  1169. #home-help .home-help--wrapper_content-items .grow-1 .grow-width .icon, #home-help .home-help--wrapper_content-items .grow-2 .grow-width .icon {
  1170. display: block;
  1171. width: 40px;
  1172. height: 40px;
  1173. }
  1174. #home-help .home-help--wrapper_content-items .grow-1 .grow-width .content, #home-help .home-help--wrapper_content-items .grow-2 .grow-width .content {
  1175. -ms-flex: 1;
  1176. flex: 1;
  1177. text-align: left;
  1178. margin-right: 60px;
  1179. }
  1180. #home-help .home-help--wrapper_content-items .grow-1 .grow-width .content .item_title, #home-help .home-help--wrapper_content-items .grow-2 .grow-width .content .item_title {
  1181. font-size: 16px;
  1182. line-height: 22px;
  1183. margin-bottom: 12px;
  1184. font-family: OnePlus Sans,MYingHei W7,Medium-65,Microsoft Yahei,sans-serif;
  1185. }
  1186. #home-help .home-help--wrapper_content-items .grow-1 .grow-width .content .item_dec, #home-help .home-help--wrapper_content-items .grow-2 .grow-width .content .item_dec {
  1187. font-size: 14px;
  1188. line-height: 18px;
  1189. opacity: .78;
  1190. }
  1191. }
  1192. @media only screen and (min-width: 1440px){
  1193. #home-help .home-help--wrapper {
  1194. width: 100%;
  1195. padding: 80px 0;
  1196. box-sizing: border-box;
  1197. /* background: #f9f9f9; */
  1198. }
  1199. }
  1200. @media only screen and (min-width: 1440px){
  1201. #home-help .home-help--wrapper_content {
  1202. width: 1170px;
  1203. margin: 0 auto;
  1204. text-align: center;
  1205. }
  1206. }
  1207. @media only screen and (min-width: 1440px){
  1208. #home-help .home-help--wrapper_content-title {
  1209. font-size: 36px;
  1210. line-height: 48px;
  1211. margin-bottom: 80px;
  1212. }
  1213. }
  1214. @media only screen and (min-width: 1440px){
  1215. #home-help .home-help--wrapper_content-items {
  1216. display: -ms-flexbox;
  1217. display: flex;
  1218. -ms-flex-wrap: wrap;
  1219. flex-wrap: wrap;
  1220. margin-right: -2%;
  1221. }
  1222. }
  1223. @media only screen and (min-width: 1440px){
  1224. #home-help .home-help--wrapper_content-items .grow-1, #home-help .home-help--wrapper_content-items .grow-2 {
  1225. margin-bottom: 2%;
  1226. margin-right: 2%;
  1227. background: #fff;
  1228. cursor: pointer;
  1229. transition: .2s;
  1230. }
  1231. }
  1232. @media only screen and (min-width: 1440px){
  1233. #home-help .home-help--wrapper_content-items .grow-1 {
  1234. width: 23%;
  1235. }
  1236. }
  1237. @media only screen and (min-width: 1440px){
  1238. #home-help .home-help--wrapper_content-items .grow-1 .grow-width, #home-help .home-help--wrapper_content-items .grow-2 .grow-width {
  1239. text-align: center;
  1240. margin: 0 auto;
  1241. padding: 20px 20px 48px 20px;
  1242. height: 100%;
  1243. }
  1244. }
  1245. @media only screen and (min-width: 1440px){
  1246. #home-help .home-help--wrapper_content-items .grow-1 .grow-width .icon, #home-help .home-help--wrapper_content-items .grow-2 .grow-width .icon {
  1247. display: block;
  1248. width: 100px;
  1249. padding: 44px 0 64px 0;
  1250. margin: 0 auto;
  1251. }
  1252. }
  1253. @media only screen and (min-width: 1440px){
  1254. #home-help .home-help--wrapper_content-items .grow-1 .grow-width .content .item_title, #home-help .home-help--wrapper_content-items .grow-2 .grow-width .content .item_title {
  1255. font-size: 24px;
  1256. line-height: 32px;
  1257. margin-bottom: 12px;
  1258. }
  1259. }
  1260. @media only screen and (min-width: 1440px){
  1261. #home-help .home-help--wrapper_content-items .grow-1 .grow-width .content .item_dec, #home-help .home-help--wrapper_content-items .grow-2 .grow-width .content .item_dec {
  1262. font-size: 14px;
  1263. line-height: 18px;
  1264. opacity: .78;
  1265. }
  1266. }
  1267. @media only screen and (min-width: 1440px){
  1268. #home-help .home-help--wrapper_content-items .grow-1:hover, #home-help .home-help--wrapper_content-items .grow-2:hover {
  1269. transform: translateY(-10px);
  1270. box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
  1271. }
  1272. }
  1273. /* END OF SUPPORT PAGE */
  1274. /* new styles */
  1275. #graphene_tech{
  1276. background: url(../assets/imgs/allin_imgs/graphene_tech.png);
  1277. background-repeat: no-repeat;
  1278. background-size: cover;
  1279. }
  1280. #Fyro_main_card{
  1281. /* background: url(.././dist/assets/imgs/Home_new/Explore_Fyro_bg.png); */
  1282. background: url(../assets/imgs/Home_new/Explore_Fyro_bg.png);
  1283. background-repeat: no-repeat;
  1284. background-size: cover;
  1285. }
  1286. span.transform_text1 {
  1287. position: absolute;
  1288. transform: rotate(-90deg);
  1289. -webkit-text-fill-color: transparent;
  1290. -webkit-text-stroke: 1px rgb(200 199 199);
  1291. left: -308px;
  1292. top: 54%;
  1293. font-size: 47px;
  1294. font-family: "Orbitron", sans-serif !important;
  1295. }
  1296. span.transform_text2 {
  1297. position: absolute;
  1298. transform: rotate(-90deg);
  1299. -webkit-text-fill-color: transparent;
  1300. -webkit-text-stroke: 1px rgb(200 199 199);
  1301. left: -225px;
  1302. top: 52%;
  1303. font-size: 64px;
  1304. font-family: "Orbitron", sans-serif !important;
  1305. }
  1306. #innovation_section{
  1307. background-image: linear-gradient( 45deg, hsl(220deg 52% 91%) 0%, hsl(229deg 48% 90%) 8%, hsl(243deg 42% 90%) 17%, hsl(260deg 39% 88%) 25%, hsl(272deg 43% 86%) 33%, hsl(285deg 44% 84%) 42%, hsl(300deg 43% 82%) 50%, hsl(300deg 43% 82%) 58%, hsl(300deg 43% 82%) 67%, hsl(300deg 43% 82%) 75%, hsl(293deg 40% 83%) 83%, hsl(286deg 36% 84%) 92%, hsl(280deg 31% 85%) 100% );
  1308. }
  1309. #ora_products{
  1310. /* background: #eef0f3; */
  1311. background-image: url(../assets/imgs/productimg/banner_plan.png);
  1312. background-repeat: no-repeat;
  1313. background-size: cover;
  1314. }
  1315. #laptop_memory_sec{
  1316. background: url(../assets/imgs/allin_imgs/laptop_bg.png);
  1317. background-repeat: no-repeat;
  1318. background-size: cover;
  1319. }
  1320. #graphene_section{
  1321. /* background: url(../assets/imgs/allin_imgs/section_bg.png);
  1322. background-repeat: no-repeat;
  1323. background-size: cover; */
  1324. }
  1325. #desktop_memory_sec{
  1326. background: url(../assets/imgs/allin_imgs/desktop_bg.png);
  1327. background-repeat: no-repeat;
  1328. background-size: cover;
  1329. }
  1330. @media only screen and (min-width: 1200px) and (max-width: 1360px) {
  1331. .transform_text1,.transform_text2{
  1332. display: none;
  1333. }
  1334. }
  1335. #min_image{
  1336. display: none;
  1337. }
  1338. @media only screen and (min-width: 1921px) and (max-width: 2930px) {
  1339. /* #carouselExampleAutoplaying{
  1340. display: none;
  1341. }
  1342. #min_image{
  1343. display: block;
  1344. padding-top:68px;
  1345. } */
  1346. #home_banner{
  1347. background: #000;
  1348. }
  1349. .banner-main-container{
  1350. max-width:1200px;
  1351. margin: auto;
  1352. }
  1353. }
  1354. .bg-gradient-anwi{
  1355. /* background: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%); */
  1356. background: linear-gradient(112.1deg, rgb(63, 76, 119) -14.8% , rgb(32, 38, 57) 100.4%);
  1357. }
  1358. .bg-gradient-anwi.btn:hover{
  1359. /* background: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%); */
  1360. background: linear-gradient(112.1deg, rgb(32, 38, 57) -14.8%, rgb(63, 76, 119) 100.48% );
  1361. }
  1362. .bg-gradient-violet{
  1363. /* background: linear-gradient(90deg, rgba(230,242,244,1) 6%, rgba(236,228,220,1) 100%);
  1364. */
  1365. background:url(../assets/imgs/login_bg.png);
  1366. background-size: cover;
  1367. background-repeat: no-repeat;
  1368. }
  1369. @media only screen and (min-width: 769px) and (max-width: 1199px) {
  1370. span.transform_text2 {
  1371. position: absolute;
  1372. transform: rotate(-90deg);
  1373. -webkit-text-fill-color: transparent;
  1374. -webkit-text-stroke: 1px rgb(200 199 199);
  1375. left: -151px;
  1376. top: 55%;
  1377. font-size: 43px;
  1378. }
  1379. }
  1380. /* end new styles */
  1381. /* login verifiacation */
  1382. /* Styles for verification */
  1383. .pswd_info {
  1384. position: absolute;
  1385. top: -160px;
  1386. right: 0;
  1387. width: 250px;
  1388. padding: 10px;
  1389. background: #fefefe;
  1390. font-size: .7rem;
  1391. border-radius: 5px;
  1392. box-shadow: 0 1px 3px #ccc;
  1393. border: 1px solid #ddd;
  1394. display: none;
  1395. }
  1396. .pswd_info::before {
  1397. content: "\25B2";
  1398. position: absolute;
  1399. bottom: -12px;
  1400. left: 45%;
  1401. font-size: 14px;
  1402. line-height: 14px;
  1403. color: #ddd;
  1404. text-shadow: none;
  1405. display: block;
  1406. transform: rotate(180deg);
  1407. }
  1408. .pswd_invalid {
  1409. background: url(images/invalid.png) no-repeat 0 50%;
  1410. padding-left: 22px;
  1411. line-height: 24px;
  1412. color: #ec3f41;
  1413. }
  1414. .pswd_valid {
  1415. background: url(images/valid.png) no-repeat 0 50%;
  1416. padding-left: 22px;
  1417. line-height: 24px;
  1418. color: #3a7d34;
  1419. }
  1420. #toast-container > div{
  1421. opacity: 1 !important;
  1422. color: #000 !important;
  1423. margin-top: 20px !important;
  1424. }
  1425. /* .toast-close-button{
  1426. color:#000 !important;
  1427. }
  1428. .toast-success{
  1429. background: #fff !important;
  1430. }
  1431. .toast-error{
  1432. background: #fff !important;
  1433. } */
  1434. .h-50p {
  1435. height: 50px !important;
  1436. }
  1437. .warranty_row{
  1438. background: url(../assets/imgs/allin_imgs/desktop_bg.png);
  1439. background-size: cover;
  1440. background-position: center center;
  1441. }
  1442. .warranty-card .card{
  1443. background: rgb(22,62,96);
  1444. background: linear-gradient(75deg, rgb(56 89 118) 51%, rgb(107 18 111) 89%)
  1445. }
  1446. /*Text neon */
  1447. .neon {
  1448. text-shadow:
  1449. 0 0 0px #fff,
  1450. 0 0 0px #fff,
  1451. 0 0 0px #ff9300,
  1452. 0 0 1px #ff9300,
  1453. 0 0 10px #ff9300,
  1454. 0 0 10px #ff9300,
  1455. 0 0 0px #ff9300;
  1456. }
  1457. /* .neon-orange {
  1458. text-shadow:
  1459. 0 0 0px #fff,
  1460. 0 0 0px #fff,
  1461. 0 0 0px #b2674e,
  1462. 0 0 1px #b2674e,
  1463. 0 0 10px #b2674e,
  1464. 0 0 10px #b2674e,
  1465. 0 0 0px #b2674e;
  1466. }
  1467. .neon-blue {
  1468. text-shadow:
  1469. 0 0 0px #fff,
  1470. 0 0 0px #fff,
  1471. 0 0 0px #3b6ec9,
  1472. 0 0 1px #3b6ec9,
  1473. 0 0 10px #3b6ec9,
  1474. 0 0 10px #3b6ec9,
  1475. 0 0 0px #3b6ec9;
  1476. }
  1477. .neon-purple {
  1478. text-shadow:
  1479. 0 0 0px #fff,
  1480. 0 0 0px #fff,
  1481. 0 0 0px #885bce,
  1482. 0 0 1px #885bce,
  1483. 0 0 10px #885bce,
  1484. 0 0 10px #885bce,
  1485. 0 0 0px #885bce;
  1486. } */
  1487. section.graphene_img_section {
  1488. height: 100vh;
  1489. background-attachment: fixed !important;
  1490. background-repeat: no-repeat !important;
  1491. background-size: cover !important;
  1492. }
  1493. section#graphene_section {
  1494. padding-top: 50px;
  1495. }
  1496. .main-text{
  1497. background: linear-gradient(270deg, #f6940c 50%, #ff9300 50%);
  1498. -webkit-background-clip: text;
  1499. -webkit-text-fill-color: transparent;
  1500. font-size: 40px;
  1501. }
  1502. .item-title {
  1503. font-size: 16px;
  1504. font-weight: 500;
  1505. padding: 20px 0px;
  1506. }
  1507. /*button*/
  1508. .buy-now {
  1509. border-radius: 4px;
  1510. /* background-color: #f4511e; */
  1511. border: none;
  1512. color: #FFFFFF;
  1513. text-align: center;
  1514. padding: 5px 15px;
  1515. width: 120px;
  1516. transition: all 0.5s;
  1517. cursor: pointer;
  1518. margin: auto;
  1519. }
  1520. .butbuy-nowton span {
  1521. cursor: pointer;
  1522. display: inline-block;
  1523. position: relative;
  1524. transition: 0.5s;
  1525. }
  1526. .buy-now span:after {
  1527. content: '\00bb';
  1528. position: absolute;
  1529. opacity: 0;
  1530. top: 0;
  1531. right: 20px;
  1532. transition: 0.5s;
  1533. }
  1534. .buy-now:hover span {
  1535. border-bottom: solid 1px white;
  1536. }
  1537. .buy-now:hover span:after {
  1538. opacity: 1;
  1539. right: 0;
  1540. }
  1541. .buy-now{
  1542. background:#5782ce !important;
  1543. color:white;
  1544. }
  1545. @media (min-width:320px) and (max-width:1198px){
  1546. section.graphene_img_section {
  1547. height: 200px;
  1548. background-attachment: initial !important;
  1549. background-repeat: no-repeat !important;
  1550. background-size: 100% !important;
  1551. }
  1552. .main-text {
  1553. background: linear-gradient(270deg, #f4a73c 50%, #ff9300 50%);
  1554. -webkit-background-clip: text;
  1555. -webkit-text-fill-color: transparent;
  1556. font-size: 24px;
  1557. }
  1558. }
  1559. .footer-wrapper{
  1560. background-image: linear-gradient(145deg,rgb(33,37,41,0.9),rgb(33,37,41,0.9)),url(../assets/imgs/home/h1.jpg);
  1561. }
  1562. .orangeWrapper {
  1563. padding:0;
  1564. }
  1565. .card-item-header {
  1566. width: 80%;
  1567. margin: auto;
  1568. margin-top: -90px;
  1569. }
  1570. .row.product_card_section {
  1571. padding-top: 100px;
  1572. }
  1573. .card-header-sub-1, .card-header-sub-2, .card-header-sub-3 {
  1574. border-radius: 20px;
  1575. height: 180px;
  1576. }
  1577. .card-item-header .card-header-sub-1 {
  1578. background-image: url(../assets/imgs/Home_new/Explore_Fyro_bg.png);
  1579. background-position: center;
  1580. background-size: cover;
  1581. background-repeat: no-repeat;
  1582. }
  1583. .card-item-body h3 a{
  1584. font-size: 24px;
  1585. }
  1586. .product_card_1 .card-item-body:hover h3 a{
  1587. color:#ff9300;
  1588. }
  1589. .product_card_2 .card-item-body:hover h3 a{
  1590. color:#5d87d0;
  1591. }
  1592. .product_card_3 .card-item-body:hover h3 a{
  1593. color:#9973d4;
  1594. }
  1595. .product_card_1 .card-item-body:hover .card_product_footer a{
  1596. color:#ff9300;
  1597. }
  1598. .product_card_2 .card-item-body:hover .card_product_footer a{
  1599. color:#5d87d0;
  1600. }
  1601. .product_card_3 .card-item-body:hover .card_product_footer a{
  1602. color:#9973d4;
  1603. }
  1604. .card-item-body p {
  1605. color: #212529;
  1606. margin-bottom: 1px;
  1607. font-size: 15px;
  1608. }
  1609. .card-item-body {
  1610. padding: 50px;
  1611. height: 320px;
  1612. }
  1613. .shadow:hover{
  1614. box-shadow: rgba(0, 0, 0, 0.15) 10px 1rem 1rem !important;
  1615. }
  1616. .card_product_footer{
  1617. position: absolute;
  1618. bottom:5px;
  1619. }
  1620. .card_product_footer a{
  1621. font-weight: 500;
  1622. }
  1623. .product_card_1 {
  1624. border: 1px solid rgb(204, 204, 204,0.1);
  1625. border-radius: 10px;
  1626. background: #8e9eab; /* fallback for old browsers */
  1627. background: -webkit-linear-gradient(to right, #f8f8f8, #f8f8f8); /* Chrome 10-25, Safari 5.1-6 */
  1628. background: linear-gradient(to right, #f8f8f8, #f8f8f8); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  1629. position: relative;
  1630. }
  1631. .product_card_1:hover img{
  1632. transform: scale(1.1);
  1633. }
  1634. .product_card_2 {
  1635. border: 1px solid rgb(204, 204, 204,0.1);
  1636. border-radius: 10px;
  1637. background: #8e9eab; /* fallback for old browsers */
  1638. background: -webkit-linear-gradient(to right, #f8f8f8, #f8f8f8); /* Chrome 10-25, Safari 5.1-6 */
  1639. background: linear-gradient(to right, #f8f8f8, #f8f8f8); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  1640. position: relative;
  1641. }
  1642. .product_card_2:hover img{
  1643. transform: scale(1.2);
  1644. }
  1645. .product_card_2:hover .card-item-footer{
  1646. display: block;
  1647. animation: fadeIn 0.8s;
  1648. }
  1649. .card-item-header .card-header-sub-2 {
  1650. background-image: url(../assets/imgs/allin_imgs/laptop_bg.png);
  1651. background-position: center;
  1652. background-size: cover;
  1653. background-repeat: no-repeat;
  1654. }
  1655. .product_card_3 {
  1656. border: 1px solid rgb(204, 204, 204,0.1);
  1657. border-radius: 10px;
  1658. background: #8e9eab; /* fallback for old browsers */
  1659. background: -webkit-linear-gradient(to right, #f8f8f8, #f8f8f8); /* Chrome 10-25, Safari 5.1-6 */
  1660. background: linear-gradient(to right, #f8f8f8, #f8f8f8); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  1661. position: relative;
  1662. }
  1663. .product_card_3:hover img{
  1664. transform: scale(1.2);
  1665. }
  1666. .product_card_3:hover .card-item-footer{
  1667. display: block;
  1668. animation: fadeIn 0.8s;
  1669. }
  1670. .card-item-header .card-header-sub-3 {
  1671. background-image: url(../assets/imgs/allin_imgs/desktop_bg.png);
  1672. background-position: center;
  1673. background-size: cover;
  1674. background-repeat: no-repeat;
  1675. }
  1676. .product_card_section h6 {
  1677. font-size: 14px;
  1678. }
  1679. #pills-tabContent .col-sm-4{
  1680. margin-top:100px;
  1681. }
  1682. #pills-tabContent .product_card_section{
  1683. padding-top:0px;
  1684. }
  1685. .theme-btn {
  1686. position: relative;
  1687. z-index: 2;
  1688. overflow: hidden;
  1689. vertical-align: middle;
  1690. display: inline-block;
  1691. border: none;
  1692. text-transform: capitalize;
  1693. text-align: center;
  1694. background-color: #202639 !important;
  1695. color: white !important;
  1696. font-size: 14px;
  1697. font-weight: 600;
  1698. line-height: 1;
  1699. padding: 20.5px 29px;
  1700. box-shadow: 0px 6px 16px rgba(13, 94, 244, 0.24);
  1701. border-radius: 5px;
  1702. }
  1703. .theme-btn:before {
  1704. content: "";
  1705. position: absolute;
  1706. height: 0%;
  1707. left: 50%;
  1708. top: 50%;
  1709. width: 600%;
  1710. background-color: #142c8e !important;
  1711. -webkit-transform: translateX(-50%) translateY(-50%) rotate(60deg);
  1712. -ms-transform: translateX(-50%) translateY(-50%) rotate(60deg);
  1713. transform: translateX(-50%) translateY(-50%) rotate(60deg);
  1714. z-index: -1;
  1715. -webkit-transition: 0.7s ease;
  1716. transition: 0.7s ease;
  1717. }
  1718. .theme-btn:hover, .theme-btn.active {
  1719. color: var(--white-color);
  1720. }
  1721. .or_line{
  1722. width: 100%;
  1723. text-align: center;
  1724. border-bottom: 1px solid #ccc;
  1725. line-height: 0.1em;
  1726. line-height: 0 !important;
  1727. font-size: 16px !important;
  1728. }
  1729. .or_line span {
  1730. background:#fff;
  1731. padding:0 10px;
  1732. }
  1733. .bg-gradient-anwi-outline{
  1734. border:solid 2px #142c70 !important;
  1735. color:#142c70 !important;
  1736. background: linear-gradient(145deg,rgb(255,255,255,0.9),rgb(255,255,255));
  1737. }
  1738. .bg-gradient-anwi-outline:hover{
  1739. background: linear-gradient(145deg,rgb(27,45,83,0.9),rgb(10,19,34)) !important;
  1740. border:solid 2px rgb(10,19,34)!important;
  1741. color:white !important;
  1742. }
  1743. .main-menu.menu-lh-1 > ul > li >a{
  1744. line-height: 50px;
  1745. }
  1746. .banner-main-container .carousel_img {
  1747. height: 100%;
  1748. min-height: 100%;
  1749. max-height: 100% !important;
  1750. }
  1751. .user_order_details.rounded.mb-3 .text-info {
  1752. color:#0a1322 !important;
  1753. }
  1754. .text-blue{
  1755. color:#0a1322 !important;
  1756. }
  1757. .product_card_section .col-sm-4{
  1758. margin-top:100px;
  1759. }
  1760. /* SECTION VERTICAL TABS */
  1761. #experienceTab.nav-pills .nav-link.active {
  1762. color: rgb(3, 41, 90) !important;
  1763. background-color: transparent;
  1764. border-radius: 0px;
  1765. border-left: 3px solid #191e71;
  1766. }
  1767. #experienceTab.nav-pills .nav-link {
  1768. border-radius: 0px;
  1769. line-height: 10px;
  1770. color: rgb(3, 41, 90) !important;
  1771. border-left: 3px solid rgb(222, 222, 222);
  1772. }
  1773. .date-range {
  1774. letter-spacing: 0.01em;
  1775. color: var(--theme-gray);
  1776. }
  1777. /* STUB LINKS */
  1778. a {
  1779. color: var(--theme-gray);
  1780. transition: 0.3s eas-in-out;
  1781. }
  1782. a:hover {
  1783. color: var(--theme-yellow);
  1784. }
  1785. .tab-content img{
  1786. width: 100%;
  1787. min-width:120px;
  1788. }
  1789. .w-250{
  1790. width: 250px;
  1791. }
  1792. .w-500{
  1793. width: 500px;
  1794. }