Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.css 46KB

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