custom.css 39 KB

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