Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

style.css 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843
  1. /*
  2. 0 - 600px: Phone
  3. 600 - 900px: Tablet portrait
  4. 900 - 1200px: Tablet landscape
  5. [1200 - 1800] is where our normal styles apply
  6. 1800px + : Big desktop
  7. $breakpoint arguement choices:
  8. - phone
  9. - tab-port
  10. - tab-land
  11. - big-desktop
  12. ORDER: Base + typography > general layout + grid > page layout > components
  13. 1em = 16px
  14. */
  15. *,
  16. *::after,
  17. *::before {
  18. margin: 0;
  19. padding: 0;
  20. box-sizing: inherit;
  21. }
  22. body {
  23. box-sizing: border-box;
  24. overflow-x: hidden;
  25. }
  26. @media only screen and (max-width: 56.25em) {
  27. body {
  28. padding: 0;
  29. }
  30. }
  31. .bg-green {
  32. background-color: #3bb78f;
  33. background: linear-gradient(90deg, #3bb78f 0%, rgb(11, 171, 100) 35%, rgb(59, 183, 143) 100%);
  34. }
  35. .text-green-Awni {
  36. color: #0A886A;
  37. }
  38. .orbitron_font {
  39. font-family: "Orbitron", sans-serif;
  40. }
  41. .font-3 {
  42. font-size: 3rem;
  43. }
  44. .font-1_5 {
  45. font-size: 2rem;
  46. }
  47. .font-1_7 {
  48. font-size: 1.7rem;
  49. }
  50. .font-2 {
  51. font-size: 2.2rem;
  52. }
  53. .font-2_2 {
  54. font-size: 2.2rem;
  55. }
  56. .font-2_7 {
  57. font-size: 2.7rem;
  58. }
  59. .font_4 {
  60. font-size: 4rem;
  61. }
  62. .subtitle_1 {
  63. font-size: 1.5rem;
  64. }
  65. .gap-1 {
  66. gap: 0.7rem;
  67. }
  68. .banner_heading_4 {
  69. font-size: 3rem;
  70. }
  71. .padding_top_14 {
  72. padding-top: 14rem;
  73. }
  74. .p-6 {
  75. padding: 5rem;
  76. }
  77. .padding_top_10 {
  78. padding-top: 10rem;
  79. }
  80. .h-10 {
  81. height: 10%;
  82. }
  83. .h-15 {
  84. height: 15%;
  85. }
  86. .h-20 {
  87. height: 20%;
  88. }
  89. .h-30 {
  90. height: 30%;
  91. }
  92. .h-33 {
  93. height: 33%;
  94. }
  95. .h-34 {
  96. height: 34%;
  97. }
  98. .h-35 {
  99. height: 35%;
  100. }
  101. .h-40 {
  102. height: 40%;
  103. }
  104. .vh_60 {
  105. height: 60vh;
  106. }
  107. .vh-70 {
  108. height: 70vh;
  109. }
  110. .vh-77 {
  111. height: 77vh;
  112. }
  113. .vh-85 {
  114. height: 85vh;
  115. }
  116. .vh-15 {
  117. height: 15vh;
  118. }
  119. .h-700p {
  120. height: 700px;
  121. }
  122. .mt-7 {
  123. margin-top: 7rem;
  124. }
  125. .fw-600 {
  126. font-weight: 600;
  127. }
  128. .fw-700 {
  129. font-weight: 700;
  130. }
  131. .h-200p {
  132. height: 200px;
  133. }
  134. .sec-space-1 {
  135. margin-top: 80px;
  136. }
  137. .sec-space-2 {
  138. margin-top: 60px;
  139. }
  140. .sec-space-3 {
  141. margin-top: 40px;
  142. }
  143. .sec-space-4 {
  144. margin-top: 20px;
  145. }
  146. .sec-space-5 {
  147. margin-top: 0px;
  148. }
  149. .h-100p {
  150. height: 100px;
  151. }
  152. .gap-1 {
  153. gap: 0.7rem;
  154. }
  155. .gap-2 {
  156. gap: 2rem;
  157. }
  158. .br-1 {
  159. border-radius: 1rem;
  160. }
  161. .button_dark {
  162. -webkit-clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  163. clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  164. padding-right: 1.7rem;
  165. padding-bottom: 0.6rem;
  166. padding-top: 0.6rem;
  167. border-radius: 10px;
  168. }
  169. .productoverviewmain {
  170. background-image: url("../../dist/assets/imgs/productoverview/productbg.png");
  171. background-color: white;
  172. background-size: cover;
  173. background-repeat: no-repeat;
  174. background-position: center;
  175. position: relative;
  176. }
  177. .photo_dual {
  178. width: 40rem;
  179. }
  180. .price_footer {
  181. background: rgba(255, 255, 255, 0.25);
  182. /* box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 ); */
  183. backdrop-filter: blur(4px);
  184. -webkit-backdrop-filter: blur(4px);
  185. border: 1px solid rgba(255, 255, 255, 0.18);
  186. border: 2px solid;
  187. position: absolute;
  188. z-index: 999;
  189. bottom: 0;
  190. left: 0;
  191. }
  192. .boxImgContainer {
  193. width: 4rem;
  194. }
  195. .priceCut_multi {
  196. font-size: 0.7rem;
  197. }
  198. .PO_learnMore {
  199. font-size: 0.7rem;
  200. }
  201. .productOverview .overviewProductHeading {
  202. font-size: 2.1rem;
  203. font-family: "satoshi", sans-serif;
  204. font-weight: 500;
  205. }
  206. .productOverview .overviewProductFullTitle {
  207. padding: 2rem 11rem;
  208. font-size: 3rem;
  209. font-family: "orbitron", sans-serif;
  210. }
  211. .productOverview .overviewProductDes {
  212. padding: 0 2rem;
  213. font-size: 1.5rem;
  214. font-family: "satoshi", sans-serif;
  215. }
  216. .PO_galleryContainer .PO_gallery_display {
  217. min-height: 500px;
  218. width: 100%;
  219. background: white;
  220. background: linear-gradient(180deg, white 7%, rgba(255, 142, 158, 0.3019607843) 52%, rgba(235, 134, 148, 0.4705882353) 100%);
  221. position: relative;
  222. }
  223. .PO_galleryContainer .PO_gallery_display .PO_gallery_display_img {
  224. position: absolute;
  225. top: 50%;
  226. left: 50%;
  227. transform: translate(-50%, -50%);
  228. }
  229. .PO_galleryContainer .PO_gallery_box_inner {
  230. padding: 2rem;
  231. background-color: #eeeeee;
  232. }
  233. .productoverBox .PO_box {
  234. height: 100%;
  235. }
  236. .productoverBox .PO_box > div {
  237. padding: 1rem 0rem;
  238. }
  239. .productoverBox .PO_box .box_inner {
  240. height: 100%;
  241. }
  242. .productoverBox .PO_box .bgBox_Content {
  243. background: rgb(236, 236, 236);
  244. background: linear-gradient(90deg, rgb(236, 236, 236) 4%, rgb(118, 118, 118) 100%);
  245. }
  246. .productoverBox .PO_box .box_inner_right {
  247. padding-left: 1rem;
  248. }
  249. .productoverBox .PO_box .box_inner_left {
  250. padding-right: 1rem;
  251. }
  252. .displayscreenpad .displayscreenpadContainer {
  253. text-align: center;
  254. }
  255. .displayscreenpad .displayscreenpadHeading {
  256. font-size: 8rem;
  257. }
  258. .displayscreenpad .displayscreenpadMain {
  259. top: -108px;
  260. }
  261. .displayscreenpad .displayscreenpadleft > img {
  262. left: -8%;
  263. }
  264. .displayscreenpad .displayscreenpadright > img {
  265. right: -10%;
  266. }
  267. .dual_des_heading {
  268. font-size: 3rem;
  269. }
  270. .dualLaptop {
  271. width: 100vw;
  272. height: 1000px;
  273. top: -100px;
  274. margin-bottom: -100px;
  275. position: relative;
  276. }
  277. .dualLaptop .zeroBMain_desP {
  278. font-size: 1.2rem;
  279. }
  280. .dualLaptop .zeroBMain_des {
  281. position: absolute;
  282. top: 0;
  283. right: 0;
  284. max-width: 700px;
  285. padding-right: 9rem;
  286. }
  287. .dualLaptop .dualImgs {
  288. position: absolute;
  289. }
  290. .dualLaptop .dualImgs .dualImgsInner {
  291. width: 63%;
  292. }
  293. .dualLaptop .dualImgsOne {
  294. top: 0;
  295. left: -10%;
  296. transform: rotate(343deg);
  297. width: 68%;
  298. }
  299. .dualLaptop .dualImgsTwo {
  300. top: 31%;
  301. right: -68%;
  302. transform: rotate(339deg);
  303. }
  304. .dualLaptop .dualImgsTwo .dualImgsInner {
  305. width: 82%;
  306. }
  307. .tableLaptop {
  308. margin-top: 300px;
  309. height: 90vh;
  310. width: 100vw;
  311. position: relative;
  312. margin-bottom: 300px;
  313. }
  314. .tableLaptop .circleTableLaptop_Heading {
  315. position: absolute;
  316. top: 50%;
  317. left: 50%;
  318. transform: translate(-50%, -311%);
  319. }
  320. .tableLaptop .justTableLaptop {
  321. position: absolute;
  322. width: 86%;
  323. top: -10px;
  324. right: 128px;
  325. z-index: 1;
  326. }
  327. .tableLaptop .circleTableLaptop {
  328. background-color: #ECECEC;
  329. height: 70rem;
  330. width: 70rem;
  331. border-radius: 50%;
  332. position: relative;
  333. overflow: hidden;
  334. }
  335. .tableLaptop .circleTableLaptop .circleTableLaptopTop {
  336. bottom: -3%;
  337. width: 80%;
  338. position: absolute;
  339. top: 50%;
  340. left: 50%;
  341. transform: translate(-50%, 2%);
  342. }
  343. .tableLaptop .circleTableLaptop_text {
  344. position: absolute;
  345. top: 50%;
  346. left: 50%;
  347. transform: translate(-50%, 168%);
  348. }
  349. .trueLifeDisplay .trueLifeDisplay_headingHD > .headingLife {
  350. font-size: 6rem;
  351. }
  352. .trueLifeDisplay .trueLifeDisplay_des {
  353. padding: 0 10rem;
  354. }
  355. .font_p_Dual {
  356. font-size: 1.2rem;
  357. }
  358. .controlPanel {
  359. margin-top: 10rem;
  360. padding-bottom: 550px;
  361. }
  362. .controlPanel .controlPanel_des {
  363. position: absolute;
  364. top: -170px;
  365. left: 80px;
  366. }
  367. .controlPanel .bgControlpanel {
  368. min-height: 100vh;
  369. background-color: #ECECEC;
  370. border-radius: 157px;
  371. position: relative;
  372. }
  373. .controlPanel .bgControlpanel .bgControlpaneltabs {
  374. position: absolute;
  375. top: 100px;
  376. right: 0;
  377. }
  378. .controlPanel .bgControlpanel .bgControlpaneltabs .nav-tabs {
  379. border-bottom: 1px solid;
  380. margin-bottom: 2rem;
  381. }
  382. .controlPanel .bgControlpanel .bgControlpaneltabs .nav-item {
  383. position: relative;
  384. border: none;
  385. }
  386. .controlPanel .bgControlpanel .bgControlpaneltabs .nav-tabs .nav-link {
  387. position: relative;
  388. color: black;
  389. font-weight: 500;
  390. }
  391. .controlPanel .bgControlpanel .bgControlpaneltabs .nav-tabs .nav-link.active {
  392. border: none;
  393. background-color: transparent;
  394. }
  395. .controlPanel .bgControlpanel .bgControlpaneltabs .nav-tabs .nav-link.active::before {
  396. display: block;
  397. }
  398. .controlPanel .bgControlpanel .bgControlpaneltabs .nav-item .nav-link::before {
  399. content: "";
  400. position: absolute;
  401. width: 100%;
  402. height: 5px;
  403. bottom: -2px;
  404. right: 0;
  405. display: none;
  406. background-color: black;
  407. }
  408. .designedProLaptop {
  409. position: relative;
  410. }
  411. .designedProLaptop .designedProLaptop_title {
  412. position: absolute;
  413. top: -200px;
  414. left: 0;
  415. z-index: 1;
  416. }
  417. .designedProLaptop .designedProLaptop_title_text {
  418. font-size: 10rem;
  419. }
  420. .designedProLaptop .designedProLaptop_img {
  421. position: absolute;
  422. top: 0;
  423. right: 700px;
  424. }
  425. /* home page */
  426. .button_dark.btn-dark {
  427. background-color: #000000 !important;
  428. font-family: "Satoshi", sans-serif;
  429. }
  430. .button_dark.btn-dark:hover {
  431. background-color: #000000 !important;
  432. font-family: "Satoshi", sans-serif;
  433. opacity: 1 !important;
  434. }
  435. .home-main-container #navbar-head .navbar-nav .nav-item .nav-link {
  436. color: #000000;
  437. font-family: "Satoshi", sans-serif;
  438. }
  439. .hero-banner {
  440. background-image: url(../../dist/assets/imgs/Home/banner.png);
  441. background-size: cover;
  442. background-repeat: no-repeat;
  443. background-position: center center;
  444. background-position-y: -100px;
  445. }
  446. .hero-banner .banner-main-container {
  447. height: 475px;
  448. }
  449. .home-main-container .offer-main-sec .offer-sec {
  450. margin-top: -35px;
  451. }
  452. .home-main-container .aw-feature-name h5 {
  453. transform: rotate(180deg);
  454. transform-origin: center center 0;
  455. -ms-writing-mode: tb-rl;
  456. writing-mode: vertical-rl;
  457. }
  458. .home-main-container .out-of-world .card {
  459. background-color: #0FA5C5;
  460. }
  461. .home-main-container .aw-support-sec .aw-support-sec-main-container {
  462. background-color: #F2F9FB;
  463. }
  464. .home-main-container .aw-support-sec .news-letter-sec .news-letter-email:focus {
  465. border-bottom: 1px solid white;
  466. outline: none;
  467. }
  468. .home-main-container .aw-support-sec .news-letter-sec .news-letter-email::-moz-placeholder {
  469. color: white;
  470. }
  471. .home-main-container .aw-support-sec .news-letter-sec .news-letter-email:-ms-input-placeholder {
  472. color: white;
  473. }
  474. .home-main-container .aw-support-sec .news-letter-sec .news-letter-email::placeholder {
  475. color: white;
  476. }
  477. .home-main-container .owl-carousel.star-products-img-sec .owl-dots {
  478. text-align: left;
  479. }
  480. .home-main-container .owl-carousel.star-products-img-sec .owl-dots .owl-dot span {
  481. height: 3px;
  482. width: 25px;
  483. }
  484. .home-main-container .owl-carousel.star-products-img-sec .owl-dots .owl-dot.active {
  485. color: #000000;
  486. }
  487. .home-main-container .owl-carousel.star-products-img-sec .owl-nav {
  488. text-align: right;
  489. margin-right: 5rem;
  490. }
  491. @media (min-width: 1900px) {
  492. .hero-banner {
  493. background-size: 100% 100%;
  494. }
  495. .products-main-container .col-md-6 {
  496. text-align: center !important;
  497. }
  498. .products-main-container .col-md-6 .product-heading span {
  499. text-align: center !important;
  500. margin: auto !important;
  501. }
  502. }
  503. @media (min-width: 769px) and (max-width: 1024px) {
  504. .home-main-container .aw-partners.sec-space-1 {
  505. margin-top: 0px;
  506. }
  507. .home-main-container .aw-partners .sec-space-3 {
  508. margin-right: 60px;
  509. }
  510. .home-main-container .offer-main-sec .offer-sec {
  511. margin-top: -30%;
  512. }
  513. .home-main-container .news-letter-sec .card-body.px-5 {
  514. padding: 20px !important;
  515. }
  516. .home-main-container .news-letter-sec a.button_dark {
  517. padding: 10px 5px;
  518. }
  519. }
  520. @media (min-width: 298px) and (max-width: 768px) {
  521. .home-main-container h5,
  522. .home-main-container h6 {
  523. font-size: 1rem;
  524. }
  525. .home-main-container .sec-space-1,
  526. .home-main-container .sec-space-2 {
  527. margin-top: 40px;
  528. }
  529. .home-main-container .banner-main-container {
  530. height: 275px;
  531. text-align: center;
  532. }
  533. .home-main-container .banner-main-container .col-md-6 {
  534. margin-top: 0px;
  535. }
  536. .home-main-container .banner-main-container h1 {
  537. font-size: 2rem;
  538. }
  539. .home-main-container .hero-banner {
  540. background: #cccccc;
  541. }
  542. .home-main-container .mobile-text-center {
  543. text-align: center;
  544. }
  545. .home-main-container .aw-feature-name h5 {
  546. transform: rotate(0deg);
  547. -ms-writing-mode: lr-tb;
  548. writing-mode: horizontal-tb;
  549. }
  550. .home-main-container .products-main-container .enterprise-prd {
  551. margin-top: 10px;
  552. }
  553. .home-main-container .news-letter-sec a.button_dark {
  554. padding: 10px 5px;
  555. }
  556. .home-main-container .owl-carousel.star-products-img-sec .owl-nav {
  557. text-align: center;
  558. margin-right: 0px;
  559. }
  560. .home-main-container .star-products .owl-dots {
  561. display: none;
  562. }
  563. .home-main-container .aw-support-sec-main-container .row {
  564. margin: 0px !important;
  565. text-align: center;
  566. }
  567. .home-main-container .aw-support-sec-main-container .col-md-4 {
  568. border: none !important;
  569. }
  570. .home-main-container .aw-support-sec-main-container .support-sec-heading {
  571. padding: 0 !important;
  572. }
  573. .footer-wrapper .accordion-button,
  574. .footer-wrapper .accordion-body {
  575. font-family: "Satoshi", sans-serif;
  576. color: white;
  577. background-color: #000000;
  578. }
  579. .footer-wrapper .accordion-button:not(.collapsed)::after,
  580. .footer-wrapper .accordion-button.collapsed::after {
  581. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  582. }
  583. }
  584. .shopping-cart-main-container {
  585. background-color: #F5FFEA;
  586. padding-bottom: 50px;
  587. }
  588. .shopping-cart-main-container * {
  589. font-family: "Satoshi", sans-serif;
  590. }
  591. .shopping-cart-main-container h6 {
  592. padding: 10px;
  593. margin-bottom: 0;
  594. }
  595. .shopping-cart-main-container .cart-sec-highlighter .text-muted {
  596. color: #C5C5C5 !important;
  597. }
  598. .shopping-cart-main-container .alert-display-sec {
  599. z-index: 1;
  600. }
  601. #footer-head .footer-wrapper.sec-space-1 {
  602. margin-top: 0;
  603. }
  604. @media (max-width: 1300px) {
  605. .cart-sec-highlighter h5 {
  606. font-size: 0.8rem;
  607. }
  608. }
  609. @media (max-width: 768px) {
  610. .cart-sec-highlighter,
  611. .shopping-cart-details-row-1 {
  612. display: none !important;
  613. }
  614. .buy-together-sec {
  615. text-align: center;
  616. }
  617. .buy-together-sec .row {
  618. padding: 10px;
  619. }
  620. }
  621. /*
  622. 0 - 600px: Phone
  623. 600 - 900px: Tablet portrait
  624. 900 - 1200px: Tablet landscape
  625. [1200 - 1800] is where our normal styles apply
  626. 1800px + : Big desktop
  627. $breakpoint arguement choices:
  628. - phone
  629. - tab-port
  630. - tab-land
  631. - big-desktop
  632. ORDER: Base + typography > general layout + grid > page layout > components
  633. 1em = 16px
  634. */
  635. /* Orbitron */
  636. @font-face {
  637. font-family: "Orbitron";
  638. src: url("../assets/font/orbitron/Orbitron-Regular.ttf") format("truetype");
  639. font-weight: 400;
  640. font-style: normal;
  641. }
  642. @font-face {
  643. font-family: "Orbitron";
  644. src: url("../assets/font/orbitron/Orbitron-Medium.ttf") format("truetype");
  645. font-weight: 500;
  646. font-style: normal;
  647. }
  648. @font-face {
  649. font-family: "Orbitron";
  650. src: url("../assets/font/orbitron/Orbitron-SemiBold.ttf") format("truetype");
  651. font-weight: 600;
  652. font-style: normal;
  653. }
  654. @font-face {
  655. font-family: "Orbitron";
  656. src: url("../assets/font/orbitron/Orbitron-Bold.ttf") format("truetype");
  657. font-weight: 700;
  658. font-style: normal;
  659. }
  660. /* Orbitron end */
  661. /* Satoshi */
  662. @font-face {
  663. font-family: "Satoshi";
  664. src: url("../assets/font/satoshi/Satoshi-Regular.ttf") format("truetype");
  665. font-weight: 400;
  666. font-style: normal;
  667. }
  668. @font-face {
  669. font-family: "Satoshi";
  670. src: url("../assets/font/satoshi/Satoshi-Medium.ttf") format("truetype");
  671. font-weight: 500;
  672. font-style: normal;
  673. }
  674. @font-face {
  675. font-family: "Satoshi";
  676. src: url("../assets/font/satoshi/Satoshi-Bold.ttf") format("truetype");
  677. font-weight: 700;
  678. font-style: normal;
  679. }
  680. *,
  681. *::after,
  682. *::before {
  683. margin: 0;
  684. padding: 0;
  685. box-sizing: inherit;
  686. font-family: "Orbitron", sans-serif;
  687. }
  688. /* Satoshi end */
  689. .satoshi_font {
  690. font-family: "Satoshi", sans-serif;
  691. }
  692. html {
  693. font-size: 100%;
  694. }
  695. body {
  696. box-sizing: border-box;
  697. overflow-x: hidden;
  698. }
  699. @media only screen and (max-width: 56.25em) {
  700. body {
  701. padding: 0;
  702. }
  703. }
  704. .bg-green {
  705. background-color: #3bb78f;
  706. background: linear-gradient(90deg, #3bb78f 0%, #0bab64 35%, #3bb78f 100%);
  707. }
  708. /* button */
  709. .button_dark {
  710. -webkit-clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  711. clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  712. padding-right: 1.7rem;
  713. padding-bottom: 0.6rem;
  714. padding-top: 0.6rem;
  715. border-radius: 10px;
  716. }
  717. .biz-nav-wrapper .navbar-brand img {
  718. width: 150px;
  719. }
  720. .navbar-nav .nav-item .nav-link {
  721. color: #000000;
  722. font-family: "Satoshi", sans-serif;
  723. }
  724. /* footer */
  725. .footer-wrapper {
  726. background-image: url(../dist/assets/imgs/Home/Footer-bg-1.png);
  727. background-size: cover;
  728. }
  729. .footer-wrapper .footer-content-main-container {
  730. background-image: url(../dist/assets/imgs/Home/Footer-pattern.png);
  731. background-size: contain;
  732. background-position: right 30px;
  733. background-repeat: no-repeat;
  734. }
  735. .footer-wrapper .last-col-footer {
  736. width: 23%;
  737. }
  738. @media (min-width: 1990px) {
  739. .footer-wrapper .footer-rkt {
  740. right: 45px !important;
  741. }
  742. }
  743. .footer-wrapper .footer-logo img {
  744. width: 120px;
  745. }
  746. .footer-wrapper li,
  747. .footer-wrapper .footer-sub-content p {
  748. line-height: 2rem;
  749. font-family: "Satoshi", sans-serif;
  750. }/*# sourceMappingURL=style.css.map */