custom.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780
  1. /* your styles go here */
  2. #content .container {
  3. margin-top: 50px;
  4. }
  5. .box-image-text .image {
  6. min-height: 200px;
  7. max-height: 200px;
  8. }
  9. .box-simple {
  10. min-height: 200px;
  11. margin-bottom: 0;
  12. }
  13. .box-simple .video__desc {
  14. color: black;
  15. font-size: 1.8rem;
  16. text-align: left;
  17. padding-left: 1rem;
  18. padding-right: 1rem;
  19. }
  20. .goto__btn {
  21. text-align: center;
  22. margin-top: 2rem;
  23. margin-left: auto;
  24. margin-right: auto;
  25. }
  26. .container__footer {
  27. display: flex;
  28. align-items: center;
  29. }
  30. .box-simple .icon__feature {
  31. width: 120px;
  32. height: 120px;
  33. border-radius: 50%;
  34. display: flex;
  35. align-items: center;
  36. justify-content: center;
  37. margin-left: auto;
  38. margin-right: auto;
  39. }
  40. .box-simple .icon__feature > i {
  41. font-size: 4.5rem;
  42. }
  43. @media (max-width: 992px) {
  44. .container__footer {
  45. flex-direction: column;
  46. }
  47. .container__footer > div {
  48. margin-bottom: 1.5rem;
  49. }
  50. .video__col {
  51. margin-bottom: 2rem;
  52. }
  53. .mb-mobile {
  54. margin-bottom: 5rem;
  55. }
  56. .step__box {
  57. margin-bottom: 2rem;
  58. }
  59. }
  60. .btn {
  61. border: 2px solid #181c47;
  62. }
  63. .btn:hover {
  64. background-color: #181c47;
  65. color: white;
  66. }
  67. .box-steps {
  68. border: 1px solid #181c47;
  69. padding: 1rem;
  70. border-radius: 5rem;
  71. position: relative;
  72. }
  73. .box-steps .step__box {
  74. position: absolute;
  75. left: -5px;
  76. top: -5px;
  77. width: 4rem;
  78. height: 4rem;
  79. background-color: white;
  80. }
  81. .box-steps .step__box span {
  82. font-size: 3rem;
  83. font-weight: 600;
  84. color: #38a7bb;
  85. }
  86. .box-steps .icon {
  87. border: none;
  88. }
  89. .box-steps .icon > i {
  90. font-size: 3.5rem;
  91. }
  92. .box__video {
  93. min-height: 280px;
  94. }
  95. .footer__btn__text {
  96. font-size: 2rem;
  97. color: white;
  98. }
  99. .table {
  100. display: flex;
  101. /* box-shadow: 0 0 5px 1px rgb(197, 197, 197); */
  102. border-radius: 15px;
  103. align-items: center;
  104. height: 280px;
  105. }
  106. .table .column {
  107. min-height: 280px;
  108. background-color: white;
  109. padding: 10px 2rem;
  110. }
  111. .table .column .body__company {
  112. font-size: 1.6rem;
  113. font-weight: 500;
  114. }
  115. .fa-check {
  116. margin-left: 4px;
  117. color: rgb(5, 212, 5);
  118. }
  119. .table .column .body__head {
  120. color: gray;
  121. }
  122. .table .column__first {
  123. border-radius: 15px 0 0 15px;
  124. }
  125. .table .column__last {
  126. border-radius: 0 15px 15px 0;
  127. }
  128. .table .column__choozmo {
  129. border: 1px solid rgb(212, 212, 212);
  130. box-shadow: 0 0 5px 1px rgb(197, 197, 197);
  131. border-radius: 15px;
  132. height: 340px;
  133. }
  134. .table .column div {
  135. min-height: 65px;
  136. }
  137. .navbar-brand > img {
  138. display: inline-block;
  139. }
  140. @media (max-width: 767px){
  141. .visible-xs {
  142. display: inline-block!important;
  143. }
  144. }
  145. .logo {
  146. width: 187px;
  147. height: 48px;
  148. }
  149. .logo-sm {
  150. width: 110px;
  151. height: 30px;
  152. }
  153. .logo_text {
  154. vertical-align: middle;
  155. }
  156. .footer_img {
  157. height: 60px;
  158. }
  159. .followus {
  160. display: flex;
  161. align-items: center;
  162. justify-content: flex-start;
  163. margin-top: 1rem;
  164. }
  165. .followus__txt {
  166. display: inline-block;
  167. margin-right: 1rem;
  168. color: white;
  169. font-weight: 600;
  170. }
  171. .followus .followus__img {
  172. margin-right: 1rem;
  173. }
  174. .bar.mb-0 {
  175. margin-bottom: 0;
  176. }
  177. .headingvf {
  178. margin-bottom: 1.5rem;
  179. }
  180. .headingvf-sub {
  181. margin-bottom: 4rem;
  182. }
  183. .headingvf-sub h4 {
  184. color: grey;
  185. font-weight: 400;
  186. font-size: 1.6rem;
  187. line-height: 2.2rem;
  188. }
  189. .testimonial_img {
  190. width: 200px;
  191. border-radius: 50%;
  192. display: block;
  193. margin-left: auto;
  194. margin-right: auto;
  195. }
  196. .owl-item {
  197. height: 300px;
  198. overflow: hidden;
  199. }
  200. .testimonial-title {
  201. font-size: 2rem;
  202. }
  203. .testimonial-text {
  204. font-size: 1.6rem;
  205. }
  206. .testimonials__pro {
  207. margin-bottom: 1rem;
  208. }
  209. .testimonials__pro p {
  210. font-size: 1.6rem;
  211. }
  212. .testimonials__goto__btn a {
  213. animation-name: move;
  214. animation-duration: 1.5s;
  215. animation-delay: 0;
  216. animation-iteration-count: infinite;
  217. animation-direction: normal;
  218. animation-timing-function: linear;
  219. }
  220. @keyframes move {
  221. 0% {
  222. box-shadow: 0 0 0 transparent;
  223. }
  224. 50% {
  225. box-shadow: 5px 5px 4px #887e74;
  226. }
  227. 100% {
  228. box-shadow: 0 0 0 transparent;
  229. }
  230. }
  231. .row__rank {
  232. height: min-content;
  233. }
  234. .rank__box {
  235. min-height: min-content;
  236. }
  237. .rank .rank__word {
  238. display: inline-block;
  239. font-weight: 500;
  240. position: relative;
  241. }
  242. .rank .rank__word::after {
  243. position: absolute;
  244. content: " ";
  245. width: 100%;
  246. height: 2px;
  247. left: 20%;
  248. top: 90%;
  249. background-color: #499aa8af;
  250. }
  251. .rank__num {
  252. display: inline-block;
  253. font-size: 3.5rem;
  254. color: #38a7bb;
  255. font-style: italic;
  256. font-weight: 600;
  257. }
  258. .video__steps {
  259. margin-top: 6rem;
  260. }
  261. .btn-video {
  262. text-align: center;
  263. display: block;
  264. width: 18rem;
  265. margin: 1rem auto;
  266. }
  267. @media (max-width: 992px) {
  268. .video__steps {
  269. margin-top: 1rem;
  270. }
  271. }
  272. .video-steps {
  273. display: flex;
  274. text-align: center;
  275. }
  276. .steps__box {
  277. flex: 20%;
  278. position: relative;
  279. }
  280. .steps__icon {
  281. font-size: 5rem;
  282. color: #38a7bb;
  283. }
  284. .steps__name {
  285. font-size: 1.8rem;
  286. color: rgb(68, 67, 67);
  287. margin-bottom: 1rem;
  288. }
  289. .steps__num {
  290. position: absolute;
  291. left: 15%;
  292. top: -2.5rem;
  293. font-size: 4rem;
  294. color: #72969c;
  295. font-weight: 500;
  296. }
  297. #content .container_list {
  298. margin-top: 100px;
  299. }
  300. #post-content img {
  301. width: 100%;
  302. box-shadow: 0 11px 21px 0 rgba(194, 194, 194, 0.644);
  303. transition: all .3s;
  304. margin: 1.5rem 0;
  305. }
  306. #post-content img:hover {
  307. transform: translateY(-.125em);
  308. box-shadow: 0 5px 10px 0 rgba(grey, 0.3);
  309. }
  310. #post-content i {
  311. font-size: 2rem;
  312. vertical-align: middle;
  313. }
  314. #blog-post {
  315. padding-bottom: 3rem;
  316. }
  317. #blog-post h2 {
  318. font-family: "Proxima Nova",sans-serif;
  319. margin-right: 5px;
  320. }
  321. #blog-post p, #blog-post li{
  322. font-size: 1.8rem;
  323. font-family: "Proxima Nova",sans-serif;
  324. }
  325. #block-vtuber {
  326. padding: 30px 0;
  327. margin-bottom: 40px;
  328. font-family: "Proxima Nova",sans-serif;
  329. color: #181c47;
  330. }
  331. #block-vtuber h2 {
  332. font-family: 'Poppins', sans-serif;
  333. font-weight: bolder;
  334. font-size: 3.7rem;
  335. }
  336. #block-vtuber p {
  337. font-size: 1.8rem;
  338. line-height: 3rem;
  339. }
  340. .txt-block {
  341. padding: 4rem 0;
  342. }
  343. .sec {
  344. padding: 9rem 0;
  345. margin-bottom: 0;
  346. }
  347. .sec01 {
  348. padding-top: 2rem;
  349. }
  350. .sec01 .embed-container::after{
  351. position: absolute;
  352. content: " ";
  353. left: 3rem;
  354. top: 3rem;
  355. width: 100%;
  356. height: 100%;
  357. background: url("https://i.imgur.com/hm0lc6X.jpg");
  358. z-index: -2;
  359. }
  360. .sec02 {
  361. background-color: #f3f3f9;
  362. position: relative;
  363. /* clip-path: polygon(0% -10%, 100% 0%, 110% 100%, 0% 100%); */
  364. }
  365. .sec03, .sec04, .sec05 {
  366. text-align: center;
  367. padding: 12rem 0;
  368. }
  369. .sec04 {
  370. padding: 8rem 0;
  371. background-color: #f3f3f9;
  372. position: relative;
  373. padding-top: 3rem;
  374. }
  375. .sec04::after {
  376. content: "";
  377. position: absolute;
  378. top: -66px;
  379. left: 0;
  380. display: block;
  381. width: 100%;
  382. height: 66px;
  383. transform: rotate(180deg);
  384. background-image: url("https://animoto.com/static/desktop-wiggle-6af922ddb441fd9fda898e14ecad1127.svg");
  385. background-size: 3840px 66px;
  386. background-position: 0 0;
  387. }
  388. .sec02::after {
  389. content: "";
  390. position: absolute;
  391. bottom: -66px;
  392. left: 0;
  393. display: block;
  394. width: 100%;
  395. height: 66px;
  396. background-image: url("https://animoto.com/static/desktop-wiggle-6af922ddb441fd9fda898e14ecad1127.svg");
  397. background-size: 3840px 66px;
  398. background-position: 0 0;
  399. }
  400. .sec05 {
  401. position: relative;
  402. padding-top: 0;
  403. padding-bottom: 4rem;
  404. background-color: #f3f3f9;
  405. }
  406. .sec05::after {
  407. content: "";
  408. position: absolute;
  409. bottom: -66px;
  410. left: 0;
  411. display: block;
  412. width: 100%;
  413. height: 66px;
  414. background-image: url("https://animoto.com/static/desktop-wiggle-6af922ddb441fd9fda898e14ecad1127.svg");
  415. background-size: 3840px 66px;
  416. background-position: 0 0;
  417. }
  418. .img_decor {
  419. position: absolute;
  420. left: 4rem;
  421. top: 1rem;
  422. }
  423. .project {
  424. max-height: 15rem;
  425. }
  426. .project .owl-pagination {
  427. display: none;
  428. }
  429. .owl-carousel.project .owl-buttons {
  430. bottom: 0;
  431. transform: translateX(-50%);
  432. }
  433. .owl-carousel.project .owl-buttons div {
  434. box-shadow: 3px 3px 16px 0 rgb(98 125 152 / 8%), 0 -1px 8px 0 rgb(0 0 0 / 4%);
  435. padding: 1rem;
  436. width: 40px;
  437. height: 40px;
  438. border-radius: 50%;
  439. color: black;
  440. }
  441. .owl-carousel.project .owl-buttons div:hover {
  442. box-shadow: 3px 3px 16px 0 rgb(98 125 152 / 3%), 0 -1px 8px 0 rgb(0 0 0 / 1%);
  443. }
  444. .owl-carousel .owl-controls .owl-buttons, .owl-theme .owl-controls .owl-buttons {
  445. top: 110%;
  446. right: 50%;
  447. }
  448. .txt-block .rankblock {
  449. list-style: none;
  450. }
  451. .txt-block .rankblock li {
  452. font-size: 2.2rem;
  453. margin-bottom: 1rem;
  454. }
  455. .txt-block .rankblock span {
  456. display: inline-block;
  457. width: 45px;
  458. height: 45px;
  459. border-radius: 50%;
  460. background-color: #23408c;
  461. color: white;
  462. line-height: 35px;
  463. margin-right: 1rem;
  464. font-size: 1.6rem;
  465. padding-left: 6px;
  466. padding-top: 6px;
  467. }
  468. .btn-template-main {
  469. color: #181c47;
  470. }
  471. .btn {
  472. color: #181c47;
  473. border: 2px solid #181c47;
  474. }
  475. .btn:hover {
  476. background-color: #181c47;
  477. border: 2px solid #181c47;
  478. }
  479. #blog-listing-medium .post{
  480. color: #181c47;
  481. }
  482. #blog-listing-medium .tag-post .image {
  483. position: relative;
  484. overflow: visible;
  485. }
  486. #blog-listing-medium .tag-post .image::after {
  487. position: absolute;
  488. content: " ";
  489. right: 2rem;
  490. bottom: 2rem;
  491. width: 100%;
  492. height: 100%;
  493. z-index: -1;
  494. }
  495. #blog-listing-medium .tag-post .image img {
  496. border: 5px solid white;
  497. }
  498. #blog-listing-medium .tag-post:nth-of-type(3n+1) .image::after {
  499. background-color: thistle;
  500. }
  501. #blog-listing-medium .tag-post:nth-of-type(3n+2) .image::after {
  502. background-color: #f3f3f9;
  503. }
  504. #blog-listing-medium .tag-post:nth-of-type(3n) .image::after {
  505. background-color: #eba764;
  506. }
  507. .v-tabs {
  508. max-width: 100%;
  509. }
  510. .v-tabs-nav li {
  511. float: left;
  512. width: 25%;
  513. list-style: none;
  514. }
  515. .v-tabs-nav li a {
  516. color: #23408c;
  517. font-size: 2.5rem;
  518. letter-spacing: 2px;
  519. display: block;
  520. font-weight: 600;
  521. padding: 10px 0;
  522. text-align: center;
  523. text-decoration: none;
  524. }
  525. .v-tabs-nav li a:hover {
  526. color: black;
  527. }
  528. .v-tab-active a {
  529. background: #fff;
  530. border-bottom: 2px solid #23408c;
  531. color: #2db34a;
  532. cursor: default;
  533. }
  534. .v-tabs-stage {
  535. clear: both;
  536. padding: 40px 30px 10px 30px;
  537. position: relative;
  538. top: -1px;
  539. text-align: left;
  540. }
  541. #block-vtuber .v-tabs-stage h2 {
  542. font-size: 2.5rem;
  543. }
  544. .d-tabs {
  545. max-width: 100%;
  546. }
  547. .d-tabs-nav li {
  548. float: left;
  549. width: 50%;
  550. list-style: none;
  551. }
  552. .d-tabs-nav li a {
  553. color: #23408c;
  554. font-size: 2.5rem;
  555. letter-spacing: 2px;
  556. display: block;
  557. font-weight: 600;
  558. padding: 10px 0;
  559. text-align: center;
  560. text-decoration: none;
  561. }
  562. .d-tabs-nav li a:hover {
  563. color: black;
  564. }
  565. .d-tab-active a {
  566. background: transparent;
  567. border-bottom: 2px solid #23408c;
  568. color: #2db34a;
  569. cursor: default;
  570. }
  571. .d-tabs-stage {
  572. clear: both;
  573. padding: 40px 30px 10px 30px;
  574. position: relative;
  575. top: -1px;
  576. text-align: left;
  577. }
  578. #block-vtuber .d-tabs-stage h2 {
  579. font-size: 2.5rem;
  580. }
  581. .m-tabs {
  582. max-width: 100%;
  583. }
  584. .m-tabs-nav li {
  585. float: left;
  586. width: 50%;
  587. list-style: none;
  588. }
  589. .m-tabs-nav li a {
  590. color: #23408c;
  591. font-size: 2.5rem;
  592. letter-spacing: 2px;
  593. display: block;
  594. font-weight: 600;
  595. padding: 10px 0;
  596. text-align: center;
  597. text-decoration: none;
  598. }
  599. .m-tabs-nav li a:hover {
  600. color: black;
  601. }
  602. .m-tab-active a {
  603. background: #f3f3f9;
  604. border-bottom: 2px solid #23408c;
  605. color: #2db34a;
  606. cursor: default;
  607. }
  608. .m-tabs-stage {
  609. clear: both;
  610. padding: 40px 30px 10px 30px;
  611. position: relative;
  612. top: -1px;
  613. text-align: left;
  614. }
  615. #block-vtuber .m-tabs-stage h2 {
  616. font-size: 2.5rem;
  617. }
  618. .sec06 {
  619. text-align: center;
  620. padding: 2rem 0;
  621. }
  622. .grow_title {
  623. text-align: center;
  624. }
  625. .grow_txt {
  626. font-size: 1.2rem;
  627. }
  628. .grow_call {
  629. font-weight: 700;
  630. font-family: Arial, Helvetica, sans-serif;
  631. font-size: 2.3rem;
  632. display: block;
  633. margin-top: 1.5rem;
  634. margin-bottom: 1rem;
  635. }
  636. .grow_btn {
  637. padding: 1.2rem 7rem;
  638. font-size: 2.5rem;
  639. border: 2px solid #181c47;
  640. background: transparent;
  641. outline: none;
  642. border-radius: 5rem;
  643. transition: all .3s;
  644. display: inline-block;
  645. color: #181c47;
  646. text-decoration: none;
  647. }
  648. .grow_btn:hover {
  649. color: white;
  650. background: #181c47;
  651. text-decoration: none;
  652. }
  653. .grow_img {
  654. display: block;
  655. margin: 0 auto;
  656. margin-top: 1rem;
  657. }