custom.css 22 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442
  1. /* your styles go here */
  2. .text-center {
  3. text-align: center;
  4. }
  5. /* LP-components nav */
  6. #navigation .navbar-nav .main-link {
  7. background-color: white;
  8. border-top: none;
  9. color: black;
  10. font-weight: 400;
  11. padding: 3px 3px 3px 3px;
  12. margin: 18px 12px 18px 12px;
  13. font-size: 1.5rem;
  14. text-decoration: none;
  15. }
  16. #navigation .navbar-nav .dropdown.active .main-link {
  17. border-bottom: 3px solid #EA5413
  18. }
  19. #navigation .navbar-nav .signin-link {
  20. padding: 8px 18px 8px 18px;
  21. margin: 13px 10px 13px 10px;
  22. text-decoration: none;
  23. color: #EA5413;
  24. font-size: 1.5rem;
  25. font-weight: 400;
  26. border: 1px solid #EA5413;
  27. border-radius: 3rem;
  28. }
  29. #navigation .navbar-nav .signin-link:hover, #navigation .navbar-nav .signin-link:focus {
  30. background-color: transparent;
  31. }
  32. #navigation .navbar-nav .signup-link {
  33. padding: 8px 18px 8px 18px;
  34. margin: 13px 10px 13px 10px;
  35. text-decoration: none;
  36. color: white;
  37. font-size: 1.5rem;
  38. font-weight: 400;
  39. border: 1px solid #EA5413;
  40. border-radius: 3rem;
  41. background-color: #EA5413;
  42. }
  43. #navigation .navbar-nav .signup-link:hover, #navigation .navbar-nav .signup-link:focus {
  44. background-color: #EA5413;
  45. }
  46. /* sec-hero */
  47. .sec-hero {
  48. padding: 6rem 0;
  49. padding-bottom: 0;
  50. margin-bottom: 0 !important;
  51. }
  52. .sec-hero .hero-title {
  53. font-size: 3.5rem;
  54. letter-spacing: 1px;
  55. padding-top: 2.5rem;
  56. }
  57. .sec-hero .hero-txt {
  58. font-size: 1.8rem;
  59. letter-spacing: 1px;
  60. }
  61. .sec-hero .hero-btn {
  62. border: none;
  63. outline: none;
  64. border-radius: 3rem;
  65. margin-top: 2rem;
  66. padding: 1rem 2.5rem;
  67. background: linear-gradient(20deg, #EA5413, #920783);
  68. color: white;
  69. font-size: 1.8rem;
  70. box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.534);
  71. }
  72. .hero-orange {
  73. position: absolute;
  74. left: 10%;
  75. top: 0%;
  76. }
  77. .hero-purple {
  78. position: absolute;
  79. right: 0%;
  80. top: -10%;
  81. z-index: -1;
  82. }
  83. .hero-orange-s {
  84. position: absolute;
  85. left: -5%;
  86. bottom: 13%;
  87. z-index: -1;
  88. animation: floating 8s infinite ease-in-out;
  89. }
  90. .hero-textgrp {
  91. z-index: 3;
  92. position: absolute;
  93. left: 5%;
  94. top: 10%;
  95. animation: floating3 6s infinite 1s ease-in-out;
  96. }
  97. .hero-video {
  98. z-index: 3;
  99. position: absolute;
  100. right: 3%;
  101. top: -5%;
  102. animation: floating 8s infinite 1.5s ease-in-out;
  103. }
  104. .hero-amplify {
  105. z-index: 3;
  106. position: absolute;
  107. bottom: 5%;
  108. right: 0;
  109. animation: floating2 5s infinite ease-in-out;
  110. }
  111. .hero-imgfr {
  112. width: 100%;
  113. height: 95%;
  114. }
  115. .hero-imgfr img {
  116. width: 100%;
  117. }
  118. @keyframes floating {
  119. from { transform: translate(0px, 0); }
  120. 65% { transform: translate(25px, 0); }
  121. to { transform: translate(0, -0px); }
  122. }
  123. @keyframes floating3 {
  124. from { transform: translate(0px, 0); }
  125. 65% { transform: translate(-20px, 0); }
  126. to { transform: translate(0, -0px); }
  127. }
  128. @keyframes floating2 {
  129. from { transform: translate(0px, 0); }
  130. 65% { transform: translate(0px, 10px); }
  131. to { transform: translate(0, -0px); }
  132. }
  133. /* sec-usecase */
  134. .sec-usecase {
  135. padding: 3rem 0;
  136. position: relative;
  137. }
  138. .sec-usecase::after {
  139. content: " ";
  140. position: absolute;
  141. bottom: 0;
  142. left: 0;
  143. right: 0;
  144. height: 40%;
  145. width: 100%;
  146. background-color: #FFEBE2;
  147. z-index: -1;
  148. }
  149. .sec-usecase .usecase-title {
  150. font-size: 3rem;
  151. text-align: center;
  152. }
  153. .sec-usecase .usecase-sub {
  154. font-size: 1.8rem;
  155. text-align: center;
  156. }
  157. .sec-usecase .usecase-sub i {
  158. color: #EA5413;
  159. }
  160. .sec-usecase .usecase-block {
  161. padding: 0 1rem;
  162. z-index: 3;
  163. }
  164. .sec-usecase .usecase-imgfr {
  165. width: 100%;
  166. height: 25rem;
  167. border-radius: 1rem;
  168. overflow: hidden;
  169. box-shadow: 0 3px 11px 3px rgba(192, 192, 192, 0.637);
  170. }
  171. .sec-usecase .usecase-imgfr img {
  172. width: 100%;
  173. height: 100%;
  174. }
  175. /* sec-steps */
  176. .sec-steps {
  177. padding: 6rem 0;
  178. }
  179. .sec-steps .steps-title {
  180. font-size: 3rem;
  181. text-align: center;
  182. letter-spacing: 1px;
  183. }
  184. .sec-steps .steps-title strong {
  185. font-size: 5rem;
  186. }
  187. .sec-steps .steps-block {
  188. padding: 0 1rem;
  189. display: flex;
  190. flex-direction: column;
  191. align-items: center;
  192. justify-content: center;
  193. position: relative;
  194. }
  195. .sec-steps .steps-block::after {
  196. position: absolute;
  197. bottom: -1rem;
  198. left: 0;
  199. width: 100%;
  200. height: 15rem;
  201. background-color: #FFEBE2;
  202. content: " ";
  203. z-index: -1;
  204. border-radius: 2rem;
  205. }
  206. .sec-steps .steps-imgfr {
  207. width: 75%;
  208. height: 23rem;
  209. }
  210. .sec-steps .steps-imgfr img {
  211. width: 100%;
  212. height: 100%;
  213. }
  214. .sec-steps .steps-txt {
  215. display: flex;
  216. align-items: center;
  217. }
  218. .sec-steps .steps-txt span {
  219. display: inline-block;
  220. width: 40px;
  221. height: 40px;
  222. background-color: #EA5413;
  223. color: white;
  224. font-size: 2.5rem;
  225. line-height: 40px;
  226. border-radius: 50%;
  227. text-align: center;
  228. margin-right: 1rem;
  229. }
  230. /* sec-features */
  231. .sec-features {
  232. padding: 5rem 0;
  233. }
  234. .sec-features .row {
  235. margin: 10rem 0;
  236. }
  237. .features-orangel {
  238. position: absolute;
  239. left: -150px;
  240. top: 5%;
  241. z-index: -1;
  242. }
  243. .features-purpler {
  244. position: absolute;
  245. right: -150px;
  246. top: 5%;
  247. z-index: -1;
  248. }
  249. .features-purplel {
  250. position: absolute;
  251. left: -150px;
  252. top: 5%;
  253. z-index: -1;
  254. }
  255. .features-oranger {
  256. position: absolute;
  257. right: -150px;
  258. top: 5%;
  259. z-index: -1;
  260. }
  261. .sec-features .row .d-block {
  262. display: none;
  263. }
  264. .sec-features .features-col {
  265. position: relative;
  266. }
  267. .sec-features .features-col .features-block {
  268. position: absolute;
  269. left: 10rem;
  270. top: 6rem;
  271. display: flex;
  272. opacity: 0;
  273. transition: all .8s;
  274. }
  275. .sec-features .features-col .block-right {
  276. transform: translateX(-30%) scale(0.95);
  277. }
  278. .sec-features .features-col .block-left {
  279. transform: translateX(30%) scale(0.95);
  280. }
  281. .sec-features .features-col .features-block.active {
  282. opacity: 1;
  283. transform: translateX(0%) scale(1);
  284. }
  285. .sec-features .features-num {
  286. display: inline-block;
  287. font-size: 12rem;
  288. color: #F0F0F0;
  289. }
  290. .sec-features .features-title {
  291. font-size: 3rem;
  292. text-align: center;
  293. letter-spacing: 1px;
  294. padding-bottom: 6px;
  295. border-bottom: 8px solid #EA5413;
  296. display: inline-block;
  297. }
  298. .sec-features .features-title strong {
  299. font-size: 5rem;
  300. }
  301. .sec-features .features-imgfr {
  302. width: 100%;
  303. }
  304. .sec-features .features-imgfr video {
  305. width: 100%;
  306. }
  307. .sec-features .features-list {
  308. text-align: left;
  309. }
  310. .sec-blogtab {
  311. padding-bottom: 5rem;
  312. }
  313. .blog-tabs {
  314. display: flex;
  315. align-items: center;
  316. }
  317. .blogtab-title {
  318. font-size: 3rem;
  319. letter-spacing: 1px;
  320. padding-bottom: 6px;
  321. border-bottom: 8px solid #EA5413;
  322. display: inline-block;
  323. text-align: center;
  324. }
  325. .blog-tabs .blog-tabs-nav {
  326. width: 35%;
  327. background-color: #F0F0F0;
  328. padding: 4rem 2.5rem;
  329. list-style: none;
  330. box-shadow: 0 2px 5px -2px rgb(173, 173, 173);
  331. text-align: left;
  332. }
  333. .blog-tabs .blog-tabs-nav li {
  334. padding: 10px;
  335. border-bottom: 1px dashed grey;
  336. }
  337. .blog-tabs .blog-tabs-nav li a {
  338. color: #EA5413;
  339. }
  340. .blog-tabs .blog-tabs-stage {
  341. width: 65%;
  342. padding: 3.5rem;
  343. padding-bottom: 8rem;
  344. box-shadow: 1px 1px 10px 2px grey;
  345. height: 48rem;
  346. overflow: hidden;
  347. text-align: left;
  348. }
  349. .blog-tab-box {
  350. height: 95%;
  351. overflow: scroll;
  352. }
  353. .blog-tabs .blog-tabs-stage .blog-txt {
  354. font-size: 1.6rem;
  355. }
  356. .btn-light {
  357. color: black;
  358. border: 1px solid #EA5413;
  359. padding: 1rem 2.5rem;
  360. outline: none;
  361. background-color: white;
  362. margin-top: 4rem;
  363. border-radius: 3rem;
  364. font-size: 1.8rem;
  365. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  366. }
  367. .btn-dark {
  368. color: white;
  369. border: 1px solid #EA5413;
  370. padding: 1rem 2.5rem;
  371. outline: none;
  372. background-color: #EA5413;
  373. margin-top: 4rem;
  374. border-radius: 3rem;
  375. font-size: 1.8rem;
  376. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  377. }
  378. .blog-tabs .btn-light {
  379. margin-top: 1.5rem;
  380. color: #EA5413;
  381. }
  382. /* sec-action */
  383. .sec-action {
  384. padding-bottom: 7rem;
  385. background-color: #FFEBE2;
  386. margin-bottom: 0 !important;
  387. }
  388. .sec-action .container-fluid {
  389. padding: 0;
  390. }
  391. .sec-action .action-clip {
  392. width: 100%;
  393. background-color: #EA5413;
  394. padding: 2rem 0;
  395. border-color: #EA5413;
  396. }
  397. .sec-action .action-clip h2 {
  398. color: white;
  399. }
  400. .sec-action .action-triangle {
  401. clip-path: polygon(0 0, 50% 60%, 100% 0);
  402. -webkit-clip-path: polygon(0 0, 50% 60%, 100% 0);
  403. background: #EA5413;
  404. height: 8rem;
  405. border-color: #EA5413;
  406. }
  407. .sec-action form {
  408. padding: 4rem 0;
  409. }
  410. .sec-action form .action-input {
  411. padding: .8rem;
  412. display: block;
  413. width: 35rem;
  414. margin: 0 auto;
  415. border: 1px solid #9B9B9B;
  416. border-radius: 8px;
  417. outline: none;
  418. }
  419. .sec-action form .action-input::placeholder {
  420. color: #9B9B9B;
  421. }
  422. .sec-action form .action-input::-webkit-input-placeholder {
  423. color: #9B9B9B;
  424. }
  425. .sec-action form .action-input:-moz-input-placeholder{
  426. color: #9B9B9B;
  427. }
  428. .sec-action form .action-input:-ms-input-placeholder{
  429. color: #9B9B9B;
  430. }
  431. .sec-action .action-btn {
  432. border: none;
  433. outline: none;
  434. padding: .8rem 3.5rem;
  435. border-radius: 3rem;
  436. font-size: 2.2rem;
  437. background-color: white;
  438. color: #EA5413;
  439. margin-top: 3rem;
  440. }
  441. /* footer */
  442. .footer {
  443. background-color: #F0F0F0;
  444. padding: 3rem;
  445. }
  446. .footer .row{
  447. display: flex;
  448. align-items: center;
  449. }
  450. .footer .footer-aigirl {
  451. font-weight: 600;
  452. font-size: 2rem;
  453. margin-top: 1rem;
  454. margin-bottom: 2.5rem;
  455. }
  456. .footer .footer-follow {
  457. font-size: 1.6rem;
  458. margin-bottom: 1rem;
  459. }
  460. .footer .footer-socials a{
  461. margin-right: 5px;
  462. }
  463. #content .container {
  464. margin-top: 50px;
  465. }
  466. .box-image-text .image {
  467. min-height: 200px;
  468. max-height: 200px;
  469. }
  470. .box-simple {
  471. min-height: 200px;
  472. margin-bottom: 0;
  473. }
  474. .box-simple .video__desc {
  475. color: black;
  476. font-size: 1.8rem;
  477. text-align: left;
  478. padding-left: 1rem;
  479. padding-right: 1rem;
  480. }
  481. .goto__btn {
  482. text-align: center;
  483. margin-top: 2rem;
  484. margin-left: auto;
  485. margin-right: auto;
  486. }
  487. .container__footer {
  488. display: flex;
  489. align-items: center;
  490. }
  491. .box-simple .icon__feature {
  492. width: 120px;
  493. height: 120px;
  494. border-radius: 50%;
  495. display: flex;
  496. align-items: center;
  497. justify-content: center;
  498. margin-left: auto;
  499. margin-right: auto;
  500. }
  501. .box-simple .icon__feature > i {
  502. font-size: 4.5rem;
  503. }
  504. @media (max-width: 992px) {
  505. .sec-steps .steps-block {
  506. padding: 0rem;
  507. }
  508. .sec-steps .steps-block::after {
  509. width: 100%;
  510. height: 12rem;
  511. }
  512. .sec-steps .steps-imgfr {
  513. width: 100%;
  514. height: 20rem;
  515. }
  516. .sec-steps .steps-imgfr img {
  517. width: 100%;
  518. }
  519. .sec-steps .steps-txt h3.steps-sub {
  520. font-size: 1.3rem;
  521. }
  522. .sec-steps .steps-txt span {
  523. width: 25px;
  524. height: 25px;
  525. background-color: #EA5413;
  526. font-size: 1.3rem;
  527. line-height: 25px;
  528. }
  529. .sec-features .row {
  530. margin: 5rem 0;
  531. }
  532. .sec-features .features-col {
  533. position: relative;
  534. height: 25vh;
  535. }
  536. .sec-features .features-col .features-block {
  537. left: 2rem;
  538. top: 1rem;
  539. }
  540. .sec-features .row .d-md-block {
  541. display: none;
  542. }
  543. .sec-features .row .d-block {
  544. display: block;
  545. }
  546. }
  547. @media (max-width: 765px) {
  548. .sec-steps .steps-block {
  549. padding: 2rem 15rem;
  550. }
  551. .sec-steps .steps-imgfr {
  552. width: 100%;
  553. height: 32vh;
  554. }
  555. .sec-usecase .row>div {
  556. width: 50%;
  557. }
  558. .blog-tabs {
  559. flex-direction: column;
  560. }
  561. .blog-tabs .blog-tabs-stage {
  562. width: 95%;
  563. }
  564. .blog-tabs .blog-tabs-nav {
  565. width: 95%;
  566. background-color: #F0F0F0;
  567. padding: 4rem 2.5rem;
  568. list-style: none;
  569. box-shadow: 0 2px 5px -2px rgb(173, 173, 173);
  570. text-align: left;
  571. }
  572. .blog-tabs .blog-tabs-nav li {
  573. padding: 10px;
  574. border-bottom: 1px dashed grey;
  575. }
  576. .blog-tabs .blog-tabs-nav li a {
  577. color: #EA5413;
  578. }
  579. .footer .container .row {
  580. flex-direction: column;
  581. text-align: center;
  582. }
  583. .navbar-collapse .navbar-nav li {
  584. display: inline-block;
  585. }
  586. .nav>li {
  587. display: inline-block;
  588. }
  589. }
  590. @media (max-width: 576px) {
  591. .sec-steps .steps-block {
  592. padding: 2rem 6rem;
  593. }
  594. .sec-steps .steps-imgfr {
  595. width: 100%;
  596. height: 20rem;
  597. }
  598. .sec-steps .steps-txt h3.steps-sub {
  599. font-size: 1.5rem;
  600. }
  601. .sec-usecase .row>div {
  602. width: 100%;
  603. }
  604. }
  605. @media (max-width: 992px) {
  606. .container__footer {
  607. flex-direction: column;
  608. }
  609. .container__footer > div {
  610. margin-bottom: 1.5rem;
  611. }
  612. .video__col {
  613. margin-bottom: 2rem;
  614. }
  615. .mb-mobile {
  616. margin-bottom: 5rem;
  617. }
  618. .step__box {
  619. margin-bottom: 2rem;
  620. }
  621. }
  622. .btn:hover {
  623. background-color: #181c47;
  624. color: white;
  625. }
  626. .box-steps {
  627. border: 1px solid #181c47;
  628. padding: 1rem;
  629. border-radius: 5rem;
  630. position: relative;
  631. }
  632. .box-steps .step__box {
  633. position: absolute;
  634. left: -5px;
  635. top: -5px;
  636. width: 4rem;
  637. height: 4rem;
  638. background-color: white;
  639. }
  640. .box-steps .step__box span {
  641. font-size: 3rem;
  642. font-weight: 600;
  643. color: #38a7bb;
  644. }
  645. .box-steps .icon {
  646. border: none;
  647. }
  648. .box-steps .icon > i {
  649. font-size: 3.5rem;
  650. }
  651. .box__video {
  652. min-height: 280px;
  653. }
  654. .footer__btn__text {
  655. font-size: 2rem;
  656. color: white;
  657. }
  658. .table {
  659. display: flex;
  660. /* box-shadow: 0 0 5px 1px rgb(197, 197, 197); */
  661. border-radius: 15px;
  662. align-items: center;
  663. height: 280px;
  664. }
  665. .table .column {
  666. min-height: 280px;
  667. background-color: white;
  668. padding: 10px 2rem;
  669. }
  670. .table .column .body__company {
  671. font-size: 1.6rem;
  672. font-weight: 500;
  673. }
  674. .fa-check {
  675. margin-left: 4px;
  676. color: rgb(5, 212, 5);
  677. }
  678. .table .column .body__head {
  679. color: gray;
  680. }
  681. .table .column__first {
  682. border-radius: 15px 0 0 15px;
  683. }
  684. .table .column__last {
  685. border-radius: 0 15px 15px 0;
  686. }
  687. .table .column__choozmo {
  688. border: 1px solid rgb(212, 212, 212);
  689. box-shadow: 0 0 5px 1px rgb(197, 197, 197);
  690. border-radius: 15px;
  691. height: 340px;
  692. }
  693. .table .column div {
  694. min-height: 65px;
  695. }
  696. .navbar-brand > img {
  697. display: inline-block;
  698. }
  699. @media (max-width: 767px){
  700. .visible-xs {
  701. display: inline-block!important;
  702. }
  703. }
  704. .logo {
  705. width: 187px;
  706. height: 48px;
  707. }
  708. .logo-sm {
  709. width: 150px;
  710. height: 40px;
  711. }
  712. .logo_text {
  713. vertical-align: middle;
  714. }
  715. .footer_img {
  716. height: 60px;
  717. }
  718. .followus {
  719. display: flex;
  720. align-items: center;
  721. justify-content: flex-start;
  722. margin-top: 1rem;
  723. }
  724. .followus__txt {
  725. display: inline-block;
  726. margin-right: 1rem;
  727. color: white;
  728. font-weight: 600;
  729. }
  730. .followus .followus__img {
  731. margin-right: 1rem;
  732. }
  733. .bar.mb-0 {
  734. margin-bottom: 0;
  735. }
  736. .headingvf {
  737. margin-bottom: 1.5rem;
  738. }
  739. .headingvf-sub {
  740. margin-bottom: 4rem;
  741. }
  742. .headingvf-sub h4 {
  743. color: grey;
  744. font-weight: 400;
  745. font-size: 1.6rem;
  746. line-height: 2.2rem;
  747. }
  748. .testimonial_img {
  749. width: 200px;
  750. border-radius: 50%;
  751. display: block;
  752. margin-left: auto;
  753. margin-right: auto;
  754. }
  755. .owl-item {
  756. height: 300px;
  757. overflow: hidden;
  758. }
  759. .testimonial-title {
  760. font-size: 2rem;
  761. }
  762. .testimonial-text {
  763. font-size: 1.6rem;
  764. }
  765. .testimonials__pro {
  766. margin-bottom: 1rem;
  767. }
  768. .testimonials__pro p {
  769. font-size: 1.6rem;
  770. }
  771. .testimonials__goto__btn a {
  772. animation-name: move;
  773. animation-duration: 1.5s;
  774. animation-delay: 0;
  775. animation-iteration-count: infinite;
  776. animation-direction: normal;
  777. animation-timing-function: linear;
  778. }
  779. @keyframes move {
  780. 0% {
  781. box-shadow: 0 0 0 transparent;
  782. }
  783. 50% {
  784. box-shadow: 5px 5px 4px #887e74;
  785. }
  786. 100% {
  787. box-shadow: 0 0 0 transparent;
  788. }
  789. }
  790. .row__rank {
  791. height: min-content;
  792. }
  793. .rank__box {
  794. min-height: min-content;
  795. }
  796. .rank .rank__word {
  797. display: inline-block;
  798. font-weight: 500;
  799. position: relative;
  800. }
  801. .rank .rank__word::after {
  802. position: absolute;
  803. content: " ";
  804. width: 100%;
  805. height: 2px;
  806. left: 20%;
  807. top: 90%;
  808. background-color: #499aa8af;
  809. }
  810. .rank__num {
  811. display: inline-block;
  812. font-size: 3.5rem;
  813. color: #38a7bb;
  814. font-style: italic;
  815. font-weight: 600;
  816. }
  817. .video__steps {
  818. margin-top: 6rem;
  819. }
  820. .btn-video {
  821. text-align: center;
  822. display: block;
  823. width: 18rem;
  824. margin: 1rem auto;
  825. }
  826. @media (max-width: 992px) {
  827. .video__steps {
  828. margin-top: 1rem;
  829. }
  830. }
  831. .video-steps {
  832. display: flex;
  833. text-align: center;
  834. }
  835. .steps__box {
  836. flex: 20%;
  837. position: relative;
  838. }
  839. .steps__icon {
  840. font-size: 5rem;
  841. color: #38a7bb;
  842. }
  843. .steps__name {
  844. font-size: 1.8rem;
  845. color: rgb(68, 67, 67);
  846. margin-bottom: 1rem;
  847. }
  848. .steps__num {
  849. position: absolute;
  850. left: 15%;
  851. top: -2.5rem;
  852. font-size: 4rem;
  853. color: #72969c;
  854. font-weight: 500;
  855. }
  856. #content .container_list {
  857. margin-top: 100px;
  858. }
  859. #post-content img {
  860. width: 100%;
  861. box-shadow: 0 11px 21px 0 rgba(194, 194, 194, 0.644);
  862. transition: all .3s;
  863. margin: 1.5rem 0;
  864. }
  865. #post-content img:hover {
  866. transform: translateY(-.125em);
  867. box-shadow: 0 5px 10px 0 rgba(grey, 0.3);
  868. }
  869. #post-content i {
  870. font-size: 2rem;
  871. vertical-align: middle;
  872. }
  873. #blog-post {
  874. padding-bottom: 3rem;
  875. }
  876. #blog-post h2 {
  877. font-family: "Proxima Nova",sans-serif;
  878. margin-right: 5px;
  879. }
  880. #blog-post p, #blog-post li{
  881. font-size: 1.8rem;
  882. font-family: "Proxima Nova",sans-serif;
  883. }
  884. #block-vtuber {
  885. padding: 30px 0;
  886. margin-bottom: 40px;
  887. font-family: "Proxima Nova",sans-serif;
  888. color: #181c47;
  889. }
  890. #block-vtuber h2 {
  891. font-family: 'Poppins', sans-serif;
  892. font-weight: bolder;
  893. font-size: 3.7rem;
  894. }
  895. #block-vtuber p {
  896. font-size: 1.8rem;
  897. line-height: 3rem;
  898. }
  899. .txt-block {
  900. padding: 4rem 0;
  901. }
  902. .sec {
  903. padding: 9rem 0;
  904. margin-bottom: 0;
  905. }
  906. .sec01 {
  907. padding-top: 2rem;
  908. }
  909. .sec-right {
  910. position: absolute;
  911. right: -15%;
  912. top: 10%;
  913. }
  914. .sec02 {
  915. background-color: #FFEBE2;
  916. position: relative;
  917. /* clip-path: polygon(0% -10%, 100% 0%, 110% 100%, 0% 100%); */
  918. }
  919. .sec03, .sec04, .sec05 {
  920. text-align: center;
  921. padding: 12rem 0;
  922. }
  923. .sec04 {
  924. padding: 8rem 0;
  925. background-color: #FFEBE2;
  926. position: relative;
  927. padding-top: 3rem;
  928. }
  929. .sec04::after {
  930. display: none;
  931. content: "";
  932. position: absolute;
  933. top: -66px;
  934. left: 0;
  935. display: block;
  936. width: 100%;
  937. height: 66px;
  938. transform: rotate(180deg);
  939. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  940. background-size: 3840px 66px;
  941. background-position: 0 0;
  942. }
  943. .sec02::after {
  944. display: none;
  945. content: "";
  946. position: absolute;
  947. bottom: -66px;
  948. left: 0;
  949. display: block;
  950. width: 100%;
  951. height: 66px;
  952. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  953. background-size: 3840px 66px;
  954. background-position: 0 0;
  955. }
  956. .sec05 {
  957. position: relative;
  958. padding-top: 0;
  959. padding-bottom: 4rem;
  960. background-color: #FFEBE2;
  961. }
  962. .sec05::after {
  963. display: none;
  964. content: "";
  965. position: absolute;
  966. bottom: -66px;
  967. left: 0;
  968. display: block;
  969. width: 100%;
  970. height: 66px;
  971. background-image: url("https://i.imgur.com/fR4Tz5V.png");
  972. background-size: 3840px 66px;
  973. background-position: 0 0;
  974. }
  975. .img_decor {
  976. position: absolute;
  977. left: 4rem;
  978. top: 1rem;
  979. }
  980. .project {
  981. max-height: 15rem;
  982. }
  983. .project .owl-pagination {
  984. display: none;
  985. }
  986. .owl-carousel.project .owl-buttons {
  987. bottom: 0;
  988. transform: translateX(-50%);
  989. }
  990. .owl-carousel.project .owl-buttons div {
  991. box-shadow: 3px 3px 16px 0 rgb(98 125 152 / 8%), 0 -1px 8px 0 rgb(0 0 0 / 4%);
  992. padding: 1rem;
  993. width: 40px;
  994. height: 40px;
  995. border-radius: 50%;
  996. color: black;
  997. }
  998. .owl-carousel.project .owl-buttons div:hover {
  999. box-shadow: 3px 3px 16px 0 rgb(98 125 152 / 3%), 0 -1px 8px 0 rgb(0 0 0 / 1%);
  1000. }
  1001. .owl-carousel .owl-controls .owl-buttons, .owl-theme .owl-controls .owl-buttons {
  1002. top: 110%;
  1003. right: 50%;
  1004. }
  1005. .txt-block .rankblock {
  1006. list-style: none;
  1007. }
  1008. .txt-block .rankblock li {
  1009. font-size: 2.2rem;
  1010. margin-bottom: 1rem;
  1011. }
  1012. .txt-block .rankblock span {
  1013. display: inline-block;
  1014. width: 45px;
  1015. height: 45px;
  1016. border-radius: 50%;
  1017. background-color: #EA5413;
  1018. color: white;
  1019. line-height: 35px;
  1020. margin-right: 1rem;
  1021. font-size: 1.6rem;
  1022. padding-left: 6px;
  1023. padding-top: 6px;
  1024. }
  1025. .btn-template-main {
  1026. color: #EA5413;
  1027. }
  1028. .btn {
  1029. color: #EA5413;
  1030. border: 2px solid #EA5413;
  1031. border-radius: 2rem;
  1032. }
  1033. .btn:hover {
  1034. background-color: #EA5413;
  1035. border: 2px solid #EA5413;
  1036. }
  1037. #blog-listing-medium .post{
  1038. color: #181c47;
  1039. }
  1040. #blog-listing-medium .tag-post .image {
  1041. position: relative;
  1042. overflow: visible;
  1043. }
  1044. #blog-listing-medium .tag-post .image::after {
  1045. position: absolute;
  1046. content: " ";
  1047. right: 2rem;
  1048. bottom: 2rem;
  1049. width: 100%;
  1050. height: 100%;
  1051. z-index: -1;
  1052. }
  1053. #blog-listing-medium .tag-post .image img {
  1054. border: 5px solid white;
  1055. }
  1056. #blog-listing-medium .tag-post:nth-of-type(3n+1) .image::after {
  1057. background-color: thistle;
  1058. }
  1059. #blog-listing-medium .tag-post:nth-of-type(3n+2) .image::after {
  1060. background-color: #f3f3f9;
  1061. }
  1062. #blog-listing-medium .tag-post:nth-of-type(3n) .image::after {
  1063. background-color: #eba764;
  1064. }
  1065. .v-tabs {
  1066. max-width: 100%;
  1067. }
  1068. .v-tabs-nav li {
  1069. float: left;
  1070. width: 25%;
  1071. list-style: none;
  1072. }
  1073. .v-tabs-nav li a {
  1074. color: grey;
  1075. font-size: 2.5rem;
  1076. letter-spacing: 2px;
  1077. display: block;
  1078. font-weight: 600;
  1079. padding: 10px 0;
  1080. text-align: center;
  1081. text-decoration: none;
  1082. }
  1083. .v-tabs-nav li a:hover {
  1084. color: black;
  1085. }
  1086. .v-tab-active a {
  1087. background: #fff;
  1088. border-bottom: 2px solid grey;
  1089. color: #2db34a;
  1090. cursor: default;
  1091. }
  1092. .v-tabs-stage {
  1093. clear: both;
  1094. padding: 40px 30px 10px 30px;
  1095. position: relative;
  1096. top: -1px;
  1097. text-align: left;
  1098. }
  1099. #block-vtuber .v-tabs-stage h2 {
  1100. font-size: 2.5rem;
  1101. }
  1102. #block-vtuber .v-tabs .owl-page span {
  1103. background: #EA5413;
  1104. }
  1105. .d-tabs {
  1106. max-width: 100%;
  1107. }
  1108. .d-tabs-nav li {
  1109. float: left;
  1110. width: 50%;
  1111. list-style: none;
  1112. }
  1113. .d-tabs-nav li a {
  1114. color: grey;
  1115. font-size: 2.5rem;
  1116. letter-spacing: 2px;
  1117. display: block;
  1118. font-weight: 600;
  1119. padding: 10px 0;
  1120. text-align: center;
  1121. text-decoration: none;
  1122. }
  1123. .d-tabs-nav li a:hover {
  1124. color: black;
  1125. }
  1126. .d-tab-active a {
  1127. background: transparent;
  1128. border-bottom: 2px solid grey;
  1129. color: #2db34a;
  1130. cursor: default;
  1131. }
  1132. .d-tabs-stage {
  1133. clear: both;
  1134. padding: 40px 30px 10px 30px;
  1135. position: relative;
  1136. top: -1px;
  1137. text-align: left;
  1138. }
  1139. #block-vtuber .d-tabs-stage h2 {
  1140. font-size: 2.5rem;
  1141. }
  1142. .m-tabs {
  1143. max-width: 100%;
  1144. }
  1145. .m-tabs-nav li {
  1146. float: left;
  1147. width: 50%;
  1148. list-style: none;
  1149. }
  1150. .m-tabs-nav li a {
  1151. color: grey;
  1152. font-size: 2.5rem;
  1153. letter-spacing: 2px;
  1154. display: block;
  1155. font-weight: 600;
  1156. padding: 10px 0;
  1157. text-align: center;
  1158. text-decoration: none;
  1159. }
  1160. .m-tabs-nav li a:hover {
  1161. color: black;
  1162. }
  1163. .m-tab-active a {
  1164. background: transparent;
  1165. border-bottom: 2px solid grey;
  1166. color: #2db34a;
  1167. cursor: default;
  1168. }
  1169. .m-tabs-stage {
  1170. clear: both;
  1171. padding: 40px 30px 10px 30px;
  1172. position: relative;
  1173. top: -1px;
  1174. text-align: left;
  1175. }
  1176. #block-vtuber .m-tabs-stage h2 {
  1177. font-size: 2.5rem;
  1178. }
  1179. .sec06 {
  1180. text-align: center;
  1181. padding: 2rem 0;
  1182. }
  1183. .grow_title {
  1184. text-align: center;
  1185. }
  1186. .grow_txt {
  1187. font-size: 1.2rem;
  1188. }
  1189. .grow_call {
  1190. font-weight: 700;
  1191. font-family: Arial, Helvetica, sans-serif;
  1192. font-size: 2.3rem;
  1193. display: block;
  1194. margin-top: 1.5rem;
  1195. margin-bottom: 1rem;
  1196. }
  1197. .grow_btn {
  1198. padding: 1.2rem 7rem;
  1199. font-size: 2.5rem;
  1200. border: 2px solid #EA5413;
  1201. background: transparent;
  1202. outline: none;
  1203. border-radius: 5rem;
  1204. transition: all .3s;
  1205. display: inline-block;
  1206. color: #EA5413;
  1207. text-decoration: none;
  1208. }
  1209. .grow_btn:hover {
  1210. color: white;
  1211. background: #EA5413;
  1212. text-decoration: none;
  1213. }
  1214. .grow_img {
  1215. display: block;
  1216. margin: 0 auto;
  1217. margin-top: 1rem;
  1218. }