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.

1038 lines
14KB

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