You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

custom.css 14KB

3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039
  1. /*
  2. # @name: custom.css
  3. # @version: 0.1
  4. # @creation_date: 2021-10-25
  5. # @license: The MIT License <https://opensource.org/licenses/MIT>
  6. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  7. # @purpose: Custom CSS to override Bootstrap 5 defaults
  8. # @acknowledgements:
  9. # Bootstrap 5.1.3: https://getbootstrap.com/
  10. */
  11. :root{
  12. --primary-color:#FFFFFF;
  13. --highlight-colour:#EB7F1D;
  14. --hover-link-colour:#EB7F1D;
  15. --light-highlight-colour:#F8D9AA;
  16. }
  17. @import "https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap";
  18. body {
  19. line-height: 1.2;
  20. font-family: Lato, sans-serif;
  21. -webkit-font-smoothing: antialiased;
  22. font-size: 15px;
  23. color: #000000
  24. }
  25. p {
  26. font-weight: 400;
  27. color: #000000;
  28. font-size: 15px;
  29. line-height: 1.8;
  30. font-family: Lato, sans-serif
  31. }
  32. h1,
  33. h2,
  34. h3,
  35. h4,
  36. h5,
  37. h6 {
  38. color: #000;
  39. font-family: Lato, sans-serif;
  40. line-height: 1.2
  41. }
  42. h1,
  43. .h1 {
  44. font-size: 80px
  45. }
  46. @media(max-width:991px) {
  47. h1,
  48. .h1 {
  49. font-size: 65px
  50. }
  51. }
  52. h2,
  53. .h2 {
  54. font-size: 45px
  55. }
  56. @media(max-width:991px) {
  57. h2,
  58. .h2 {
  59. font-size: 35px
  60. }
  61. }
  62. h3,
  63. .h3 {
  64. font-size: 22px
  65. }
  66. h4,
  67. .h4 {
  68. font-size: 18px
  69. }
  70. h5,
  71. .h5 {
  72. font-size: 14px
  73. }
  74. h6,
  75. .h6 {
  76. font-size: 14px
  77. }
  78. .btn {
  79. font-size: 22px;
  80. font-family: Lato, sans-serif;
  81. text-transform: capitalize;
  82. padding: 16px 44px;
  83. border-radius: 5px;
  84. font-weight: 600;
  85. border: 0;
  86. position: relative;
  87. z-index: 1;
  88. transition: .2s ease
  89. }
  90. .btn:focus {
  91. outline: 0;
  92. box-shadow: none !important
  93. }
  94. .btn:active {
  95. box-shadow: none
  96. }
  97. .btn-sm {
  98. font-size: 15px;
  99. padding: 10px 30px
  100. }
  101. .btn-xs {
  102. padding: 5px 10px;
  103. font-size: 15px
  104. }
  105. .btn-primary {
  106. background: var(--primary-color);
  107. color: #fff
  108. }
  109. .btn-primary.active {
  110. opacity: .8;
  111. }
  112. .btn-primary:active {
  113. background: var(--primary-color) !important
  114. }
  115. .btn-primary:hover {
  116. background: var(--primary-color)
  117. }
  118. .btn-primary.focus,
  119. .btn-primary.active {
  120. background: var(--primary-color) !important;
  121. box-shadow: none !important
  122. }
  123. .btn-transparent {
  124. background: transparent;
  125. color: var(--primary-color);
  126. font-weight: 700
  127. }
  128. .btn-transparent:active,
  129. .btn-transparent:hover {
  130. color: var(--primary-color)
  131. }
  132. body {
  133. background-color: #fff;
  134. overflow-x: hidden
  135. }
  136. ::selection {
  137. background: var(--highlight-colour);
  138. color: #fff
  139. }
  140. .preloader {
  141. position: fixed;
  142. top: 0;
  143. left: 0;
  144. right: 0;
  145. bottom: 0;
  146. background-color: #fff;
  147. z-index: 999999;
  148. display: flex;
  149. align-items: center;
  150. justify-content: center
  151. }
  152. ol,
  153. ul {
  154. /*list-style-type: circle;*/
  155. margin: 1rem;
  156. }
  157. img {
  158. vertical-align: middle;
  159. border: 0
  160. }
  161. a,
  162. a:hover,
  163. a:focus {
  164. text-decoration: none
  165. }
  166. a,
  167. button,
  168. select {
  169. cursor: pointer;
  170. transition: .2s ease
  171. }
  172. a:focus,
  173. button:focus,
  174. select:focus {
  175. outline: 0
  176. }
  177. a.text-dark:hover {
  178. color: var(--hover-link-colour) !important
  179. }
  180. a:hover {
  181. color: var(--hover-link-colour)
  182. }
  183. .slick-slide {
  184. outline: 0
  185. }
  186. .section {
  187. padding-top: 80px;
  188. padding-bottom: 80px
  189. }
  190. .section-title {
  191. margin-bottom: 80px;
  192. font-family: Lato, sans-serif;
  193. /*font-weight: 700;*/
  194. background: linear-gradient(90deg, var(--highlight-colour), var(--light-highlight-colour)) no-repeat left 123%/98% 45%;
  195. }
  196. .bg-cover {
  197. background-size: cover;
  198. background-position: 50%;
  199. background-repeat: no-repeat
  200. }
  201. .overlay {
  202. position: relative
  203. }
  204. .overlay::before {
  205. position: absolute;
  206. content: '';
  207. height: 100%;
  208. width: 100%;
  209. top: 0;
  210. left: 0;
  211. background: #000;
  212. opacity: .5
  213. }
  214. .outline-0 {
  215. outline: 0 !important
  216. }
  217. .d-unset {
  218. display: unset !important
  219. }
  220. .bg-primary {
  221. background: var(--primary-color) !important
  222. }
  223. .bg-gray {
  224. background: #eaeaea !important
  225. }
  226. .text-primary {
  227. color: var(--primary-color) !important
  228. }
  229. .text-color {
  230. color: #000000
  231. }
  232. .text-dark {
  233. color: #000 !important
  234. }
  235. .text-light {
  236. color: #999 !important
  237. }
  238. .mb-10 {
  239. margin-bottom: 10px !important
  240. }
  241. .mb-20 {
  242. margin-bottom: 20px !important
  243. }
  244. .mb-30 {
  245. margin-bottom: 30px !important
  246. }
  247. .mb-40 {
  248. margin-bottom: 40px !important
  249. }
  250. .mb-50 {
  251. margin-bottom: 50px !important
  252. }
  253. .mb-60 {
  254. margin-bottom: 60px !important
  255. }
  256. .mb-70 {
  257. margin-bottom: 70px !important
  258. }
  259. .mb-80 {
  260. margin-bottom: 80px !important
  261. }
  262. .mb-90 {
  263. margin-bottom: 90px !important
  264. }
  265. .mb-100 {
  266. margin-bottom: 100px !important
  267. }
  268. .zindex-1 {
  269. z-index: 1
  270. }
  271. .rounded-lg {
  272. border-radius: 15px
  273. }
  274. .overflow-hidden {
  275. overflow: hidden
  276. }
  277. .font-primary {
  278. font-family: Lato, sans-serif !important
  279. }
  280. .font-secondary {
  281. font-family: Lato, serif !important
  282. }
  283. .font-secondary {
  284. font-family: Lato, sans-serif;
  285. /*font-weight: 700 !important;*/
  286. }
  287. .font-tertiary {
  288. font-family: Lato, sans-serif;
  289. font-style: italic;
  290. font-weight: 200;
  291. font-size: 14px;
  292. }
  293. .shadow {
  294. box-shadow: 0 18px 39.1px 6.9px rgba(224, 241, 255, .34) !important
  295. }
  296. .bg-dark {
  297. background-color: #222 !important
  298. }
  299. .icon {
  300. font-size: 45px
  301. }
  302. .icon-bg {
  303. height: 100px;
  304. width: 100px;
  305. line-height: 100px;
  306. text-align: center
  307. }
  308. .icon-light {
  309. color: var(--highlight-colour);
  310. }
  311. .slick-dots {
  312. text-align: center;
  313. padding-left: 0
  314. }
  315. .slick-dots li {
  316. display: inline-block;
  317. margin: 2px
  318. }
  319. .slick-dots li.slick-active button {
  320. background: rgba(0, 0, 0, .5);
  321. width: 25px
  322. }
  323. .slick-dots li button {
  324. height: 6px;
  325. width: 12px;
  326. background: rgba(0, 0, 0, .5);
  327. color: transparent;
  328. border-radius: 10px;
  329. overflow: hidden;
  330. transition: .2s ease;
  331. border: 0
  332. }
  333. .form-control {
  334. border: 0;
  335. border-radius: 0;
  336. border-bottom: 1px solid #c7c7c7;
  337. height: 60px
  338. }
  339. .form-control:focus {
  340. border-color: var(--primary-color);
  341. outline: 0;
  342. box-shadow: none !important
  343. }
  344. textarea.form-control {
  345. height: 120px
  346. }
  347. .card {
  348. border: 0;
  349. height: 100%
  350. }
  351. .card-header {
  352. border: 0
  353. }
  354. .card-footer {
  355. border: 0
  356. }
  357. .navigation {
  358. padding: 15px 130px;
  359. transition: .3s ease
  360. }
  361. .navigation.nav-bg {
  362. background-color: var(--primary-color);
  363. padding: 5px 5px
  364. }
  365. @media(max-width:991px) {
  366. .navigation.nav-bg {
  367. padding: 15px 20px
  368. }
  369. }
  370. @media(max-width:991px) {
  371. .navigation {
  372. padding: 20px;
  373. background: var(--primary-color)
  374. }
  375. }
  376. .navbar .nav-item .nav-link {
  377. font-family: Lato, sans-serif;
  378. font-weight: 700;
  379. text-transform: uppercase;
  380. padding: 15px
  381. }
  382. .navbar .nav-item.active .nav-link{
  383. color: #52f8f4;
  384. }
  385. .navbar-dark .navbar-nav .nav-link {
  386. color: #fff;
  387. }
  388. .hero-area {
  389. padding: 250px 0 200px;
  390. position: relative
  391. }
  392. @media(max-width:767px) {
  393. .hero-area {
  394. padding: 200px 0 150px;
  395. overflow: hidden
  396. }
  397. }
  398. .hero-area h1 {
  399. position: relative;
  400. z-index: 2
  401. }
  402. .layer {
  403. position: absolute;
  404. z-index: 1
  405. }
  406. #l1 {
  407. bottom: 0;
  408. left: 0
  409. }
  410. #l2 {
  411. top: 190px;
  412. left: -250px
  413. }
  414. #l3 {
  415. top: 200px;
  416. left: 40%
  417. }
  418. #l4 {
  419. top: 200px;
  420. right: 40%
  421. }
  422. #l5 {
  423. top: 100px;
  424. right: -150px
  425. }
  426. #l6 {
  427. bottom: -20px;
  428. left: 10%
  429. }
  430. #l7 {
  431. bottom: 100px;
  432. left: 20%
  433. }
  434. #l8 {
  435. bottom: 160px;
  436. right: 45%
  437. }
  438. #l9 {
  439. bottom: 100px;
  440. right: -10px
  441. }
  442. .layer-bg {
  443. position: absolute;
  444. bottom: 0;
  445. left: 0
  446. }
  447. .progress-wrapper {
  448. height: 130px;
  449. overflow: hidden
  450. }
  451. .wave {
  452. position: absolute;
  453. width: 100%;
  454. height: 100%
  455. }
  456. .wave::before,
  457. .wave::after {
  458. content: "";
  459. position: absolute;
  460. width: 800px;
  461. height: 800px;
  462. bottom: 0;
  463. left: 50%;
  464. background-color: rgba(255, 255, 255, .4);
  465. border-radius: 45%;
  466. transform: translateX(-50%) rotate(0);
  467. animation: rotate 6s linear infinite;
  468. z-index: 10
  469. }
  470. .wave::after {
  471. border-radius: 47%;
  472. background-color: rgba(255, 255, 255, .9);
  473. transform: translateX(-50%) rotate(0);
  474. animation: rotate 10s linear -5s infinite;
  475. z-index: 20
  476. }
  477. @keyframes rotate {
  478. 50% {
  479. transform: translateX(-50%) rotate(180deg)
  480. }
  481. 100% {
  482. transform: translateX(-50%) rotate(360deg)
  483. }
  484. }
  485. .edu-bg-image {
  486. position: absolute;
  487. left: 0;
  488. top: -300px;
  489. z-index: -1
  490. }
  491. .hover-bg-primary {
  492. transition: .3s ease
  493. }
  494. .hover-bg-primary:hover {
  495. background: var(--primary-color)
  496. }
  497. .hover-bg-primary:hover * {
  498. color: #fff
  499. }
  500. .active-bg-primary {
  501. transition: .3s ease;
  502. background: var(--light-highlight-colour)
  503. }
  504. .active-bg-primary * {
  505. color: #000000
  506. }
  507. .hover-shadow {
  508. transition: .2s ease
  509. }
  510. .hover-shadow:hover {
  511. box-shadow: 0 18px 40px 8px rgba(224, 241, 255, .54) !important
  512. }
  513. .hover-wrapper {
  514. overflow: hidden;
  515. padding: 25px;
  516. }
  517. .hover-wrapper img {
  518. transition: .3s ease;
  519. transform: scale(1.1)
  520. }
  521. .hover-wrapper:hover img {
  522. transform: scale(1)
  523. }
  524. .hover-wrapper:hover .hover-overlay {
  525. opacity: 1;
  526. visibility: visible
  527. }
  528. .hover-overlay {
  529. position: absolute;
  530. height: 100%;
  531. width: 100%;
  532. border-radius: inherit;
  533. top: 0;
  534. left: 0;
  535. background: rgba(0, 0, 0, .3);
  536. opacity: 0;
  537. visibility: hidden;
  538. transition: .3s ease
  539. }
  540. .hover-content {
  541. position: absolute;
  542. top: 50%;
  543. transform: translateY(-50%);
  544. left: 0;
  545. right: 0;
  546. text-align: center
  547. }
  548. .testimonial-content strong {
  549. color: #2bfdff;
  550. font-weight: 400
  551. }
  552. .testimonial-bg-shapes .container {
  553. position: relative;
  554. z-index: 1
  555. }
  556. .testimonial-bg-shapes .bg-map {
  557. position: absolute;
  558. left: 50%;
  559. top: 50%;
  560. transform: translate(-50%, -50%)
  561. }
  562. .testimonial-bg-shapes .bg-shape-1 {
  563. position: absolute;
  564. left: 100px;
  565. top: -50px
  566. }
  567. .testimonial-bg-shapes .bg-shape-2 {
  568. position: absolute;
  569. right: 150px;
  570. top: 50px
  571. }
  572. .testimonial-bg-shapes .bg-shape-3 {
  573. position: absolute;
  574. right: 50px;
  575. top: 200px
  576. }
  577. .testimonial-bg-shapes .bg-shape-4 {
  578. position: absolute;
  579. left: 100px;
  580. bottom: 200px
  581. }
  582. .testimonial-bg-shapes .bg-shape-5 {
  583. position: absolute;
  584. right: 200px;
  585. bottom: -50px
  586. }
  587. /*.footer-section {
  588. padding-top: 200px
  589. }*/
  590. .footer-section a {
  591. color: #fff;
  592. }
  593. .footer-bottom a {
  594. color: #999;
  595. text-decoration: underline;
  596. }
  597. .footer-section a:hover {
  598. color: #fff;
  599. text-decoration: underline;
  600. }
  601. .section-on-footer {
  602. margin-bottom: -250px
  603. }
  604. .shadow-down {
  605. position: relative
  606. }
  607. .shadow-down::before {
  608. position: absolute;
  609. content: "";
  610. box-shadow: 0 0 80.75px 14.25px rgba(224, 241, 255, .34);
  611. height: 100%;
  612. width: 100%;
  613. left: 0;
  614. top: 0;
  615. z-index: -1
  616. }
  617. .card-lg {
  618. flex-direction: row-reverse;
  619. align-items: center
  620. }
  621. @media(max-width:991px) {
  622. .card-lg {
  623. flex-direction: column
  624. }
  625. }
  626. blockquote {
  627. display: inline-block;
  628. padding: 10px 20px;
  629. background: #eaeaea;
  630. border-left: 2px solid var(--primary-color);
  631. font-style: italic;
  632. font-size: 22px
  633. }
  634. .content * {
  635. margin-bottom: 20px
  636. }
  637. .content strong {
  638. font-family: Lato,serif;
  639. color: #000;
  640. line-height: 1.5;
  641. }
  642. .content img {
  643. max-width: 100%;
  644. height: auto;
  645. margin: 0 auto 15px;
  646. display: block;
  647. text-align: center;
  648. }
  649. .page-title-alt {
  650. padding: 350px 0 70px
  651. }
  652. .border-thick {
  653. border: 10px solid
  654. }
  655. .drag-lg-top {
  656. margin-top: -230px
  657. }
  658. @media(max-width:991px) {
  659. .drag-lg-top {
  660. margin-top: 0
  661. }
  662. }
  663. .page-title-alt .container {
  664. position: relative;
  665. z-index: 1
  666. }
  667. .page-title-alt .bg-shape-1 {
  668. position: absolute;
  669. left: 0;
  670. top: 0;
  671. height: 100%
  672. }
  673. .page-title-alt .bg-shape-2 {
  674. position: absolute;
  675. left: 70px;
  676. top: 100px
  677. }
  678. .page-title-alt .bg-shape-3 {
  679. position: absolute;
  680. left: 30%;
  681. top: 50px;
  682. transform: rotate(180deg)
  683. }
  684. .page-title-alt .bg-shape-4 {
  685. position: absolute;
  686. left: 100px;
  687. bottom: 100px
  688. }
  689. .page-title-alt .bg-shape-5 {
  690. position: absolute;
  691. left: 40%;
  692. bottom: -25px
  693. }
  694. .page-title-alt .bg-shape-6 {
  695. position: absolute;
  696. bottom: 100px;
  697. right: -100px
  698. }
  699. .page-title {
  700. padding: 250px 0 150px
  701. }
  702. .page-title .container {
  703. position: relative;
  704. z-index: 1
  705. }
  706. .page-title .bg-shape-1 {
  707. position: absolute;
  708. left: 0;
  709. bottom: 0;
  710. width: 100%
  711. }
  712. .page-title .bg-shape-2 {
  713. position: absolute;
  714. left: -20px;
  715. top: -10px
  716. }
  717. .page-title .bg-shape-3 {
  718. position: absolute;
  719. left: 10%;
  720. top: 100px
  721. }
  722. .page-title .bg-shape-4 {
  723. position: absolute;
  724. left: 50%;
  725. top: -20px
  726. }
  727. .page-title .bg-shape-5 {
  728. position: absolute;
  729. left: 90px;
  730. bottom: -50px;
  731. transform: rotate(180deg)
  732. }
  733. .page-title .bg-shape-6 {
  734. position: absolute;
  735. right: 20%;
  736. bottom: -20px
  737. }
  738. .page-title .bg-shape-7 {
  739. position: absolute;
  740. right: -220px;
  741. bottom: -100px
  742. }
  743. .filter-controls li {
  744. cursor: pointer
  745. }
  746. .filter-controls li.active {
  747. font-weight: 700
  748. }
  749. .social-icons a{
  750. height: 100px;
  751. width: 100px;
  752. line-height: 102px;
  753. border-radius: 50%;
  754. display: block;
  755. box-shadow: 0 18px 39.1px 6.9px rgba(224,241,255,.34);
  756. color: #fff;
  757. background-color: var(--primary-color);
  758. font-size: 20px;
  759. text-align: center;
  760. }
  761. .project-meta{
  762. display: flex;
  763. align-items: center;
  764. }
  765. .project-meta i{
  766. height: 100px;
  767. min-width: 100px;
  768. line-height: 100px;
  769. background-color: #fff;
  770. color: var(--primary-color);
  771. border-radius: 50%;
  772. text-align: center;
  773. display: block;
  774. box-shadow: 0 18px 39.1px 6.9px rgba(224,241,255,.34);
  775. font-size: 30px;
  776. }
  777. .project-meta h4{
  778. font-weight: bold;
  779. font-size: 24px;
  780. }
  781. .project-meta p{
  782. margin-bottom: 0;
  783. }
  784. summary {
  785. color: #000;
  786. font-family: Lato, sans-serif;
  787. line-height: 1.2;
  788. font-size: 22px;
  789. font-weight: 500;
  790. }
  791. details {
  792. font-weight: 400;
  793. color: #000000;
  794. font-size: 15px;
  795. line-height: 1.8;
  796. font-family: Lato,sans-serif;
  797. margin-bottom: 20px;
  798. }
  799. .dropdown-item.active, .dropdown-item:active {
  800. background-color: var(--highlight-colour);
  801. }
  802. a {
  803. color: #0062F5;
  804. }
  805. blockquote a {
  806. color: #005CE6;
  807. }
  808. .font-secondary {
  809. font-family: Lato,sans-serif;
  810. font-weight: 400!important;
  811. }
  812. .title {
  813. font-size: 22px
  814. }
  815. .footer-title {
  816. font-size: 18px
  817. }
  818. .light-paragraph {
  819. font-family: Lato,sans-serif;
  820. font-weight: 200!important;
  821. }
  822. @media (max-width: 544px) {
  823. h1 {font-size:1.5rem;} /*1rem = 16px*/
  824. }
  825. h2 {
  826. background: linear-gradient(90deg, var(--highlight-colour), var(--light-highlight-colour)) no-repeat left 123%/98% 45%;
  827. }
  828. table{
  829. width:100%;
  830. margin-bottom:1rem;
  831. color:#212529
  832. }
  833. table td,.table th{
  834. padding:.75rem;
  835. vertical-align:top;
  836. border-top:1px solid #dee2e6
  837. }
  838. table thead th{
  839. text-align:center;
  840. vertical-align:bottom;
  841. border-bottom:2px solid #dee2e6
  842. }
  843. table tbody+tbody{
  844. border-top:2px solid #dee2e6
  845. }
  846. main > .container {
  847. padding: 60px 15px 0;
  848. }
  849. .carousel-control-next,
  850. .carousel-control-prev,
  851. .carousel-indicators {
  852. filter: invert(100%);
  853. }