custom.css 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676
  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. #blog-post {
  681. width: 90%;
  682. margin: auto;
  683. padding-bottom: 3rem;
  684. }
  685. #blog-post .submit-btn {
  686. padding: 15px 40px 10px;
  687. }
  688. #blog-post h2 {
  689. padding-left: 20px;
  690. margin: 30px 0;
  691. font-size: 2rem;
  692. font-weight: bold;
  693. border-left: 4px solid #ea5413;
  694. letter-spacing: 2px;
  695. line-height: 1.5;
  696. /* font-family: "Proxima Nova", sans-serif;
  697. margin-right: 5px;
  698. font-size: 3.2rem;
  699. padding-left: 2rem;
  700. border-left: 4px solid #ea5413;
  701. letter-spacing: 1px; */
  702. }
  703. #blog-post h3 {
  704. font-size: 1.8rem;
  705. font-weight: 500;
  706. letter-spacing: 1px;
  707. /* font-family: "Proxima Nova", sans-serif; */
  708. /* padding-left: 1rem; */
  709. /* border-left: 4px solid #EA5413; */
  710. }
  711. #blog-post blockquote p {
  712. margin-bottom: 0;
  713. }
  714. /* #blog-post p,
  715. #blog-post li {
  716. font-size: 2rem;
  717. font-family: "Proxima Nova", sans-serif;
  718. letter-spacing: 1px;
  719. } */
  720. #blog-post p,
  721. #blog-post li {
  722. font-size: 16px;
  723. letter-spacing: 1px;
  724. line-height: 32px;
  725. }
  726. #blog-post p {
  727. margin-bottom: 30px;
  728. }
  729. #blog-post code {
  730. color: black;
  731. font-size: 80%;
  732. background-color: transparent;
  733. }
  734. #blog-post .info {
  735. display: flex;
  736. align-items: center;
  737. justify-content: space-between;
  738. }
  739. #blog-post .info ul {
  740. padding: 0;
  741. margin-bottom: 0;
  742. display: flex;
  743. flex-wrap: wrap;
  744. list-style: none;
  745. }
  746. #blog-post .info ul li {
  747. margin: 5px 10px 5px 0;
  748. font-size: 14px;
  749. letter-spacing: 1px;
  750. }
  751. #blog-post .info small {
  752. white-space: nowrap;
  753. }
  754. #blog-post .info a {
  755. display: inline-block;
  756. padding: 5px 10px;
  757. border: solid 1px #eeeeee;
  758. border-radius: 5px;
  759. color: #ea5413;
  760. text-transform: uppercase;
  761. letter-spacing: 0.08em;
  762. font-weight: 700;
  763. }
  764. #blog-post .info a:hover {
  765. border: solid 1px #ea5413;
  766. }
  767. #blog-post .back-link {
  768. display: block;
  769. text-align: center;
  770. margin: 50px 0;
  771. font-size: 16px;
  772. font-weight: bold;
  773. }
  774. #block-vtuber {
  775. padding: 30px 0;
  776. margin-bottom: 40px;
  777. font-family: "Proxima Nova", sans-serif;
  778. color: #181c47;
  779. }
  780. #block-vtuber h2 {
  781. font-family: "Poppins", sans-serif;
  782. font-weight: bolder;
  783. font-size: 36px;
  784. }
  785. #block-vtuber p {
  786. font-size: 16px;
  787. line-height: 32px;
  788. letter-spacing: 1px;
  789. }
  790. .txt-block {
  791. padding: 4rem 0;
  792. }
  793. .sec {
  794. padding: 3rem 0;
  795. margin-bottom: 0;
  796. }
  797. /* .sec01 {
  798. padding-top: 2rem;
  799. } */
  800. .sec-right {
  801. position: absolute;
  802. right: -15%;
  803. top: 10%;
  804. }
  805. .sec02 {
  806. background-color: #ffebe2;
  807. position: relative;
  808. /* clip-path: polygon(0% -10%, 100% 0%, 110% 100%, 0% 100%); */
  809. }
  810. .sec03,
  811. .sec04,
  812. .sec05 {
  813. text-align: center;
  814. padding: 12rem 0;
  815. }
  816. .sec04 {
  817. padding: 8rem 0;
  818. background-color: #ffebe2;
  819. position: relative;
  820. padding-top: 3rem;
  821. }
  822. .sec04::after {
  823. display: none;
  824. content: "";
  825. position: absolute;
  826. top: -66px;
  827. left: 0;
  828. display: block;
  829. width: 100%;
  830. height: 66px;
  831. transform: rotate(180deg);
  832. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  833. background-size: 3840px 66px;
  834. background-position: 0 0;
  835. }
  836. .sec02::after {
  837. display: none;
  838. content: "";
  839. position: absolute;
  840. bottom: -66px;
  841. left: 0;
  842. display: block;
  843. width: 100%;
  844. height: 66px;
  845. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  846. background-size: 3840px 66px;
  847. background-position: 0 0;
  848. }
  849. .sec05 {
  850. position: relative;
  851. padding-top: 0;
  852. padding-bottom: 4rem;
  853. background-color: #ffebe2;
  854. }
  855. .sec05::after {
  856. display: none;
  857. content: "";
  858. position: absolute;
  859. bottom: -66px;
  860. left: 0;
  861. display: block;
  862. width: 100%;
  863. height: 66px;
  864. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  865. background-size: 3840px 66px;
  866. background-position: 0 0;
  867. }
  868. .project {
  869. max-height: 16rem;
  870. }
  871. .project .owl-pagination {
  872. display: none;
  873. }
  874. .owl-carousel.project .owl-buttons {
  875. bottom: 0;
  876. transform: translateX(-50%);
  877. }
  878. .owl-carousel.project .owl-buttons div {
  879. box-shadow:
  880. 3px 3px 16px 0 rgb(98 125 152 / 8%),
  881. 0 -1px 8px 0 rgb(0 0 0 / 4%);
  882. padding: 1rem;
  883. width: 40px;
  884. height: 40px;
  885. border-radius: 50%;
  886. color: black;
  887. }
  888. .owl-carousel.project .owl-buttons div:hover {
  889. box-shadow:
  890. 3px 3px 16px 0 rgb(98 125 152 / 3%),
  891. 0 -1px 8px 0 rgb(0 0 0 / 1%);
  892. }
  893. .owl-carousel .owl-controls .owl-buttons,
  894. .owl-theme .owl-controls .owl-buttons {
  895. top: 110%;
  896. right: 50%;
  897. }
  898. .txt-block .rankblock {
  899. list-style: none;
  900. padding: 0;
  901. }
  902. .txt-block .rankblock li {
  903. font-size: 2.2rem;
  904. margin-bottom: 1rem;
  905. }
  906. .txt-block .rankblock span {
  907. display: inline-block;
  908. width: 45px;
  909. height: 45px;
  910. border-radius: 50%;
  911. background-color: #ea5413;
  912. color: white;
  913. line-height: 35px;
  914. /* margin-right: 1rem; */
  915. font-size: 1.6rem;
  916. padding-left: 6px;
  917. padding-top: 6px;
  918. }
  919. .btn-template-main {
  920. color: #ea5413;
  921. }
  922. .panel-body .btn {
  923. padding: 7px 14px;
  924. border-radius: 0 2rem 2rem 0;
  925. }
  926. .btn {
  927. color: #ea5413;
  928. border: 2px solid #ea5413;
  929. border-radius: 2rem;
  930. }
  931. .btn:hover {
  932. background-color: #ea5413;
  933. border: 2px solid #ea5413;
  934. }
  935. #blog-listing-medium .post {
  936. color: #181c47;
  937. }
  938. #blog-listing-medium .tag-post .image {
  939. position: relative;
  940. overflow: visible;
  941. }
  942. #blog-listing-medium .tag-post .image::after {
  943. position: absolute;
  944. content: " ";
  945. right: 2rem;
  946. bottom: 2rem;
  947. width: 100%;
  948. height: 100%;
  949. z-index: -1;
  950. }
  951. #blog-listing-medium .tag-post .image img {
  952. border: 5px solid white;
  953. }
  954. #blog-listing-medium .tag-post:nth-of-type(3n + 1) .image::after {
  955. background-color: thistle;
  956. }
  957. #blog-listing-medium .tag-post:nth-of-type(3n + 2) .image::after {
  958. background-color: #f3f3f9;
  959. }
  960. #blog-listing-medium .tag-post:nth-of-type(3n) .image::after {
  961. background-color: #eba764;
  962. }
  963. .v-tabs {
  964. max-width: 100%;
  965. }
  966. .v-tabs-nav li {
  967. float: left;
  968. width: 25%;
  969. list-style: none;
  970. }
  971. .v-tabs-nav li a {
  972. color: grey;
  973. font-size: 2.5rem;
  974. letter-spacing: 2px;
  975. display: block;
  976. font-weight: 600;
  977. padding: 10px 0;
  978. text-align: center;
  979. text-decoration: none;
  980. }
  981. .v-tabs-nav li a:hover {
  982. color: black;
  983. }
  984. .v-tab-active a {
  985. background: #fff;
  986. border-bottom: 2px solid grey;
  987. color: #2db34a;
  988. cursor: default;
  989. }
  990. .v-tabs-stage {
  991. clear: both;
  992. padding: 40px 30px 10px 30px;
  993. position: relative;
  994. top: -1px;
  995. text-align: left;
  996. }
  997. #block-vtuber .v-tabs-stage h2 {
  998. font-size: 2.5rem;
  999. }
  1000. #block-vtuber .v-tabs .owl-page span {
  1001. background: #ea5413;
  1002. }
  1003. .d-tabs {
  1004. max-width: 100%;
  1005. }
  1006. .d-tabs-nav li {
  1007. float: left;
  1008. width: 50%;
  1009. list-style: none;
  1010. }
  1011. .d-tabs-nav li a {
  1012. color: grey;
  1013. font-size: 2.5rem;
  1014. letter-spacing: 2px;
  1015. display: block;
  1016. font-weight: 600;
  1017. padding: 10px 0;
  1018. text-align: center;
  1019. text-decoration: none;
  1020. }
  1021. .d-tabs-nav li a:hover {
  1022. color: black;
  1023. }
  1024. .d-tab-active a {
  1025. background: transparent;
  1026. border-bottom: 2px solid grey;
  1027. color: #2db34a;
  1028. cursor: default;
  1029. }
  1030. .d-tabs-stage {
  1031. clear: both;
  1032. padding: 40px 30px 10px 30px;
  1033. position: relative;
  1034. top: -1px;
  1035. text-align: left;
  1036. }
  1037. #block-vtuber .d-tabs-stage h2 {
  1038. font-size: 2.5rem;
  1039. }
  1040. .m-tabs {
  1041. max-width: 100%;
  1042. }
  1043. .m-tabs-nav li {
  1044. float: left;
  1045. width: 50%;
  1046. list-style: none;
  1047. }
  1048. .m-tabs-nav li a {
  1049. color: grey;
  1050. font-size: 2.5rem;
  1051. letter-spacing: 2px;
  1052. display: block;
  1053. font-weight: 600;
  1054. padding: 10px 0;
  1055. text-align: center;
  1056. text-decoration: none;
  1057. }
  1058. .m-tabs-nav li a:hover {
  1059. color: black;
  1060. }
  1061. .m-tab-active a {
  1062. background: transparent;
  1063. border-bottom: 2px solid grey;
  1064. color: #2db34a;
  1065. cursor: default;
  1066. }
  1067. .m-tabs-stage {
  1068. clear: both;
  1069. padding: 40px 30px 10px 30px;
  1070. position: relative;
  1071. top: -1px;
  1072. text-align: left;
  1073. }
  1074. #block-vtuber .m-tabs-stage h2 {
  1075. font-size: 2.5rem;
  1076. }
  1077. .sec06 {
  1078. text-align: center;
  1079. padding: 2rem 0;
  1080. position: relative;
  1081. color: black;
  1082. }
  1083. .sec06-left {
  1084. position: absolute;
  1085. left: 2rem;
  1086. top: -10rem;
  1087. }
  1088. .sec06-right {
  1089. position: absolute;
  1090. right: 2rem;
  1091. bottom: 5rem;
  1092. }
  1093. .sec06 > .container {
  1094. box-shadow: 0px 0px 8px 2px rgb(212, 212, 212);
  1095. transform: translateY(-12rem);
  1096. background-color: white;
  1097. padding: 3rem 0;
  1098. padding-bottom: 7rem;
  1099. position: relative;
  1100. }
  1101. .sec06 .sec06-icons {
  1102. position: absolute;
  1103. left: 4rem;
  1104. bottom: 2rem;
  1105. }
  1106. .sec06 .sec06-icons img {
  1107. margin-right: 1rem;
  1108. }
  1109. .grow-title {
  1110. text-align: center;
  1111. }
  1112. .grow-txt {
  1113. font-size: 1.2rem;
  1114. }
  1115. .grow-call {
  1116. font-weight: 700;
  1117. font-family: Arial, Helvetica, sans-serif;
  1118. font-size: 2.3rem;
  1119. display: block;
  1120. margin-top: 1.5rem;
  1121. margin-bottom: 1rem;
  1122. color: #ea5413;
  1123. }
  1124. .grow-btn {
  1125. padding: 1.2rem 7rem;
  1126. font-size: 2.5rem;
  1127. border: 2px solid #ea5413;
  1128. background: transparent;
  1129. outline: none;
  1130. border-radius: 5rem;
  1131. transition: all 0.3s;
  1132. display: inline-block;
  1133. color: #ea5413;
  1134. text-decoration: none;
  1135. }
  1136. .grow-btn:hover {
  1137. color: white;
  1138. background: #ea5413;
  1139. text-decoration: none;
  1140. }
  1141. .grow-img {
  1142. display: block;
  1143. margin: 0 auto;
  1144. margin-top: 1rem;
  1145. }
  1146. .owl-item {
  1147. height: 300px;
  1148. overflow: hidden;
  1149. }
  1150. .advantages-list {
  1151. text-align: center;
  1152. }
  1153. .txt-block .advantages-list span {
  1154. text-align: center;
  1155. }
  1156. @media (max-width: 992px) {
  1157. .sec-usecase .container {
  1158. width: 85%;
  1159. max-width: 1200px;
  1160. }
  1161. .sec-steps .steps-block {
  1162. padding: 0rem;
  1163. }
  1164. .sec-steps .steps-block::after {
  1165. width: 100%;
  1166. height: 12rem;
  1167. }
  1168. .sec-steps .steps-imgfr {
  1169. width: 100%;
  1170. height: 20rem;
  1171. }
  1172. .sec-steps .steps-imgfr img {
  1173. width: 100%;
  1174. }
  1175. .sec-steps .steps-txt h3.steps-sub {
  1176. font-size: 1.3rem;
  1177. }
  1178. .sec-steps .steps-txt span {
  1179. width: 25px;
  1180. height: 25px;
  1181. background-color: #ea5413;
  1182. font-size: 1.3rem;
  1183. line-height: 25px;
  1184. }
  1185. .sec-features .row {
  1186. margin: 5rem 0;
  1187. }
  1188. .sec-features .features-col {
  1189. position: relative;
  1190. height: 25vh;
  1191. }
  1192. .sec-features .features-col .features-block {
  1193. left: 2rem;
  1194. top: 1rem;
  1195. }
  1196. .sec-features .row .d-md-block {
  1197. display: none;
  1198. }
  1199. .sec-features .row .d-block {
  1200. display: block;
  1201. }
  1202. .sec-hero .col-left {
  1203. margin-top: 2.5rem;
  1204. }
  1205. }
  1206. @media (max-width: 765px) {
  1207. .sec-steps .steps-block {
  1208. padding: 2rem 15rem;
  1209. }
  1210. .sec-steps .steps-imgfr {
  1211. width: 100%;
  1212. height: 32vh;
  1213. }
  1214. .sec-usecase .row > div {
  1215. width: 50%;
  1216. }
  1217. .sec-features {
  1218. margin-bottom: 0;
  1219. }
  1220. .blog-tabs {
  1221. flex-direction: column;
  1222. }
  1223. .blog-tabs .blog-tabs-stage {
  1224. width: 95%;
  1225. margin-top: -4rem;
  1226. background-color: white;
  1227. }
  1228. .blog-tabs .blog-tabs-nav {
  1229. width: 95%;
  1230. background-color: #f0f0f0;
  1231. padding: 4rem 2.5rem;
  1232. list-style: none;
  1233. box-shadow: 0 2px 5px -2px rgb(173, 173, 173);
  1234. text-align: left;
  1235. }
  1236. .blog-tabs .blog-tabs-nav li {
  1237. padding: 10px;
  1238. border-bottom: 1px dashed grey;
  1239. }
  1240. .blog-tabs .blog-tabs-nav li a {
  1241. color: #ea5413;
  1242. }
  1243. .footer .container .row {
  1244. flex-direction: column;
  1245. text-align: center;
  1246. }
  1247. .navbar-collapse .navbar-nav li {
  1248. display: inline-block;
  1249. }
  1250. .nav > li {
  1251. display: inline-block;
  1252. }
  1253. }
  1254. @media (max-width: 576px) {
  1255. .sec {
  1256. padding-left: 2rem;
  1257. padding-right: 2rem;
  1258. }
  1259. .sec04 {
  1260. padding: 8rem 0;
  1261. background-color: #ffebe2;
  1262. position: relative;
  1263. padding-top: 3rem;
  1264. }
  1265. .project {
  1266. max-height: 20rem;
  1267. }
  1268. .sec04 {
  1269. padding: 12rem 0;
  1270. padding-top: 3rem;
  1271. }
  1272. .sec-hero {
  1273. padding: 4rem 0;
  1274. }
  1275. .sec-hero .hero-title {
  1276. font-size: 2.5rem;
  1277. }
  1278. .sec-steps .steps-block {
  1279. padding: 2rem 6rem;
  1280. }
  1281. .sec-steps .steps-imgfr {
  1282. width: 100%;
  1283. height: 20rem;
  1284. }
  1285. .sec-steps .steps-txt h3.steps-sub {
  1286. font-size: 1.5rem;
  1287. }
  1288. .sec-usecase .container {
  1289. width: 98%;
  1290. max-width: 1200px;
  1291. }
  1292. .sec-usecase .row > div {
  1293. width: 100%;
  1294. }
  1295. .sec-usecase .usecase-block {
  1296. padding: 0 4rem;
  1297. }
  1298. .hero-purple {
  1299. width: 130px;
  1300. }
  1301. .hero-orange-s {
  1302. left: 0%;
  1303. width: 60px;
  1304. }
  1305. .hero-textgrp {
  1306. left: 8%;
  1307. width: 200px;
  1308. }
  1309. .hero-video {
  1310. right: 5%;
  1311. width: 90px;
  1312. }
  1313. .hero-amplify {
  1314. width: 90px;
  1315. }
  1316. #content .container {
  1317. margin-top: 0;
  1318. }
  1319. .sec01 {
  1320. padding-top: 0;
  1321. }
  1322. #heading-breadcrumbs {
  1323. margin-bottom: 0;
  1324. background: white, url("https://i.imgur.com/N7tVTSh.png");
  1325. }
  1326. #heading-breadcrumbs a {
  1327. font-size: 1rem;
  1328. }
  1329. #block-vtuber {
  1330. padding: 0;
  1331. }
  1332. #blog-listing-medium .tag-post:nth-of-type(3n + 1) .image::after {
  1333. background-color: transparent;
  1334. }
  1335. #blog-listing-medium .tag-post:nth-of-type(3n + 2) .image::after {
  1336. background-color: transparent;
  1337. }
  1338. #blog-listing-medium .tag-post:nth-of-type(3n) .image::after {
  1339. background-color: transparent;
  1340. }
  1341. .owl-carousel .owl-controls .owl-buttons,
  1342. .owl-theme .owl-controls .owl-buttons {
  1343. top: 130%;
  1344. }
  1345. .owl-item {
  1346. height: unset;
  1347. }
  1348. .v-tabs-nav {
  1349. padding: 0 30px;
  1350. }
  1351. .d-tabs-nav {
  1352. padding: 0 30px;
  1353. }
  1354. .m-tabs-nav {
  1355. padding: 0 30px;
  1356. }
  1357. }
  1358. @media (max-width: 992px) {
  1359. .container-footer {
  1360. flex-direction: column;
  1361. }
  1362. .container-footer > div {
  1363. margin-bottom: 1.5rem;
  1364. }
  1365. .video-col {
  1366. margin-bottom: 2rem;
  1367. }
  1368. .mb-mobile {
  1369. margin-bottom: 5rem;
  1370. }
  1371. .step-box {
  1372. margin-bottom: 2rem;
  1373. }
  1374. }
  1375. .btn:hover {
  1376. color: white;
  1377. }
  1378. .box-steps {
  1379. border: 1px solid #181c47;
  1380. padding: 1rem;
  1381. border-radius: 5rem;
  1382. position: relative;
  1383. }
  1384. .box-steps .step-box {
  1385. position: absolute;
  1386. left: -5px;
  1387. top: -5px;
  1388. width: 4rem;
  1389. height: 4rem;
  1390. background-color: white;
  1391. }
  1392. .box-steps .step-box span {
  1393. font-size: 3rem;
  1394. font-weight: 600;
  1395. color: #38a7bb;
  1396. }
  1397. .box-steps .icon {
  1398. border: none;
  1399. }
  1400. .box-steps .icon > i {
  1401. font-size: 3.5rem;
  1402. }
  1403. .box-video {
  1404. min-height: 280px;
  1405. }
  1406. .footer-btn-text {
  1407. font-size: 2rem;
  1408. color: white;
  1409. }
  1410. .table {
  1411. display: flex;
  1412. /* box-shadow: 0 0 5px 1px rgb(197, 197, 197); */
  1413. border-radius: 15px;
  1414. align-items: center;
  1415. height: 280px;
  1416. }
  1417. .table .column {
  1418. min-height: 280px;
  1419. background-color: white;
  1420. padding: 10px 2rem;
  1421. }
  1422. .table .column .body-company {
  1423. font-size: 1.6rem;
  1424. font-weight: 500;
  1425. }
  1426. .fa-check {
  1427. margin-left: 4px;
  1428. color: rgb(5, 212, 5);
  1429. }
  1430. .table .column .body-head {
  1431. color: gray;
  1432. }
  1433. .table .column-first {
  1434. border-radius: 15px 0 0 15px;
  1435. }
  1436. .table .column-last {
  1437. border-radius: 0 15px 15px 0;
  1438. }
  1439. .table .column-choozmo {
  1440. border: 1px solid rgb(212, 212, 212);
  1441. box-shadow: 0 0 5px 1px rgb(197, 197, 197);
  1442. border-radius: 15px;
  1443. height: 340px;
  1444. }
  1445. .table .column div {
  1446. min-height: 65px;
  1447. }
  1448. .navbar-brand > img {
  1449. display: inline-block;
  1450. }
  1451. .navbar-brand .logo {
  1452. width: 140px;
  1453. }
  1454. @media (max-width: 991px) {
  1455. .navbar-brand .logo {
  1456. width: 120px;
  1457. }
  1458. }
  1459. @media (max-width: 767px) {
  1460. .visible-xs {
  1461. display: inline-block !important;
  1462. }
  1463. }
  1464. .logo {
  1465. width: 140px;
  1466. }
  1467. @media (max-width: 991px) {
  1468. .logo {
  1469. width: 120px;
  1470. }
  1471. }
  1472. @media (max-width: 1200px) {
  1473. .navbar-expand-lg .navbar-nav .nav-link {
  1474. padding-right: 0.3rem;
  1475. padding-left: 0.3rem;
  1476. }
  1477. }
  1478. .logo-sm {
  1479. width: 150px;
  1480. height: 40px;
  1481. }
  1482. .footer-img {
  1483. height: 60px;
  1484. }
  1485. .followus {
  1486. display: flex;
  1487. align-items: center;
  1488. justify-content: flex-start;
  1489. margin-top: 1rem;
  1490. }
  1491. .followus-txt {
  1492. display: inline-block;
  1493. margin-right: 1rem;
  1494. color: white;
  1495. font-weight: 600;
  1496. }
  1497. .followus .followus-img {
  1498. margin-right: 1rem;
  1499. }
  1500. .bar.mb-0 {
  1501. margin-bottom: 0;
  1502. }
  1503. .headingvf {
  1504. margin-bottom: 1.5rem;
  1505. }
  1506. .headingvf-sub {
  1507. margin-bottom: 4rem;
  1508. }
  1509. .headingvf-sub h4 {
  1510. color: grey;
  1511. font-weight: 400;
  1512. font-size: 1.6rem;
  1513. line-height: 2.2rem;
  1514. }
  1515. .testimonial-img {
  1516. width: 200px;
  1517. border-radius: 50%;
  1518. display: block;
  1519. margin-left: auto;
  1520. margin-right: auto;
  1521. }
  1522. .testimonial-title {
  1523. font-size: 2rem;
  1524. }
  1525. .testimonial-text {
  1526. font-size: 1.6rem;
  1527. }
  1528. .testimonials-pro {
  1529. margin-bottom: 1rem;
  1530. }
  1531. .testimonials-pro p {
  1532. font-size: 1.6rem;
  1533. }
  1534. .testimonials-goto-btn a {
  1535. animation-name: move;
  1536. animation-duration: 1.5s;
  1537. animation-delay: 0;
  1538. animation-iteration-count: infinite;
  1539. animation-direction: normal;
  1540. animation-timing-function: linear;
  1541. }
  1542. @keyframes move {
  1543. 0% {
  1544. box-shadow: 0 0 0 transparent;
  1545. }
  1546. 50% {
  1547. box-shadow: 5px 5px 4px #887e74;
  1548. }
  1549. 100% {
  1550. box-shadow: 0 0 0 transparent;
  1551. }
  1552. }
  1553. .row-rank {
  1554. height: min-content;
  1555. }
  1556. .rank-box {
  1557. min-height: min-content;
  1558. }
  1559. .rank .rank-word {
  1560. display: inline-block;
  1561. font-weight: 500;
  1562. position: relative;
  1563. }
  1564. .rank .rank-word::after {
  1565. position: absolute;
  1566. content: " ";
  1567. width: 100%;
  1568. height: 2px;
  1569. left: 20%;
  1570. top: 90%;
  1571. background-color: #499aa8af;
  1572. }
  1573. .rank-num {
  1574. display: inline-block;
  1575. font-size: 3.5rem;
  1576. color: #38a7bb;
  1577. font-style: italic;
  1578. font-weight: 600;
  1579. }
  1580. .video-steps {
  1581. margin-top: 6rem;
  1582. }
  1583. .btn-video {
  1584. text-align: center;
  1585. display: block;
  1586. width: 18rem;
  1587. margin: 1rem auto;
  1588. }
  1589. @media (max-width: 992px) {
  1590. .video-steps {
  1591. margin-top: 1rem;
  1592. }
  1593. }
  1594. .video-steps {
  1595. display: flex;
  1596. text-align: center;
  1597. }
  1598. .steps-box {
  1599. flex: 20%;
  1600. position: relative;
  1601. }
  1602. .steps-icon {
  1603. font-size: 5rem;
  1604. color: #38a7bb;
  1605. }
  1606. .steps-name {
  1607. font-size: 1.8rem;
  1608. color: rgb(68, 67, 67);
  1609. margin-bottom: 1rem;
  1610. }
  1611. .steps-num {
  1612. position: absolute;
  1613. left: 15%;
  1614. top: -2.5rem;
  1615. font-size: 4rem;
  1616. color: #72969c;
  1617. font-weight: 500;
  1618. }
  1619. .card {
  1620. margin: 1.5rem;
  1621. margin-right: 0rem;
  1622. box-shadow: 4px 4px 1px rgb(0, 0, 0, 0.1);
  1623. transition: all 0.5s;
  1624. text-align: center;
  1625. /* height: 42vh; */
  1626. max-height: 45vh;
  1627. border-radius: 1rem;
  1628. background-color: #fff;
  1629. position: relative;
  1630. }
  1631. .vt-style {
  1632. display: inline-block;
  1633. padding: 0.3rem 0.4rem;
  1634. background-color: #ffebe2;
  1635. margin: 0 0.2rem;
  1636. }
  1637. .vt-ribbon {
  1638. position: absolute;
  1639. top: 1rem;
  1640. left: -10px;
  1641. width: 25%;
  1642. height: 30px;
  1643. background-color: #ffba9d;
  1644. box-shadow: 1px 1px 1px rgb(0, 0, 0, 0.5);
  1645. text-align: center;
  1646. color: #181c47;
  1647. transition: 0.4s;
  1648. }
  1649. .vt-ribbon p {
  1650. display: block;
  1651. position: absolute;
  1652. top: 50%;
  1653. left: 50%;
  1654. transform: translate(-50%, -50%);
  1655. transition: 0.1s;
  1656. }
  1657. .vt-ribbon::before {
  1658. position: absolute;
  1659. left: 0px;
  1660. z-index: -1;
  1661. width: 10px;
  1662. height: 100%;
  1663. background-color: #f7a17d;
  1664. content: "";
  1665. transition: 0.2s;
  1666. transition-delay: 0.5s;
  1667. }
  1668. .vt-ribbon::after {
  1669. position: absolute;
  1670. top: 100%;
  1671. left: 0px;
  1672. z-index: -1;
  1673. width: 20px;
  1674. height: 9px;
  1675. background-color: #f7a17d;
  1676. content: "";
  1677. transition: 0.2s;
  1678. transform: rotate(45deg);
  1679. }
  1680. .card:hover {
  1681. transform: translate(-3px, -3px);
  1682. }
  1683. .card:hover .vt-ribbon {
  1684. width: 0;
  1685. }
  1686. .card:hover .vt-ribbon p {
  1687. opacity: 0;
  1688. }
  1689. .card:hover .vt-ribbon::before {
  1690. left: 10px;
  1691. }
  1692. .card:hover .vt-ribbon::after {
  1693. left: 10px;
  1694. }
  1695. .card-img-fr {
  1696. width: 100%;
  1697. transition: all 0.8s;
  1698. /* height: 20vh; */
  1699. background-size: cover;
  1700. background-position: top;
  1701. background-repeat: no-repeat;
  1702. background-color: #fff;
  1703. }
  1704. .card-img-top {
  1705. height: 30vh;
  1706. object-fit: cover;
  1707. }
  1708. .card-title {
  1709. font-size: 2rem;
  1710. margin-bottom: 2rem;
  1711. }
  1712. .card .card-body {
  1713. padding: 1rem;
  1714. }
  1715. .card .card-link {
  1716. display: block;
  1717. color: #ea5413;
  1718. border: 2px solid #ea5413;
  1719. border-radius: 2rem;
  1720. padding: 5px 12px;
  1721. cursor: pointer;
  1722. background-color: transparent;
  1723. transition: all 0.4s;
  1724. margin: 1rem auto;
  1725. }
  1726. .card .card-link:hover {
  1727. color: white;
  1728. background-color: #ea5413;
  1729. }
  1730. .more-modal .btn-primary {
  1731. background-color: white;
  1732. color: #ea5413;
  1733. }
  1734. .more-modal .modal-header {
  1735. border-bottom: none;
  1736. }
  1737. .more-modal .modal-footer {
  1738. border-top: none;
  1739. }
  1740. .more-modal .close {
  1741. font-size: 26px;
  1742. }
  1743. @media (max-width: 765px) {
  1744. #vt-list .row > div {
  1745. padding-left: 0px;
  1746. }
  1747. }
  1748. .modal-imgfr {
  1749. width: 100%;
  1750. height: 50vh;
  1751. background-size: contain;
  1752. background-position: center;
  1753. background-repeat: no-repeat;
  1754. }
  1755. .modal-slide-item {
  1756. width: 100%;
  1757. height: 50vh;
  1758. background-position: center center;
  1759. background-size: contain;
  1760. background-repeat: no-repeat;
  1761. cursor: pointer;
  1762. }
  1763. .modal-body-title {
  1764. font-size: 2rem;
  1765. padding: 0.6rem 0;
  1766. margin: 1.5rem 0;
  1767. position: relative;
  1768. display: inline-block;
  1769. }
  1770. .modal-body-title::after {
  1771. position: absolute;
  1772. left: 0;
  1773. top: 0;
  1774. width: 100%;
  1775. height: 100%;
  1776. border-bottom: 3px solid #ea5413;
  1777. content: " ";
  1778. }
  1779. .modal-body-icon {
  1780. margin: 1.5rem 0;
  1781. margin-bottom: 0.8rem;
  1782. display: block;
  1783. font-size: 1.6rem;
  1784. }
  1785. .modal-body-demand {
  1786. position: relative;
  1787. display: inline-block;
  1788. padding: 0.6rem 0;
  1789. margin: 1rem 0;
  1790. }
  1791. .modal-body-demand::after {
  1792. position: absolute;
  1793. left: 0;
  1794. top: 0;
  1795. width: 100%;
  1796. height: 100%;
  1797. border-bottom: 3px solid #ea5413;
  1798. content: " ";
  1799. }
  1800. .modal-body-follow {
  1801. position: relative;
  1802. display: inline-block;
  1803. padding: 0.6rem 0;
  1804. margin: 1rem 0;
  1805. }
  1806. .modal-body-follow::after {
  1807. position: absolute;
  1808. left: 0;
  1809. top: 0;
  1810. width: 100%;
  1811. height: 100%;
  1812. border-bottom: 3px solid #ea5413;
  1813. content: " ";
  1814. }
  1815. .modal-socials .footer-socials a {
  1816. margin-right: 1.2rem;
  1817. }
  1818. .hashtag-pill {
  1819. padding: 0.3rem;
  1820. display: inline-block;
  1821. background-color: #ffc107;
  1822. border-radius: 0.3rem;
  1823. margin: 1.2rem 0.3rem;
  1824. }
  1825. .modal-body-music {
  1826. display: flex;
  1827. justify-content: space-around;
  1828. align-items: center;
  1829. }
  1830. .music-progress {
  1831. position: relative;
  1832. width: calc(100% - 70px);
  1833. margin-top: 20px;
  1834. margin-bottom: 20px;
  1835. margin-left: 10px;
  1836. cursor: pointer;
  1837. background: rgba(211, 211, 211, 0.3);
  1838. }
  1839. .music-progress:before {
  1840. content: "";
  1841. position: absolute;
  1842. left: 0;
  1843. top: 50%;
  1844. transform: translateY(-50%);
  1845. width: 100%;
  1846. height: 5px;
  1847. background: rgba(211, 211, 211, 0.3);
  1848. border-radius: 5px;
  1849. z-index: -1;
  1850. }
  1851. .music-progress-bar {
  1852. position: relative;
  1853. width: 0;
  1854. height: 5px;
  1855. border-radius: 5px;
  1856. background-color: rgb(168, 209, 255);
  1857. }
  1858. .music-progress-bar:after {
  1859. content: "";
  1860. position: absolute;
  1861. right: -6px;
  1862. top: 50%;
  1863. transform: translateY(-50%);
  1864. width: 12px;
  1865. height: 12px;
  1866. background: rgba(255, 255, 255, 1);
  1867. filter: drop-shadow(0px 0px 4px rgba(46, 45, 45, 1));
  1868. border-radius: 50%;
  1869. box-sizing: border-box;
  1870. }
  1871. .demand-item {
  1872. padding: 0.2rem 0.5rem;
  1873. position: relative;
  1874. z-index: 2;
  1875. }
  1876. .demand-item::after {
  1877. position: absolute;
  1878. left: 5%;
  1879. bottom: 0;
  1880. background-color: antiquewhite;
  1881. width: 90%;
  1882. height: 0.3rem;
  1883. content: "";
  1884. z-index: 1;
  1885. }
  1886. .catalog {
  1887. border: 1px solid antiquewhite;
  1888. background-color: antiquewhite;
  1889. }
  1890. .seo-list-content a {
  1891. font-size: 18px;
  1892. font-weight: 400;
  1893. line-height: 28px;
  1894. letter-spacing: 1px;
  1895. }
  1896. .seo-list-header {
  1897. font-size: 18px;
  1898. }
  1899. .seo-list-item-wrap {
  1900. margin: 2px 0 0 14px;
  1901. }
  1902. .seo-content-box {
  1903. padding: 14px 18px 18px;
  1904. background: #fafafa;
  1905. }
  1906. .seo-list-header {
  1907. margin-bottom: 6px;
  1908. }
  1909. .seo-list p {
  1910. margin-bottom: 1.6em !important;
  1911. letter-spacing: 1px;
  1912. }
  1913. .seo-list table {
  1914. width: 100%;
  1915. margin-bottom: 1.4em;
  1916. max-width: 100%;
  1917. border: 1px solid #eaeaea;
  1918. font-size: 16px;
  1919. }
  1920. .seo-list table tbody tr td {
  1921. width: 40%;
  1922. padding: 1em 1.4em;
  1923. border: solid 1px #bbb;
  1924. text-align: left;
  1925. }
  1926. .seo-list table th {
  1927. padding: 1em 1.4em;
  1928. border: solid 1px #bbb;
  1929. text-align: left;
  1930. }
  1931. .seo-list table thead th {
  1932. padding: 1em 1.4em;
  1933. border: solid 1px #bbb;
  1934. text-align: left;
  1935. }
  1936. .seo-list .fw-bold {
  1937. font-weight: 900;
  1938. }
  1939. .seo-list ul {
  1940. margin-bottom: 32px;
  1941. }
  1942. .seo-list ul li {
  1943. margin-bottom: 0.8em;
  1944. }
  1945. .seo-list .learn-more {
  1946. padding: 10px 20px;
  1947. border: 1px solid #ea5413;
  1948. border-radius: 30px;
  1949. background: #ea5413;
  1950. color: #fff;
  1951. -webkit-transition: 0.3s;
  1952. transition: 0.3s;
  1953. font-size: 18px;
  1954. }
  1955. .seo-list .learn-more:hover {
  1956. color: #ea5413;
  1957. background: #fff;
  1958. }
  1959. @media screen and (max-width: 576px) {
  1960. .seo-list .learn-more {
  1961. margin-top: 15px;
  1962. }
  1963. }
  1964. .seo-img {
  1965. width: 90% !important;
  1966. }
  1967. .about-action {
  1968. margin-top: 150px;
  1969. }
  1970. .about-action h2 {
  1971. position: relative;
  1972. top: 30px;
  1973. z-index: 1;
  1974. font-size: 28px;
  1975. }
  1976. .about-action .action-triangle {
  1977. margin-top: -1px;
  1978. }
  1979. .about-action .action-clip {
  1980. padding: 0;
  1981. }
  1982. .about-action .action-btn {
  1983. color: #000;
  1984. font-size: 20px;
  1985. font-weight: bold;
  1986. }
  1987. .aicustomer-sec01 {
  1988. width: 95%;
  1989. margin: 100px auto;
  1990. }
  1991. .aicustomer-sec01 img {
  1992. border-radius: 15px;
  1993. }
  1994. .aicustomer-sec02-0 {
  1995. width: 70%;
  1996. margin: 30px auto;
  1997. /* background-image: url(../img/aicustomer/aicustomerbg.png);
  1998. background-repeat: no-repeat;
  1999. background-size: contain; */
  2000. }
  2001. .aicustomer-sec02-1 {
  2002. justify-content: space-between;
  2003. }
  2004. .aicustomer-sec02-1,
  2005. .aicustomer-sec02 p {
  2006. margin-top: 30px;
  2007. }
  2008. .aicustomer-sec02-title {
  2009. margin-left: 70px;
  2010. font-weight: bold;
  2011. }
  2012. @media (max-width: 991px) {
  2013. .aicustomer-sec02-title {
  2014. margin-left: 0;
  2015. }
  2016. }
  2017. .aicustomer-title-line {
  2018. width: 700px;
  2019. height: auto;
  2020. object-fit: cover;
  2021. }
  2022. @media (max-width: 1200px) {
  2023. .aicustomer-title-line {
  2024. width: 600px;
  2025. }
  2026. }
  2027. @media (max-width: 767px) {
  2028. .aicustomer-title-line {
  2029. width: 80vw;
  2030. }
  2031. }
  2032. .aicustomer-sec02 {
  2033. background-image: url(../img/aicustomer/aicustomerbg.png);
  2034. background-repeat: no-repeat;
  2035. background-size: contain;
  2036. background-position: center;
  2037. }
  2038. .aicustoerSec03 {
  2039. background-image: url(../img/aicustomer/aiccc.webp);
  2040. background-attachment: fixed;
  2041. background-size: cover;
  2042. background-repeat: no-repeat;
  2043. height: 500px;
  2044. }
  2045. @media screen and (max-width: 768px) {
  2046. .aicustoerSec03 {
  2047. background-image: url(../img/aicustomer/aicustomer-m-bg.webp);
  2048. background-size: contain;
  2049. /* background-position: center; */
  2050. background-attachment: scroll;
  2051. height: 300px;
  2052. }
  2053. }
  2054. .aicustoerSec04,
  2055. .aicustomer-faq {
  2056. width: 95%;
  2057. margin: 50px auto;
  2058. }
  2059. .aisec02img-3 {
  2060. margin-top: -30px;
  2061. }
  2062. @media screen and (max-width: 768px) {
  2063. .aisec02img-3 {
  2064. margin-top: 0px;
  2065. }
  2066. }
  2067. .aicustoerSec05 {
  2068. background-image: url(../img/aicustomer/aicustomerbg2.webp);
  2069. background-attachment: fixed;
  2070. background-size: cover;
  2071. background-repeat: no-repeat;
  2072. height: 500px;
  2073. }
  2074. @media screen and (max-width: 768px) {
  2075. .aicustoerSec05 {
  2076. background-image: url(../img/aicustomer/aicustomer-m-bg2.webp);
  2077. background-size: contain;
  2078. /* background-position: center; */
  2079. background-attachment: scroll;
  2080. height: 300px;
  2081. }
  2082. }
  2083. .arrow-wave {
  2084. display: inline-block;
  2085. cursor: pointer;
  2086. margin-top: -130px;
  2087. font-size: 0;
  2088. /* background-color: rgba(100,100,100,0.4); */
  2089. }
  2090. @media screen and (max-width: 768px) {
  2091. .arrow-wave {
  2092. display: none;
  2093. }
  2094. }
  2095. .arrow-wave span {
  2096. display: block;
  2097. position: relative;
  2098. height: 19px;
  2099. width: 30px;
  2100. /* background-color: rgba(100,100,100,0.4); */
  2101. opacity: 0.2;
  2102. }
  2103. .arrow-wave span::before,
  2104. .arrow-wave span::after {
  2105. display: block;
  2106. content: "";
  2107. position: absolute;
  2108. height: 4px;
  2109. width: 23px;
  2110. background-color: #fff;
  2111. }
  2112. .arrow-wave span::before {
  2113. top: -2px;
  2114. left: 0;
  2115. transform-origin: left center;
  2116. transform: rotate(45deg);
  2117. }
  2118. .arrow-wave span::after {
  2119. top: -2px;
  2120. right: 0;
  2121. transform-origin: right center;
  2122. transform: rotate(-45deg);
  2123. }
  2124. .arrow-wave span:nth-child(1n) {
  2125. animation: animate-arrow-wave 2s infinite;
  2126. animation-delay: 0.25s;
  2127. }
  2128. .arrow-wave span:nth-child(2n) {
  2129. animation: animate-arrow-wave 2s infinite;
  2130. animation-delay: 0.5s;
  2131. }
  2132. .arrow-wave span:nth-child(3n) {
  2133. animation: animate-arrow-wave 2s infinite;
  2134. animation-delay: 0.75s;
  2135. }
  2136. @keyframes animate-arrow-wave {
  2137. 0% {
  2138. opacity: 0.2;
  2139. }
  2140. 25% {
  2141. opacity: 0.2;
  2142. }
  2143. 50% {
  2144. opacity: 0.2;
  2145. }
  2146. 75% {
  2147. opacity: 1;
  2148. }
  2149. 100% {
  2150. opacity: 0.2;
  2151. }
  2152. }
  2153. .aicustomer-sec01-cta-arrow {
  2154. margin-top: -30px;
  2155. }
  2156. .aicustomer-faq h2 {
  2157. font-weight: bold;
  2158. }
  2159. .aicustomer-faq .accordion {
  2160. margin-top: 30px;
  2161. }
  2162. #aicustomerCta .sec-action .action-clip {
  2163. width: 100%;
  2164. background-color: #ea5413;
  2165. padding: 2rem 0;
  2166. border-color: #ea5413;
  2167. }
  2168. #aicustomerCta .sec-action h2 {
  2169. font-size: 2rem;
  2170. line-height: 46px;
  2171. }
  2172. #aicustomerCta a {
  2173. background-color: white;
  2174. color: #ea5413;
  2175. text-decoration: none;
  2176. font-size: 20px;
  2177. font-weight: 600;
  2178. padding: 20px 30px;
  2179. }
  2180. #all {
  2181. width: 100%;
  2182. /* overflow: hidden; */
  2183. }
  2184. @media (max-width: 991px) {
  2185. #all {
  2186. overflow: hidden;
  2187. }
  2188. }
  2189. #content #form {
  2190. margin-bottom: 100px;
  2191. }
  2192. #form {
  2193. margin-top: 100px;
  2194. position: sticky;
  2195. top: 120px;
  2196. }
  2197. @media (max-width: 991px) {
  2198. #form {
  2199. margin-top: 0;
  2200. }
  2201. }
  2202. #form .news-form {
  2203. padding: 25px;
  2204. margin-top: 0;
  2205. }
  2206. @media (max-width: 991px) {
  2207. #form .news-form {
  2208. width: 90vw;
  2209. padding: 25px 50px;
  2210. margin-top: 0;
  2211. }
  2212. }
  2213. #form .title {
  2214. margin-bottom: 0;
  2215. }
  2216. #form .title h4 {
  2217. font-size: 22px;
  2218. }
  2219. #form {
  2220. font-size: 14px;
  2221. }