style.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963
  1. @charset "UTF-8";
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. -webkit-box-sizing: border-box;
  6. box-sizing: border-box;
  7. font-family: 微軟正黑體;
  8. }
  9. html {
  10. min-height: 100%;
  11. height: auto;
  12. /*Image only BG fallback*/
  13. /*background = gradient + image pattern combo*/
  14. /* background:
  15. linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6)); */
  16. }
  17. body {
  18. font-family: "Montserrat", sans-serif;
  19. background-color: white;
  20. font-size: 1.05rem;
  21. }
  22. .ml {
  23. margin-left: 10px;
  24. }
  25. .mr {
  26. margin-right: 10px;
  27. }
  28. .mb {
  29. margin-bottom: 12px;
  30. }
  31. .top {
  32. margin-top: 20px;
  33. position: -webkit-sticky;
  34. position: sticky;
  35. top: 0;
  36. left: 50%;
  37. z-index: 20;
  38. background-color: inherit;
  39. }
  40. .copy {
  41. cursor: pointer;
  42. }
  43. .navbar {
  44. background-color: white;
  45. }
  46. .propertytitle {
  47. -webkit-text-stroke: 0.7px #fff;
  48. -moz-text-stroke: 0.7px #fff;
  49. }
  50. p {
  51. font-size: 24px;
  52. }
  53. .bg-item {
  54. display: none;
  55. }
  56. .bg-item2 {
  57. display: none;
  58. }
  59. .bg-item2 img {
  60. -webkit-animation-name: BgFadein;
  61. animation-name: BgFadein;
  62. -webkit-animation-duration: 3s;
  63. animation-duration: 3s;
  64. -webkit-animation-timing-function: ease-out;
  65. animation-timing-function: ease-out;
  66. }
  67. .bg-active {
  68. display: block;
  69. }
  70. @-webkit-keyframes BgFadein {
  71. 0% {
  72. opacity: 0.5;
  73. }
  74. 50% {
  75. opacity: 0.8;
  76. }
  77. 100% {
  78. opacity: 1;
  79. }
  80. }
  81. @keyframes BgFadein {
  82. 0% {
  83. opacity: 0.5;
  84. }
  85. 50% {
  86. opacity: 0.8;
  87. }
  88. 100% {
  89. opacity: 1;
  90. }
  91. }
  92. .sec-usecase .usecase-block {
  93. border: none;
  94. position: relative;
  95. background-color: transparent;
  96. }
  97. .sec-usecase .usecase-block::after {
  98. position: absolute;
  99. bottom: -1rem;
  100. left: 5%;
  101. width: 90%;
  102. height: 8rem;
  103. background-color: #ffebe2;
  104. content: " ";
  105. z-index: -1;
  106. border-radius: 2rem;
  107. margin-left: auto;
  108. margin-right: auto;
  109. }
  110. .sec-usecase .usecase-block .usecase-imgfr {
  111. width: 85%;
  112. margin: 0 auto;
  113. height: 45vh;
  114. background-position: center center;
  115. background-size: contain;
  116. background-repeat: no-repeat;
  117. margin-bottom: 1.5rem;
  118. }
  119. .sec-usecase .usecase-block .usecase-sub {
  120. background-color: transparent;
  121. }
  122. .sec-usecase .usecase-block .usecase-sub i {
  123. color: #ea5413;
  124. }
  125. .sec-steps .container {
  126. width: 100%;
  127. }
  128. .sec-steps .steps-title {
  129. font-size: 3rem;
  130. text-align: center;
  131. letter-spacing: 1px;
  132. }
  133. .sec-steps .steps-title strong {
  134. font-size: 5rem;
  135. }
  136. .sec-steps .steps-block {
  137. padding: 0 1rem;
  138. display: -webkit-box;
  139. display: -ms-flexbox;
  140. display: flex;
  141. -webkit-box-orient: vertical;
  142. -webkit-box-direction: normal;
  143. -ms-flex-direction: column;
  144. flex-direction: column;
  145. -webkit-box-align: center;
  146. -ms-flex-align: center;
  147. align-items: center;
  148. -webkit-box-pack: center;
  149. -ms-flex-pack: center;
  150. justify-content: center;
  151. position: relative;
  152. }
  153. .sec-steps .steps-block::after {
  154. position: absolute;
  155. bottom: -1rem;
  156. left: 0;
  157. width: 100%;
  158. height: 15rem;
  159. background-color: #ffebe2;
  160. content: " ";
  161. z-index: -1;
  162. border-radius: 2rem;
  163. }
  164. .sec-steps .steps-block .steps-imgfr {
  165. width: 85%;
  166. margin: 0 auto;
  167. height: 45vh;
  168. background-position: center center;
  169. background-size: contain;
  170. background-repeat: no-repeat;
  171. margin-bottom: 1.5rem;
  172. }
  173. .sec-steps .steps-block .steps-txt {
  174. display: -webkit-box;
  175. display: -ms-flexbox;
  176. display: flex;
  177. -webkit-box-align: center;
  178. -ms-flex-align: center;
  179. align-items: center;
  180. }
  181. .sec-steps .steps-block .steps-txt span {
  182. display: inline-block;
  183. width: 35px;
  184. height: 35px;
  185. background-color: #ea5413;
  186. color: white;
  187. font-size: 1.4rem;
  188. line-height: 35px;
  189. border-radius: 50%;
  190. text-align: center;
  191. margin-right: 0.6rem;
  192. }
  193. .sec-steps .steps-block .steps-txt .steps-sub {
  194. font-size: 1.6rem;
  195. }
  196. .sec-steps .step-videofr {
  197. width: 100%;
  198. }
  199. .sec-steps .step-videofr video {
  200. width: 100%;
  201. }
  202. .btn-dark {
  203. display: inline-block;
  204. text-decoration: none;
  205. color: white;
  206. border: 1px solid #ea5413;
  207. padding: 1rem 2.5rem;
  208. outline: none;
  209. background-color: #ea5413;
  210. margin-top: 4rem;
  211. border-radius: 3rem;
  212. font-size: 1.8rem;
  213. -webkit-box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  214. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  215. }
  216. /* sec-hero */
  217. .sec-hero {
  218. padding: 6rem 0;
  219. padding-bottom: 0;
  220. margin-bottom: 0 !important;
  221. }
  222. .sec-hero h1,
  223. .sec-hero h2,
  224. .sec-hero h3,
  225. .sec-hero h4,
  226. .sec-hero h5,
  227. .sec-hero h6,
  228. .sec-hero .h1,
  229. .sec-hero .h2,
  230. .sec-hero .h3,
  231. .sec-hero .h4,
  232. .sec-hero .h5,
  233. .sec-hero .h6 {
  234. font-family: "Roboto", Helvetica, Arial, sans-serif;
  235. font-weight: 900;
  236. line-height: 1.1;
  237. color: #e95412;
  238. }
  239. .sec-hero .hero-title {
  240. font-size: 48px;
  241. letter-spacing: 1px;
  242. padding-top: 0rem;
  243. }
  244. .sec-hero .hero-txt {
  245. font-size: 30px;
  246. letter-spacing: 1px;
  247. }
  248. .sec-hero .hero-btn {
  249. border: none;
  250. outline: none;
  251. border-radius: 3rem;
  252. margin-top: 2rem;
  253. padding: 0.5rem 2.5rem;
  254. background: #e95412;
  255. color: white;
  256. font-size: 1.8rem;
  257. -webkit-box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.534);
  258. box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.534);
  259. }
  260. .hero-orange {
  261. position: absolute;
  262. left: 10%;
  263. top: 0%;
  264. }
  265. .hero-purple {
  266. position: absolute;
  267. right: 0%;
  268. top: -10%;
  269. z-index: -1;
  270. width: 180px;
  271. }
  272. .hero-orange-s {
  273. position: absolute;
  274. left: -5%;
  275. bottom: 13%;
  276. z-index: -1;
  277. -webkit-animation: floating 8s infinite ease-in-out;
  278. animation: floating 8s infinite ease-in-out;
  279. width: 80px;
  280. }
  281. .hero-slide {
  282. width: 100px;
  283. z-index: 3;
  284. position: absolute;
  285. top: 1%;
  286. left: -1%;
  287. -webkit-animation: floating2 5s infinite ease-in-out;
  288. animation: floating2 5s infinite ease-in-out;
  289. }
  290. .hero-textgrp {
  291. z-index: 3;
  292. position: absolute;
  293. left: -10%;
  294. bottom: 10%;
  295. -webkit-animation: floating3 6s infinite 1s ease-in-out;
  296. animation: floating3 6s infinite 1s ease-in-out;
  297. width: 300px;
  298. }
  299. .hero-aips {
  300. z-index: 3;
  301. position: absolute;
  302. right: 0%;
  303. bottom: 10%;
  304. -webkit-animation: floating3 6s infinite 1s ease-in-out;
  305. animation: floating3 6s infinite 1s ease-in-out;
  306. width: 250px;
  307. }
  308. .hero-video {
  309. z-index: 3;
  310. position: absolute;
  311. right: 10%;
  312. top: -10%;
  313. -webkit-animation: floating 8s infinite 1.5s ease-in-out;
  314. animation: floating 8s infinite 1.5s ease-in-out;
  315. width: 120px;
  316. }
  317. .hero-amplify {
  318. z-index: 3;
  319. position: absolute;
  320. bottom: 5%;
  321. right: 0;
  322. -webkit-animation: floating2 5s infinite ease-in-out;
  323. animation: floating2 5s infinite ease-in-out;
  324. width: 120px;
  325. }
  326. .hero-imgfr {
  327. width: 100%;
  328. height: 95%;
  329. }
  330. .hero-imgfr img {
  331. width: 100%;
  332. }
  333. @-webkit-keyframes floating {
  334. from {
  335. -webkit-transform: translate(0px, 0);
  336. transform: translate(0px, 0);
  337. }
  338. 65% {
  339. -webkit-transform: translate(25px, 0);
  340. transform: translate(25px, 0);
  341. }
  342. to {
  343. -webkit-transform: translate(0, 0px);
  344. transform: translate(0, 0px);
  345. }
  346. }
  347. @keyframes floating {
  348. from {
  349. -webkit-transform: translate(0px, 0);
  350. transform: translate(0px, 0);
  351. }
  352. 65% {
  353. -webkit-transform: translate(25px, 0);
  354. transform: translate(25px, 0);
  355. }
  356. to {
  357. -webkit-transform: translate(0, 0px);
  358. transform: translate(0, 0px);
  359. }
  360. }
  361. @-webkit-keyframes floating3 {
  362. from {
  363. -webkit-transform: translate(0px, 0);
  364. transform: translate(0px, 0);
  365. }
  366. 65% {
  367. -webkit-transform: translate(-20px, 0);
  368. transform: translate(-20px, 0);
  369. }
  370. to {
  371. -webkit-transform: translate(0, 0px);
  372. transform: translate(0, 0px);
  373. }
  374. }
  375. @keyframes floating3 {
  376. from {
  377. -webkit-transform: translate(0px, 0);
  378. transform: translate(0px, 0);
  379. }
  380. 65% {
  381. -webkit-transform: translate(-20px, 0);
  382. transform: translate(-20px, 0);
  383. }
  384. to {
  385. -webkit-transform: translate(0, 0px);
  386. transform: translate(0, 0px);
  387. }
  388. }
  389. @-webkit-keyframes floating2 {
  390. from {
  391. -webkit-transform: translate(0px, 0);
  392. transform: translate(0px, 0);
  393. }
  394. 65% {
  395. -webkit-transform: translate(0px, 30px);
  396. transform: translate(0px, 30px);
  397. }
  398. to {
  399. -webkit-transform: translate(0, 0px);
  400. transform: translate(0, 0px);
  401. }
  402. }
  403. @keyframes floating2 {
  404. from {
  405. -webkit-transform: translate(0px, 0);
  406. transform: translate(0px, 0);
  407. }
  408. 65% {
  409. -webkit-transform: translate(0px, 30px);
  410. transform: translate(0px, 30px);
  411. }
  412. to {
  413. -webkit-transform: translate(0, 0px);
  414. transform: translate(0, 0px);
  415. }
  416. }
  417. .nav-link {
  418. border: none;
  419. outline: none;
  420. background-color: transparent;
  421. color: black;
  422. }
  423. /* sec-features */
  424. .ai-spokesgril {
  425. display: -webkit-box;
  426. display: -ms-flexbox;
  427. display: flex;
  428. -webkit-box-align: center;
  429. -ms-flex-align: center;
  430. align-items: center;
  431. -webkit-box-pack: justify;
  432. -ms-flex-pack: justify;
  433. justify-content: space-between;
  434. }
  435. .ai-spokesgril .nav-link {
  436. border: none;
  437. outline: none;
  438. background-color: transparent;
  439. color: black;
  440. }
  441. .ai-spokesgril .dropdown-toggle {
  442. text-decoration: none;
  443. }
  444. .ai-spokesgril .dropdown-toggle:hover {
  445. text-decoration: none;
  446. }
  447. .sec-features {
  448. padding: 5rem 0;
  449. }
  450. .sec-features .row {
  451. margin: 8rem 0;
  452. }
  453. .sec-features .row:nth-of-type(1) {
  454. margin: 4rem 0;
  455. }
  456. .sec-features .row:nth-of-type(4) {
  457. margin-bottom: 0;
  458. }
  459. .features-orangel {
  460. position: absolute;
  461. left: -150px;
  462. top: 5%;
  463. z-index: -1;
  464. }
  465. .features-purpler {
  466. position: absolute;
  467. right: -150px;
  468. top: 5%;
  469. z-index: -1;
  470. }
  471. .features-purplel {
  472. position: absolute;
  473. left: -150px;
  474. top: 5%;
  475. z-index: -1;
  476. }
  477. .features-oranger {
  478. position: absolute;
  479. right: -150px;
  480. top: 5%;
  481. z-index: -1;
  482. }
  483. .sec-features .row .d-block {
  484. display: none;
  485. }
  486. .sec-features .features-col {
  487. position: relative;
  488. }
  489. .sec-features .features-col .features-block {
  490. position: absolute;
  491. display: -webkit-box;
  492. display: -ms-flexbox;
  493. display: flex;
  494. opacity: 0;
  495. -webkit-transition: all 0.8s;
  496. transition: all 0.8s;
  497. }
  498. .sec-features h3 {
  499. font-family: "Roboto", Helvetica, Arial, sans-serif;
  500. font-weight: 900;
  501. line-height: 1.1;
  502. color: #e95412;
  503. }
  504. .sec-features .features-col .block-right {
  505. -webkit-transform: translateX(-30%) scale(0.95);
  506. transform: translateX(-30%) scale(0.95);
  507. }
  508. .sec-features .features-col .block-left {
  509. -webkit-transform: translateX(30%) scale(0.95);
  510. transform: translateX(30%) scale(0.95);
  511. }
  512. .sec-features .features-col .features-block.active {
  513. opacity: 1;
  514. -webkit-transform: translateX(0%) scale(1);
  515. transform: translateX(0%) scale(1);
  516. }
  517. .sec-features .features-num {
  518. display: inline-block;
  519. font-size: 14rem;
  520. color: #f0f0f0;
  521. }
  522. .sec-features .features-title {
  523. font-size: 3rem;
  524. text-align: center;
  525. letter-spacing: 1px;
  526. padding-bottom: 6px;
  527. border-bottom: 8px solid #ea5413;
  528. display: inline-block;
  529. }
  530. .sec-features .features-title strong {
  531. font-size: 5rem;
  532. }
  533. .sec-features .features-imgfr {
  534. width: 100%;
  535. }
  536. .sec-features .features-imgfr video {
  537. width: 100%;
  538. }
  539. .sec-features .features-list {
  540. text-align: left;
  541. }
  542. .features-list {
  543. padding-left: 40px;
  544. font-size: 18px;
  545. }
  546. .sec-blogtab {
  547. padding-bottom: 5rem;
  548. }
  549. .blog-tabs {
  550. display: -webkit-box;
  551. display: -ms-flexbox;
  552. display: flex;
  553. -webkit-box-align: center;
  554. -ms-flex-align: center;
  555. align-items: center;
  556. }
  557. .blogtab-title {
  558. font-size: 3rem;
  559. letter-spacing: 1px;
  560. padding-bottom: 6px;
  561. border-bottom: 8px solid #ea5413;
  562. display: inline-block;
  563. text-align: center;
  564. }
  565. .blog-tabs .blog-tabs-nav {
  566. width: 35%;
  567. background-color: #f0f0f0;
  568. padding: 4rem 2.5rem;
  569. list-style: none;
  570. -webkit-box-shadow: 0 2px 5px -2px #adadad;
  571. box-shadow: 0 2px 5px -2px #adadad;
  572. text-align: left;
  573. }
  574. .blog-tabs .blog-tabs-nav li {
  575. padding: 10px;
  576. border-bottom: 1px dashed grey;
  577. }
  578. .blog-tabs .blog-tabs-nav li a {
  579. color: #ea5413;
  580. }
  581. .blog-tabs .blog-tabs-stage {
  582. width: 65%;
  583. padding: 3.5rem;
  584. padding-bottom: 6rem;
  585. -webkit-box-shadow: 1px 1px 10px 2px grey;
  586. box-shadow: 1px 1px 10px 2px grey;
  587. height: 48rem;
  588. overflow: hidden;
  589. text-align: left;
  590. position: relative;
  591. }
  592. .blog-tab-box {
  593. height: 90%;
  594. overflow: scroll;
  595. }
  596. .blog-tabs .blog-tabs-stage .blog-txt {
  597. font-size: 1.6rem;
  598. }
  599. .btn-light {
  600. color: black;
  601. border: 1px solid #ea5413;
  602. padding: 1rem 2.5rem;
  603. outline: none;
  604. background-color: white;
  605. margin-top: 4rem;
  606. border-radius: 3rem;
  607. font-size: 1.8rem;
  608. -webkit-box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  609. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  610. }
  611. .btn-dark {
  612. text-decoration: none;
  613. color: white;
  614. border: 1px solid #ea5413;
  615. padding: 1rem 2.5rem;
  616. outline: none;
  617. background-color: #ea5413;
  618. margin-top: 4rem;
  619. border-radius: 3rem;
  620. font-size: 1.8rem;
  621. -webkit-box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  622. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  623. }
  624. .blog-tabs .btn-light {
  625. margin-top: 1.5rem;
  626. color: #ea5413;
  627. position: absolute;
  628. bottom: 1rem;
  629. left: 3.5rem;
  630. }
  631. .video-int .video-box {
  632. margin-top: 30px;
  633. }
  634. .video-int .video-box .video-btn {
  635. padding: 15px 50px;
  636. width: 280px;
  637. background: #fff;
  638. font-size: 32px;
  639. }
  640. :-webkit-full-screen #expand {
  641. display: none;
  642. }
  643. :-moz-full-screen #expand {
  644. display: none;
  645. }
  646. :-ms-fullscreen #expand {
  647. display: none;
  648. }
  649. :fullscreen #expand {
  650. display: none;
  651. }
  652. @media screen and (max-width: 1280px) {
  653. :-webkit-full-screen .home-page {
  654. height: 100vh;
  655. }
  656. :-moz-full-screen .home-page {
  657. height: 100vh;
  658. }
  659. :-ms-fullscreen .home-page {
  660. height: 100vh;
  661. }
  662. :fullscreen .home-page {
  663. height: 100vh;
  664. }
  665. }
  666. :-webkit-full-screen .home-box {
  667. height: 350px;
  668. }
  669. :-moz-full-screen .home-box {
  670. height: 350px;
  671. }
  672. :-ms-fullscreen .home-box {
  673. height: 350px;
  674. }
  675. :fullscreen .home-box {
  676. height: 350px;
  677. }
  678. @media screen and (max-width: 1280px) {
  679. :-webkit-full-screen .home-box {
  680. height: 250px;
  681. }
  682. :-moz-full-screen .home-box {
  683. height: 250px;
  684. }
  685. :-ms-fullscreen .home-box {
  686. height: 250px;
  687. }
  688. :fullscreen .home-box {
  689. height: 250px;
  690. }
  691. }
  692. #compression {
  693. display: none;
  694. }
  695. .home-page {
  696. position: relative;
  697. height: 100vh;
  698. }
  699. @media screen and (max-width: 1280px) {
  700. .home-page {
  701. height: 130vh;
  702. }
  703. }
  704. @media screen and (max-width: 1080px) {
  705. .home-page {
  706. height: 100vh;
  707. }
  708. }
  709. .home-page .home-box {
  710. height: 33vh;
  711. }
  712. .home-page .homebutton-box {
  713. background-image: url(./img/BG_3png.png);
  714. background-size: cover;
  715. background-repeat: no-repeat;
  716. }
  717. .home-page .homebutton-box .homebtn-icon h1 {
  718. font-size: 32px;
  719. text-align: center;
  720. -webkit-transition: 0.5s;
  721. transition: 0.5s;
  722. }
  723. .home-page .homebutton-box .homebtn-icon img {
  724. width: 100px;
  725. -webkit-transition: 0.5s;
  726. transition: 0.5s;
  727. -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
  728. filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
  729. }
  730. .home-page .homebutton-box .homebtn-icon:hover h1 {
  731. font-size: 26px;
  732. }
  733. .home-page .homebutton-box .homebtn-icon:hover img {
  734. -webkit-transform: scale(0.75);
  735. transform: scale(0.75);
  736. }
  737. .home-page .homepage-title h1 {
  738. color: #e95412;
  739. font-weight: 900;
  740. font-size: 48px;
  741. }
  742. .home-page .homepage-line {
  743. position: absolute;
  744. bottom: 50px;
  745. width: 70vw;
  746. }
  747. @media screen and (max-width: 1280px) {
  748. .home-page .homepage-line {
  749. bottom: 30px;
  750. }
  751. }
  752. .home-btn {
  753. -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
  754. filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
  755. }
  756. .demo-btn {
  757. width: 90%;
  758. margin: 0 auto;
  759. font-size: 32px;
  760. padding: 10px 20px;
  761. text-decoration: none;
  762. color: white;
  763. border: none;
  764. display: block;
  765. padding: 3rem 0;
  766. text-align: center;
  767. }
  768. .demo-btn:hover {
  769. color: white;
  770. }
  771. .demo-box {
  772. background: #E2E2E2;
  773. width: 90%;
  774. margin: 0 auto;
  775. }
  776. .demo-box .demo-card {
  777. padding: 4rem 30px;
  778. }
  779. .demo-box li {
  780. font-size: 17px;
  781. }
  782. .demo-box .demo-CTA {
  783. color: #fff;
  784. padding: 15px 50px;
  785. font-size: 24px;
  786. -webkit-transition: 1s;
  787. transition: 1s;
  788. }
  789. .demo-box .demo-CTA:hover {
  790. opacity: 0.7;
  791. }
  792. .features-nav .dropdown-toggle::after {
  793. display: inline-block;
  794. margin-left: 0.255em;
  795. vertical-align: 0.255em;
  796. content: "";
  797. border-top: 0.3em solid;
  798. border-right: 0.3em solid transparent;
  799. border-bottom: 0;
  800. border-left: 0.3em solid transparent;
  801. }
  802. .video-sec01 {
  803. height: 100vh;
  804. }
  805. .video-sec01 .video-int .video-box {
  806. margin-top: 30px;
  807. }
  808. .video-sec01 .video-int .video-box .video-btn {
  809. padding: 15px 50px;
  810. width: 250px;
  811. background: #fff;
  812. font-size: 32px;
  813. }
  814. #gotop {
  815. cursor: pointer;
  816. position: fixed;
  817. bottom: 50px;
  818. right: 50px;
  819. }
  820. .sec-video {
  821. height: 50vh;
  822. }
  823. .video-img {
  824. cursor: pointer;
  825. }
  826. .aboutpage {
  827. height: 100vh;
  828. }
  829. /*# sourceMappingURL=style.css.map */