custom.css 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815
  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. text-decoration: none;
  385. color: white;
  386. border: 1px solid #EA5413;
  387. padding: 1rem 2.5rem;
  388. outline: none;
  389. background-color: #EA5413;
  390. margin-top: 4rem;
  391. border-radius: 3rem;
  392. font-size: 1.8rem;
  393. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  394. }
  395. .blog-tabs .btn-light {
  396. margin-top: 1.5rem;
  397. color: #EA5413;
  398. }
  399. /* sec-action */
  400. .sec-action {
  401. padding-bottom: 7rem;
  402. background-color: #FFEBE2;
  403. margin-bottom: 0 !important;
  404. }
  405. .sec-action .container-fluid {
  406. padding: 0;
  407. }
  408. .sec-action .action-clip {
  409. width: 100%;
  410. background-color: #EA5413;
  411. padding: 2rem 0;
  412. border-color: #EA5413;
  413. }
  414. .sec-action .action-clip h2 {
  415. color: white;
  416. }
  417. .sec-action .action-triangle {
  418. clip-path: polygon(0 0, 50% 60%, 100% 0);
  419. -webkit-clip-path: polygon(0 0, 50% 60%, 100% 0);
  420. background: #EA5413;
  421. height: 8rem;
  422. border-color: #EA5413;
  423. }
  424. .sec-action form {
  425. padding: 4rem 0;
  426. }
  427. .sec-action form .action-input {
  428. padding: .8rem;
  429. display: block;
  430. width: 35rem;
  431. margin: 0 auto;
  432. border: 1px solid #9B9B9B;
  433. border-radius: 8px;
  434. outline: none;
  435. }
  436. .sec-action form .action-input::placeholder {
  437. color: #9B9B9B;
  438. }
  439. .sec-action form .action-input::-webkit-input-placeholder {
  440. color: #9B9B9B;
  441. }
  442. .sec-action form .action-input:-moz-input-placeholder{
  443. color: #9B9B9B;
  444. }
  445. .sec-action form .action-input:-ms-input-placeholder{
  446. color: #9B9B9B;
  447. }
  448. .sec-action .action-btn {
  449. border: none;
  450. outline: none;
  451. padding: .8rem 3.5rem;
  452. border-radius: 3rem;
  453. font-size: 2.2rem;
  454. background-color: white;
  455. color: #EA5413;
  456. margin-top: 3rem;
  457. }
  458. /* footer */
  459. .footer {
  460. background-color: #F0F0F0;
  461. padding: 3rem;
  462. }
  463. .footer .row{
  464. display: flex;
  465. align-items: center;
  466. }
  467. .footer .footer-aigirl {
  468. font-weight: 600;
  469. font-size: 2rem;
  470. margin-top: 1rem;
  471. margin-bottom: 2.5rem;
  472. }
  473. .footer .footer-follow {
  474. font-size: 1.6rem;
  475. margin-bottom: 1rem;
  476. }
  477. .footer .footer-socials a{
  478. margin-right: 5px;
  479. }
  480. #content .container {
  481. margin-top: 50px;
  482. }
  483. .box-image-text .image {
  484. min-height: 200px;
  485. max-height: 200px;
  486. }
  487. .box-simple {
  488. min-height: 200px;
  489. margin-bottom: 0;
  490. }
  491. .box-simple .video__desc {
  492. color: black;
  493. font-size: 1.8rem;
  494. text-align: left;
  495. padding-left: 1rem;
  496. padding-right: 1rem;
  497. }
  498. .goto__btn {
  499. text-align: center;
  500. margin-top: 2rem;
  501. margin-left: auto;
  502. margin-right: auto;
  503. }
  504. .container__footer {
  505. display: flex;
  506. align-items: center;
  507. }
  508. .box-simple .icon__feature {
  509. width: 120px;
  510. height: 120px;
  511. border-radius: 50%;
  512. display: flex;
  513. align-items: center;
  514. justify-content: center;
  515. margin-left: auto;
  516. margin-right: auto;
  517. }
  518. .box-simple .icon__feature > i {
  519. font-size: 4.5rem;
  520. }
  521. #content .container_list {
  522. margin-top: 100px;
  523. }
  524. #post-content img {
  525. width: 100%;
  526. box-shadow: 0 11px 21px 0 rgba(194, 194, 194, 0.644);
  527. transition: all .3s;
  528. margin: 1.5rem 0;
  529. }
  530. #post-content img:hover {
  531. transform: translateY(-.125em);
  532. box-shadow: 0 5px 10px 0 rgba(grey, 0.3);
  533. }
  534. #post-content i {
  535. font-size: 2rem;
  536. vertical-align: middle;
  537. }
  538. #blog-post {
  539. padding-bottom: 3rem;
  540. }
  541. #blog-post h2 {
  542. font-family: "Proxima Nova",sans-serif;
  543. margin-right: 5px;
  544. }
  545. #blog-post p, #blog-post li{
  546. font-size: 1.8rem;
  547. font-family: "Proxima Nova",sans-serif;
  548. }
  549. #block-vtuber {
  550. padding: 30px 0;
  551. margin-bottom: 40px;
  552. font-family: "Proxima Nova",sans-serif;
  553. color: #181c47;
  554. }
  555. #block-vtuber h2 {
  556. font-family: 'Poppins', sans-serif;
  557. font-weight: bolder;
  558. font-size: 3.7rem;
  559. }
  560. #block-vtuber p {
  561. font-size: 1.8rem;
  562. line-height: 3rem;
  563. }
  564. .txt-block {
  565. padding: 4rem 0;
  566. }
  567. .sec {
  568. padding: 9rem 0;
  569. margin-bottom: 0;
  570. }
  571. .sec01 {
  572. padding-top: 2rem;
  573. }
  574. .sec-right {
  575. position: absolute;
  576. right: -15%;
  577. top: 10%;
  578. }
  579. .sec02 {
  580. background-color: #FFEBE2;
  581. position: relative;
  582. /* clip-path: polygon(0% -10%, 100% 0%, 110% 100%, 0% 100%); */
  583. }
  584. .sec03, .sec04, .sec05 {
  585. text-align: center;
  586. padding: 12rem 0;
  587. }
  588. .sec04 {
  589. padding: 8rem 0;
  590. background-color: #FFEBE2;
  591. position: relative;
  592. padding-top: 3rem;
  593. }
  594. .sec04::after {
  595. display: none;
  596. content: "";
  597. position: absolute;
  598. top: -66px;
  599. left: 0;
  600. display: block;
  601. width: 100%;
  602. height: 66px;
  603. transform: rotate(180deg);
  604. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  605. background-size: 3840px 66px;
  606. background-position: 0 0;
  607. }
  608. .sec02::after {
  609. display: none;
  610. content: "";
  611. position: absolute;
  612. bottom: -66px;
  613. left: 0;
  614. display: block;
  615. width: 100%;
  616. height: 66px;
  617. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  618. background-size: 3840px 66px;
  619. background-position: 0 0;
  620. }
  621. .sec05 {
  622. position: relative;
  623. padding-top: 0;
  624. padding-bottom: 4rem;
  625. background-color: #FFEBE2;
  626. }
  627. .sec05::after {
  628. display: none;
  629. content: "";
  630. position: absolute;
  631. bottom: -66px;
  632. left: 0;
  633. display: block;
  634. width: 100%;
  635. height: 66px;
  636. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  637. background-size: 3840px 66px;
  638. background-position: 0 0;
  639. }
  640. .img_decor {
  641. position: absolute;
  642. left: 4rem;
  643. top: 1rem;
  644. }
  645. .project {
  646. max-height: 16rem;
  647. }
  648. .project .owl-pagination {
  649. display: none;
  650. }
  651. .owl-carousel.project .owl-buttons {
  652. bottom: 0;
  653. transform: translateX(-50%);
  654. }
  655. .owl-carousel.project .owl-buttons div {
  656. box-shadow: 3px 3px 16px 0 rgb(98 125 152 / 8%), 0 -1px 8px 0 rgb(0 0 0 / 4%);
  657. padding: 1rem;
  658. width: 40px;
  659. height: 40px;
  660. border-radius: 50%;
  661. color: black;
  662. }
  663. .owl-carousel.project .owl-buttons div:hover {
  664. box-shadow: 3px 3px 16px 0 rgb(98 125 152 / 3%), 0 -1px 8px 0 rgb(0 0 0 / 1%);
  665. }
  666. .owl-carousel .owl-controls .owl-buttons, .owl-theme .owl-controls .owl-buttons {
  667. top: 110%;
  668. right: 50%;
  669. }
  670. .txt-block .rankblock {
  671. list-style: none;
  672. padding: 0;
  673. }
  674. .txt-block .rankblock li {
  675. font-size: 2.2rem;
  676. margin-bottom: 1rem;
  677. }
  678. .txt-block .rankblock span {
  679. display: inline-block;
  680. width: 45px;
  681. height: 45px;
  682. border-radius: 50%;
  683. background-color: #EA5413;
  684. color: white;
  685. line-height: 35px;
  686. margin-right: 1rem;
  687. font-size: 1.6rem;
  688. padding-left: 6px;
  689. padding-top: 6px;
  690. }
  691. .btn-template-main {
  692. color: #EA5413;
  693. }
  694. .btn {
  695. color: #EA5413;
  696. border: 2px solid #EA5413;
  697. border-radius: 2rem;
  698. }
  699. .btn:hover {
  700. background-color: #EA5413;
  701. border: 2px solid #EA5413;
  702. }
  703. #blog-listing-medium .post{
  704. color: #181c47;
  705. }
  706. #blog-listing-medium .tag-post .image {
  707. position: relative;
  708. overflow: visible;
  709. }
  710. #blog-listing-medium .tag-post .image::after {
  711. position: absolute;
  712. content: " ";
  713. right: 2rem;
  714. bottom: 2rem;
  715. width: 100%;
  716. height: 100%;
  717. z-index: -1;
  718. }
  719. #blog-listing-medium .tag-post .image img {
  720. border: 5px solid white;
  721. }
  722. #blog-listing-medium .tag-post:nth-of-type(3n+1) .image::after {
  723. background-color: thistle;
  724. }
  725. #blog-listing-medium .tag-post:nth-of-type(3n+2) .image::after {
  726. background-color: #f3f3f9;
  727. }
  728. #blog-listing-medium .tag-post:nth-of-type(3n) .image::after {
  729. background-color: #eba764;
  730. }
  731. .v-tabs {
  732. max-width: 100%;
  733. }
  734. .v-tabs-nav li {
  735. float: left;
  736. width: 25%;
  737. list-style: none;
  738. }
  739. .v-tabs-nav li a {
  740. color: grey;
  741. font-size: 2.5rem;
  742. letter-spacing: 2px;
  743. display: block;
  744. font-weight: 600;
  745. padding: 10px 0;
  746. text-align: center;
  747. text-decoration: none;
  748. }
  749. .v-tabs-nav li a:hover {
  750. color: black;
  751. }
  752. .v-tab-active a {
  753. background: #fff;
  754. border-bottom: 2px solid grey;
  755. color: #2db34a;
  756. cursor: default;
  757. }
  758. .v-tabs-stage {
  759. clear: both;
  760. padding: 40px 30px 10px 30px;
  761. position: relative;
  762. top: -1px;
  763. text-align: left;
  764. }
  765. #block-vtuber .v-tabs-stage h2 {
  766. font-size: 2.5rem;
  767. }
  768. #block-vtuber .v-tabs .owl-page span {
  769. background: #EA5413;
  770. }
  771. .d-tabs {
  772. max-width: 100%;
  773. }
  774. .d-tabs-nav li {
  775. float: left;
  776. width: 50%;
  777. list-style: none;
  778. }
  779. .d-tabs-nav li a {
  780. color: grey;
  781. font-size: 2.5rem;
  782. letter-spacing: 2px;
  783. display: block;
  784. font-weight: 600;
  785. padding: 10px 0;
  786. text-align: center;
  787. text-decoration: none;
  788. }
  789. .d-tabs-nav li a:hover {
  790. color: black;
  791. }
  792. .d-tab-active a {
  793. background: transparent;
  794. border-bottom: 2px solid grey;
  795. color: #2db34a;
  796. cursor: default;
  797. }
  798. .d-tabs-stage {
  799. clear: both;
  800. padding: 40px 30px 10px 30px;
  801. position: relative;
  802. top: -1px;
  803. text-align: left;
  804. }
  805. #block-vtuber .d-tabs-stage h2 {
  806. font-size: 2.5rem;
  807. }
  808. .m-tabs {
  809. max-width: 100%;
  810. }
  811. .m-tabs-nav li {
  812. float: left;
  813. width: 50%;
  814. list-style: none;
  815. }
  816. .m-tabs-nav li a {
  817. color: grey;
  818. font-size: 2.5rem;
  819. letter-spacing: 2px;
  820. display: block;
  821. font-weight: 600;
  822. padding: 10px 0;
  823. text-align: center;
  824. text-decoration: none;
  825. }
  826. .m-tabs-nav li a:hover {
  827. color: black;
  828. }
  829. .m-tab-active a {
  830. background: transparent;
  831. border-bottom: 2px solid grey;
  832. color: #2db34a;
  833. cursor: default;
  834. }
  835. .m-tabs-stage {
  836. clear: both;
  837. padding: 40px 30px 10px 30px;
  838. position: relative;
  839. top: -1px;
  840. text-align: left;
  841. }
  842. #block-vtuber .m-tabs-stage h2 {
  843. font-size: 2.5rem;
  844. }
  845. .sec06 {
  846. text-align: center;
  847. padding: 2rem 0;
  848. position: relative;
  849. color: black;
  850. }
  851. .sec06-left {
  852. position: absolute;
  853. left: 2rem;
  854. top: -10rem;
  855. }
  856. .sec06-right {
  857. position: absolute;
  858. right: 2rem;
  859. bottom: 5rem;
  860. }
  861. .sec06 > .container {
  862. box-shadow: 0px 0px 8px 2px rgb(212, 212, 212);
  863. transform: translateY(-12rem);
  864. background-color: white;
  865. padding: 3rem 0;
  866. padding-bottom: 7rem;
  867. position: relative;
  868. }
  869. .sec06 .sec06-icons {
  870. position: absolute;
  871. left: 4rem;
  872. bottom: 2rem;
  873. }
  874. .sec06 .sec06-icons img {
  875. margin-right: 1rem;
  876. }
  877. .grow_title {
  878. text-align: center;
  879. }
  880. .grow_txt {
  881. font-size: 1.2rem;
  882. }
  883. .grow_call {
  884. font-weight: 700;
  885. font-family: Arial, Helvetica, sans-serif;
  886. font-size: 2.3rem;
  887. display: block;
  888. margin-top: 1.5rem;
  889. margin-bottom: 1rem;
  890. color: #EA5413;
  891. }
  892. .grow_btn {
  893. padding: 1.2rem 7rem;
  894. font-size: 2.5rem;
  895. border: 2px solid #EA5413;
  896. background: transparent;
  897. outline: none;
  898. border-radius: 5rem;
  899. transition: all .3s;
  900. display: inline-block;
  901. color: #EA5413;
  902. text-decoration: none;
  903. }
  904. .grow_btn:hover {
  905. color: white;
  906. background: #EA5413;
  907. text-decoration: none;
  908. }
  909. .grow_img {
  910. display: block;
  911. margin: 0 auto;
  912. margin-top: 1rem;
  913. }
  914. .owl-item {
  915. height: 300px;
  916. overflow: hidden;
  917. }
  918. .advantages-list {
  919. text-align: left;
  920. }
  921. .txt-block .advantages-list span {
  922. text-align: center;
  923. }
  924. @media (max-width: 992px) {
  925. .sec-steps .steps-block {
  926. padding: 0rem;
  927. }
  928. .sec-steps .steps-block::after {
  929. width: 100%;
  930. height: 12rem;
  931. }
  932. .sec-steps .steps-imgfr {
  933. width: 100%;
  934. height: 20rem;
  935. }
  936. .sec-steps .steps-imgfr img {
  937. width: 100%;
  938. }
  939. .sec-steps .steps-txt h3.steps-sub {
  940. font-size: 1.3rem;
  941. }
  942. .sec-steps .steps-txt span {
  943. width: 25px;
  944. height: 25px;
  945. background-color: #EA5413;
  946. font-size: 1.3rem;
  947. line-height: 25px;
  948. }
  949. .sec-features .row {
  950. margin: 5rem 0;
  951. }
  952. .sec-features .features-col {
  953. position: relative;
  954. height: 25vh;
  955. }
  956. .sec-features .features-col .features-block {
  957. left: 2rem;
  958. top: 1rem;
  959. }
  960. .sec-features .row .d-md-block {
  961. display: none;
  962. }
  963. .sec-features .row .d-block {
  964. display: block;
  965. }
  966. .sec-hero .col-left {
  967. margin-top: 2.5rem;
  968. }
  969. }
  970. @media (max-width: 765px) {
  971. .sec-steps .steps-block {
  972. padding: 2rem 15rem;
  973. }
  974. .sec-steps .steps-imgfr {
  975. width: 100%;
  976. height: 32vh;
  977. }
  978. .sec-usecase .row>div {
  979. width: 50%;
  980. }
  981. .sec-features {
  982. margin-bottom: 0;
  983. }
  984. .blog-tabs {
  985. flex-direction: column;
  986. }
  987. .blog-tabs .blog-tabs-stage {
  988. width: 95%;
  989. margin-top: -4rem;
  990. background-color: white;
  991. }
  992. .blog-tabs .blog-tabs-nav {
  993. width: 95%;
  994. background-color: #F0F0F0;
  995. padding: 4rem 2.5rem;
  996. list-style: none;
  997. box-shadow: 0 2px 5px -2px rgb(173, 173, 173);
  998. text-align: left;
  999. }
  1000. .blog-tabs .blog-tabs-nav li {
  1001. padding: 10px;
  1002. border-bottom: 1px dashed grey;
  1003. }
  1004. .blog-tabs .blog-tabs-nav li a {
  1005. color: #EA5413;
  1006. }
  1007. .footer .container .row {
  1008. flex-direction: column;
  1009. text-align: center;
  1010. }
  1011. .navbar-collapse .navbar-nav li {
  1012. display: inline-block;
  1013. }
  1014. .nav>li {
  1015. display: inline-block;
  1016. }
  1017. }
  1018. @media (max-width: 576px) {
  1019. .sec {
  1020. padding-left: 2rem;
  1021. padding-right: 2rem;
  1022. }
  1023. .sec-hero {
  1024. padding: 4rem 0;
  1025. }
  1026. .sec-hero .hero-title {
  1027. font-size: 2.5rem;
  1028. }
  1029. .sec-steps .steps-block {
  1030. padding: 2rem 6rem;
  1031. }
  1032. .sec-steps .steps-imgfr {
  1033. width: 100%;
  1034. height: 20rem;
  1035. }
  1036. .sec-steps .steps-txt h3.steps-sub {
  1037. font-size: 1.5rem;
  1038. }
  1039. .sec-usecase .row>div {
  1040. width: 100%;
  1041. }
  1042. .sec-usecase .usecase-block {
  1043. padding: 0 4rem;
  1044. }
  1045. .hero-purple {
  1046. width: 130px;
  1047. }
  1048. .hero-orange-s {
  1049. left: 0%;
  1050. width: 60px;
  1051. }
  1052. .hero-textgrp {
  1053. left: 8%;
  1054. width: 200px;
  1055. }
  1056. .hero-video {
  1057. right: 5%;
  1058. width: 90px;
  1059. }
  1060. .hero-amplify {
  1061. width: 90px;
  1062. }
  1063. #content .container {
  1064. margin-top: 0;
  1065. }
  1066. .sec01 {
  1067. padding-top: 0;
  1068. }
  1069. #heading-breadcrumbs {
  1070. margin-bottom: 0;
  1071. background: white, url('https://i.imgur.com/N7tVTSh.png');
  1072. }
  1073. #heading-breadcrumbs a {
  1074. font-size: 1rem;
  1075. }
  1076. #block-vtuber {
  1077. padding: 0;
  1078. }
  1079. #blog-listing-medium .tag-post:nth-of-type(3n+1) .image::after {
  1080. background-color: transparent;
  1081. }
  1082. #blog-listing-medium .tag-post:nth-of-type(3n+2) .image::after {
  1083. background-color: transparent;
  1084. }
  1085. #blog-listing-medium .tag-post:nth-of-type(3n) .image::after {
  1086. background-color: transparent;
  1087. }
  1088. .owl-carousel .owl-controls .owl-buttons, .owl-theme .owl-controls .owl-buttons {
  1089. top: 130%;
  1090. }
  1091. .owl-item {
  1092. height: unset;
  1093. }
  1094. .v-tabs-nav {
  1095. padding: 0 30px;
  1096. }
  1097. .d-tabs-nav {
  1098. padding: 0 30px;
  1099. }
  1100. .m-tabs-nav {
  1101. padding: 0 30px;
  1102. }
  1103. }
  1104. @media (max-width: 992px) {
  1105. .container__footer {
  1106. flex-direction: column;
  1107. }
  1108. .container__footer > div {
  1109. margin-bottom: 1.5rem;
  1110. }
  1111. .video__col {
  1112. margin-bottom: 2rem;
  1113. }
  1114. .mb-mobile {
  1115. margin-bottom: 5rem;
  1116. }
  1117. .step__box {
  1118. margin-bottom: 2rem;
  1119. }
  1120. }
  1121. .btn:hover {
  1122. color: white;
  1123. }
  1124. .box-steps {
  1125. border: 1px solid #181c47;
  1126. padding: 1rem;
  1127. border-radius: 5rem;
  1128. position: relative;
  1129. }
  1130. .box-steps .step__box {
  1131. position: absolute;
  1132. left: -5px;
  1133. top: -5px;
  1134. width: 4rem;
  1135. height: 4rem;
  1136. background-color: white;
  1137. }
  1138. .box-steps .step__box span {
  1139. font-size: 3rem;
  1140. font-weight: 600;
  1141. color: #38a7bb;
  1142. }
  1143. .box-steps .icon {
  1144. border: none;
  1145. }
  1146. .box-steps .icon > i {
  1147. font-size: 3.5rem;
  1148. }
  1149. .box__video {
  1150. min-height: 280px;
  1151. }
  1152. .footer__btn__text {
  1153. font-size: 2rem;
  1154. color: white;
  1155. }
  1156. .table {
  1157. display: flex;
  1158. /* box-shadow: 0 0 5px 1px rgb(197, 197, 197); */
  1159. border-radius: 15px;
  1160. align-items: center;
  1161. height: 280px;
  1162. }
  1163. .table .column {
  1164. min-height: 280px;
  1165. background-color: white;
  1166. padding: 10px 2rem;
  1167. }
  1168. .table .column .body__company {
  1169. font-size: 1.6rem;
  1170. font-weight: 500;
  1171. }
  1172. .fa-check {
  1173. margin-left: 4px;
  1174. color: rgb(5, 212, 5);
  1175. }
  1176. .table .column .body__head {
  1177. color: gray;
  1178. }
  1179. .table .column__first {
  1180. border-radius: 15px 0 0 15px;
  1181. }
  1182. .table .column__last {
  1183. border-radius: 0 15px 15px 0;
  1184. }
  1185. .table .column__choozmo {
  1186. border: 1px solid rgb(212, 212, 212);
  1187. box-shadow: 0 0 5px 1px rgb(197, 197, 197);
  1188. border-radius: 15px;
  1189. height: 340px;
  1190. }
  1191. .table .column div {
  1192. min-height: 65px;
  1193. }
  1194. .navbar-brand > img {
  1195. display: inline-block;
  1196. }
  1197. @media (max-width: 767px){
  1198. .visible-xs {
  1199. display: inline-block!important;
  1200. }
  1201. }
  1202. .logo {
  1203. width: 187px;
  1204. height: 48px;
  1205. }
  1206. .logo-sm {
  1207. width: 150px;
  1208. height: 40px;
  1209. }
  1210. .logo_text {
  1211. vertical-align: middle;
  1212. }
  1213. .footer_img {
  1214. height: 60px;
  1215. }
  1216. .followus {
  1217. display: flex;
  1218. align-items: center;
  1219. justify-content: flex-start;
  1220. margin-top: 1rem;
  1221. }
  1222. .followus__txt {
  1223. display: inline-block;
  1224. margin-right: 1rem;
  1225. color: white;
  1226. font-weight: 600;
  1227. }
  1228. .followus .followus__img {
  1229. margin-right: 1rem;
  1230. }
  1231. .bar.mb-0 {
  1232. margin-bottom: 0;
  1233. }
  1234. .headingvf {
  1235. margin-bottom: 1.5rem;
  1236. }
  1237. .headingvf-sub {
  1238. margin-bottom: 4rem;
  1239. }
  1240. .headingvf-sub h4 {
  1241. color: grey;
  1242. font-weight: 400;
  1243. font-size: 1.6rem;
  1244. line-height: 2.2rem;
  1245. }
  1246. .testimonial_img {
  1247. width: 200px;
  1248. border-radius: 50%;
  1249. display: block;
  1250. margin-left: auto;
  1251. margin-right: auto;
  1252. }
  1253. .testimonial-title {
  1254. font-size: 2rem;
  1255. }
  1256. .testimonial-text {
  1257. font-size: 1.6rem;
  1258. }
  1259. .testimonials__pro {
  1260. margin-bottom: 1rem;
  1261. }
  1262. .testimonials__pro p {
  1263. font-size: 1.6rem;
  1264. }
  1265. .testimonials__goto__btn a {
  1266. animation-name: move;
  1267. animation-duration: 1.5s;
  1268. animation-delay: 0;
  1269. animation-iteration-count: infinite;
  1270. animation-direction: normal;
  1271. animation-timing-function: linear;
  1272. }
  1273. @keyframes move {
  1274. 0% {
  1275. box-shadow: 0 0 0 transparent;
  1276. }
  1277. 50% {
  1278. box-shadow: 5px 5px 4px #887e74;
  1279. }
  1280. 100% {
  1281. box-shadow: 0 0 0 transparent;
  1282. }
  1283. }
  1284. .row__rank {
  1285. height: min-content;
  1286. }
  1287. .rank__box {
  1288. min-height: min-content;
  1289. }
  1290. .rank .rank__word {
  1291. display: inline-block;
  1292. font-weight: 500;
  1293. position: relative;
  1294. }
  1295. .rank .rank__word::after {
  1296. position: absolute;
  1297. content: " ";
  1298. width: 100%;
  1299. height: 2px;
  1300. left: 20%;
  1301. top: 90%;
  1302. background-color: #499aa8af;
  1303. }
  1304. .rank__num {
  1305. display: inline-block;
  1306. font-size: 3.5rem;
  1307. color: #38a7bb;
  1308. font-style: italic;
  1309. font-weight: 600;
  1310. }
  1311. .video__steps {
  1312. margin-top: 6rem;
  1313. }
  1314. .btn-video {
  1315. text-align: center;
  1316. display: block;
  1317. width: 18rem;
  1318. margin: 1rem auto;
  1319. }
  1320. @media (max-width: 992px) {
  1321. .video__steps {
  1322. margin-top: 1rem;
  1323. }
  1324. }
  1325. .video-steps {
  1326. display: flex;
  1327. text-align: center;
  1328. }
  1329. .steps__box {
  1330. flex: 20%;
  1331. position: relative;
  1332. }
  1333. .steps__icon {
  1334. font-size: 5rem;
  1335. color: #38a7bb;
  1336. }
  1337. .steps__name {
  1338. font-size: 1.8rem;
  1339. color: rgb(68, 67, 67);
  1340. margin-bottom: 1rem;
  1341. }
  1342. .steps__num {
  1343. position: absolute;
  1344. left: 15%;
  1345. top: -2.5rem;
  1346. font-size: 4rem;
  1347. color: #72969c;
  1348. font-weight: 500;
  1349. }
  1350. .card {
  1351. margin: 1.5rem;
  1352. margin-right: 0rem;
  1353. box-shadow: 4px 4px 1px rgb(0, 0, 0, 0.1);
  1354. transition: all .5s;
  1355. text-align: center;
  1356. height: fit-content;
  1357. border-radius: 1rem;
  1358. background-color: #fff;
  1359. position: relative;
  1360. }
  1361. .vt-style {
  1362. display: inline-block;
  1363. padding: .3rem .4rem;
  1364. background-color: #FFEBE2;
  1365. margin: 0 .2rem;
  1366. }
  1367. .vt-ribbon {
  1368. position: absolute;
  1369. top: 1rem;
  1370. left: -10px;
  1371. width: 25%;
  1372. height: 30px;
  1373. background-color: #ffba9d;
  1374. box-shadow: 1px 1px 1px rgb(0, 0, 0, .5);
  1375. text-align: center;
  1376. color: #181c47;
  1377. transition: .4s;
  1378. }
  1379. .vt-ribbon p {
  1380. display: block;
  1381. position: absolute;
  1382. top: 50%;
  1383. left: 50%;
  1384. transform: translate(-50%, -50%);
  1385. transition: .1s;
  1386. }
  1387. .vt-ribbon::before {
  1388. position: absolute;
  1389. left: 0px;
  1390. z-index: -1;
  1391. width: 10px;
  1392. height: 100%;
  1393. background-color: #f7a17d;
  1394. content: "";
  1395. transition: 0.2s;
  1396. transition-delay: 0.5s;
  1397. }
  1398. .vt-ribbon::after {
  1399. position: absolute;
  1400. top: 100%;
  1401. left: 0px;
  1402. z-index: -1;
  1403. width: 20px;
  1404. height: 9px;
  1405. background-color: #f7a17d;
  1406. content: "";
  1407. transition: 0.2s;
  1408. transform: rotate(45deg);
  1409. }
  1410. .card:hover {
  1411. transform: translate(-3px, -3px);
  1412. }
  1413. .card:hover .vt-ribbon {
  1414. width: 0;
  1415. }
  1416. .card:hover .vt-ribbon p {
  1417. opacity: 0;
  1418. }
  1419. .card:hover .vt-ribbon::before {
  1420. left: 10px;
  1421. }
  1422. .card:hover .vt-ribbon::after {
  1423. left: 10px;
  1424. }
  1425. .card-img-fr {
  1426. width: 100%;
  1427. transition: all .8s;
  1428. height: 20vh;
  1429. background-size: cover;
  1430. background-position: top;
  1431. background-repeat: no-repeat;
  1432. background-color: #fff;
  1433. }
  1434. .card-title {
  1435. font-size: 2.1rem;
  1436. margin-bottom: 2rem;
  1437. }
  1438. .card .card-body {
  1439. padding: 1rem;
  1440. }
  1441. .card .card-link {
  1442. display: block;
  1443. color: #EA5413;
  1444. border: 2px solid #EA5413;
  1445. border-radius: 2rem;
  1446. padding: 5px 12px;
  1447. cursor: pointer;
  1448. background-color: transparent;
  1449. transition: all .4s;
  1450. margin: 1rem auto;
  1451. }
  1452. .card .card-link:hover {
  1453. color: white;
  1454. background-color: #EA5413;
  1455. }
  1456. .more-modal .btn-primary {
  1457. background-color: white;
  1458. color: #EA5413;
  1459. }
  1460. @media (max-width: 765px) {
  1461. #vt-list .row > div {
  1462. padding-left: 0px;
  1463. }
  1464. }
  1465. .modal-imgfr {
  1466. width: 100%;
  1467. height: 50vh;
  1468. background-size: contain;
  1469. background-position: center;
  1470. background-repeat: no-repeat;
  1471. }
  1472. .modal-imgfr img {
  1473. width: 100%;
  1474. }
  1475. .modal-body-title {
  1476. font-size: 2rem;
  1477. padding: .6rem 0;
  1478. margin: 1.5rem 0;
  1479. position: relative;
  1480. display: inline-block;
  1481. }
  1482. .modal-body-title::after {
  1483. position: absolute;
  1484. left: 0;
  1485. top: 0;
  1486. width: 100%;
  1487. height: 100%;
  1488. border-bottom: 3px solid #EA5413;
  1489. content: " ";
  1490. }
  1491. .modal-socials .footer-socials a{
  1492. margin-right: 1.2rem;
  1493. }
  1494. .hashtag-pill {
  1495. padding: .3rem;
  1496. display: inline-block;
  1497. background-color: #ffc107;
  1498. border-radius: .3rem;
  1499. margin: 1.2rem .3rem;
  1500. }
  1501. .modal-body-music {
  1502. display: flex;
  1503. justify-content: space-around;
  1504. align-items: center;
  1505. }
  1506. .music-progress {
  1507. position: relative;
  1508. width: calc(100% - 70px);
  1509. margin-top: 20px;
  1510. margin-bottom: 20px;
  1511. margin-left: 10px;
  1512. cursor: pointer;
  1513. background: rgba(211, 211, 211, 0.3);
  1514. }
  1515. .music-progress:before {
  1516. content: '';
  1517. position: absolute;
  1518. left: 0;
  1519. top: 50%;
  1520. transform: translateY(-50%);
  1521. width: 100%;
  1522. height: 5px;
  1523. background: rgba(211, 211, 211, 0.3);
  1524. border-radius: 5px;
  1525. z-index: -1;
  1526. }
  1527. .music-progress-bar {
  1528. position: relative;
  1529. width: 0;
  1530. height: 5px;
  1531. border-radius: 5px;
  1532. background-color: rgb(168, 209, 255);
  1533. }
  1534. .music-progress-bar:after {
  1535. content: '';
  1536. position: absolute;
  1537. right: -6px;
  1538. top: 50%;
  1539. transform: translateY(-50%);
  1540. width: 12px;
  1541. height: 12px;
  1542. background: rgba(255, 255, 255, 1);
  1543. filter: drop-shadow(0px 0px 4px rgba(46, 45, 45, 1));
  1544. border-radius: 50%;
  1545. box-sizing: border-box;
  1546. }