custom.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727
  1. /* your styles go here */
  2. .text-center {
  3. text-align: center;
  4. }
  5. .text-left {
  6. text-align: left;
  7. }
  8. .mb-large {
  9. margin-bottom: 6rem;
  10. }
  11. /* LP-components nav */
  12. #navigation .navbar-nav .main-link {
  13. background-color: white;
  14. border-top: none;
  15. color: black;
  16. font-weight: 400;
  17. padding: 3px 3px 3px 3px;
  18. margin: 18px 12px 18px 12px;
  19. font-size: 1.5rem;
  20. text-decoration: none;
  21. }
  22. #navigation .navbar-nav .dropdown.active .main-link {
  23. border-bottom: 3px solid #ea5413;
  24. }
  25. #navigation .navbar-nav .signin-link {
  26. padding: 8px 18px;
  27. margin: 13px 0;
  28. text-decoration: none;
  29. color: #ea5413;
  30. font-size: 1.5rem;
  31. font-weight: 400;
  32. border: 1px solid #ea5413;
  33. border-radius: 3rem;
  34. }
  35. #navigation .navbar-nav .signin-link:hover,
  36. #navigation .navbar-nav .signin-link:focus {
  37. background-color: transparent;
  38. }
  39. #navigation .navbar-nav .signup-link {
  40. padding: 8px 18px;
  41. margin: 13px 10px;
  42. text-decoration: none;
  43. color: white;
  44. font-size: 1.5rem;
  45. font-weight: 400;
  46. border: 1px solid #ea5413;
  47. border-radius: 3rem;
  48. background-color: #ea5413;
  49. }
  50. #navigation .navbar-nav .signup-link:hover,
  51. #navigation .navbar-nav .signup-link:focus {
  52. background-color: #ea5413;
  53. }
  54. /* sec-hero */
  55. .sec-hero {
  56. padding: 6rem 0;
  57. padding-bottom: 0;
  58. margin-bottom: 0 !important;
  59. }
  60. .sec-hero .hero-title {
  61. font-size: 3.5rem;
  62. letter-spacing: 1px;
  63. padding-top: 2.5rem;
  64. }
  65. .sec-hero .hero-txt {
  66. font-size: 1.8rem;
  67. letter-spacing: 1px;
  68. }
  69. .sec-hero .hero-btn {
  70. border: none;
  71. outline: none;
  72. border-radius: 3rem;
  73. margin-top: 2rem;
  74. padding: 1rem 2.5rem 0.6rem;
  75. background: linear-gradient(20deg, #ea5413, #920783);
  76. color: white;
  77. font-size: 1.8rem;
  78. box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.534);
  79. letter-spacing: 1px;
  80. }
  81. .sec-hero .hero-btn:hover {
  82. opacity: 0.9;
  83. }
  84. .hero-orange {
  85. position: absolute;
  86. left: 10%;
  87. top: 0%;
  88. }
  89. .hero-purple {
  90. position: absolute;
  91. right: 0%;
  92. top: -10%;
  93. z-index: -1;
  94. width: 180px;
  95. }
  96. .hero-orange-s {
  97. position: absolute;
  98. left: -5%;
  99. bottom: 13%;
  100. z-index: -1;
  101. animation: floating 8s infinite ease-in-out;
  102. width: 80px;
  103. }
  104. .hero-textgrp {
  105. z-index: 3;
  106. position: absolute;
  107. left: 5%;
  108. top: 10%;
  109. animation: floating3 6s infinite 1s ease-in-out;
  110. width: 300px;
  111. }
  112. .hero-video {
  113. z-index: 3;
  114. position: absolute;
  115. right: 3%;
  116. top: -5%;
  117. animation: floating 8s infinite 1.5s ease-in-out;
  118. width: 120px;
  119. }
  120. .hero-amplify {
  121. z-index: 3;
  122. position: absolute;
  123. bottom: 5%;
  124. right: 0;
  125. animation: floating2 5s infinite ease-in-out;
  126. width: 120px;
  127. }
  128. .hero-imgfr {
  129. width: 100%;
  130. height: 95%;
  131. }
  132. .hero-imgfr img {
  133. width: 100%;
  134. }
  135. @keyframes floating {
  136. from {
  137. transform: translate(0px, 0);
  138. }
  139. 65% {
  140. transform: translate(25px, 0);
  141. }
  142. to {
  143. transform: translate(0, -0px);
  144. }
  145. }
  146. @keyframes floating3 {
  147. from {
  148. transform: translate(0px, 0);
  149. }
  150. 65% {
  151. transform: translate(-20px, 0);
  152. }
  153. to {
  154. transform: translate(0, -0px);
  155. }
  156. }
  157. @keyframes floating2 {
  158. from {
  159. transform: translate(0px, 0);
  160. }
  161. 65% {
  162. transform: translate(0px, 10px);
  163. }
  164. to {
  165. transform: translate(0, -0px);
  166. }
  167. }
  168. /* sec-video */
  169. .sec-video {
  170. margin: 200px auto 100px;
  171. position: relative;
  172. }
  173. .sec-video .stock {
  174. width: 550px;
  175. left: 0;
  176. top: 0;
  177. position: absolute;
  178. z-index: -1;
  179. }
  180. @media (max-width: 991px) {
  181. .sec-video .stock {
  182. width: 50%;
  183. }
  184. }
  185. @media (max-width: 575px) {
  186. .sec-video .stock {
  187. top: 75px;
  188. width: 70%;
  189. }
  190. }
  191. .sec-video .video-box {
  192. position: relative;
  193. width: 80%;
  194. height: 0;
  195. padding-bottom: 45%;
  196. margin: auto;
  197. }
  198. .sec-video .video-box iframe {
  199. position: absolute;
  200. top: 0;
  201. left: 0;
  202. width: 100%;
  203. height: 100%;
  204. }
  205. .sec-video .video-title,
  206. .sec-video .video-mb-title {
  207. margin-bottom: 20px;
  208. font-size: 3rem;
  209. text-align: center;
  210. }
  211. .sec-video .video-mb-title {
  212. display: none;
  213. line-height: 40px;
  214. }
  215. @media (max-width: 575px) {
  216. .sec-video .video-title {
  217. display: none;
  218. }
  219. .sec-video .video-mb-title {
  220. display: block;
  221. }
  222. }
  223. .sec-video .video-text {
  224. margin-bottom: 20px;
  225. font-size: 16px;
  226. text-align: center;
  227. letter-spacing: 1px;
  228. }
  229. .sec-video .line {
  230. height: 7px;
  231. width: 70px;
  232. display: block;
  233. background: #ea5413;
  234. margin: 30px auto;
  235. }
  236. /* sec-usecase */
  237. .sec-usecase {
  238. padding: 6rem 0;
  239. position: relative;
  240. margin-bottom: 0 !important;
  241. }
  242. .sec-usecase .container,
  243. .sec-video .container {
  244. width: 95%;
  245. max-width: 1200px;
  246. }
  247. .sec-usecase::after {
  248. content: " ";
  249. position: absolute;
  250. bottom: 0;
  251. left: 0;
  252. right: 0;
  253. height: 40%;
  254. width: 100%;
  255. background-color: #ffebe2;
  256. z-index: -1;
  257. }
  258. .sec-usecase .usecase-title {
  259. font-size: 3rem;
  260. text-align: center;
  261. margin-bottom: 50px;
  262. }
  263. .sec-usecase .usecase-sub {
  264. font-size: 1.8rem;
  265. text-align: center;
  266. }
  267. .sec-usecase .usecase-sub i {
  268. color: #ea5413;
  269. }
  270. .sec-usecase .usecase-block {
  271. padding: 0 1rem;
  272. z-index: 3;
  273. }
  274. .sec-usecase .usecase-imgfr {
  275. width: 100%;
  276. height: 25rem;
  277. border-radius: 1rem;
  278. overflow: hidden;
  279. box-shadow: 0 3px 11px 3px rgba(192, 192, 192, 0.637);
  280. }
  281. .sec-usecase .usecase-imgfr img {
  282. width: 100%;
  283. height: 100%;
  284. }
  285. /* sec-steps */
  286. .sec-steps {
  287. padding: 6rem 0;
  288. padding-bottom: 0;
  289. }
  290. .sec-steps .steps-title {
  291. font-size: 3rem;
  292. text-align: center;
  293. letter-spacing: 1px;
  294. }
  295. .sec-steps .steps-title strong {
  296. font-size: 5rem;
  297. }
  298. .sec-steps .steps-block {
  299. padding: 0 1rem;
  300. display: flex;
  301. flex-direction: column;
  302. align-items: center;
  303. justify-content: center;
  304. position: relative;
  305. }
  306. .sec-steps .steps-block::after {
  307. position: absolute;
  308. bottom: -1.8rem;
  309. left: 0;
  310. width: 100%;
  311. height: 15rem;
  312. background-color: #ffebe2;
  313. content: " ";
  314. z-index: -1;
  315. border-radius: 2rem;
  316. }
  317. .sec-steps .steps-imgfr {
  318. width: 75%;
  319. height: 23rem;
  320. }
  321. .sec-steps .steps-imgfr img {
  322. width: 100%;
  323. height: 100%;
  324. }
  325. .sec-steps .steps-sub {
  326. margin: 5px auto 0;
  327. }
  328. .sec-steps .steps-txt {
  329. display: flex;
  330. align-items: center;
  331. }
  332. .sec-steps .steps-txt span {
  333. display: inline-block;
  334. width: 40px;
  335. height: 40px;
  336. background-color: #ea5413;
  337. color: white;
  338. font-size: 2.5rem;
  339. line-height: 40px;
  340. border-radius: 50%;
  341. text-align: center;
  342. margin-right: 1rem;
  343. }
  344. /* sec-features */
  345. .sec-features {
  346. padding: 5rem 0;
  347. }
  348. .sec-features .row {
  349. margin: 8rem 0;
  350. }
  351. .sec-features .row:nth-of-type(1) {
  352. margin: 4rem 0;
  353. }
  354. .sec-features .row:nth-of-type(4) {
  355. margin-bottom: 0;
  356. }
  357. .features-orangel {
  358. position: absolute;
  359. left: -150px;
  360. top: 5%;
  361. z-index: -1;
  362. }
  363. .features-purpler {
  364. position: absolute;
  365. right: -150px;
  366. top: 5%;
  367. z-index: -1;
  368. }
  369. .features-purplel {
  370. position: absolute;
  371. left: -150px;
  372. top: 5%;
  373. z-index: -1;
  374. }
  375. .features-oranger {
  376. position: absolute;
  377. right: -150px;
  378. top: 5%;
  379. z-index: -1;
  380. }
  381. .sec-features .row .d-block {
  382. display: none;
  383. }
  384. .sec-features .features-col {
  385. position: relative;
  386. }
  387. .sec-features .features-col .features-block {
  388. position: absolute;
  389. left: 10rem;
  390. top: 6rem;
  391. display: flex;
  392. opacity: 0;
  393. transition: all 0.8s;
  394. }
  395. .sec-features .features-col .block-right {
  396. transform: translateX(-30%) scale(0.95);
  397. }
  398. .sec-features .features-col .block-left {
  399. transform: translateX(30%) scale(0.95);
  400. }
  401. .sec-features .features-col .features-block.active {
  402. opacity: 1;
  403. transform: translateX(0%) scale(1);
  404. }
  405. .sec-features .features-num {
  406. display: inline-block;
  407. font-size: 12rem;
  408. color: #f0f0f0;
  409. }
  410. .sec-features .features-title {
  411. font-size: 3rem;
  412. text-align: center;
  413. letter-spacing: 1px;
  414. padding-bottom: 6px;
  415. border-bottom: 8px solid #ea5413;
  416. display: inline-block;
  417. }
  418. .sec-features .features-title strong {
  419. font-size: 5rem;
  420. }
  421. .sec-features .features-imgfr {
  422. width: 100%;
  423. }
  424. .sec-features .features-imgfr video {
  425. width: 100%;
  426. }
  427. .sec-features .features-list {
  428. text-align: left;
  429. }
  430. /* .sec-blogtab {
  431. padding-bottom: 5rem;
  432. } */
  433. .blog-tabs {
  434. display: flex;
  435. align-items: center;
  436. }
  437. /* .blogtab-title {
  438. font-size: 3rem;
  439. letter-spacing: 1px;
  440. padding-bottom: 7px;
  441. border-bottom: 7px solid #ea5413;
  442. display: inline-block;
  443. text-align: center;
  444. } */
  445. .blog-tabs .blog-tabs-nav {
  446. width: 35%;
  447. background-color: #f0f0f0;
  448. padding: 4rem 2.5rem;
  449. list-style: none;
  450. box-shadow: 0 2px 5px -2px rgb(173, 173, 173);
  451. text-align: left;
  452. }
  453. .blog-tabs .blog-tabs-nav li {
  454. padding: 10px;
  455. border-bottom: 1px dashed grey;
  456. }
  457. .blog-tabs .blog-tabs-nav li a {
  458. color: #ea5413;
  459. }
  460. .blog-tabs .blog-tabs-stage {
  461. width: 65%;
  462. padding: 3.5rem;
  463. padding-bottom: 6rem;
  464. box-shadow: 0 0 10px rgb(32 32 32 / 25%);
  465. height: 40rem;
  466. overflow: hidden;
  467. text-align: left;
  468. position: relative;
  469. }
  470. .blog-tab-box {
  471. height: 90%;
  472. overflow-y: auto;
  473. }
  474. /* .blog-tabs .blog-tabs-stage .blog-txt {
  475. font-size: 1.6rem;
  476. }
  477. .blog-tabs .blog-tabs-stage .blog-txt p {
  478. line-height: 32px;
  479. letter-spacing: 1px;
  480. } */
  481. /* .btn-light {
  482. color: black;
  483. border: 1px solid #ea5413;
  484. padding: 1rem 2.5rem;
  485. outline: none;
  486. background-color: white;
  487. margin-top: 4rem;
  488. border-radius: 3rem;
  489. font-size: 1.8rem;
  490. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  491. letter-spacing: 1px;
  492. } */
  493. .btn-dark {
  494. text-decoration: none;
  495. color: white;
  496. border: 1px solid #ea5413;
  497. padding: 1rem 2.5rem 0.6rem;
  498. outline: none;
  499. background-color: #ea5413;
  500. margin-top: 4rem;
  501. border-radius: 3rem;
  502. font-size: 1.8rem;
  503. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  504. letter-spacing: 1px;
  505. }
  506. .btn-dark:hover {
  507. color: #ea5413;
  508. border: 1px solid #ea5413;
  509. background-color: transparent;
  510. }
  511. .btn-underline {
  512. outline: none;
  513. border: none;
  514. border-bottom: 1px dashed #ea5413;
  515. color: #ea5413;
  516. background-color: transparent;
  517. margin-top: 1rem;
  518. }
  519. .blog-tabs .btn-light {
  520. margin: 1.5rem 0;
  521. color: #ea5413;
  522. position: absolute;
  523. bottom: 1rem;
  524. left: 3.5rem;
  525. }
  526. .blog-tabs .btn-light:hover {
  527. margin: 1.5rem 0;
  528. color: white;
  529. background-color: #ea5413;
  530. position: absolute;
  531. bottom: 1rem;
  532. left: 3.5rem;
  533. }
  534. /* sec-action */
  535. .sec-action {
  536. /* padding-bottom: 7rem; */
  537. background-color: #ffebe2;
  538. margin-bottom: 0 !important;
  539. }
  540. .sec-action .container-fluid {
  541. padding: 0;
  542. }
  543. .sec-action .action-clip {
  544. width: 100%;
  545. background-color: #ea5413;
  546. padding: 2rem 0;
  547. border-color: #ea5413;
  548. }
  549. .sec-action .action-clip h2 {
  550. color: white;
  551. }
  552. .sec-action .action-triangle {
  553. clip-path: polygon(0 0, 50% 60%, 100% 0);
  554. -webkit-clip-path: polygon(0 0, 50% 60%, 100% 0);
  555. background: #ea5413;
  556. height: 8rem;
  557. border-color: #ea5413;
  558. }
  559. .sec-action form {
  560. padding: 4rem 0;
  561. }
  562. .sec-action form .action-input {
  563. padding: 0.8rem;
  564. display: block;
  565. width: 35rem;
  566. margin: 0 auto;
  567. border: 1px solid #9b9b9b;
  568. border-radius: 8px;
  569. outline: none;
  570. }
  571. .sec-action form .action-input::placeholder {
  572. color: #9b9b9b;
  573. }
  574. .sec-action form .action-input::-webkit-input-placeholder {
  575. color: #9b9b9b;
  576. }
  577. .sec-action form .action-input:-moz-input-placeholder {
  578. color: #9b9b9b;
  579. }
  580. .sec-action form .action-input:-ms-input-placeholder {
  581. color: #9b9b9b;
  582. }
  583. .sec-action .action-btn {
  584. border: none;
  585. outline: none;
  586. padding: 0.8rem 3.5rem 0.5rem;
  587. border-radius: 3rem;
  588. font-size: 2rem;
  589. background-color: white;
  590. color: #ea5413;
  591. margin-bottom: 3rem;
  592. letter-spacing: 1px;
  593. }
  594. .sec-action .action-btn:hover {
  595. opacity: 0.9;
  596. }
  597. /* footer */
  598. .footer {
  599. background-color: #f0f0f0;
  600. padding: 3rem;
  601. }
  602. .footer .row {
  603. display: flex;
  604. align-items: center;
  605. }
  606. .footer .footer-aigirl {
  607. font-weight: 600;
  608. font-size: 2rem;
  609. margin-top: 1rem;
  610. margin-bottom: 2.5rem;
  611. }
  612. .footer .footer-follow {
  613. font-size: 1.6rem;
  614. margin-bottom: 1rem;
  615. }
  616. .footer .footer-socials a {
  617. margin-right: 5px;
  618. }
  619. #content .container {
  620. margin-top: 50px;
  621. }
  622. .box-image-text .image {
  623. min-height: 200px;
  624. max-height: 200px;
  625. }
  626. .box-simple {
  627. min-height: 200px;
  628. margin-bottom: 0;
  629. }
  630. .box-simple .video-desc {
  631. color: black;
  632. font-size: 1.8rem;
  633. text-align: left;
  634. padding-left: 1rem;
  635. padding-right: 1rem;
  636. }
  637. .goto-btn {
  638. text-align: center;
  639. margin-top: 2rem;
  640. margin-left: auto;
  641. margin-right: auto;
  642. }
  643. .container-footer {
  644. display: flex;
  645. align-items: center;
  646. }
  647. .box-simple .icon-feature {
  648. width: 120px;
  649. height: 120px;
  650. border-radius: 50%;
  651. display: flex;
  652. align-items: center;
  653. justify-content: center;
  654. margin-left: auto;
  655. margin-right: auto;
  656. }
  657. .box-simple .icon-feature > i {
  658. font-size: 4.5rem;
  659. }
  660. #content .container-list {
  661. margin-top: 100px;
  662. }
  663. /* #all {
  664. background: #fff;
  665. } */
  666. #post-content img {
  667. max-width: 100%;
  668. box-shadow: 0 11px 21px 0 rgba(194, 194, 194, 0.644);
  669. transition: all 0.3s;
  670. margin: 1.5rem 0.5rem;
  671. }
  672. #post-content img:hover {
  673. transform: translateY(-0.125em);
  674. box-shadow: 0 5px 10px 0 rgba(grey, 0.3);
  675. }
  676. #post-content i {
  677. font-size: 2rem;
  678. vertical-align: middle;
  679. }
  680. #post-content table {
  681. border-collapse: collapse;
  682. width: 100%;
  683. }
  684. #post-content table,
  685. th,
  686. td {
  687. border: 1px solid #ccc;
  688. }
  689. #post-content th {
  690. font-size: 1.125rem;
  691. }
  692. #post-content th,
  693. td {
  694. padding: 15px 15px 10px;
  695. text-align: left;
  696. vertical-align: middle;
  697. }
  698. #blog-post {
  699. width: 90%;
  700. margin: auto;
  701. padding-bottom: 3rem;
  702. }
  703. #blog-post .submit-btn {
  704. padding: 15px 40px 10px;
  705. }
  706. #blog-post h2 {
  707. padding: 0.5rem 1rem;
  708. margin: 60px 0 30px;
  709. font-size: 2rem;
  710. font-weight: bold;
  711. border-left: 8px solid #ea5413;
  712. letter-spacing: 2px;
  713. line-height: 1.5;
  714. box-shadow: 1px 1px 4px #ccc;
  715. /* font-family: "Proxima Nova", sans-serif;
  716. margin-right: 5px;
  717. font-size: 3.2rem;
  718. padding-left: 2rem;
  719. border-left: 4px solid #ea5413;
  720. letter-spacing: 1px; */
  721. }
  722. #blog-post h3 {
  723. font-size: 1.5rem;
  724. font-weight: 700;
  725. letter-spacing: 1px;
  726. line-height: 1.5;
  727. background: #f9f9f9;
  728. border-radius: 5px;
  729. padding: 1rem;
  730. /* font-family: "Proxima Nova", sans-serif; */
  731. /* padding-left: 1rem; */
  732. /* border-left: 4px solid #EA5413; */
  733. }
  734. #blog-post h4 {
  735. font-weight: 600;
  736. margin: 1.5rem 0;
  737. }
  738. #blog-post blockquote p {
  739. margin-bottom: 0;
  740. }
  741. /* #blog-post p,
  742. #blog-post li {
  743. font-size: 2rem;
  744. font-family: "Proxima Nova", sans-serif;
  745. letter-spacing: 1px;
  746. } */
  747. #blog-post p,
  748. #blog-post li {
  749. font-size: 16px;
  750. letter-spacing: 1px;
  751. line-height: 32px;
  752. }
  753. #blog-post p {
  754. margin-bottom: 30px;
  755. }
  756. #blog-post code {
  757. color: black;
  758. font-size: 80%;
  759. background-color: transparent;
  760. }
  761. #blog-post .info {
  762. display: flex;
  763. align-items: center;
  764. justify-content: space-between;
  765. }
  766. #blog-post .info ul {
  767. padding: 0;
  768. margin-bottom: 0;
  769. display: flex;
  770. flex-wrap: wrap;
  771. list-style: none;
  772. }
  773. #blog-post .info ul li {
  774. margin: 5px 10px 5px 0;
  775. font-size: 14px;
  776. letter-spacing: 1px;
  777. }
  778. #blog-post .info small {
  779. white-space: nowrap;
  780. }
  781. #blog-post .info a {
  782. display: inline-block;
  783. padding: 5px 10px;
  784. border: solid 1px #eeeeee;
  785. border-radius: 5px;
  786. color: #ea5413;
  787. text-transform: uppercase;
  788. letter-spacing: 0.08em;
  789. font-weight: 700;
  790. }
  791. #blog-post .info a:hover {
  792. border: solid 1px #ea5413;
  793. }
  794. #blog-post .back-link {
  795. display: block;
  796. text-align: center;
  797. margin: 50px 0;
  798. font-size: 16px;
  799. font-weight: bold;
  800. }
  801. #block-vtuber {
  802. padding: 30px 0;
  803. margin-bottom: 40px;
  804. font-family: "Proxima Nova", sans-serif;
  805. color: #181c47;
  806. }
  807. #block-vtuber h2 {
  808. font-family: "Poppins", sans-serif;
  809. font-weight: bolder;
  810. font-size: 36px;
  811. }
  812. #block-vtuber p {
  813. font-size: 16px;
  814. line-height: 32px;
  815. letter-spacing: 1px;
  816. }
  817. .txt-block {
  818. padding: 4rem 0;
  819. }
  820. .sec {
  821. padding: 3rem 0;
  822. margin-bottom: 0;
  823. }
  824. /* .sec01 {
  825. padding-top: 2rem;
  826. } */
  827. .sec-right {
  828. position: absolute;
  829. right: -15%;
  830. top: 10%;
  831. }
  832. .sec02 {
  833. background-color: #ffebe2;
  834. position: relative;
  835. /* clip-path: polygon(0% -10%, 100% 0%, 110% 100%, 0% 100%); */
  836. }
  837. .sec03,
  838. .sec04,
  839. .sec05 {
  840. text-align: center;
  841. padding: 12rem 0;
  842. }
  843. .sec04 {
  844. padding: 8rem 0;
  845. background-color: #ffebe2;
  846. position: relative;
  847. padding-top: 3rem;
  848. }
  849. .sec04::after {
  850. display: none;
  851. content: "";
  852. position: absolute;
  853. top: -66px;
  854. left: 0;
  855. display: block;
  856. width: 100%;
  857. height: 66px;
  858. transform: rotate(180deg);
  859. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  860. background-size: 3840px 66px;
  861. background-position: 0 0;
  862. }
  863. .sec02::after {
  864. display: none;
  865. content: "";
  866. position: absolute;
  867. bottom: -66px;
  868. left: 0;
  869. display: block;
  870. width: 100%;
  871. height: 66px;
  872. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  873. background-size: 3840px 66px;
  874. background-position: 0 0;
  875. }
  876. .sec05 {
  877. position: relative;
  878. padding-top: 0;
  879. padding-bottom: 4rem;
  880. background-color: #ffebe2;
  881. }
  882. .sec05::after {
  883. display: none;
  884. content: "";
  885. position: absolute;
  886. bottom: -66px;
  887. left: 0;
  888. display: block;
  889. width: 100%;
  890. height: 66px;
  891. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  892. background-size: 3840px 66px;
  893. background-position: 0 0;
  894. }
  895. .project {
  896. max-height: 16rem;
  897. }
  898. .project .owl-pagination {
  899. display: none;
  900. }
  901. .owl-carousel.project .owl-buttons {
  902. bottom: 0;
  903. transform: translateX(-50%);
  904. }
  905. .owl-carousel.project .owl-buttons div {
  906. box-shadow:
  907. 3px 3px 16px 0 rgb(98 125 152 / 8%),
  908. 0 -1px 8px 0 rgb(0 0 0 / 4%);
  909. padding: 1rem;
  910. width: 40px;
  911. height: 40px;
  912. border-radius: 50%;
  913. color: black;
  914. }
  915. .owl-carousel.project .owl-buttons div:hover {
  916. box-shadow:
  917. 3px 3px 16px 0 rgb(98 125 152 / 3%),
  918. 0 -1px 8px 0 rgb(0 0 0 / 1%);
  919. }
  920. .owl-carousel .owl-controls .owl-buttons,
  921. .owl-theme .owl-controls .owl-buttons {
  922. top: 110%;
  923. right: 50%;
  924. }
  925. .txt-block .rankblock {
  926. list-style: none;
  927. padding: 0;
  928. }
  929. .txt-block .rankblock li {
  930. font-size: 2.2rem;
  931. margin-bottom: 1rem;
  932. }
  933. .txt-block .rankblock span {
  934. display: inline-block;
  935. width: 45px;
  936. height: 45px;
  937. border-radius: 50%;
  938. background-color: #ea5413;
  939. color: white;
  940. line-height: 35px;
  941. /* margin-right: 1rem; */
  942. font-size: 1.6rem;
  943. padding-left: 6px;
  944. padding-top: 6px;
  945. }
  946. .btn-template-main {
  947. color: #ea5413;
  948. }
  949. .panel-body .btn {
  950. padding: 7px 14px;
  951. border-radius: 0 2rem 2rem 0;
  952. }
  953. .btn {
  954. color: #ea5413;
  955. border: 2px solid #ea5413;
  956. border-radius: 2rem;
  957. }
  958. .btn:hover {
  959. background-color: #ea5413;
  960. border: 2px solid #ea5413;
  961. }
  962. #blog-listing-medium .post {
  963. color: #181c47;
  964. }
  965. #blog-listing-medium .tag-post .image {
  966. position: relative;
  967. overflow: visible;
  968. }
  969. #blog-listing-medium .tag-post .image::after {
  970. position: absolute;
  971. content: " ";
  972. right: 2rem;
  973. bottom: 2rem;
  974. width: 100%;
  975. height: 100%;
  976. z-index: -1;
  977. }
  978. #blog-listing-medium .tag-post .image img {
  979. border: 5px solid white;
  980. }
  981. #blog-listing-medium .tag-post:nth-of-type(3n + 1) .image::after {
  982. background-color: thistle;
  983. }
  984. #blog-listing-medium .tag-post:nth-of-type(3n + 2) .image::after {
  985. background-color: #f3f3f9;
  986. }
  987. #blog-listing-medium .tag-post:nth-of-type(3n) .image::after {
  988. background-color: #eba764;
  989. }
  990. .v-tabs {
  991. max-width: 100%;
  992. }
  993. .v-tabs-nav li {
  994. float: left;
  995. width: 25%;
  996. list-style: none;
  997. }
  998. .v-tabs-nav li a {
  999. color: grey;
  1000. font-size: 2.5rem;
  1001. letter-spacing: 2px;
  1002. display: block;
  1003. font-weight: 600;
  1004. padding: 10px 0;
  1005. text-align: center;
  1006. text-decoration: none;
  1007. }
  1008. .v-tabs-nav li a:hover {
  1009. color: black;
  1010. }
  1011. .v-tab-active a {
  1012. background: #fff;
  1013. border-bottom: 2px solid grey;
  1014. color: #2db34a;
  1015. cursor: default;
  1016. }
  1017. .v-tabs-stage {
  1018. clear: both;
  1019. padding: 40px 30px 10px 30px;
  1020. position: relative;
  1021. top: -1px;
  1022. text-align: left;
  1023. }
  1024. #block-vtuber .v-tabs-stage h2 {
  1025. font-size: 2.5rem;
  1026. }
  1027. #block-vtuber .v-tabs .owl-page span {
  1028. background: #ea5413;
  1029. }
  1030. .d-tabs {
  1031. max-width: 100%;
  1032. }
  1033. .d-tabs-nav li {
  1034. float: left;
  1035. width: 50%;
  1036. list-style: none;
  1037. }
  1038. .d-tabs-nav li a {
  1039. color: grey;
  1040. font-size: 2.5rem;
  1041. letter-spacing: 2px;
  1042. display: block;
  1043. font-weight: 600;
  1044. padding: 10px 0;
  1045. text-align: center;
  1046. text-decoration: none;
  1047. }
  1048. .d-tabs-nav li a:hover {
  1049. color: black;
  1050. }
  1051. .d-tab-active a {
  1052. background: transparent;
  1053. border-bottom: 2px solid grey;
  1054. color: #2db34a;
  1055. cursor: default;
  1056. }
  1057. .d-tabs-stage {
  1058. clear: both;
  1059. padding: 40px 30px 10px 30px;
  1060. position: relative;
  1061. top: -1px;
  1062. text-align: left;
  1063. }
  1064. #block-vtuber .d-tabs-stage h2 {
  1065. font-size: 2.5rem;
  1066. }
  1067. .m-tabs {
  1068. max-width: 100%;
  1069. }
  1070. .m-tabs-nav li {
  1071. float: left;
  1072. width: 50%;
  1073. list-style: none;
  1074. }
  1075. .m-tabs-nav li a {
  1076. color: grey;
  1077. font-size: 2.5rem;
  1078. letter-spacing: 2px;
  1079. display: block;
  1080. font-weight: 600;
  1081. padding: 10px 0;
  1082. text-align: center;
  1083. text-decoration: none;
  1084. }
  1085. .m-tabs-nav li a:hover {
  1086. color: black;
  1087. }
  1088. .m-tab-active a {
  1089. background: transparent;
  1090. border-bottom: 2px solid grey;
  1091. color: #2db34a;
  1092. cursor: default;
  1093. }
  1094. .m-tabs-stage {
  1095. clear: both;
  1096. padding: 40px 30px 10px 30px;
  1097. position: relative;
  1098. top: -1px;
  1099. text-align: left;
  1100. }
  1101. #block-vtuber .m-tabs-stage h2 {
  1102. font-size: 2.5rem;
  1103. }
  1104. .sec06 {
  1105. text-align: center;
  1106. padding: 2rem 0;
  1107. position: relative;
  1108. color: black;
  1109. }
  1110. .sec06-left {
  1111. position: absolute;
  1112. left: 2rem;
  1113. top: -10rem;
  1114. }
  1115. .sec06-right {
  1116. position: absolute;
  1117. right: 2rem;
  1118. bottom: 5rem;
  1119. }
  1120. .sec06 > .container {
  1121. box-shadow: 0px 0px 8px 2px rgb(212, 212, 212);
  1122. transform: translateY(-12rem);
  1123. background-color: white;
  1124. padding: 3rem 0;
  1125. padding-bottom: 7rem;
  1126. position: relative;
  1127. }
  1128. .sec06 .sec06-icons {
  1129. position: absolute;
  1130. left: 4rem;
  1131. bottom: 2rem;
  1132. }
  1133. .sec06 .sec06-icons img {
  1134. margin-right: 1rem;
  1135. }
  1136. .grow-title {
  1137. text-align: center;
  1138. }
  1139. .grow-txt {
  1140. font-size: 1.2rem;
  1141. }
  1142. .grow-call {
  1143. font-weight: 700;
  1144. font-family: Arial, Helvetica, sans-serif;
  1145. font-size: 2.3rem;
  1146. display: block;
  1147. margin-top: 1.5rem;
  1148. margin-bottom: 1rem;
  1149. color: #ea5413;
  1150. }
  1151. .grow-btn {
  1152. padding: 1.2rem 7rem;
  1153. font-size: 2.5rem;
  1154. border: 2px solid #ea5413;
  1155. background: transparent;
  1156. outline: none;
  1157. border-radius: 5rem;
  1158. transition: all 0.3s;
  1159. display: inline-block;
  1160. color: #ea5413;
  1161. text-decoration: none;
  1162. }
  1163. .grow-btn:hover {
  1164. color: white;
  1165. background: #ea5413;
  1166. text-decoration: none;
  1167. }
  1168. .grow-img {
  1169. display: block;
  1170. margin: 0 auto;
  1171. margin-top: 1rem;
  1172. }
  1173. .owl-item {
  1174. height: 300px;
  1175. overflow: hidden;
  1176. }
  1177. .advantages-list {
  1178. text-align: center;
  1179. }
  1180. .txt-block .advantages-list span {
  1181. text-align: center;
  1182. }
  1183. @media (max-width: 992px) {
  1184. .sec-usecase .container {
  1185. width: 85%;
  1186. max-width: 1200px;
  1187. }
  1188. .sec-steps .steps-block {
  1189. padding: 0rem;
  1190. }
  1191. .sec-steps .steps-block::after {
  1192. width: 100%;
  1193. height: 12rem;
  1194. }
  1195. .sec-steps .steps-imgfr {
  1196. width: 100%;
  1197. height: 20rem;
  1198. }
  1199. .sec-steps .steps-imgfr img {
  1200. width: 100%;
  1201. }
  1202. .sec-steps .steps-txt h3.steps-sub {
  1203. font-size: 1.3rem;
  1204. }
  1205. .sec-steps .steps-txt span {
  1206. width: 25px;
  1207. height: 25px;
  1208. background-color: #ea5413;
  1209. font-size: 1.3rem;
  1210. line-height: 25px;
  1211. }
  1212. .sec-features .row {
  1213. margin: 5rem 0;
  1214. }
  1215. .sec-features .features-col {
  1216. position: relative;
  1217. height: 25vh;
  1218. }
  1219. .sec-features .features-col .features-block {
  1220. left: 2rem;
  1221. top: 1rem;
  1222. }
  1223. .sec-features .row .d-md-block {
  1224. display: none;
  1225. }
  1226. .sec-features .row .d-block {
  1227. display: block;
  1228. }
  1229. .sec-hero .col-left {
  1230. margin-top: 2.5rem;
  1231. }
  1232. }
  1233. @media (max-width: 765px) {
  1234. .sec-steps .steps-block {
  1235. padding: 2rem 15rem;
  1236. }
  1237. .sec-steps .steps-imgfr {
  1238. width: 100%;
  1239. height: 32vh;
  1240. }
  1241. .sec-usecase .row > div {
  1242. width: 50%;
  1243. }
  1244. .sec-features {
  1245. margin-bottom: 0;
  1246. }
  1247. .blog-tabs {
  1248. flex-direction: column;
  1249. }
  1250. .blog-tabs .blog-tabs-stage {
  1251. width: 95%;
  1252. margin-top: -4rem;
  1253. background-color: white;
  1254. }
  1255. .blog-tabs .blog-tabs-nav {
  1256. width: 95%;
  1257. background-color: #f0f0f0;
  1258. padding: 4rem 2.5rem;
  1259. list-style: none;
  1260. box-shadow: 0 2px 5px -2px rgb(173, 173, 173);
  1261. text-align: left;
  1262. }
  1263. .blog-tabs .blog-tabs-nav li {
  1264. padding: 10px;
  1265. border-bottom: 1px dashed grey;
  1266. }
  1267. .blog-tabs .blog-tabs-nav li a {
  1268. color: #ea5413;
  1269. }
  1270. .footer .container .row {
  1271. flex-direction: column;
  1272. text-align: center;
  1273. }
  1274. .navbar-collapse .navbar-nav li {
  1275. display: inline-block;
  1276. }
  1277. .nav > li {
  1278. display: inline-block;
  1279. }
  1280. }
  1281. @media (max-width: 576px) {
  1282. .sec {
  1283. padding-left: 2rem;
  1284. padding-right: 2rem;
  1285. }
  1286. .sec04 {
  1287. padding: 8rem 0;
  1288. background-color: #ffebe2;
  1289. position: relative;
  1290. padding-top: 3rem;
  1291. }
  1292. .project {
  1293. max-height: 20rem;
  1294. }
  1295. .sec04 {
  1296. padding: 12rem 0;
  1297. padding-top: 3rem;
  1298. }
  1299. .sec-hero {
  1300. padding: 4rem 0;
  1301. }
  1302. .sec-hero .hero-title {
  1303. font-size: 2.5rem;
  1304. }
  1305. .sec-steps .steps-block {
  1306. padding: 2rem 6rem;
  1307. }
  1308. .sec-steps .steps-imgfr {
  1309. width: 100%;
  1310. height: 20rem;
  1311. }
  1312. .sec-steps .steps-txt h3.steps-sub {
  1313. font-size: 1.5rem;
  1314. }
  1315. .sec-usecase .container {
  1316. width: 98%;
  1317. max-width: 1200px;
  1318. }
  1319. .sec-usecase .row > div {
  1320. width: 100%;
  1321. }
  1322. .sec-usecase .usecase-block {
  1323. padding: 0 4rem;
  1324. }
  1325. .hero-purple {
  1326. width: 130px;
  1327. }
  1328. .hero-orange-s {
  1329. left: 0%;
  1330. width: 60px;
  1331. }
  1332. .hero-textgrp {
  1333. left: 8%;
  1334. width: 200px;
  1335. }
  1336. .hero-video {
  1337. right: 5%;
  1338. width: 90px;
  1339. }
  1340. .hero-amplify {
  1341. width: 90px;
  1342. }
  1343. #content .container {
  1344. margin-top: 0;
  1345. }
  1346. .sec01 {
  1347. padding-top: 0;
  1348. }
  1349. #heading-breadcrumbs {
  1350. margin-bottom: 0;
  1351. background: white, url("https://i.imgur.com/N7tVTSh.png");
  1352. }
  1353. #heading-breadcrumbs a {
  1354. font-size: 1rem;
  1355. }
  1356. #block-vtuber {
  1357. padding: 0;
  1358. }
  1359. #blog-listing-medium .tag-post:nth-of-type(3n + 1) .image::after {
  1360. background-color: transparent;
  1361. }
  1362. #blog-listing-medium .tag-post:nth-of-type(3n + 2) .image::after {
  1363. background-color: transparent;
  1364. }
  1365. #blog-listing-medium .tag-post:nth-of-type(3n) .image::after {
  1366. background-color: transparent;
  1367. }
  1368. .owl-carousel .owl-controls .owl-buttons,
  1369. .owl-theme .owl-controls .owl-buttons {
  1370. top: 130%;
  1371. }
  1372. .owl-item {
  1373. height: unset;
  1374. }
  1375. .v-tabs-nav {
  1376. padding: 0 30px;
  1377. }
  1378. .d-tabs-nav {
  1379. padding: 0 30px;
  1380. }
  1381. .m-tabs-nav {
  1382. padding: 0 30px;
  1383. }
  1384. }
  1385. @media (max-width: 992px) {
  1386. .container-footer {
  1387. flex-direction: column;
  1388. }
  1389. .container-footer > div {
  1390. margin-bottom: 1.5rem;
  1391. }
  1392. .video-col {
  1393. margin-bottom: 2rem;
  1394. }
  1395. .mb-mobile {
  1396. margin-bottom: 5rem;
  1397. }
  1398. .step-box {
  1399. margin-bottom: 2rem;
  1400. }
  1401. }
  1402. .btn:hover {
  1403. color: white;
  1404. }
  1405. .box-steps {
  1406. border: 1px solid #181c47;
  1407. padding: 1rem;
  1408. border-radius: 5rem;
  1409. position: relative;
  1410. }
  1411. .box-steps .step-box {
  1412. position: absolute;
  1413. left: -5px;
  1414. top: -5px;
  1415. width: 4rem;
  1416. height: 4rem;
  1417. background-color: white;
  1418. }
  1419. .box-steps .step-box span {
  1420. font-size: 3rem;
  1421. font-weight: 600;
  1422. color: #38a7bb;
  1423. }
  1424. .box-steps .icon {
  1425. border: none;
  1426. }
  1427. .box-steps .icon > i {
  1428. font-size: 3.5rem;
  1429. }
  1430. .box-video {
  1431. min-height: 280px;
  1432. }
  1433. .footer-btn-text {
  1434. font-size: 2rem;
  1435. color: white;
  1436. }
  1437. .table {
  1438. display: flex;
  1439. /* box-shadow: 0 0 5px 1px rgb(197, 197, 197); */
  1440. border-radius: 15px;
  1441. align-items: center;
  1442. height: 280px;
  1443. }
  1444. .table .column {
  1445. min-height: 280px;
  1446. background-color: white;
  1447. padding: 10px 2rem;
  1448. }
  1449. .table .column .body-company {
  1450. font-size: 1.6rem;
  1451. font-weight: 500;
  1452. }
  1453. .fa-check {
  1454. margin-left: 4px;
  1455. color: rgb(5, 212, 5);
  1456. }
  1457. .table .column .body-head {
  1458. color: gray;
  1459. }
  1460. .table .column-first {
  1461. border-radius: 15px 0 0 15px;
  1462. }
  1463. .table .column-last {
  1464. border-radius: 0 15px 15px 0;
  1465. }
  1466. .table .column-choozmo {
  1467. border: 1px solid rgb(212, 212, 212);
  1468. box-shadow: 0 0 5px 1px rgb(197, 197, 197);
  1469. border-radius: 15px;
  1470. height: 340px;
  1471. }
  1472. .table .column div {
  1473. min-height: 65px;
  1474. }
  1475. .navbar-brand > img {
  1476. display: inline-block;
  1477. }
  1478. .navbar-brand .logo {
  1479. width: 140px;
  1480. }
  1481. @media (max-width: 991px) {
  1482. .navbar-brand .logo {
  1483. width: 120px;
  1484. }
  1485. }
  1486. @media (max-width: 767px) {
  1487. .visible-xs {
  1488. display: inline-block !important;
  1489. }
  1490. }
  1491. .logo {
  1492. width: 140px;
  1493. }
  1494. @media (max-width: 991px) {
  1495. .logo {
  1496. width: 120px;
  1497. }
  1498. }
  1499. @media (max-width: 1200px) {
  1500. .navbar-expand-lg .navbar-nav .nav-link {
  1501. padding-right: 0.3rem;
  1502. padding-left: 0.3rem;
  1503. }
  1504. }
  1505. .logo-sm {
  1506. width: 150px;
  1507. height: 40px;
  1508. }
  1509. .footer-img {
  1510. height: 60px;
  1511. }
  1512. .followus {
  1513. display: flex;
  1514. align-items: center;
  1515. justify-content: flex-start;
  1516. margin-top: 1rem;
  1517. }
  1518. .followus-txt {
  1519. display: inline-block;
  1520. margin-right: 1rem;
  1521. color: white;
  1522. font-weight: 600;
  1523. }
  1524. .followus .followus-img {
  1525. margin-right: 1rem;
  1526. }
  1527. .bar.mb-0 {
  1528. margin-bottom: 0;
  1529. }
  1530. .headingvf {
  1531. margin-bottom: 1.5rem;
  1532. }
  1533. .headingvf-sub {
  1534. margin-bottom: 4rem;
  1535. }
  1536. .headingvf-sub h4 {
  1537. color: grey;
  1538. font-weight: 400;
  1539. font-size: 1.6rem;
  1540. line-height: 2.2rem;
  1541. }
  1542. .testimonial-img {
  1543. width: 200px;
  1544. border-radius: 50%;
  1545. display: block;
  1546. margin-left: auto;
  1547. margin-right: auto;
  1548. }
  1549. .testimonial-title {
  1550. font-size: 2rem;
  1551. }
  1552. .testimonial-text {
  1553. font-size: 1.6rem;
  1554. }
  1555. .testimonials-pro {
  1556. margin-bottom: 1rem;
  1557. }
  1558. .testimonials-pro p {
  1559. font-size: 1.6rem;
  1560. }
  1561. .testimonials-goto-btn a {
  1562. animation-name: move;
  1563. animation-duration: 1.5s;
  1564. animation-delay: 0;
  1565. animation-iteration-count: infinite;
  1566. animation-direction: normal;
  1567. animation-timing-function: linear;
  1568. }
  1569. @keyframes move {
  1570. 0% {
  1571. box-shadow: 0 0 0 transparent;
  1572. }
  1573. 50% {
  1574. box-shadow: 5px 5px 4px #887e74;
  1575. }
  1576. 100% {
  1577. box-shadow: 0 0 0 transparent;
  1578. }
  1579. }
  1580. .row-rank {
  1581. height: min-content;
  1582. }
  1583. .rank-box {
  1584. min-height: min-content;
  1585. }
  1586. .rank .rank-word {
  1587. display: inline-block;
  1588. font-weight: 500;
  1589. position: relative;
  1590. }
  1591. .rank .rank-word::after {
  1592. position: absolute;
  1593. content: " ";
  1594. width: 100%;
  1595. height: 2px;
  1596. left: 20%;
  1597. top: 90%;
  1598. background-color: #499aa8af;
  1599. }
  1600. .rank-num {
  1601. display: inline-block;
  1602. font-size: 3.5rem;
  1603. color: #38a7bb;
  1604. font-style: italic;
  1605. font-weight: 600;
  1606. }
  1607. .video-steps {
  1608. margin-top: 6rem;
  1609. }
  1610. .btn-video {
  1611. text-align: center;
  1612. display: block;
  1613. width: 18rem;
  1614. margin: 1rem auto;
  1615. }
  1616. @media (max-width: 992px) {
  1617. .video-steps {
  1618. margin-top: 1rem;
  1619. }
  1620. }
  1621. .video-steps {
  1622. display: flex;
  1623. text-align: center;
  1624. }
  1625. .steps-box {
  1626. flex: 20%;
  1627. position: relative;
  1628. }
  1629. .steps-icon {
  1630. font-size: 5rem;
  1631. color: #38a7bb;
  1632. }
  1633. .steps-name {
  1634. font-size: 1.8rem;
  1635. color: rgb(68, 67, 67);
  1636. margin-bottom: 1rem;
  1637. }
  1638. .steps-num {
  1639. position: absolute;
  1640. left: 15%;
  1641. top: -2.5rem;
  1642. font-size: 4rem;
  1643. color: #72969c;
  1644. font-weight: 500;
  1645. }
  1646. .card {
  1647. margin: 1.5rem;
  1648. margin-right: 0rem;
  1649. box-shadow: 4px 4px 1px rgb(0, 0, 0, 0.1);
  1650. transition: all 0.5s;
  1651. text-align: center;
  1652. /* height: 42vh; */
  1653. max-height: 45vh;
  1654. border-radius: 1rem;
  1655. background-color: #fff;
  1656. position: relative;
  1657. }
  1658. .vt-style {
  1659. display: inline-block;
  1660. padding: 0.3rem 0.4rem;
  1661. background-color: #ffebe2;
  1662. margin: 0 0.2rem;
  1663. }
  1664. .vt-ribbon {
  1665. position: absolute;
  1666. top: 1rem;
  1667. left: -10px;
  1668. width: 25%;
  1669. height: 30px;
  1670. background-color: #ffba9d;
  1671. box-shadow: 1px 1px 1px rgb(0, 0, 0, 0.5);
  1672. text-align: center;
  1673. color: #181c47;
  1674. transition: 0.4s;
  1675. }
  1676. .vt-ribbon p {
  1677. display: block;
  1678. position: absolute;
  1679. top: 50%;
  1680. left: 50%;
  1681. transform: translate(-50%, -50%);
  1682. transition: 0.1s;
  1683. }
  1684. .vt-ribbon::before {
  1685. position: absolute;
  1686. left: 0px;
  1687. z-index: -1;
  1688. width: 10px;
  1689. height: 100%;
  1690. background-color: #f7a17d;
  1691. content: "";
  1692. transition: 0.2s;
  1693. transition-delay: 0.5s;
  1694. }
  1695. .vt-ribbon::after {
  1696. position: absolute;
  1697. top: 100%;
  1698. left: 0px;
  1699. z-index: -1;
  1700. width: 20px;
  1701. height: 9px;
  1702. background-color: #f7a17d;
  1703. content: "";
  1704. transition: 0.2s;
  1705. transform: rotate(45deg);
  1706. }
  1707. .card:hover {
  1708. transform: translate(-3px, -3px);
  1709. }
  1710. .card:hover .vt-ribbon {
  1711. width: 0;
  1712. }
  1713. .card:hover .vt-ribbon p {
  1714. opacity: 0;
  1715. }
  1716. .card:hover .vt-ribbon::before {
  1717. left: 10px;
  1718. }
  1719. .card:hover .vt-ribbon::after {
  1720. left: 10px;
  1721. }
  1722. .card-img-fr {
  1723. width: 100%;
  1724. transition: all 0.8s;
  1725. /* height: 20vh; */
  1726. background-size: cover;
  1727. background-position: top;
  1728. background-repeat: no-repeat;
  1729. background-color: #fff;
  1730. }
  1731. .card-img-top {
  1732. height: 30vh;
  1733. object-fit: cover;
  1734. }
  1735. .card-title {
  1736. font-size: 2rem;
  1737. margin-bottom: 2rem;
  1738. }
  1739. .card .card-body {
  1740. padding: 1rem;
  1741. }
  1742. .card .card-link {
  1743. display: block;
  1744. color: #ea5413;
  1745. border: 2px solid #ea5413;
  1746. border-radius: 2rem;
  1747. padding: 5px 12px;
  1748. cursor: pointer;
  1749. background-color: transparent;
  1750. transition: all 0.4s;
  1751. margin: 1rem auto;
  1752. }
  1753. .card .card-link:hover {
  1754. color: white;
  1755. background-color: #ea5413;
  1756. }
  1757. .more-modal .btn-primary {
  1758. background-color: white;
  1759. color: #ea5413;
  1760. }
  1761. .more-modal .modal-header {
  1762. border-bottom: none;
  1763. }
  1764. .more-modal .modal-footer {
  1765. border-top: none;
  1766. }
  1767. .more-modal .close {
  1768. font-size: 26px;
  1769. }
  1770. @media (max-width: 765px) {
  1771. #vt-list .row > div {
  1772. padding-left: 0px;
  1773. }
  1774. }
  1775. .modal-imgfr {
  1776. width: 100%;
  1777. height: 50vh;
  1778. background-size: contain;
  1779. background-position: center;
  1780. background-repeat: no-repeat;
  1781. }
  1782. .modal-slide-item {
  1783. width: 100%;
  1784. height: 50vh;
  1785. background-position: center center;
  1786. background-size: contain;
  1787. background-repeat: no-repeat;
  1788. cursor: pointer;
  1789. }
  1790. .modal-body-title {
  1791. font-size: 2rem;
  1792. padding: 0.6rem 0;
  1793. margin: 1.5rem 0;
  1794. position: relative;
  1795. display: inline-block;
  1796. }
  1797. .modal-body-title::after {
  1798. position: absolute;
  1799. left: 0;
  1800. top: 0;
  1801. width: 100%;
  1802. height: 100%;
  1803. border-bottom: 3px solid #ea5413;
  1804. content: " ";
  1805. }
  1806. .modal-body-icon {
  1807. margin: 1.5rem 0;
  1808. margin-bottom: 0.8rem;
  1809. display: block;
  1810. font-size: 1.6rem;
  1811. }
  1812. .modal-body-demand {
  1813. position: relative;
  1814. display: inline-block;
  1815. padding: 0.6rem 0;
  1816. margin: 1rem 0;
  1817. }
  1818. .modal-body-demand::after {
  1819. position: absolute;
  1820. left: 0;
  1821. top: 0;
  1822. width: 100%;
  1823. height: 100%;
  1824. border-bottom: 3px solid #ea5413;
  1825. content: " ";
  1826. }
  1827. .modal-body-follow {
  1828. position: relative;
  1829. display: inline-block;
  1830. padding: 0.6rem 0;
  1831. margin: 1rem 0;
  1832. }
  1833. .modal-body-follow::after {
  1834. position: absolute;
  1835. left: 0;
  1836. top: 0;
  1837. width: 100%;
  1838. height: 100%;
  1839. border-bottom: 3px solid #ea5413;
  1840. content: " ";
  1841. }
  1842. .modal-socials .footer-socials a {
  1843. margin-right: 1.2rem;
  1844. }
  1845. .hashtag-pill {
  1846. padding: 0.3rem;
  1847. display: inline-block;
  1848. background-color: #ffc107;
  1849. border-radius: 0.3rem;
  1850. margin: 1.2rem 0.3rem;
  1851. }
  1852. .modal-body-music {
  1853. display: flex;
  1854. justify-content: space-around;
  1855. align-items: center;
  1856. }
  1857. .music-progress {
  1858. position: relative;
  1859. width: calc(100% - 70px);
  1860. margin-top: 20px;
  1861. margin-bottom: 20px;
  1862. margin-left: 10px;
  1863. cursor: pointer;
  1864. background: rgba(211, 211, 211, 0.3);
  1865. }
  1866. .music-progress:before {
  1867. content: "";
  1868. position: absolute;
  1869. left: 0;
  1870. top: 50%;
  1871. transform: translateY(-50%);
  1872. width: 100%;
  1873. height: 5px;
  1874. background: rgba(211, 211, 211, 0.3);
  1875. border-radius: 5px;
  1876. z-index: -1;
  1877. }
  1878. .music-progress-bar {
  1879. position: relative;
  1880. width: 0;
  1881. height: 5px;
  1882. border-radius: 5px;
  1883. background-color: rgb(168, 209, 255);
  1884. }
  1885. .music-progress-bar:after {
  1886. content: "";
  1887. position: absolute;
  1888. right: -6px;
  1889. top: 50%;
  1890. transform: translateY(-50%);
  1891. width: 12px;
  1892. height: 12px;
  1893. background: rgba(255, 255, 255, 1);
  1894. filter: drop-shadow(0px 0px 4px rgba(46, 45, 45, 1));
  1895. border-radius: 50%;
  1896. box-sizing: border-box;
  1897. }
  1898. .demand-item {
  1899. padding: 0.2rem 0.5rem;
  1900. position: relative;
  1901. z-index: 2;
  1902. }
  1903. .demand-item::after {
  1904. position: absolute;
  1905. left: 5%;
  1906. bottom: 0;
  1907. background-color: antiquewhite;
  1908. width: 90%;
  1909. height: 0.3rem;
  1910. content: "";
  1911. z-index: 1;
  1912. }
  1913. .catalog {
  1914. border: 1px solid antiquewhite;
  1915. background-color: antiquewhite;
  1916. }
  1917. .seo-list-content a {
  1918. font-size: 18px;
  1919. font-weight: 400;
  1920. line-height: 28px;
  1921. letter-spacing: 1px;
  1922. }
  1923. .seo-list-header {
  1924. font-size: 18px;
  1925. }
  1926. .seo-list-item-wrap {
  1927. margin: 2px 0 0 14px;
  1928. }
  1929. .seo-content-box {
  1930. padding: 14px 18px 18px;
  1931. background: #fafafa;
  1932. }
  1933. .seo-list-header {
  1934. margin-bottom: 6px;
  1935. }
  1936. .seo-list p {
  1937. margin-bottom: 1.6em !important;
  1938. letter-spacing: 1px;
  1939. }
  1940. .seo-list table {
  1941. width: 100%;
  1942. margin-bottom: 1.4em;
  1943. max-width: 100%;
  1944. border: 1px solid #eaeaea;
  1945. font-size: 16px;
  1946. }
  1947. .seo-list table tbody tr td {
  1948. width: 40%;
  1949. padding: 1em 1.4em;
  1950. border: solid 1px #bbb;
  1951. text-align: left;
  1952. }
  1953. .seo-list table th {
  1954. padding: 1em 1.4em;
  1955. border: solid 1px #bbb;
  1956. text-align: left;
  1957. }
  1958. .seo-list table thead th {
  1959. padding: 1em 1.4em;
  1960. border: solid 1px #bbb;
  1961. text-align: left;
  1962. }
  1963. .seo-list .fw-bold {
  1964. font-weight: 900;
  1965. }
  1966. .seo-list ul {
  1967. margin-bottom: 32px;
  1968. }
  1969. .seo-list ul li {
  1970. margin-bottom: 0.8em;
  1971. }
  1972. .seo-list .learn-more {
  1973. padding: 10px 20px;
  1974. border: 1px solid #ea5413;
  1975. border-radius: 30px;
  1976. background: #ea5413;
  1977. color: #fff;
  1978. -webkit-transition: 0.3s;
  1979. transition: 0.3s;
  1980. font-size: 18px;
  1981. }
  1982. .seo-list .learn-more:hover {
  1983. color: #ea5413;
  1984. background: #fff;
  1985. }
  1986. @media screen and (max-width: 576px) {
  1987. .seo-list .learn-more {
  1988. margin-top: 15px;
  1989. }
  1990. }
  1991. .seo-img {
  1992. width: 90% !important;
  1993. }
  1994. .about-action {
  1995. margin-top: 150px;
  1996. }
  1997. .about-action h2 {
  1998. position: relative;
  1999. top: 30px;
  2000. z-index: 1;
  2001. font-size: 28px;
  2002. }
  2003. .about-action .action-triangle {
  2004. margin-top: -1px;
  2005. }
  2006. .about-action .action-clip {
  2007. padding: 0;
  2008. }
  2009. .about-action .action-btn {
  2010. color: #000;
  2011. font-size: 20px;
  2012. font-weight: bold;
  2013. }
  2014. .aicustomer-sec01 {
  2015. width: 95%;
  2016. margin: 100px auto;
  2017. }
  2018. .aicustomer-sec01 img {
  2019. border-radius: 15px;
  2020. }
  2021. .aicustomer-sec02-0 {
  2022. width: 70%;
  2023. margin: 30px auto;
  2024. /* background-image: url(../img/aicustomer/aicustomerbg.png);
  2025. background-repeat: no-repeat;
  2026. background-size: contain; */
  2027. }
  2028. .aicustomer-sec02-1 {
  2029. justify-content: space-between;
  2030. }
  2031. .aicustomer-sec02-1,
  2032. .aicustomer-sec02 p {
  2033. margin-top: 30px;
  2034. }
  2035. .aicustomer-sec02-title {
  2036. margin-left: 70px;
  2037. font-weight: bold;
  2038. }
  2039. @media (max-width: 991px) {
  2040. .aicustomer-sec02-title {
  2041. margin-left: 0;
  2042. }
  2043. }
  2044. .aicustomer-title-line {
  2045. width: 700px;
  2046. height: auto;
  2047. object-fit: cover;
  2048. }
  2049. @media (max-width: 1200px) {
  2050. .aicustomer-title-line {
  2051. width: 600px;
  2052. }
  2053. }
  2054. @media (max-width: 767px) {
  2055. .aicustomer-title-line {
  2056. width: 80vw;
  2057. }
  2058. }
  2059. .aicustomer-sec02 {
  2060. background-image: url(../img/aicustomer/aicustomerbg.png);
  2061. background-repeat: no-repeat;
  2062. background-size: contain;
  2063. background-position: center;
  2064. }
  2065. .aicustoerSec03 {
  2066. background-image: url(../img/aicustomer/aiccc.webp);
  2067. background-attachment: fixed;
  2068. background-size: cover;
  2069. background-repeat: no-repeat;
  2070. height: 500px;
  2071. }
  2072. @media screen and (max-width: 768px) {
  2073. .aicustoerSec03 {
  2074. background-image: url(../img/aicustomer/aicustomer-m-bg.webp);
  2075. background-size: contain;
  2076. /* background-position: center; */
  2077. background-attachment: scroll;
  2078. height: 300px;
  2079. }
  2080. }
  2081. .aicustoerSec04,
  2082. .aicustomer-faq {
  2083. width: 95%;
  2084. margin: 50px auto;
  2085. }
  2086. .aisec02img-3 {
  2087. margin-top: -30px;
  2088. }
  2089. @media screen and (max-width: 768px) {
  2090. .aisec02img-3 {
  2091. margin-top: 0px;
  2092. }
  2093. }
  2094. .aicustoerSec05 {
  2095. background-image: url(../img/aicustomer/aicustomerbg2.webp);
  2096. background-attachment: fixed;
  2097. background-size: cover;
  2098. background-repeat: no-repeat;
  2099. height: 500px;
  2100. }
  2101. @media screen and (max-width: 768px) {
  2102. .aicustoerSec05 {
  2103. background-image: url(../img/aicustomer/aicustomer-m-bg2.webp);
  2104. background-size: contain;
  2105. /* background-position: center; */
  2106. background-attachment: scroll;
  2107. height: 300px;
  2108. }
  2109. }
  2110. .arrow-wave {
  2111. display: inline-block;
  2112. cursor: pointer;
  2113. margin-top: -130px;
  2114. font-size: 0;
  2115. /* background-color: rgba(100,100,100,0.4); */
  2116. }
  2117. @media screen and (max-width: 768px) {
  2118. .arrow-wave {
  2119. display: none;
  2120. }
  2121. }
  2122. .arrow-wave span {
  2123. display: block;
  2124. position: relative;
  2125. height: 19px;
  2126. width: 30px;
  2127. /* background-color: rgba(100,100,100,0.4); */
  2128. opacity: 0.2;
  2129. }
  2130. .arrow-wave span::before,
  2131. .arrow-wave span::after {
  2132. display: block;
  2133. content: "";
  2134. position: absolute;
  2135. height: 4px;
  2136. width: 23px;
  2137. background-color: #fff;
  2138. }
  2139. .arrow-wave span::before {
  2140. top: -2px;
  2141. left: 0;
  2142. transform-origin: left center;
  2143. transform: rotate(45deg);
  2144. }
  2145. .arrow-wave span::after {
  2146. top: -2px;
  2147. right: 0;
  2148. transform-origin: right center;
  2149. transform: rotate(-45deg);
  2150. }
  2151. .arrow-wave span:nth-child(1n) {
  2152. animation: animate-arrow-wave 2s infinite;
  2153. animation-delay: 0.25s;
  2154. }
  2155. .arrow-wave span:nth-child(2n) {
  2156. animation: animate-arrow-wave 2s infinite;
  2157. animation-delay: 0.5s;
  2158. }
  2159. .arrow-wave span:nth-child(3n) {
  2160. animation: animate-arrow-wave 2s infinite;
  2161. animation-delay: 0.75s;
  2162. }
  2163. @keyframes animate-arrow-wave {
  2164. 0% {
  2165. opacity: 0.2;
  2166. }
  2167. 25% {
  2168. opacity: 0.2;
  2169. }
  2170. 50% {
  2171. opacity: 0.2;
  2172. }
  2173. 75% {
  2174. opacity: 1;
  2175. }
  2176. 100% {
  2177. opacity: 0.2;
  2178. }
  2179. }
  2180. .aicustomer-sec01-cta-arrow {
  2181. margin-top: -30px;
  2182. }
  2183. .aicustomer-faq h2 {
  2184. font-weight: bold;
  2185. }
  2186. .aicustomer-faq .accordion {
  2187. margin-top: 30px;
  2188. }
  2189. #aicustomerCta .sec-action .action-clip {
  2190. width: 100%;
  2191. background-color: #ea5413;
  2192. padding: 2rem 0;
  2193. border-color: #ea5413;
  2194. }
  2195. #aicustomerCta .sec-action h2 {
  2196. font-size: 2rem;
  2197. line-height: 46px;
  2198. }
  2199. #aicustomerCta a {
  2200. background-color: white;
  2201. color: #ea5413;
  2202. text-decoration: none;
  2203. font-size: 20px;
  2204. font-weight: 600;
  2205. padding: 20px 30px;
  2206. }
  2207. #all {
  2208. width: 100%;
  2209. /* overflow: hidden; */
  2210. }
  2211. @media (max-width: 991px) {
  2212. #all {
  2213. overflow: hidden;
  2214. }
  2215. }
  2216. #content #form {
  2217. margin-bottom: 100px;
  2218. }
  2219. #form {
  2220. margin-top: 100px;
  2221. position: sticky;
  2222. top: 120px;
  2223. }
  2224. @media (max-width: 991px) {
  2225. #form {
  2226. margin-top: 0;
  2227. }
  2228. }
  2229. #form .news-form {
  2230. padding: 25px;
  2231. margin-top: 0;
  2232. }
  2233. @media (max-width: 991px) {
  2234. #form .news-form {
  2235. width: 90vw;
  2236. padding: 25px 50px;
  2237. margin-top: 0;
  2238. }
  2239. }
  2240. #form .title {
  2241. margin-bottom: 0;
  2242. }
  2243. #form .title h4 {
  2244. font-size: 22px;
  2245. }
  2246. #form {
  2247. font-size: 14px;
  2248. }
  2249. .toc-container {
  2250. padding: 1.5rem;
  2251. background: #f9f9f9;
  2252. border: 1px solid #aaa;
  2253. border-radius: 5px;
  2254. }
  2255. .toc-container .title {
  2256. display: block;
  2257. margin-left: 1rem;
  2258. margin-bottom: 0.5rem !important;
  2259. font-size: 1.25rem;
  2260. color: #000;
  2261. }
  2262. .toc-container ul {
  2263. margin-bottom: 0;
  2264. }