style.css 17 KB

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