custom.css 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618
  1. /* your styles go here */
  2. .text-center {
  3. text-align: center;
  4. }
  5. .text-left {
  6. text-align: left;
  7. }
  8. /* LP-components nav */
  9. #navigation .navbar-nav .main-link {
  10. background-color: white;
  11. border-top: none;
  12. color: black;
  13. font-weight: 400;
  14. padding: 3px 3px 3px 3px;
  15. margin: 18px 12px 18px 12px;
  16. font-size: 1.5rem;
  17. text-decoration: none;
  18. }
  19. #navigation .navbar-nav .dropdown.active .main-link {
  20. border-bottom: 3px solid #EA5413;
  21. }
  22. #navigation .navbar-nav .signin-link {
  23. padding: 8px 18px 8px 18px;
  24. margin: 13px 10px 13px 10px;
  25. text-decoration: none;
  26. color: #EA5413;
  27. font-size: 1.5rem;
  28. font-weight: 400;
  29. border: 1px solid #EA5413;
  30. border-radius: 3rem;
  31. }
  32. #navigation .navbar-nav .signin-link:hover, #navigation .navbar-nav .signin-link:focus {
  33. background-color: transparent;
  34. }
  35. #navigation .navbar-nav .signup-link {
  36. padding: 8px 18px 8px 18px;
  37. margin: 13px 10px 13px 10px;
  38. text-decoration: none;
  39. color: white;
  40. font-size: 1.5rem;
  41. font-weight: 400;
  42. border: 1px solid #EA5413;
  43. border-radius: 3rem;
  44. background-color: #EA5413;
  45. }
  46. #navigation .navbar-nav .signup-link:hover, #navigation .navbar-nav .signup-link:focus {
  47. background-color: #EA5413;
  48. }
  49. /* sec-hero */
  50. .sec-hero {
  51. padding: 6rem 0;
  52. padding-bottom: 0;
  53. margin-bottom: 0 !important;
  54. }
  55. .sec-hero .hero-title {
  56. font-size: 3.5rem;
  57. letter-spacing: 1px;
  58. padding-top: 2.5rem;
  59. }
  60. .sec-hero .hero-txt {
  61. font-size: 1.8rem;
  62. letter-spacing: 1px;
  63. }
  64. .sec-hero .hero-btn {
  65. border: none;
  66. outline: none;
  67. border-radius: 3rem;
  68. margin-top: 2rem;
  69. padding: 1rem 2.5rem;
  70. background: linear-gradient(20deg, #EA5413, #920783);
  71. color: white;
  72. font-size: 1.8rem;
  73. box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.534);
  74. }
  75. .hero-orange {
  76. position: absolute;
  77. left: 10%;
  78. top: 0%;
  79. }
  80. .hero-purple {
  81. position: absolute;
  82. right: 0%;
  83. top: -10%;
  84. z-index: -1;
  85. width: 180px;
  86. }
  87. .hero-orange-s {
  88. position: absolute;
  89. left: -5%;
  90. bottom: 13%;
  91. z-index: -1;
  92. animation: floating 8s infinite ease-in-out;
  93. width: 80px;
  94. }
  95. .hero-textgrp {
  96. z-index: 3;
  97. position: absolute;
  98. left: 5%;
  99. top: 10%;
  100. animation: floating3 6s infinite 1s ease-in-out;
  101. width: 300px;
  102. }
  103. .hero-video {
  104. z-index: 3;
  105. position: absolute;
  106. right: 3%;
  107. top: -5%;
  108. animation: floating 8s infinite 1.5s ease-in-out;
  109. width: 120px;
  110. }
  111. .hero-amplify {
  112. z-index: 3;
  113. position: absolute;
  114. bottom: 5%;
  115. right: 0;
  116. animation: floating2 5s infinite ease-in-out;
  117. width: 120px;
  118. }
  119. .hero-imgfr {
  120. width: 100%;
  121. height: 95%;
  122. }
  123. .hero-imgfr img {
  124. width: 100%;
  125. }
  126. @keyframes floating {
  127. from { transform: translate(0px, 0); }
  128. 65% { transform: translate(25px, 0); }
  129. to { transform: translate(0, -0px); }
  130. }
  131. @keyframes floating3 {
  132. from { transform: translate(0px, 0); }
  133. 65% { transform: translate(-20px, 0); }
  134. to { transform: translate(0, -0px); }
  135. }
  136. @keyframes floating2 {
  137. from { transform: translate(0px, 0); }
  138. 65% { transform: translate(0px, 10px); }
  139. to { transform: translate(0, -0px); }
  140. }
  141. /* sec-usecase */
  142. .sec-usecase {
  143. padding: 6rem 0;
  144. position: relative;
  145. margin-bottom: 0 !important;
  146. }
  147. .sec-usecase::after {
  148. content: " ";
  149. position: absolute;
  150. bottom: 0;
  151. left: 0;
  152. right: 0;
  153. height: 40%;
  154. width: 100%;
  155. background-color: #FFEBE2;
  156. z-index: -1;
  157. }
  158. .sec-usecase .usecase-title {
  159. font-size: 3rem;
  160. text-align: center;
  161. }
  162. .sec-usecase .usecase-sub {
  163. font-size: 1.8rem;
  164. text-align: center;
  165. }
  166. .sec-usecase .usecase-sub i {
  167. color: #EA5413;
  168. }
  169. .sec-usecase .usecase-block {
  170. padding: 0 1rem;
  171. z-index: 3;
  172. }
  173. .sec-usecase .usecase-imgfr {
  174. width: 100%;
  175. height: 25rem;
  176. border-radius: 1rem;
  177. overflow: hidden;
  178. box-shadow: 0 3px 11px 3px rgba(192, 192, 192, 0.637);
  179. }
  180. .sec-usecase .usecase-imgfr img {
  181. width: 100%;
  182. height: 100%;
  183. }
  184. /* sec-steps */
  185. .sec-steps {
  186. padding: 6rem 0;
  187. padding-bottom: 0;
  188. }
  189. .sec-steps .steps-title {
  190. font-size: 3rem;
  191. text-align: center;
  192. letter-spacing: 1px;
  193. }
  194. .sec-steps .steps-title strong {
  195. font-size: 5rem;
  196. }
  197. .sec-steps .steps-block {
  198. padding: 0 1rem;
  199. display: flex;
  200. flex-direction: column;
  201. align-items: center;
  202. justify-content: center;
  203. position: relative;
  204. }
  205. .sec-steps .steps-block::after {
  206. position: absolute;
  207. bottom: -1rem;
  208. left: 0;
  209. width: 100%;
  210. height: 15rem;
  211. background-color: #FFEBE2;
  212. content: " ";
  213. z-index: -1;
  214. border-radius: 2rem;
  215. }
  216. .sec-steps .steps-imgfr {
  217. width: 75%;
  218. height: 23rem;
  219. }
  220. .sec-steps .steps-imgfr img {
  221. width: 100%;
  222. height: 100%;
  223. }
  224. .sec-steps .steps-txt {
  225. display: flex;
  226. align-items: center;
  227. }
  228. .sec-steps .steps-txt span {
  229. display: inline-block;
  230. width: 40px;
  231. height: 40px;
  232. background-color: #EA5413;
  233. color: white;
  234. font-size: 2.5rem;
  235. line-height: 40px;
  236. border-radius: 50%;
  237. text-align: center;
  238. margin-right: 1rem;
  239. }
  240. /* sec-features */
  241. .sec-features {
  242. padding: 5rem 0;
  243. }
  244. .sec-features .row {
  245. margin: 8rem 0;
  246. }
  247. .sec-features .row:nth-of-type(1) {
  248. margin: 4rem 0;
  249. }
  250. .sec-features .row:nth-of-type(4) {
  251. margin-bottom: 0;
  252. }
  253. .features-orangel {
  254. position: absolute;
  255. left: -150px;
  256. top: 5%;
  257. z-index: -1;
  258. }
  259. .features-purpler {
  260. position: absolute;
  261. right: -150px;
  262. top: 5%;
  263. z-index: -1;
  264. }
  265. .features-purplel {
  266. position: absolute;
  267. left: -150px;
  268. top: 5%;
  269. z-index: -1;
  270. }
  271. .features-oranger {
  272. position: absolute;
  273. right: -150px;
  274. top: 5%;
  275. z-index: -1;
  276. }
  277. .sec-features .row .d-block {
  278. display: none;
  279. }
  280. .sec-features .features-col {
  281. position: relative;
  282. }
  283. .sec-features .features-col .features-block {
  284. position: absolute;
  285. left: 10rem;
  286. top: 6rem;
  287. display: flex;
  288. opacity: 0;
  289. transition: all .8s;
  290. }
  291. .sec-features .features-col .block-right {
  292. transform: translateX(-30%) scale(0.95);
  293. }
  294. .sec-features .features-col .block-left {
  295. transform: translateX(30%) scale(0.95);
  296. }
  297. .sec-features .features-col .features-block.active {
  298. opacity: 1;
  299. transform: translateX(0%) scale(1);
  300. }
  301. .sec-features .features-num {
  302. display: inline-block;
  303. font-size: 12rem;
  304. color: #F0F0F0;
  305. }
  306. .sec-features .features-title {
  307. font-size: 3rem;
  308. text-align: center;
  309. letter-spacing: 1px;
  310. padding-bottom: 6px;
  311. border-bottom: 8px solid #EA5413;
  312. display: inline-block;
  313. }
  314. .sec-features .features-title strong {
  315. font-size: 5rem;
  316. }
  317. .sec-features .features-imgfr {
  318. width: 100%;
  319. }
  320. .sec-features .features-imgfr video {
  321. width: 100%;
  322. }
  323. .sec-features .features-list {
  324. text-align: left;
  325. }
  326. .sec-blogtab {
  327. padding-bottom: 5rem;
  328. }
  329. .blog-tabs {
  330. display: flex;
  331. align-items: center;
  332. }
  333. .blogtab-title {
  334. font-size: 3rem;
  335. letter-spacing: 1px;
  336. padding-bottom: 6px;
  337. border-bottom: 8px solid #EA5413;
  338. display: inline-block;
  339. text-align: center;
  340. }
  341. .blog-tabs .blog-tabs-nav {
  342. width: 35%;
  343. background-color: #F0F0F0;
  344. padding: 4rem 2.5rem;
  345. list-style: none;
  346. box-shadow: 0 2px 5px -2px rgb(173, 173, 173);
  347. text-align: left;
  348. }
  349. .blog-tabs .blog-tabs-nav li {
  350. padding: 10px;
  351. border-bottom: 1px dashed grey;
  352. }
  353. .blog-tabs .blog-tabs-nav li a {
  354. color: #EA5413;
  355. }
  356. .blog-tabs .blog-tabs-stage {
  357. width: 65%;
  358. padding: 3.5rem;
  359. padding-bottom: 8rem;
  360. box-shadow: 1px 1px 10px 2px grey;
  361. height: 48rem;
  362. overflow: hidden;
  363. text-align: left;
  364. }
  365. .blog-tab-box {
  366. height: 95%;
  367. overflow: scroll;
  368. }
  369. .blog-tabs .blog-tabs-stage .blog-txt {
  370. font-size: 1.6rem;
  371. }
  372. .btn-light {
  373. color: black;
  374. border: 1px solid #EA5413;
  375. padding: 1rem 2.5rem;
  376. outline: none;
  377. background-color: white;
  378. margin-top: 4rem;
  379. border-radius: 3rem;
  380. font-size: 1.8rem;
  381. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  382. }
  383. .btn-dark {
  384. color: white;
  385. border: 1px solid #EA5413;
  386. padding: 1rem 2.5rem;
  387. outline: none;
  388. background-color: #EA5413;
  389. margin-top: 4rem;
  390. border-radius: 3rem;
  391. font-size: 1.8rem;
  392. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  393. }
  394. .blog-tabs .btn-light {
  395. margin-top: 1.5rem;
  396. color: #EA5413;
  397. }
  398. /* sec-action */
  399. .sec-action {
  400. padding-bottom: 7rem;
  401. background-color: #FFEBE2;
  402. margin-bottom: 0 !important;
  403. }
  404. .sec-action .container-fluid {
  405. padding: 0;
  406. }
  407. .sec-action .action-clip {
  408. width: 100%;
  409. background-color: #EA5413;
  410. padding: 2rem 0;
  411. border-color: #EA5413;
  412. }
  413. .sec-action .action-clip h2 {
  414. color: white;
  415. }
  416. .sec-action .action-triangle {
  417. clip-path: polygon(0 0, 50% 60%, 100% 0);
  418. -webkit-clip-path: polygon(0 0, 50% 60%, 100% 0);
  419. background: #EA5413;
  420. height: 8rem;
  421. border-color: #EA5413;
  422. }
  423. .sec-action form {
  424. padding: 4rem 0;
  425. }
  426. .sec-action form .action-input {
  427. padding: .8rem;
  428. display: block;
  429. width: 35rem;
  430. margin: 0 auto;
  431. border: 1px solid #9B9B9B;
  432. border-radius: 8px;
  433. outline: none;
  434. }
  435. .sec-action form .action-input::placeholder {
  436. color: #9B9B9B;
  437. }
  438. .sec-action form .action-input::-webkit-input-placeholder {
  439. color: #9B9B9B;
  440. }
  441. .sec-action form .action-input:-moz-input-placeholder{
  442. color: #9B9B9B;
  443. }
  444. .sec-action form .action-input:-ms-input-placeholder{
  445. color: #9B9B9B;
  446. }
  447. .sec-action .action-btn {
  448. border: none;
  449. outline: none;
  450. padding: .8rem 3.5rem;
  451. border-radius: 3rem;
  452. font-size: 2.2rem;
  453. background-color: white;
  454. color: #EA5413;
  455. margin-top: 3rem;
  456. }
  457. /* footer */
  458. .footer {
  459. background-color: #F0F0F0;
  460. padding: 3rem;
  461. }
  462. .footer .row{
  463. display: flex;
  464. align-items: center;
  465. }
  466. .footer .footer-aigirl {
  467. font-weight: 600;
  468. font-size: 2rem;
  469. margin-top: 1rem;
  470. margin-bottom: 2.5rem;
  471. }
  472. .footer .footer-follow {
  473. font-size: 1.6rem;
  474. margin-bottom: 1rem;
  475. }
  476. .footer .footer-socials a{
  477. margin-right: 5px;
  478. }
  479. #content .container {
  480. margin-top: 50px;
  481. }
  482. .box-image-text .image {
  483. min-height: 200px;
  484. max-height: 200px;
  485. }
  486. .box-simple {
  487. min-height: 200px;
  488. margin-bottom: 0;
  489. }
  490. .box-simple .video__desc {
  491. color: black;
  492. font-size: 1.8rem;
  493. text-align: left;
  494. padding-left: 1rem;
  495. padding-right: 1rem;
  496. }
  497. .goto__btn {
  498. text-align: center;
  499. margin-top: 2rem;
  500. margin-left: auto;
  501. margin-right: auto;
  502. }
  503. .container__footer {
  504. display: flex;
  505. align-items: center;
  506. }
  507. .box-simple .icon__feature {
  508. width: 120px;
  509. height: 120px;
  510. border-radius: 50%;
  511. display: flex;
  512. align-items: center;
  513. justify-content: center;
  514. margin-left: auto;
  515. margin-right: auto;
  516. }
  517. .box-simple .icon__feature > i {
  518. font-size: 4.5rem;
  519. }
  520. #content .container_list {
  521. margin-top: 100px;
  522. }
  523. #post-content img {
  524. width: 100%;
  525. box-shadow: 0 11px 21px 0 rgba(194, 194, 194, 0.644);
  526. transition: all .3s;
  527. margin: 1.5rem 0;
  528. }
  529. #post-content img:hover {
  530. transform: translateY(-.125em);
  531. box-shadow: 0 5px 10px 0 rgba(grey, 0.3);
  532. }
  533. #post-content i {
  534. font-size: 2rem;
  535. vertical-align: middle;
  536. }
  537. #blog-post {
  538. padding-bottom: 3rem;
  539. }
  540. #blog-post h2 {
  541. font-family: "Proxima Nova",sans-serif;
  542. margin-right: 5px;
  543. }
  544. #blog-post p, #blog-post li{
  545. font-size: 1.8rem;
  546. font-family: "Proxima Nova",sans-serif;
  547. }
  548. #block-vtuber {
  549. padding: 30px 0;
  550. margin-bottom: 40px;
  551. font-family: "Proxima Nova",sans-serif;
  552. color: #181c47;
  553. }
  554. #block-vtuber h2 {
  555. font-family: 'Poppins', sans-serif;
  556. font-weight: bolder;
  557. font-size: 3.7rem;
  558. }
  559. #block-vtuber p {
  560. font-size: 1.8rem;
  561. line-height: 3rem;
  562. }
  563. .txt-block {
  564. padding: 4rem 0;
  565. }
  566. .sec {
  567. padding: 9rem 0;
  568. margin-bottom: 0;
  569. }
  570. .sec01 {
  571. padding-top: 2rem;
  572. }
  573. .sec-right {
  574. position: absolute;
  575. right: -15%;
  576. top: 10%;
  577. }
  578. .sec02 {
  579. background-color: #FFEBE2;
  580. position: relative;
  581. /* clip-path: polygon(0% -10%, 100% 0%, 110% 100%, 0% 100%); */
  582. }
  583. .sec03, .sec04, .sec05 {
  584. text-align: center;
  585. padding: 12rem 0;
  586. }
  587. .sec04 {
  588. padding: 8rem 0;
  589. background-color: #FFEBE2;
  590. position: relative;
  591. padding-top: 3rem;
  592. }
  593. .sec04::after {
  594. display: none;
  595. content: "";
  596. position: absolute;
  597. top: -66px;
  598. left: 0;
  599. display: block;
  600. width: 100%;
  601. height: 66px;
  602. transform: rotate(180deg);
  603. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  604. background-size: 3840px 66px;
  605. background-position: 0 0;
  606. }
  607. .sec02::after {
  608. display: none;
  609. content: "";
  610. position: absolute;
  611. bottom: -66px;
  612. left: 0;
  613. display: block;
  614. width: 100%;
  615. height: 66px;
  616. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  617. background-size: 3840px 66px;
  618. background-position: 0 0;
  619. }
  620. .sec05 {
  621. position: relative;
  622. padding-top: 0;
  623. padding-bottom: 4rem;
  624. background-color: #FFEBE2;
  625. }
  626. .sec05::after {
  627. display: none;
  628. content: "";
  629. position: absolute;
  630. bottom: -66px;
  631. left: 0;
  632. display: block;
  633. width: 100%;
  634. height: 66px;
  635. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  636. background-size: 3840px 66px;
  637. background-position: 0 0;
  638. }
  639. .img_decor {
  640. position: absolute;
  641. left: 4rem;
  642. top: 1rem;
  643. }
  644. .project {
  645. max-height: 16rem;
  646. }
  647. .project .owl-pagination {
  648. display: none;
  649. }
  650. .owl-carousel.project .owl-buttons {
  651. bottom: 0;
  652. transform: translateX(-50%);
  653. }
  654. .owl-carousel.project .owl-buttons div {
  655. box-shadow: 3px 3px 16px 0 rgb(98 125 152 / 8%), 0 -1px 8px 0 rgb(0 0 0 / 4%);
  656. padding: 1rem;
  657. width: 40px;
  658. height: 40px;
  659. border-radius: 50%;
  660. color: black;
  661. }
  662. .owl-carousel.project .owl-buttons div:hover {
  663. box-shadow: 3px 3px 16px 0 rgb(98 125 152 / 3%), 0 -1px 8px 0 rgb(0 0 0 / 1%);
  664. }
  665. .owl-carousel .owl-controls .owl-buttons, .owl-theme .owl-controls .owl-buttons {
  666. top: 110%;
  667. right: 50%;
  668. }
  669. .txt-block .rankblock {
  670. list-style: none;
  671. padding: 0;
  672. }
  673. .txt-block .rankblock li {
  674. font-size: 2.2rem;
  675. margin-bottom: 1rem;
  676. }
  677. .txt-block .rankblock span {
  678. display: inline-block;
  679. width: 45px;
  680. height: 45px;
  681. border-radius: 50%;
  682. background-color: #EA5413;
  683. color: white;
  684. line-height: 35px;
  685. margin-right: 1rem;
  686. font-size: 1.6rem;
  687. padding-left: 6px;
  688. padding-top: 6px;
  689. }
  690. .btn-template-main {
  691. color: #EA5413;
  692. }
  693. .btn {
  694. color: #EA5413;
  695. border: 2px solid #EA5413;
  696. border-radius: 2rem;
  697. }
  698. .btn:hover {
  699. background-color: #EA5413;
  700. border: 2px solid #EA5413;
  701. }
  702. #blog-listing-medium .post{
  703. color: #181c47;
  704. }
  705. #blog-listing-medium .tag-post .image {
  706. position: relative;
  707. overflow: visible;
  708. }
  709. #blog-listing-medium .tag-post .image::after {
  710. position: absolute;
  711. content: " ";
  712. right: 2rem;
  713. bottom: 2rem;
  714. width: 100%;
  715. height: 100%;
  716. z-index: -1;
  717. }
  718. #blog-listing-medium .tag-post .image img {
  719. border: 5px solid white;
  720. }
  721. #blog-listing-medium .tag-post:nth-of-type(3n+1) .image::after {
  722. background-color: thistle;
  723. }
  724. #blog-listing-medium .tag-post:nth-of-type(3n+2) .image::after {
  725. background-color: #f3f3f9;
  726. }
  727. #blog-listing-medium .tag-post:nth-of-type(3n) .image::after {
  728. background-color: #eba764;
  729. }
  730. .v-tabs {
  731. max-width: 100%;
  732. }
  733. .v-tabs-nav li {
  734. float: left;
  735. width: 25%;
  736. list-style: none;
  737. }
  738. .v-tabs-nav li a {
  739. color: grey;
  740. font-size: 2.5rem;
  741. letter-spacing: 2px;
  742. display: block;
  743. font-weight: 600;
  744. padding: 10px 0;
  745. text-align: center;
  746. text-decoration: none;
  747. }
  748. .v-tabs-nav li a:hover {
  749. color: black;
  750. }
  751. .v-tab-active a {
  752. background: #fff;
  753. border-bottom: 2px solid grey;
  754. color: #2db34a;
  755. cursor: default;
  756. }
  757. .v-tabs-stage {
  758. clear: both;
  759. padding: 40px 30px 10px 30px;
  760. position: relative;
  761. top: -1px;
  762. text-align: left;
  763. }
  764. #block-vtuber .v-tabs-stage h2 {
  765. font-size: 2.5rem;
  766. }
  767. #block-vtuber .v-tabs .owl-page span {
  768. background: #EA5413;
  769. }
  770. .d-tabs {
  771. max-width: 100%;
  772. }
  773. .d-tabs-nav li {
  774. float: left;
  775. width: 50%;
  776. list-style: none;
  777. }
  778. .d-tabs-nav li a {
  779. color: grey;
  780. font-size: 2.5rem;
  781. letter-spacing: 2px;
  782. display: block;
  783. font-weight: 600;
  784. padding: 10px 0;
  785. text-align: center;
  786. text-decoration: none;
  787. }
  788. .d-tabs-nav li a:hover {
  789. color: black;
  790. }
  791. .d-tab-active a {
  792. background: transparent;
  793. border-bottom: 2px solid grey;
  794. color: #2db34a;
  795. cursor: default;
  796. }
  797. .d-tabs-stage {
  798. clear: both;
  799. padding: 40px 30px 10px 30px;
  800. position: relative;
  801. top: -1px;
  802. text-align: left;
  803. }
  804. #block-vtuber .d-tabs-stage h2 {
  805. font-size: 2.5rem;
  806. }
  807. .m-tabs {
  808. max-width: 100%;
  809. }
  810. .m-tabs-nav li {
  811. float: left;
  812. width: 50%;
  813. list-style: none;
  814. }
  815. .m-tabs-nav li a {
  816. color: grey;
  817. font-size: 2.5rem;
  818. letter-spacing: 2px;
  819. display: block;
  820. font-weight: 600;
  821. padding: 10px 0;
  822. text-align: center;
  823. text-decoration: none;
  824. }
  825. .m-tabs-nav li a:hover {
  826. color: black;
  827. }
  828. .m-tab-active a {
  829. background: transparent;
  830. border-bottom: 2px solid grey;
  831. color: #2db34a;
  832. cursor: default;
  833. }
  834. .m-tabs-stage {
  835. clear: both;
  836. padding: 40px 30px 10px 30px;
  837. position: relative;
  838. top: -1px;
  839. text-align: left;
  840. }
  841. #block-vtuber .m-tabs-stage h2 {
  842. font-size: 2.5rem;
  843. }
  844. .sec06 {
  845. text-align: center;
  846. padding: 2rem 0;
  847. position: relative;
  848. color: black;
  849. }
  850. .sec06-left {
  851. position: absolute;
  852. left: 2rem;
  853. top: -10rem;
  854. }
  855. .sec06-right {
  856. position: absolute;
  857. right: 2rem;
  858. bottom: 5rem;
  859. }
  860. .sec06 > .container {
  861. box-shadow: 0px 0px 8px 2px rgb(212, 212, 212);
  862. transform: translateY(-12rem);
  863. background-color: white;
  864. padding: 3rem 0;
  865. padding-bottom: 7rem;
  866. position: relative;
  867. }
  868. .sec06 .sec06-icons {
  869. position: absolute;
  870. left: 4rem;
  871. bottom: 2rem;
  872. }
  873. .sec06 .sec06-icons img {
  874. margin-right: 1rem;
  875. }
  876. .grow_title {
  877. text-align: center;
  878. }
  879. .grow_txt {
  880. font-size: 1.2rem;
  881. }
  882. .grow_call {
  883. font-weight: 700;
  884. font-family: Arial, Helvetica, sans-serif;
  885. font-size: 2.3rem;
  886. display: block;
  887. margin-top: 1.5rem;
  888. margin-bottom: 1rem;
  889. color: #EA5413;
  890. }
  891. .grow_btn {
  892. padding: 1.2rem 7rem;
  893. font-size: 2.5rem;
  894. border: 2px solid #EA5413;
  895. background: transparent;
  896. outline: none;
  897. border-radius: 5rem;
  898. transition: all .3s;
  899. display: inline-block;
  900. color: #EA5413;
  901. text-decoration: none;
  902. }
  903. .grow_btn:hover {
  904. color: white;
  905. background: #EA5413;
  906. text-decoration: none;
  907. }
  908. .grow_img {
  909. display: block;
  910. margin: 0 auto;
  911. margin-top: 1rem;
  912. }
  913. .owl-item {
  914. height: 300px;
  915. overflow: hidden;
  916. }
  917. .advantages-list {
  918. text-align: left;
  919. }
  920. .txt-block .advantages-list span {
  921. text-align: center;
  922. }
  923. @media (max-width: 992px) {
  924. .sec-steps .steps-block {
  925. padding: 0rem;
  926. }
  927. .sec-steps .steps-block::after {
  928. width: 100%;
  929. height: 12rem;
  930. }
  931. .sec-steps .steps-imgfr {
  932. width: 100%;
  933. height: 20rem;
  934. }
  935. .sec-steps .steps-imgfr img {
  936. width: 100%;
  937. }
  938. .sec-steps .steps-txt h3.steps-sub {
  939. font-size: 1.3rem;
  940. }
  941. .sec-steps .steps-txt span {
  942. width: 25px;
  943. height: 25px;
  944. background-color: #EA5413;
  945. font-size: 1.3rem;
  946. line-height: 25px;
  947. }
  948. .sec-features .row {
  949. margin: 5rem 0;
  950. }
  951. .sec-features .features-col {
  952. position: relative;
  953. height: 25vh;
  954. }
  955. .sec-features .features-col .features-block {
  956. left: 2rem;
  957. top: 1rem;
  958. }
  959. .sec-features .row .d-md-block {
  960. display: none;
  961. }
  962. .sec-features .row .d-block {
  963. display: block;
  964. }
  965. .sec-hero .col-left {
  966. margin-top: 2.5rem;
  967. }
  968. }
  969. @media (max-width: 765px) {
  970. .sec-steps .steps-block {
  971. padding: 2rem 15rem;
  972. }
  973. .sec-steps .steps-imgfr {
  974. width: 100%;
  975. height: 32vh;
  976. }
  977. .sec-usecase .row>div {
  978. width: 50%;
  979. }
  980. .sec-features {
  981. margin-bottom: 0;
  982. }
  983. .blog-tabs {
  984. flex-direction: column;
  985. }
  986. .blog-tabs .blog-tabs-stage {
  987. width: 95%;
  988. margin-top: -4rem;
  989. background-color: white;
  990. }
  991. .blog-tabs .blog-tabs-nav {
  992. width: 95%;
  993. background-color: #F0F0F0;
  994. padding: 4rem 2.5rem;
  995. list-style: none;
  996. box-shadow: 0 2px 5px -2px rgb(173, 173, 173);
  997. text-align: left;
  998. }
  999. .blog-tabs .blog-tabs-nav li {
  1000. padding: 10px;
  1001. border-bottom: 1px dashed grey;
  1002. }
  1003. .blog-tabs .blog-tabs-nav li a {
  1004. color: #EA5413;
  1005. }
  1006. .footer .container .row {
  1007. flex-direction: column;
  1008. text-align: center;
  1009. }
  1010. .navbar-collapse .navbar-nav li {
  1011. display: inline-block;
  1012. }
  1013. .nav>li {
  1014. display: inline-block;
  1015. }
  1016. }
  1017. @media (max-width: 576px) {
  1018. .sec {
  1019. padding-left: 2rem;
  1020. padding-right: 2rem;
  1021. }
  1022. .sec-hero {
  1023. padding: 4rem 0;
  1024. }
  1025. .sec-hero .hero-title {
  1026. font-size: 2.5rem;
  1027. }
  1028. .sec-steps .steps-block {
  1029. padding: 2rem 6rem;
  1030. }
  1031. .sec-steps .steps-imgfr {
  1032. width: 100%;
  1033. height: 20rem;
  1034. }
  1035. .sec-steps .steps-txt h3.steps-sub {
  1036. font-size: 1.5rem;
  1037. }
  1038. .sec-usecase .row>div {
  1039. width: 100%;
  1040. }
  1041. .sec-usecase .usecase-block {
  1042. padding: 0 4rem;
  1043. }
  1044. .hero-purple {
  1045. width: 130px;
  1046. }
  1047. .hero-orange-s {
  1048. left: 0%;
  1049. width: 60px;
  1050. }
  1051. .hero-textgrp {
  1052. left: 8%;
  1053. width: 200px;
  1054. }
  1055. .hero-video {
  1056. right: 5%;
  1057. width: 90px;
  1058. }
  1059. .hero-amplify {
  1060. width: 90px;
  1061. }
  1062. #content .container {
  1063. margin-top: 0;
  1064. }
  1065. .sec01 {
  1066. padding-top: 0;
  1067. }
  1068. #heading-breadcrumbs {
  1069. margin-bottom: 0;
  1070. background: white, url('https://i.imgur.com/N7tVTSh.png');
  1071. }
  1072. #block-vtuber {
  1073. padding: 0;
  1074. }
  1075. #blog-listing-medium .tag-post:nth-of-type(3n+1) .image::after {
  1076. background-color: transparent;
  1077. }
  1078. #blog-listing-medium .tag-post:nth-of-type(3n+2) .image::after {
  1079. background-color: transparent;
  1080. }
  1081. #blog-listing-medium .tag-post:nth-of-type(3n) .image::after {
  1082. background-color: transparent;
  1083. }
  1084. .owl-carousel .owl-controls .owl-buttons, .owl-theme .owl-controls .owl-buttons {
  1085. top: 130%;
  1086. }
  1087. .owl-item {
  1088. height: unset;
  1089. }
  1090. .v-tabs-nav {
  1091. padding: 0 30px;
  1092. }
  1093. .d-tabs-nav {
  1094. padding: 0 30px;
  1095. }
  1096. .m-tabs-nav {
  1097. padding: 0 30px;
  1098. }
  1099. }
  1100. @media (max-width: 992px) {
  1101. .container__footer {
  1102. flex-direction: column;
  1103. }
  1104. .container__footer > div {
  1105. margin-bottom: 1.5rem;
  1106. }
  1107. .video__col {
  1108. margin-bottom: 2rem;
  1109. }
  1110. .mb-mobile {
  1111. margin-bottom: 5rem;
  1112. }
  1113. .step__box {
  1114. margin-bottom: 2rem;
  1115. }
  1116. }
  1117. .btn:hover {
  1118. color: white;
  1119. }
  1120. .box-steps {
  1121. border: 1px solid #181c47;
  1122. padding: 1rem;
  1123. border-radius: 5rem;
  1124. position: relative;
  1125. }
  1126. .box-steps .step__box {
  1127. position: absolute;
  1128. left: -5px;
  1129. top: -5px;
  1130. width: 4rem;
  1131. height: 4rem;
  1132. background-color: white;
  1133. }
  1134. .box-steps .step__box span {
  1135. font-size: 3rem;
  1136. font-weight: 600;
  1137. color: #38a7bb;
  1138. }
  1139. .box-steps .icon {
  1140. border: none;
  1141. }
  1142. .box-steps .icon > i {
  1143. font-size: 3.5rem;
  1144. }
  1145. .box__video {
  1146. min-height: 280px;
  1147. }
  1148. .footer__btn__text {
  1149. font-size: 2rem;
  1150. color: white;
  1151. }
  1152. .table {
  1153. display: flex;
  1154. /* box-shadow: 0 0 5px 1px rgb(197, 197, 197); */
  1155. border-radius: 15px;
  1156. align-items: center;
  1157. height: 280px;
  1158. }
  1159. .table .column {
  1160. min-height: 280px;
  1161. background-color: white;
  1162. padding: 10px 2rem;
  1163. }
  1164. .table .column .body__company {
  1165. font-size: 1.6rem;
  1166. font-weight: 500;
  1167. }
  1168. .fa-check {
  1169. margin-left: 4px;
  1170. color: rgb(5, 212, 5);
  1171. }
  1172. .table .column .body__head {
  1173. color: gray;
  1174. }
  1175. .table .column__first {
  1176. border-radius: 15px 0 0 15px;
  1177. }
  1178. .table .column__last {
  1179. border-radius: 0 15px 15px 0;
  1180. }
  1181. .table .column__choozmo {
  1182. border: 1px solid rgb(212, 212, 212);
  1183. box-shadow: 0 0 5px 1px rgb(197, 197, 197);
  1184. border-radius: 15px;
  1185. height: 340px;
  1186. }
  1187. .table .column div {
  1188. min-height: 65px;
  1189. }
  1190. .navbar-brand > img {
  1191. display: inline-block;
  1192. }
  1193. @media (max-width: 767px){
  1194. .visible-xs {
  1195. display: inline-block!important;
  1196. }
  1197. }
  1198. .logo {
  1199. width: 187px;
  1200. height: 48px;
  1201. }
  1202. .logo-sm {
  1203. width: 150px;
  1204. height: 40px;
  1205. }
  1206. .logo_text {
  1207. vertical-align: middle;
  1208. }
  1209. .footer_img {
  1210. height: 60px;
  1211. }
  1212. .followus {
  1213. display: flex;
  1214. align-items: center;
  1215. justify-content: flex-start;
  1216. margin-top: 1rem;
  1217. }
  1218. .followus__txt {
  1219. display: inline-block;
  1220. margin-right: 1rem;
  1221. color: white;
  1222. font-weight: 600;
  1223. }
  1224. .followus .followus__img {
  1225. margin-right: 1rem;
  1226. }
  1227. .bar.mb-0 {
  1228. margin-bottom: 0;
  1229. }
  1230. .headingvf {
  1231. margin-bottom: 1.5rem;
  1232. }
  1233. .headingvf-sub {
  1234. margin-bottom: 4rem;
  1235. }
  1236. .headingvf-sub h4 {
  1237. color: grey;
  1238. font-weight: 400;
  1239. font-size: 1.6rem;
  1240. line-height: 2.2rem;
  1241. }
  1242. .testimonial_img {
  1243. width: 200px;
  1244. border-radius: 50%;
  1245. display: block;
  1246. margin-left: auto;
  1247. margin-right: auto;
  1248. }
  1249. .testimonial-title {
  1250. font-size: 2rem;
  1251. }
  1252. .testimonial-text {
  1253. font-size: 1.6rem;
  1254. }
  1255. .testimonials__pro {
  1256. margin-bottom: 1rem;
  1257. }
  1258. .testimonials__pro p {
  1259. font-size: 1.6rem;
  1260. }
  1261. .testimonials__goto__btn a {
  1262. animation-name: move;
  1263. animation-duration: 1.5s;
  1264. animation-delay: 0;
  1265. animation-iteration-count: infinite;
  1266. animation-direction: normal;
  1267. animation-timing-function: linear;
  1268. }
  1269. @keyframes move {
  1270. 0% {
  1271. box-shadow: 0 0 0 transparent;
  1272. }
  1273. 50% {
  1274. box-shadow: 5px 5px 4px #887e74;
  1275. }
  1276. 100% {
  1277. box-shadow: 0 0 0 transparent;
  1278. }
  1279. }
  1280. .row__rank {
  1281. height: min-content;
  1282. }
  1283. .rank__box {
  1284. min-height: min-content;
  1285. }
  1286. .rank .rank__word {
  1287. display: inline-block;
  1288. font-weight: 500;
  1289. position: relative;
  1290. }
  1291. .rank .rank__word::after {
  1292. position: absolute;
  1293. content: " ";
  1294. width: 100%;
  1295. height: 2px;
  1296. left: 20%;
  1297. top: 90%;
  1298. background-color: #499aa8af;
  1299. }
  1300. .rank__num {
  1301. display: inline-block;
  1302. font-size: 3.5rem;
  1303. color: #38a7bb;
  1304. font-style: italic;
  1305. font-weight: 600;
  1306. }
  1307. .video__steps {
  1308. margin-top: 6rem;
  1309. }
  1310. .btn-video {
  1311. text-align: center;
  1312. display: block;
  1313. width: 18rem;
  1314. margin: 1rem auto;
  1315. }
  1316. @media (max-width: 992px) {
  1317. .video__steps {
  1318. margin-top: 1rem;
  1319. }
  1320. }
  1321. .video-steps {
  1322. display: flex;
  1323. text-align: center;
  1324. }
  1325. .steps__box {
  1326. flex: 20%;
  1327. position: relative;
  1328. }
  1329. .steps__icon {
  1330. font-size: 5rem;
  1331. color: #38a7bb;
  1332. }
  1333. .steps__name {
  1334. font-size: 1.8rem;
  1335. color: rgb(68, 67, 67);
  1336. margin-bottom: 1rem;
  1337. }
  1338. .steps__num {
  1339. position: absolute;
  1340. left: 15%;
  1341. top: -2.5rem;
  1342. font-size: 4rem;
  1343. color: #72969c;
  1344. font-weight: 500;
  1345. }
  1346. .card {
  1347. margin: 1.5rem;
  1348. margin-right: 0rem;
  1349. box-shadow: 4px 4px 1px rgb(0, 0, 0, 0.1);
  1350. }
  1351. .card-img-fr {
  1352. width: 100%;
  1353. }
  1354. .card-img-fr img {
  1355. width: 100%;
  1356. }
  1357. .card .card-body {
  1358. padding: 1rem;
  1359. }
  1360. .card .card-link {
  1361. display: inline-block;
  1362. color: #EA5413;
  1363. border: 2px solid #EA5413;
  1364. border-radius: 2rem;
  1365. padding: 5px 12px;
  1366. }
  1367. .more-modal .btn-primary {
  1368. background-color: white;
  1369. color: #EA5413;
  1370. }