custom.css 39 KB

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