custom.css 40 KB

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