@iamproperty/components 2.7.9 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (172) hide show
  1. package/README.md +16 -137
  2. package/assets/css/core.min.css +1 -1
  3. package/assets/css/core.min.css.map +1 -1
  4. package/assets/css/email.min.css +1 -1
  5. package/assets/css/email.min.css.map +1 -1
  6. package/assets/css/error.min.css +1 -1
  7. package/assets/css/error.min.css.map +1 -1
  8. package/assets/css/style.min.css +1 -1
  9. package/assets/css/style.min.css.map +1 -1
  10. package/assets/favicons/manifest.json +32 -0
  11. package/assets/js/main.js +57 -78
  12. package/assets/js/modules/accordion.js +32 -36
  13. package/assets/js/modules/alert.js +56 -56
  14. package/assets/js/modules/carousel.js +101 -101
  15. package/assets/js/modules/chart.js +218 -217
  16. package/assets/js/modules/drawer.js +15 -15
  17. package/assets/js/modules/form.js +158 -158
  18. package/assets/js/modules/helpers.js +119 -119
  19. package/assets/js/modules/modal.js +89 -89
  20. package/assets/js/modules/nav.js +28 -27
  21. package/assets/js/modules/table.js +585 -585
  22. package/assets/js/modules/testimonial.js +82 -82
  23. package/assets/js/modules/youtubevideo.js +145 -145
  24. package/assets/js/scripts.bundle.js +174 -102
  25. package/assets/js/scripts.bundle.js.map +1 -1
  26. package/assets/js/scripts.bundle.min.js +2 -2
  27. package/assets/js/scripts.bundle.min.js.map +1 -1
  28. package/assets/sass/_components.scss +14 -14
  29. package/assets/sass/_corefiles.scss +40 -40
  30. package/assets/sass/_fonts.scss +16 -16
  31. package/assets/sass/_forms.scss +9 -9
  32. package/assets/sass/_func.scss +12 -10
  33. package/assets/sass/_functions/functions.scss +141 -141
  34. package/assets/sass/_functions/mixins.scss +170 -170
  35. package/assets/sass/_functions/utilities.scss +250 -250
  36. package/assets/sass/_functions/variables.scss +467 -462
  37. package/assets/sass/_print.scss +61 -61
  38. package/assets/sass/_tests/colours.spec.scss +45 -0
  39. package/assets/sass/_tests/func.spec.scss +233 -0
  40. package/assets/sass/_tests/mixins.spec.scss +194 -0
  41. package/assets/sass/_tests/sass.spec.js +9 -0
  42. package/assets/sass/_tests/typography.spec.scss +36 -0
  43. package/assets/sass/components/accordion.scss +197 -197
  44. package/assets/sass/components/alert.scss +98 -98
  45. package/assets/sass/components/cardDeck.scss +107 -107
  46. package/assets/sass/components/carousel.scss +234 -234
  47. package/assets/sass/components/charts.scss +569 -569
  48. package/assets/sass/components/drawer.scss +46 -46
  49. package/assets/sass/components/header.scss +63 -63
  50. package/assets/sass/components/modal.scss +136 -136
  51. package/assets/sass/components/nav.scss +919 -820
  52. package/assets/sass/components/property-searchbar.scss +143 -143
  53. package/assets/sass/components/snapshot.scss +70 -70
  54. package/assets/sass/components/stepper.scss +164 -164
  55. package/assets/sass/components/tabs.scss +87 -87
  56. package/assets/sass/components/testimonial.scss +132 -132
  57. package/assets/sass/components/timeline.scss +95 -95
  58. package/assets/sass/core.scss +6 -6
  59. package/assets/sass/elements/buttons.scss +209 -209
  60. package/assets/sass/elements/card.scss +177 -177
  61. package/assets/sass/elements/container.scss +225 -225
  62. package/assets/sass/elements/forms.scss +194 -194
  63. package/assets/sass/elements/links.scss +96 -96
  64. package/assets/sass/elements/lists.scss +112 -112
  65. package/assets/sass/elements/panel.scss +161 -161
  66. package/assets/sass/elements/tables.scss +290 -290
  67. package/assets/sass/elements/tooltips.scss +84 -84
  68. package/assets/sass/elements/type.scss +136 -136
  69. package/assets/sass/email.scss +65 -65
  70. package/assets/sass/error.scss +4 -4
  71. package/assets/sass/foundations/brand.scss +72 -72
  72. package/assets/sass/foundations/circles.scss +74 -74
  73. package/assets/sass/foundations/icons.scss +72 -72
  74. package/assets/sass/foundations/media.scss +50 -50
  75. package/assets/sass/foundations/reboot.scss +130 -130
  76. package/assets/sass/foundations/root.scss +106 -104
  77. package/assets/sass/main.scss +7 -7
  78. package/assets/svg/icons.svg +598 -588
  79. package/assets/svg/logo.svg +42 -42
  80. package/assets/ts/main.js +57 -0
  81. package/assets/ts/main.js.map +1 -0
  82. package/assets/ts/main.ts +68 -0
  83. package/assets/ts/modules/accordion.js +33 -0
  84. package/assets/ts/modules/accordion.js.map +1 -0
  85. package/assets/ts/modules/accordion.ts +43 -0
  86. package/dist/components.es.js +2504 -0
  87. package/dist/components.umd.js +56 -3760
  88. package/dist/style.css +1 -0
  89. package/package.json +108 -103
  90. package/src/components/Accordion/Accordion.screenshot.vue +57 -0
  91. package/src/components/Accordion/Accordion.spec.js +63 -0
  92. package/src/components/Accordion/Accordion.vue +22 -22
  93. package/src/components/Accordion/AccordionItem.vue +52 -52
  94. package/src/components/Accordion/README.md +34 -34
  95. package/src/components/Accordion/__screenshots__/win32/laptop/Accordion.png +0 -0
  96. package/src/components/Accordion/__screenshots__/win32/mobile/Accordion.png +0 -0
  97. package/src/components/Accordion/__screenshots__/win32/tablet/Accordion.png +0 -0
  98. package/src/components/Alert/Alert.spec.js +49 -0
  99. package/src/components/Alert/Alert.vue +39 -39
  100. package/src/components/Alert/README.md +28 -28
  101. package/src/components/Banner/Banner.spec.js +28 -0
  102. package/src/components/Banner/Banner.vue +38 -38
  103. package/src/components/Banner/README.md +23 -23
  104. package/src/components/CardDeck/CardDeck.spec.js +99 -0
  105. package/src/components/CardDeck/CardDeck.vue +77 -77
  106. package/src/components/CardDeck/README.md +24 -24
  107. package/src/components/Carousel/Carousel.spec.js +45 -0
  108. package/src/components/Carousel/Carousel.vue +85 -85
  109. package/src/components/Carousel/README.md +19 -19
  110. package/src/components/Chart/Chart.spec.js +201 -0
  111. package/src/components/Chart/Chart.vue +88 -88
  112. package/src/components/Chart/README.md +17 -17
  113. package/src/components/Drawer/Drawer.vue +53 -53
  114. package/src/components/Drawer/README.md +22 -22
  115. package/src/components/Header/Header.spec.js +33 -0
  116. package/src/components/Header/Header.vue +38 -38
  117. package/src/components/Header/README.md +27 -27
  118. package/src/components/Modal/Modal.spec.js +22 -0
  119. package/src/components/Modal/Modal.vue +43 -43
  120. package/src/components/Modal/README.md +19 -19
  121. package/src/components/Nav/Nav.spec.js +35 -0
  122. package/src/components/Nav/Nav.vue +215 -189
  123. package/src/components/Nav/README.md +22 -22
  124. package/src/components/NoteFeed/NoteFeed.vue +79 -79
  125. package/src/components/NoteFeed/README.md +16 -16
  126. package/src/components/PropertySearchbar/PropertySearchbar.vue +204 -204
  127. package/src/components/PropertySearchbar/README.md +25 -25
  128. package/src/components/Snapshot/README.md +20 -20
  129. package/src/components/Snapshot/Snapshot.vue +32 -32
  130. package/src/components/Stepper/README.md +32 -32
  131. package/src/components/Stepper/Step.vue +28 -28
  132. package/src/components/Stepper/Stepper.spec.js +99 -0
  133. package/src/components/Stepper/Stepper.vue +33 -33
  134. package/src/components/Tabs/README.md +27 -27
  135. package/src/components/Tabs/Tab.vue +32 -26
  136. package/src/components/Tabs/Tabs.vue +77 -75
  137. package/src/components/Testimonial/README.md +25 -25
  138. package/src/components/Testimonial/Testimonial.spec.js +57 -0
  139. package/src/components/Testimonial/Testimonial.vue +60 -60
  140. package/src/components/Timeline/README.md +18 -18
  141. package/src/components/Timeline/Timeline.spec.js +17 -0
  142. package/src/components/Timeline/Timeline.vue +24 -24
  143. package/src/elements/Card/Card.vue +113 -113
  144. package/src/elements/Card/README.md +24 -24
  145. package/src/elements/FileUploads/FileUploads.vue +48 -48
  146. package/src/elements/FileUploads/README.md +24 -24
  147. package/src/elements/Input/Input.vue +268 -268
  148. package/src/elements/Input/README.md +19 -19
  149. package/src/elements/Table/README.md +62 -62
  150. package/src/elements/Table/Table.spec.js +90 -0
  151. package/src/elements/Table/Table.vue +129 -129
  152. package/src/foundations/Icon/Icon.spec.js +24 -0
  153. package/src/foundations/Icon/Icon.vue +24 -24
  154. package/src/foundations/Icon/README.md +11 -11
  155. package/src/foundations/Logo/Logo.spec.js +56 -0
  156. package/src/foundations/Logo/Logo.vue +39 -39
  157. package/src/foundations/Logo/README.md +20 -20
  158. package/src/foundations/YoutubeVideo/README.md +11 -11
  159. package/src/foundations/YoutubeVideo/YoutubeVideo.vue +24 -24
  160. package/src/helpers/strings.js +12 -12
  161. package/src/index.js +27 -27
  162. package/src/vue-shim.d.ts +6 -0
  163. package/assets/.DS_Store +0 -0
  164. package/dist/components.common.js +0 -3749
  165. package/dist/components.common.js.map +0 -1
  166. package/dist/components.css +0 -2
  167. package/dist/components.css.map +0 -1
  168. package/dist/components.umd.js.map +0 -1
  169. package/dist/components.umd.min.js +0 -2
  170. package/dist/components.umd.min.js.map +0 -1
  171. package/dist/demo.html +0 -1
  172. package/src/.DS_Store +0 -0
@@ -1,43 +1,43 @@
1
- <svg xmlns="http://www.w3.org/2000/svg">
2
-
3
- <symbol id="logo-iam">
4
- <path d="M133.05,8.54a2.8,2.8,0,0,0,.86-.13,3,3,0,1,0-.86.13ZM134,121.6a3,3,0,1,0-1.69,5.76,3.06,3.06,0,0,0,.85.12,3,3,0,0,0,.84-5.88ZM182.42,15.34a3,3,0,1,0,3.86-4.59,3,3,0,0,0-.63-.41h0a3,3,0,0,0-3.23,5Zm-15.29-7a3.06,3.06,0,0,0,.85.12,3,3,0,1,0-.85-.12ZM117,15.83a3,3,0,1,0-3-3,3.07,3.07,0,0,0,.48,1.62A3,3,0,0,0,117,15.88Zm1.68,98.76a3,3,0,1,0,1.39,2.54,3,3,0,0,0-1.39-2.54Zm80.7-11.32a3,3,0,0,0-4.23.31h0a3,3,0,1,0,4.31-.31Zm-16.91,11.3a1.9,1.9,0,1,1,0,.05Zm14.9-87.28a3,3,0,0,0,2.26-5h0a3,3,0,1,0-2.26,5ZM150.6,124a3,3,0,1,0,3,3A3,3,0,0,0,150.6,124ZM150.52,6a3,3,0,1,0-3-3A3,3,0,0,0,150.52,6Zm16.69,115.6a3,3,0,0,0,.85,5.88,2.7,2.7,0,0,0,.85-.13,3,3,0,0,0-1.49-5.81l-.21.06ZM65,0a65,65,0,1,0,65,65A65,65,0,0,0,65,0ZM27.74,77.6a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V52.35a1.25,1.25,0,0,1,1.25-1.25h5a1.25,1.25,0,0,1,1.25,1.25ZM24.11,47.49a4.66,4.66,0,1,1,4.66-4.66h0A4.66,4.66,0,0,1,24.11,47.49ZM61.47,77.6a1.25,1.25,0,0,1-1.25,1.25h-5A1.25,1.25,0,0,1,54,77.6V75.69a11.61,11.61,0,0,1-8.84,4c-7.39,0-13.63-6.6-13.63-14.75s6.24-14.75,13.63-14.75a11.61,11.61,0,0,1,8.84,4v-1.9A1.25,1.25,0,0,1,55.22,51h5a1.25,1.25,0,0,1,1.25,1.25Zm40-55.13a3,3,0,1,1,2.26,4.93,3,3,0,0,1-2-.73,3,3,0,0,1-.36-4.2Zm-10,15.58a3,3,0,1,1,2.73,4.24A3,3,0,0,1,93,42a3,3,0,0,1-1.52-4h0Zm4,55.46a3,3,0,1,1,1.76-2.72A3,3,0,0,1,95.47,93.51Zm10.24,14.38a2.93,2.93,0,0,1-2,.74,3,3,0,1,1,2-.74Zm6.87-30.29a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.22-1.25V64.54c-.15-5.51-2.81-7.32-6.26-7.32-2.61,0-4.6,1.44-5.52,4.54a11.29,11.29,0,0,0-.25,2.78V77.6a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V64.54c-.16-5.51-2.82-7.32-6.26-7.32-2.58,0-4.66,1.53-5.61,4.54a11.29,11.29,0,0,0-.25,2.78V77.6a1.25,1.25,0,0,1-1.25,1.25h-5A1.25,1.25,0,0,1,66,77.6V52.35a1.25,1.25,0,0,1,1.25-1.25h5a1.25,1.25,0,0,1,1.25,1.25v1.7a11.77,11.77,0,0,1,8.92-3.66,10.58,10.58,0,0,1,8.69,5c2.12-3.65,5.87-5,10.85-5,5.22,0,10.69,4.88,10.69,11.34ZM46.46,57.22a7.76,7.76,0,1,0,7.44,8.06c0-.1,0-.21,0-.31a7.61,7.61,0,0,0-7.46-7.75Z"/>
5
- </symbol>
6
-
7
- <symbol id="logo-divider">
8
- <rect x="409.75" y="14.54" width="2.18" height="100.92"/>
9
- </symbol>
10
-
11
- <symbol id="logo-property" viewBox="0 0 380 130" preserveAspectRatio="xMinYMid meet">
12
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-iam"></use>
13
- <path d="M208.2,88a3,3,0,1,0-2.49,5.46,3,3,0,0,0,1.24.27A3,3,0,0,0,208.21,88Zm-4-47.58h0a3,3,0,0,0,5.47-2.49v0h0a3,3,0,1,0-5.54,2.3l.09.2Zm-44,9.79a11.61,11.61,0,0,0-8.84,4v-1.9a1.25,1.25,0,0,0-1.22-1.22h-5a1.25,1.25,0,0,0-1.25,1.25v37.5a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V75.69a11.61,11.61,0,0,0,8.84,4c7.39,0,13.63-6.6,13.63-14.75s-6.28-14.72-13.67-14.72Zm-1.37,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.21,0,.31a7.6,7.6,0,0,1-7.45,7.75h0Zm90.8-22.5a11.61,11.61,0,0,0-8.84,4v-1.9a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25v37.5a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V75.69a11.61,11.61,0,0,0,8.84,4c7.39,0,13.63-6.6,13.63-14.75S257,50.22,249.59,50.22Zm-1.37,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.21,0,.31a7.6,7.6,0,0,1-7.45,7.75h0ZM214,50.22A14.75,14.75,0,1,0,228.75,65,14.75,14.75,0,0,0,214,50.22h0Zm0,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.21,0,.31A7.6,7.6,0,0,1,214,72.72h0Zm130.42-.91a1.25,1.25,0,0,0-1.63-.69l0,0c-2.7,1.21-4.37,1.25-5.06.83s-1.15-2.18-1.13-3v-.29h0V57.35h8a1.25,1.25,0,0,0,1.25-1.25V52.35a1.25,1.25,0,0,0-1.25-1.25h-8V43.48a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25V51.1h-3.74a1.25,1.25,0,0,0-1.25,1.25V56.1a1.25,1.25,0,0,0,1.25,1.25h3.78V68.71h0v.23c0,3,1.17,7.23,4.69,9.41a9.39,9.39,0,0,0,5,1.37,17.48,17.48,0,0,0,6.88-1.66,1.26,1.26,0,0,0,.64-1.61ZM377,51.1h-5.27a1.21,1.21,0,0,0-1.18.86l-6.24,19.2L358.05,52a1.26,1.26,0,0,0-1.19-.86H351.6a1.25,1.25,0,0,0-1.25,1.25,1.21,1.21,0,0,0,.06.38l6.07,18.69,2.1,6.51a1.25,1.25,0,0,0,1.19.87h2l-1.19,3.67c-.32.78-.93,1.78-1.67,2s-2.37-.23-4.67-2.1a1.27,1.27,0,0,0-1.78.21h0l-3,4a1.25,1.25,0,0,0,.21,1.72,17.29,17.29,0,0,0,6.22,3.37,9.42,9.42,0,0,0,5.21,0c3.9-1.17,6.14-4.85,6.92-7.73L378.14,52.8a1.25,1.25,0,0,0-.72-1.62,1.33,1.33,0,0,0-.45-.08Zm-95.63-.86A14.75,14.75,0,0,0,282,79.72c4.82,0,9.42-1.91,12.11-5.48a1.25,1.25,0,0,0-.24-1.74l-.05,0-3.46-2.41a1.23,1.23,0,0,0-1.71.29c-1.36,1.84-4.24,2.82-6.65,2.82-3.45,0-6.93-3.41-6.93-6.21H295a1.25,1.25,0,0,0,1.25-1.19V65c0-9-6.46-15.12-14.92-14.73ZM275.46,62c0-2.84,3.49-5.74,6.57-5.74s6.58,2.9,6.58,5.74ZM185.78,77.6V52.35a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25V77.6a1.25,1.25,0,0,0,1.25,1.25h5A1.25,1.25,0,0,0,185.78,77.6Zm12-21.84a4.66,4.66,0,1,0-4.66,4.66,4.66,4.66,0,0,0,4.66-4.66v0ZM307,51.1h-5a1.25,1.25,0,0,0-1.25,1.25V77.6A1.25,1.25,0,0,0,302,78.85h5a1.25,1.25,0,0,0,1.25-1.25V52.35A1.25,1.25,0,0,0,307,51.1Zm8.61,0a4.66,4.66,0,1,0,4.66,4.66,4.66,4.66,0,0,0-4.66-4.66Z"/>
14
- </symbol>
15
-
16
- <symbol id="logo-sold" viewBox="0 0 247 130" preserveAspectRatio="xMinYMid meet">
17
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-iam"></use>
18
- <path d="M208.2,88a3,3,0,1,0-2.49,5.46,3,3,0,0,0,1.24.27A3,3,0,0,0,208.21,88Zm37.22-49.83h-5a1.25,1.25,0,0,0-1.25,1.25V54.25a11.59,11.59,0,0,0-8.83-4C223,50.25,216.7,56.86,216.7,65S223,79.75,230.34,79.75a11.59,11.59,0,0,0,8.83-4v1.91a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.24-1.24h0V39.43a1.25,1.25,0,0,0-1.23-1.25ZM231.7,72.72a7.76,7.76,0,1,1,7.4-8.1c0,.13,0,.25,0,.38A7.61,7.61,0,0,1,231.7,72.72ZM200.11,65a14.75,14.75,0,1,0-14.75,14.75h0A14.77,14.77,0,0,0,200.11,65ZM177.9,65a7.46,7.46,0,1,1,7.46,7.75,7.61,7.61,0,0,1-7.5-7.72v0Zm33-26.79h-5a1.25,1.25,0,0,0-1.25,1.25V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.21-1.25V39.43a1.25,1.25,0,0,0-1.25-1.25h0ZM156.33,62.29c-2.86-.56-5.33-1-5.33-3.09,0-.74.35-2.47,3.58-2.47a3.3,3.3,0,0,1,3.18,1.79c.39.79.55,1,1.11,1h5.68a1,1,0,0,0,.75-.25.84.84,0,0,0,.15-.7,8.58,8.58,0,0,0-3.71-6.36,12.68,12.68,0,0,0-7.16-2c-5.2,0-11.28,2.36-11.28,9s5.48,7.68,9.87,8.56c2.83.56,5.27,1,5.27,3,0,2.15-2.42,2.47-3.86,2.47-2.38,0-3.35-1-3.75-1.84s-.57-.94-1.12-.94H144a1,1,0,0,0-.74.25.84.84,0,0,0-.15.7c.59,5.24,4.87,8.37,11.45,8.37,5.59,0,11.56-2.36,11.56-9s-5.52-7.66-9.89-8.52Z"/>
19
- </symbol>
20
-
21
- <symbol id="logo-key" viewBox="0 0 228 130" preserveAspectRatio="xMinYMid meet">
22
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-iam"></use>
23
- <path d="M167.58,78.6H161.2a1.86,1.86,0,0,1-1.68-.89l-7.79-11.39V77.2a1.27,1.27,0,0,1-1.4,1.4h-5.6a1.27,1.27,0,0,1-1.4-1.4V40.8a1.27,1.27,0,0,1,1.4-1.4h5.6a1.27,1.27,0,0,1,1.4,1.4v22L159,51.5a1.84,1.84,0,0,1,1.68-.9h6.44c1.12,0,1.51.73.89,1.68L159.74,64.6l8.68,12.32C169.09,77.88,168.7,78.6,167.58,78.6Zm59-28.43h-5.27a1.24,1.24,0,0,0-1.18.86l-6.24,19.2-6.24-19.16a1.26,1.26,0,0,0-1.19-.86h-5.26a1.25,1.25,0,0,0-1.25,1.25,1.21,1.21,0,0,0,.06.38L206,70.53l2.1,6.51a1.25,1.25,0,0,0,1.19.87h2l-1.19,3.67c-.32.78-.93,1.78-1.67,2s-2.37-.23-4.67-2.1a1.26,1.26,0,0,0-1.78.22h0l-3,4a1.25,1.25,0,0,0,.21,1.72,17.29,17.29,0,0,0,6.22,3.37,9.42,9.42,0,0,0,5.21,0c3.9-1.17,6.14-4.85,6.92-7.73L227.7,51.87a1.24,1.24,0,0,0-.71-1.61,1.22,1.22,0,0,0-.46-.09Zm-42.53,0a14.75,14.75,0,0,0,.69,29.48c4.82,0,9.42-1.91,12.11-5.48a1.25,1.25,0,0,0-.24-1.74l0,0L193.06,70a1.23,1.23,0,0,0-1.71.29c-1.36,1.84-4.24,2.82-6.65,2.82-3.45,0-6.93-3.41-6.93-6.21h19.9a1.25,1.25,0,0,0,1.25-1.19v-.8c0-9-6.46-15.12-14.92-14.73Zm-5.89,11.76c0-2.84,3.49-5.74,6.57-5.74s6.58,2.9,6.58,5.74ZM204.2,40.43h0a3,3,0,0,0,5.47-2.49v0h0a3,3,0,1,0-5.54,2.3l.09.2Z"/>
24
- </symbol>
25
-
26
- <symbol id="logo-compliance" viewBox="0 0 740 130" preserveAspectRatio="xMinYMid meet">
27
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-property"></use>
28
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-divider"></use>
29
- <path d="M555.1,52.34V89.8a1.24,1.24,0,0,0,1.22,1.25h5a1.25,1.25,0,0,0,1.25-1.25V75.68a11.61,11.61,0,0,0,8.83,4c7.39,0,13.64-6.61,13.64-14.76s-6.25-14.74-13.64-14.74a11.64,11.64,0,0,0-8.83,4.05V52.34a1.27,1.27,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25ZM562.61,65a7.45,7.45,0,1,1,7.45,7.76A7.61,7.61,0,0,1,562.61,65Zm79.5-13.87h-5a1.25,1.25,0,0,0-1.25,1.25v1.93a11.75,11.75,0,0,0-8.85-4c-7.39,0-13.62,6.61-13.62,14.74S619.63,79.75,627,79.75a11.62,11.62,0,0,0,8.85-4v1.92a1.25,1.25,0,0,0,1.25,1.25h5a1.27,1.27,0,0,0,1.25-1.25V52.34A1.27,1.27,0,0,0,642.11,51.09ZM628.39,72.72a7.76,7.76,0,1,1,7.46-8V65a7.6,7.6,0,0,1-7.46,7.76ZM484.72,50.22A14.76,14.76,0,1,0,499.48,65v0A14.76,14.76,0,0,0,484.72,50.22Zm0,22.5a7.76,7.76,0,1,1,7.46-8,2.62,2.62,0,0,1,0,.28,7.61,7.61,0,0,1-7.46,7.76Zm65.9,4.88a1.27,1.27,0,0,1-1.25,1.25h-5a1.26,1.26,0,0,1-1.25-1.25V64.53c-.15-5.52-2.81-7.26-6.26-7.26-2.6,0-4.61,1.45-5.52,4.53a11.83,11.83,0,0,0-.25,2.79V77.66a1.27,1.27,0,0,1-1.25,1.25h-5a1.27,1.27,0,0,1-1.27-1.25V64.59c-.14-5.52-2.8-7.27-6.26-7.27a5.82,5.82,0,0,0-5.59,4.54,11.3,11.3,0,0,0-.26,2.78V77.72A1.24,1.24,0,0,1,510.21,79h-5A1.24,1.24,0,0,1,504,77.72V52.34a1.25,1.25,0,0,1,1.25-1.25h5a1.25,1.25,0,0,1,1.25,1.25v1.72a11.75,11.75,0,0,1,8.92-3.66,10.56,10.56,0,0,1,8.71,5c2.11-3.64,5.81-5,10.84-5a11.36,11.36,0,0,1,10.7,11.32Zm170-27.36a14.75,14.75,0,0,0,.7,29.48,15,15,0,0,0,12.11-5.48,1.24,1.24,0,0,0-.27-1.74l0,0-3.44-2.42a1.25,1.25,0,0,0-1.72.29,8.7,8.7,0,0,1-6.65,2.9c-3.46,0-6.93-3.41-6.93-6.21h19.9a1.27,1.27,0,0,0,1.26-1.18V65C735.59,56,729.11,49.92,720.64,50.24ZM714.76,62c0-2.91,3.5-5.81,6.58-5.81s6.58,2.9,6.58,5.81ZM590.82,38.18h5a1.25,1.25,0,0,1,1.25,1.25V77.58a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V39.43A1.25,1.25,0,0,1,590.82,38.18Zm14.43,9.3a4.49,4.49,0,0,1-3.31-1.38,4.67,4.67,0,0,1,0-6.57,4.49,4.49,0,0,1,3.31-1.38,4.37,4.37,0,0,1,3.26,1.38,4.67,4.67,0,0,1,0,6.57A4.37,4.37,0,0,1,605.25,47.48Zm2.47,31.34h-5a1.21,1.21,0,0,1-1.2-1.21V52.3a1.16,1.16,0,0,1,1.2-1.21h5a1.19,1.19,0,0,1,.87.35,1.15,1.15,0,0,1,.33.86V77.61a1.21,1.21,0,0,1-1.2,1.21Zm41.44,0h5a1.27,1.27,0,0,0,1.25-1.25V64.53a11.87,11.87,0,0,1,.24-2.79,5.81,5.81,0,0,1,5.52-4.56h.32c3.26.13,5.74,2,5.88,7.26V77.51a1.27,1.27,0,0,0,1.25,1.25h5a1.26,1.26,0,0,0,1.26-1.25V61.72a11.36,11.36,0,0,0-10.7-11.32,11,11,0,0,0-2,.14H662a11.59,11.59,0,0,0-5.39,2.33h0A11.33,11.33,0,0,0,655.43,54V52.34a1.27,1.27,0,0,0-1.25-1.25h-5a1.27,1.27,0,0,0-1.25,1.25V77.6A1.26,1.26,0,0,0,649.16,78.85ZM468,72.82l-3.82-2.71a1.24,1.24,0,0,0-1.65.17,7.34,7.34,0,0,1-5.46,2.47,7.76,7.76,0,0,1,0-15.5,7.29,7.29,0,0,1,5.44,2.44,1.24,1.24,0,0,0,1.64.16L468,57.18a1.23,1.23,0,0,0,.3-1.72.31.31,0,0,0-.09-.11,14.75,14.75,0,1,0-1.47,20.82,13.69,13.69,0,0,0,1.47-1.48,1.24,1.24,0,0,0-.05-1.76Zm236.6,0-3.82-2.71a1.23,1.23,0,0,0-1.64.17,7.25,7.25,0,0,1-5.45,2.47,7.76,7.76,0,0,1,0-15.5,7.34,7.34,0,0,1,5.43,2.44,1.23,1.23,0,0,0,1.63.16l3.82-2.67a1.24,1.24,0,0,0,.32-1.72l-.09-.11a14.76,14.76,0,1,0-1.47,20.82,13.69,13.69,0,0,0,1.47-1.48,1.24,1.24,0,0,0-.07-1.76A.69.69,0,0,0,704.61,72.82Z"/>
30
- </symbol>
31
-
32
- <symbol id="logo-movebutler" viewBox="0 0 740 130" preserveAspectRatio="xMinYMid meet">
33
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-property"></use>
34
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-divider"></use>
35
- <path d="M489,77.6a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V64.53c-.16-5.52-2.81-7.26-6.26-7.26-2.61,0-4.6,1.45-5.53,4.53a12.39,12.39,0,0,0-.25,2.79V77.66a1.24,1.24,0,0,1-1.24,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V64.59c-.16-5.52-2.82-7.27-6.26-7.27a5.83,5.83,0,0,0-5.61,4.54,11.79,11.79,0,0,0-.24,2.78V77.72A1.25,1.25,0,0,1,448.56,79h-5a1.25,1.25,0,0,1-1.25-1.24V52.34a1.27,1.27,0,0,1,1.25-1.25h5a1.27,1.27,0,0,1,1.25,1.25v1.72a11.72,11.72,0,0,1,8.92-3.66,10.56,10.56,0,0,1,8.71,5c2.12-3.64,5.81-5,10.85-5A11.37,11.37,0,0,1,489,61.72ZM646.82,51.09h-5a1.25,1.25,0,0,0-1.25,1.25V65.41a10.45,10.45,0,0,1-.26,2.79,5.8,5.8,0,0,1-5.57,4.53h-.31c-3.27-.11-5.74-2-5.9-7.26V52.4a1.24,1.24,0,0,0-1.24-1.25h-5A1.25,1.25,0,0,0,621,52.4V68.22a11.38,11.38,0,0,0,10.69,11.33,13.23,13.23,0,0,0,2-.15h.2a11.48,11.48,0,0,0,5.38-2.34h0a10.44,10.44,0,0,0,1.2-1.1v1.71a1.25,1.25,0,0,0,1.25,1.25h5.07a1.25,1.25,0,0,0,1.25-1.25V52.34A1.25,1.25,0,0,0,646.82,51.09Zm-138.58-.87A14.76,14.76,0,1,0,523,65v0A14.77,14.77,0,0,0,508.24,50.22Zm0,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.2,0,.3A7.62,7.62,0,0,1,508.24,72.72ZM738.32,50.57h-.82a7.36,7.36,0,0,0-6.44,3.57v-1.8a1.28,1.28,0,0,0-1.25-1.25h-5a1.27,1.27,0,0,0-1.26,1.25V77.58a1.26,1.26,0,0,0,1.26,1.27h5a1.27,1.27,0,0,0,1.25-1.27V65.08c0-4.36,2-6.62,5.81-6.62h1.45a1.59,1.59,0,0,0,.93-.35,1.32,1.32,0,0,0,.46-1.11V52C739.62,51.05,739.17,50.57,738.32,50.57Zm-34.26-.33a14.75,14.75,0,0,0,.69,29.48,15.08,15.08,0,0,0,12.12-5.48,1.26,1.26,0,0,0-.27-1.74l0,0-3.44-2.42a1.28,1.28,0,0,0-1.73.29,8.61,8.61,0,0,1-6.64,2.9c-3.45,0-6.92-3.41-6.92-6.21h19.89A1.28,1.28,0,0,0,719,65.85V65C719,56,712.52,49.92,704.06,50.24ZM698.25,62c0-2.91,3.48-5.81,6.58-5.81s6.58,2.9,6.58,5.81ZM567.48,50.24a14.75,14.75,0,0,0,.69,29.48,15,15,0,0,0,12.1-5.48A1.24,1.24,0,0,0,580,72.5l0,0-3.45-2.42a1.26,1.26,0,0,0-1.72.29,8.73,8.73,0,0,1-6.64,2.9c-3.45,0-6.94-3.41-6.94-6.21h19.91a1.25,1.25,0,0,0,1.25-1.18V65C582.42,56,575.93,49.92,567.48,50.24ZM561.6,62c0-2.91,3.48-5.81,6.57-5.81s6.57,2.9,6.57,5.81ZM672.13,71.8a1.24,1.24,0,0,0-1.62-.68l0,0c-2.7,1.22-4.35,1.25-5.05.82a3.92,3.92,0,0,1-1.13-2.9V68.8h0V57.34h8a1.25,1.25,0,0,0,1.26-1.24h0V52.34a1.27,1.27,0,0,0-1.26-1.25h-8V43.48A1.25,1.25,0,0,0,663,42.23h-5a1.25,1.25,0,0,0-1.25,1.25v7.61H653a1.27,1.27,0,0,0-1.25,1.25v3.75A1.25,1.25,0,0,0,653,57.34h3.73V68.7h0v.23a11,11,0,0,0,4.69,9.41,9.42,9.42,0,0,0,5,1.37,17.39,17.39,0,0,0,6.87-1.66,1.26,1.26,0,0,0,.64-1.61Zm-59.35,3.77a13.44,13.44,0,0,1-9.88,4.15,9.68,9.68,0,0,1-8.6-4.23v2.25a1.19,1.19,0,0,1-1.16,1.17h-5a1.18,1.18,0,0,1-.87-.35,1.1,1.1,0,0,1-.35-.82V39.42a1.16,1.16,0,0,1,.35-.82,1.22,1.22,0,0,1,.87-.35h5a1.19,1.19,0,0,1,.84.35,1,1,0,0,1,.38.82V54.27a8.19,8.19,0,0,1,3.43-2.9A11.55,11.55,0,0,1,603,50.21a13.39,13.39,0,0,1,9.82,4.06,14.41,14.41,0,0,1,4.12,10.64A14.55,14.55,0,0,1,612.78,75.57Zm-11-18.49a7.08,7.08,0,0,0-5.35,2.26,7.87,7.87,0,0,0-2.15,5.58,8,8,0,0,0,2.15,5.61,7.4,7.4,0,0,0,10.47.24l.25-.24a7.91,7.91,0,0,0,2.18-5.61,7.77,7.77,0,0,0-2.18-5.58A7.13,7.13,0,0,0,601.8,57.08Zm77.46-18.9h5a1.25,1.25,0,0,1,1.25,1.25V77.58a1.25,1.25,0,0,1-1.25,1.25h-5A1.25,1.25,0,0,1,678,77.58V39.43A1.25,1.25,0,0,1,679.26,38.18ZM549.7,51.09h-5.27a1.28,1.28,0,0,0-1.19.88l-5,15.54L533.14,52a1.25,1.25,0,0,0-1.19-.88H526.7a1.26,1.26,0,0,0-1.26,1.25,1.27,1.27,0,0,0,.06.39l6.08,18.73,2.1,6.52a1.28,1.28,0,0,0,1.19.87h6.64A1.28,1.28,0,0,0,542.7,78l.84-2.62L547,64.86h0l4-12.13a1.23,1.23,0,0,0-.79-1.57A1.08,1.08,0,0,0,549.7,51.09Z"/>
36
- </symbol>
37
-
38
- <symbol id="logo-medwaylaw" viewBox="0 0 464 130" preserveAspectRatio="xMinYMid meet">
39
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-iam"></use>
40
- <path d="M204.2,40.43s0,0,0,0v0h0A3,3,0,0,0,207,42.25a3.09,3.09,0,0,0,1.25-.27,3,3,0,0,0,1.48-4s0,0,0,0v0a3,3,0,0,0-5.46,2.5Zm5,9.81a14.75,14.75,0,0,0,.7,29.48c4.81,0,9.42-1.91,12.11-5.48a1.25,1.25,0,0,0-.3-1.77l-3.45-2.41a1.24,1.24,0,0,0-1.72.29c-1.36,1.84-4.23,2.82-6.64,2.82-3.46,0-6.94-3.41-6.94-6.21h19.92a1.26,1.26,0,0,0,1.25-1.19c0-.26,0-.53,0-.8C224.12,56,217.64,49.85,209.17,50.24ZM203.29,62c0-2.84,3.49-5.74,6.58-5.74s6.57,2.9,6.57,5.74ZM179.78,50.39c-5,0-8.73,1.32-10.84,5a10.58,10.58,0,0,0-8.69-5,11.78,11.78,0,0,0-8.93,3.66v-1.7a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V64.54a11,11,0,0,1,.26-2.78c.95-3,3-4.54,5.6-4.54,3.45,0,6.11,1.81,6.26,7.32V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V64.54a11.52,11.52,0,0,1,.25-2.78c.92-3.1,2.92-4.54,5.53-4.54,3.44,0,6.1,1.81,6.26,7.32V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V61.73C190.48,55.27,185,50.41,179.78,50.39ZM208.21,88a3,3,0,0,0-2.49,5.46,2.89,2.89,0,0,0,1.24.27A3,3,0,0,0,208.21,88Zm48.7-49.83h-5a1.25,1.25,0,0,0-1.25,1.25V54.25a11.61,11.61,0,0,0-8.83-4c-7.39,0-13.64,6.61-13.64,14.75s6.25,14.75,13.64,14.75a11.61,11.61,0,0,0,8.83-4V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.24,1.24,0,0,0,1.24-1.25V39.43A1.24,1.24,0,0,0,256.91,38.18ZM243.19,72.72A7.76,7.76,0,1,1,250.64,65,7.61,7.61,0,0,1,243.19,72.72ZM380.56,38.18h-5a1.24,1.24,0,0,0-1.24,1.25V77.6a1.24,1.24,0,0,0,1.24,1.25h5a1.25,1.25,0,0,0,1.25-1.25V39.43A1.25,1.25,0,0,0,380.56,38.18ZM335.88,51.1h-5a1.24,1.24,0,0,0-1.25,1.25v1.9a11.64,11.64,0,0,0-8.84-4c-7.39,0-13.64,6.61-13.64,14.75s6.25,14.75,13.64,14.75a11.64,11.64,0,0,0,8.84-4V77.6a1.24,1.24,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V52.35A1.25,1.25,0,0,0,335.88,51.1ZM322.16,72.72A7.76,7.76,0,1,1,329.61,65,7.61,7.61,0,0,1,322.16,72.72ZM415,51.1h-5a1.25,1.25,0,0,0-1.25,1.25v1.9a11.64,11.64,0,0,0-8.84-4c-7.39,0-13.63,6.61-13.63,14.75s6.24,14.75,13.63,14.75a11.64,11.64,0,0,0,8.84-4V77.6A1.25,1.25,0,0,0,410,78.85h5a1.25,1.25,0,0,0,1.25-1.25V52.35A1.25,1.25,0,0,0,415,51.1ZM401.31,72.72A7.76,7.76,0,1,1,408.76,65,7.61,7.61,0,0,1,401.31,72.72ZM368.46,51.1H363.2A1.25,1.25,0,0,0,362,52l-6.24,19.2L349.53,52a1.23,1.23,0,0,0-1.19-.86h-5.25a1.25,1.25,0,0,0-1.19,1.63L348,71.42l2.1,6.51a1.25,1.25,0,0,0,1.19.87h2l-1.19,3.67c-.32.78-.93,1.78-1.67,2s-2.37-.23-4.68-2.1a1.25,1.25,0,0,0-1.78.22l-3,4a1.24,1.24,0,0,0,.21,1.72,17.32,17.32,0,0,0,6.21,3.37,9.44,9.44,0,0,0,5.22,0c3.89-1.17,6.14-4.85,6.91-7.73l10.14-31.19A1.25,1.25,0,0,0,368.46,51.1Zm-63.81,0h-5.26a1.22,1.22,0,0,0-1.18.86l-5,15.49-5-15.49A1.25,1.25,0,0,0,287,51.1H281.6a1.22,1.22,0,0,0-1.18.86l-5,15.49-5-15.49a1.25,1.25,0,0,0-1.19-.86h-5.25a1.24,1.24,0,0,0-1.19,1.63l6.07,18.69,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.62,3.4-10.47v0l.16-.48,2.3,7.08,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.61,3.41-10.48,0,0,3.93-12.09A1.25,1.25,0,0,0,304.65,51.1Zm158.13,0h-5.26a1.25,1.25,0,0,0-1.19.86l-5,15.49-5-15.49a1.25,1.25,0,0,0-1.19-.86h-5.35a1.25,1.25,0,0,0-1.19.86l-5,15.49-5-15.49a1.22,1.22,0,0,0-1.18-.86H422a1.25,1.25,0,0,0-1.19,1.63l6.07,18.69,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.62,3.41-10.47v0l.15-.48,2.3,7.08,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.61,3.41-10.48v0L464,52.73A1.24,1.24,0,0,0,462.78,51.1Z"/>
41
- </symbol>
42
-
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+
3
+ <symbol id="logo-iam">
4
+ <path d="M133.05,8.54a2.8,2.8,0,0,0,.86-.13,3,3,0,1,0-.86.13ZM134,121.6a3,3,0,1,0-1.69,5.76,3.06,3.06,0,0,0,.85.12,3,3,0,0,0,.84-5.88ZM182.42,15.34a3,3,0,1,0,3.86-4.59,3,3,0,0,0-.63-.41h0a3,3,0,0,0-3.23,5Zm-15.29-7a3.06,3.06,0,0,0,.85.12,3,3,0,1,0-.85-.12ZM117,15.83a3,3,0,1,0-3-3,3.07,3.07,0,0,0,.48,1.62A3,3,0,0,0,117,15.88Zm1.68,98.76a3,3,0,1,0,1.39,2.54,3,3,0,0,0-1.39-2.54Zm80.7-11.32a3,3,0,0,0-4.23.31h0a3,3,0,1,0,4.31-.31Zm-16.91,11.3a1.9,1.9,0,1,1,0,.05Zm14.9-87.28a3,3,0,0,0,2.26-5h0a3,3,0,1,0-2.26,5ZM150.6,124a3,3,0,1,0,3,3A3,3,0,0,0,150.6,124ZM150.52,6a3,3,0,1,0-3-3A3,3,0,0,0,150.52,6Zm16.69,115.6a3,3,0,0,0,.85,5.88,2.7,2.7,0,0,0,.85-.13,3,3,0,0,0-1.49-5.81l-.21.06ZM65,0a65,65,0,1,0,65,65A65,65,0,0,0,65,0ZM27.74,77.6a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V52.35a1.25,1.25,0,0,1,1.25-1.25h5a1.25,1.25,0,0,1,1.25,1.25ZM24.11,47.49a4.66,4.66,0,1,1,4.66-4.66h0A4.66,4.66,0,0,1,24.11,47.49ZM61.47,77.6a1.25,1.25,0,0,1-1.25,1.25h-5A1.25,1.25,0,0,1,54,77.6V75.69a11.61,11.61,0,0,1-8.84,4c-7.39,0-13.63-6.6-13.63-14.75s6.24-14.75,13.63-14.75a11.61,11.61,0,0,1,8.84,4v-1.9A1.25,1.25,0,0,1,55.22,51h5a1.25,1.25,0,0,1,1.25,1.25Zm40-55.13a3,3,0,1,1,2.26,4.93,3,3,0,0,1-2-.73,3,3,0,0,1-.36-4.2Zm-10,15.58a3,3,0,1,1,2.73,4.24A3,3,0,0,1,93,42a3,3,0,0,1-1.52-4h0Zm4,55.46a3,3,0,1,1,1.76-2.72A3,3,0,0,1,95.47,93.51Zm10.24,14.38a2.93,2.93,0,0,1-2,.74,3,3,0,1,1,2-.74Zm6.87-30.29a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.22-1.25V64.54c-.15-5.51-2.81-7.32-6.26-7.32-2.61,0-4.6,1.44-5.52,4.54a11.29,11.29,0,0,0-.25,2.78V77.6a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V64.54c-.16-5.51-2.82-7.32-6.26-7.32-2.58,0-4.66,1.53-5.61,4.54a11.29,11.29,0,0,0-.25,2.78V77.6a1.25,1.25,0,0,1-1.25,1.25h-5A1.25,1.25,0,0,1,66,77.6V52.35a1.25,1.25,0,0,1,1.25-1.25h5a1.25,1.25,0,0,1,1.25,1.25v1.7a11.77,11.77,0,0,1,8.92-3.66,10.58,10.58,0,0,1,8.69,5c2.12-3.65,5.87-5,10.85-5,5.22,0,10.69,4.88,10.69,11.34ZM46.46,57.22a7.76,7.76,0,1,0,7.44,8.06c0-.1,0-.21,0-.31a7.61,7.61,0,0,0-7.46-7.75Z"/>
5
+ </symbol>
6
+
7
+ <symbol id="logo-divider">
8
+ <rect x="409.75" y="14.54" width="2.18" height="100.92"/>
9
+ </symbol>
10
+
11
+ <symbol id="logo-property" viewBox="0 0 380 130" preserveAspectRatio="xMinYMid meet">
12
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-iam"></use>
13
+ <path d="M208.2,88a3,3,0,1,0-2.49,5.46,3,3,0,0,0,1.24.27A3,3,0,0,0,208.21,88Zm-4-47.58h0a3,3,0,0,0,5.47-2.49v0h0a3,3,0,1,0-5.54,2.3l.09.2Zm-44,9.79a11.61,11.61,0,0,0-8.84,4v-1.9a1.25,1.25,0,0,0-1.22-1.22h-5a1.25,1.25,0,0,0-1.25,1.25v37.5a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V75.69a11.61,11.61,0,0,0,8.84,4c7.39,0,13.63-6.6,13.63-14.75s-6.28-14.72-13.67-14.72Zm-1.37,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.21,0,.31a7.6,7.6,0,0,1-7.45,7.75h0Zm90.8-22.5a11.61,11.61,0,0,0-8.84,4v-1.9a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25v37.5a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V75.69a11.61,11.61,0,0,0,8.84,4c7.39,0,13.63-6.6,13.63-14.75S257,50.22,249.59,50.22Zm-1.37,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.21,0,.31a7.6,7.6,0,0,1-7.45,7.75h0ZM214,50.22A14.75,14.75,0,1,0,228.75,65,14.75,14.75,0,0,0,214,50.22h0Zm0,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.21,0,.31A7.6,7.6,0,0,1,214,72.72h0Zm130.42-.91a1.25,1.25,0,0,0-1.63-.69l0,0c-2.7,1.21-4.37,1.25-5.06.83s-1.15-2.18-1.13-3v-.29h0V57.35h8a1.25,1.25,0,0,0,1.25-1.25V52.35a1.25,1.25,0,0,0-1.25-1.25h-8V43.48a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25V51.1h-3.74a1.25,1.25,0,0,0-1.25,1.25V56.1a1.25,1.25,0,0,0,1.25,1.25h3.78V68.71h0v.23c0,3,1.17,7.23,4.69,9.41a9.39,9.39,0,0,0,5,1.37,17.48,17.48,0,0,0,6.88-1.66,1.26,1.26,0,0,0,.64-1.61ZM377,51.1h-5.27a1.21,1.21,0,0,0-1.18.86l-6.24,19.2L358.05,52a1.26,1.26,0,0,0-1.19-.86H351.6a1.25,1.25,0,0,0-1.25,1.25,1.21,1.21,0,0,0,.06.38l6.07,18.69,2.1,6.51a1.25,1.25,0,0,0,1.19.87h2l-1.19,3.67c-.32.78-.93,1.78-1.67,2s-2.37-.23-4.67-2.1a1.27,1.27,0,0,0-1.78.21h0l-3,4a1.25,1.25,0,0,0,.21,1.72,17.29,17.29,0,0,0,6.22,3.37,9.42,9.42,0,0,0,5.21,0c3.9-1.17,6.14-4.85,6.92-7.73L378.14,52.8a1.25,1.25,0,0,0-.72-1.62,1.33,1.33,0,0,0-.45-.08Zm-95.63-.86A14.75,14.75,0,0,0,282,79.72c4.82,0,9.42-1.91,12.11-5.48a1.25,1.25,0,0,0-.24-1.74l-.05,0-3.46-2.41a1.23,1.23,0,0,0-1.71.29c-1.36,1.84-4.24,2.82-6.65,2.82-3.45,0-6.93-3.41-6.93-6.21H295a1.25,1.25,0,0,0,1.25-1.19V65c0-9-6.46-15.12-14.92-14.73ZM275.46,62c0-2.84,3.49-5.74,6.57-5.74s6.58,2.9,6.58,5.74ZM185.78,77.6V52.35a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25V77.6a1.25,1.25,0,0,0,1.25,1.25h5A1.25,1.25,0,0,0,185.78,77.6Zm12-21.84a4.66,4.66,0,1,0-4.66,4.66,4.66,4.66,0,0,0,4.66-4.66v0ZM307,51.1h-5a1.25,1.25,0,0,0-1.25,1.25V77.6A1.25,1.25,0,0,0,302,78.85h5a1.25,1.25,0,0,0,1.25-1.25V52.35A1.25,1.25,0,0,0,307,51.1Zm8.61,0a4.66,4.66,0,1,0,4.66,4.66,4.66,4.66,0,0,0-4.66-4.66Z"/>
14
+ </symbol>
15
+
16
+ <symbol id="logo-sold" viewBox="0 0 247 130" preserveAspectRatio="xMinYMid meet">
17
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-iam"></use>
18
+ <path d="M208.2,88a3,3,0,1,0-2.49,5.46,3,3,0,0,0,1.24.27A3,3,0,0,0,208.21,88Zm37.22-49.83h-5a1.25,1.25,0,0,0-1.25,1.25V54.25a11.59,11.59,0,0,0-8.83-4C223,50.25,216.7,56.86,216.7,65S223,79.75,230.34,79.75a11.59,11.59,0,0,0,8.83-4v1.91a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.24-1.24h0V39.43a1.25,1.25,0,0,0-1.23-1.25ZM231.7,72.72a7.76,7.76,0,1,1,7.4-8.1c0,.13,0,.25,0,.38A7.61,7.61,0,0,1,231.7,72.72ZM200.11,65a14.75,14.75,0,1,0-14.75,14.75h0A14.77,14.77,0,0,0,200.11,65ZM177.9,65a7.46,7.46,0,1,1,7.46,7.75,7.61,7.61,0,0,1-7.5-7.72v0Zm33-26.79h-5a1.25,1.25,0,0,0-1.25,1.25V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.21-1.25V39.43a1.25,1.25,0,0,0-1.25-1.25h0ZM156.33,62.29c-2.86-.56-5.33-1-5.33-3.09,0-.74.35-2.47,3.58-2.47a3.3,3.3,0,0,1,3.18,1.79c.39.79.55,1,1.11,1h5.68a1,1,0,0,0,.75-.25.84.84,0,0,0,.15-.7,8.58,8.58,0,0,0-3.71-6.36,12.68,12.68,0,0,0-7.16-2c-5.2,0-11.28,2.36-11.28,9s5.48,7.68,9.87,8.56c2.83.56,5.27,1,5.27,3,0,2.15-2.42,2.47-3.86,2.47-2.38,0-3.35-1-3.75-1.84s-.57-.94-1.12-.94H144a1,1,0,0,0-.74.25.84.84,0,0,0-.15.7c.59,5.24,4.87,8.37,11.45,8.37,5.59,0,11.56-2.36,11.56-9s-5.52-7.66-9.89-8.52Z"/>
19
+ </symbol>
20
+
21
+ <symbol id="logo-key" viewBox="0 0 228 130" preserveAspectRatio="xMinYMid meet">
22
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-iam"></use>
23
+ <path d="M167.58,78.6H161.2a1.86,1.86,0,0,1-1.68-.89l-7.79-11.39V77.2a1.27,1.27,0,0,1-1.4,1.4h-5.6a1.27,1.27,0,0,1-1.4-1.4V40.8a1.27,1.27,0,0,1,1.4-1.4h5.6a1.27,1.27,0,0,1,1.4,1.4v22L159,51.5a1.84,1.84,0,0,1,1.68-.9h6.44c1.12,0,1.51.73.89,1.68L159.74,64.6l8.68,12.32C169.09,77.88,168.7,78.6,167.58,78.6Zm59-28.43h-5.27a1.24,1.24,0,0,0-1.18.86l-6.24,19.2-6.24-19.16a1.26,1.26,0,0,0-1.19-.86h-5.26a1.25,1.25,0,0,0-1.25,1.25,1.21,1.21,0,0,0,.06.38L206,70.53l2.1,6.51a1.25,1.25,0,0,0,1.19.87h2l-1.19,3.67c-.32.78-.93,1.78-1.67,2s-2.37-.23-4.67-2.1a1.26,1.26,0,0,0-1.78.22h0l-3,4a1.25,1.25,0,0,0,.21,1.72,17.29,17.29,0,0,0,6.22,3.37,9.42,9.42,0,0,0,5.21,0c3.9-1.17,6.14-4.85,6.92-7.73L227.7,51.87a1.24,1.24,0,0,0-.71-1.61,1.22,1.22,0,0,0-.46-.09Zm-42.53,0a14.75,14.75,0,0,0,.69,29.48c4.82,0,9.42-1.91,12.11-5.48a1.25,1.25,0,0,0-.24-1.74l0,0L193.06,70a1.23,1.23,0,0,0-1.71.29c-1.36,1.84-4.24,2.82-6.65,2.82-3.45,0-6.93-3.41-6.93-6.21h19.9a1.25,1.25,0,0,0,1.25-1.19v-.8c0-9-6.46-15.12-14.92-14.73Zm-5.89,11.76c0-2.84,3.49-5.74,6.57-5.74s6.58,2.9,6.58,5.74ZM204.2,40.43h0a3,3,0,0,0,5.47-2.49v0h0a3,3,0,1,0-5.54,2.3l.09.2Z"/>
24
+ </symbol>
25
+
26
+ <symbol id="logo-compliance" viewBox="0 0 740 130" preserveAspectRatio="xMinYMid meet">
27
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-property"></use>
28
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-divider"></use>
29
+ <path d="M555.1,52.34V89.8a1.24,1.24,0,0,0,1.22,1.25h5a1.25,1.25,0,0,0,1.25-1.25V75.68a11.61,11.61,0,0,0,8.83,4c7.39,0,13.64-6.61,13.64-14.76s-6.25-14.74-13.64-14.74a11.64,11.64,0,0,0-8.83,4.05V52.34a1.27,1.27,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25ZM562.61,65a7.45,7.45,0,1,1,7.45,7.76A7.61,7.61,0,0,1,562.61,65Zm79.5-13.87h-5a1.25,1.25,0,0,0-1.25,1.25v1.93a11.75,11.75,0,0,0-8.85-4c-7.39,0-13.62,6.61-13.62,14.74S619.63,79.75,627,79.75a11.62,11.62,0,0,0,8.85-4v1.92a1.25,1.25,0,0,0,1.25,1.25h5a1.27,1.27,0,0,0,1.25-1.25V52.34A1.27,1.27,0,0,0,642.11,51.09ZM628.39,72.72a7.76,7.76,0,1,1,7.46-8V65a7.6,7.6,0,0,1-7.46,7.76ZM484.72,50.22A14.76,14.76,0,1,0,499.48,65v0A14.76,14.76,0,0,0,484.72,50.22Zm0,22.5a7.76,7.76,0,1,1,7.46-8,2.62,2.62,0,0,1,0,.28,7.61,7.61,0,0,1-7.46,7.76Zm65.9,4.88a1.27,1.27,0,0,1-1.25,1.25h-5a1.26,1.26,0,0,1-1.25-1.25V64.53c-.15-5.52-2.81-7.26-6.26-7.26-2.6,0-4.61,1.45-5.52,4.53a11.83,11.83,0,0,0-.25,2.79V77.66a1.27,1.27,0,0,1-1.25,1.25h-5a1.27,1.27,0,0,1-1.27-1.25V64.59c-.14-5.52-2.8-7.27-6.26-7.27a5.82,5.82,0,0,0-5.59,4.54,11.3,11.3,0,0,0-.26,2.78V77.72A1.24,1.24,0,0,1,510.21,79h-5A1.24,1.24,0,0,1,504,77.72V52.34a1.25,1.25,0,0,1,1.25-1.25h5a1.25,1.25,0,0,1,1.25,1.25v1.72a11.75,11.75,0,0,1,8.92-3.66,10.56,10.56,0,0,1,8.71,5c2.11-3.64,5.81-5,10.84-5a11.36,11.36,0,0,1,10.7,11.32Zm170-27.36a14.75,14.75,0,0,0,.7,29.48,15,15,0,0,0,12.11-5.48,1.24,1.24,0,0,0-.27-1.74l0,0-3.44-2.42a1.25,1.25,0,0,0-1.72.29,8.7,8.7,0,0,1-6.65,2.9c-3.46,0-6.93-3.41-6.93-6.21h19.9a1.27,1.27,0,0,0,1.26-1.18V65C735.59,56,729.11,49.92,720.64,50.24ZM714.76,62c0-2.91,3.5-5.81,6.58-5.81s6.58,2.9,6.58,5.81ZM590.82,38.18h5a1.25,1.25,0,0,1,1.25,1.25V77.58a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V39.43A1.25,1.25,0,0,1,590.82,38.18Zm14.43,9.3a4.49,4.49,0,0,1-3.31-1.38,4.67,4.67,0,0,1,0-6.57,4.49,4.49,0,0,1,3.31-1.38,4.37,4.37,0,0,1,3.26,1.38,4.67,4.67,0,0,1,0,6.57A4.37,4.37,0,0,1,605.25,47.48Zm2.47,31.34h-5a1.21,1.21,0,0,1-1.2-1.21V52.3a1.16,1.16,0,0,1,1.2-1.21h5a1.19,1.19,0,0,1,.87.35,1.15,1.15,0,0,1,.33.86V77.61a1.21,1.21,0,0,1-1.2,1.21Zm41.44,0h5a1.27,1.27,0,0,0,1.25-1.25V64.53a11.87,11.87,0,0,1,.24-2.79,5.81,5.81,0,0,1,5.52-4.56h.32c3.26.13,5.74,2,5.88,7.26V77.51a1.27,1.27,0,0,0,1.25,1.25h5a1.26,1.26,0,0,0,1.26-1.25V61.72a11.36,11.36,0,0,0-10.7-11.32,11,11,0,0,0-2,.14H662a11.59,11.59,0,0,0-5.39,2.33h0A11.33,11.33,0,0,0,655.43,54V52.34a1.27,1.27,0,0,0-1.25-1.25h-5a1.27,1.27,0,0,0-1.25,1.25V77.6A1.26,1.26,0,0,0,649.16,78.85ZM468,72.82l-3.82-2.71a1.24,1.24,0,0,0-1.65.17,7.34,7.34,0,0,1-5.46,2.47,7.76,7.76,0,0,1,0-15.5,7.29,7.29,0,0,1,5.44,2.44,1.24,1.24,0,0,0,1.64.16L468,57.18a1.23,1.23,0,0,0,.3-1.72.31.31,0,0,0-.09-.11,14.75,14.75,0,1,0-1.47,20.82,13.69,13.69,0,0,0,1.47-1.48,1.24,1.24,0,0,0-.05-1.76Zm236.6,0-3.82-2.71a1.23,1.23,0,0,0-1.64.17,7.25,7.25,0,0,1-5.45,2.47,7.76,7.76,0,0,1,0-15.5,7.34,7.34,0,0,1,5.43,2.44,1.23,1.23,0,0,0,1.63.16l3.82-2.67a1.24,1.24,0,0,0,.32-1.72l-.09-.11a14.76,14.76,0,1,0-1.47,20.82,13.69,13.69,0,0,0,1.47-1.48,1.24,1.24,0,0,0-.07-1.76A.69.69,0,0,0,704.61,72.82Z"/>
30
+ </symbol>
31
+
32
+ <symbol id="logo-movebutler" viewBox="0 0 740 130" preserveAspectRatio="xMinYMid meet">
33
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-property"></use>
34
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-divider"></use>
35
+ <path d="M489,77.6a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V64.53c-.16-5.52-2.81-7.26-6.26-7.26-2.61,0-4.6,1.45-5.53,4.53a12.39,12.39,0,0,0-.25,2.79V77.66a1.24,1.24,0,0,1-1.24,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V64.59c-.16-5.52-2.82-7.27-6.26-7.27a5.83,5.83,0,0,0-5.61,4.54,11.79,11.79,0,0,0-.24,2.78V77.72A1.25,1.25,0,0,1,448.56,79h-5a1.25,1.25,0,0,1-1.25-1.24V52.34a1.27,1.27,0,0,1,1.25-1.25h5a1.27,1.27,0,0,1,1.25,1.25v1.72a11.72,11.72,0,0,1,8.92-3.66,10.56,10.56,0,0,1,8.71,5c2.12-3.64,5.81-5,10.85-5A11.37,11.37,0,0,1,489,61.72ZM646.82,51.09h-5a1.25,1.25,0,0,0-1.25,1.25V65.41a10.45,10.45,0,0,1-.26,2.79,5.8,5.8,0,0,1-5.57,4.53h-.31c-3.27-.11-5.74-2-5.9-7.26V52.4a1.24,1.24,0,0,0-1.24-1.25h-5A1.25,1.25,0,0,0,621,52.4V68.22a11.38,11.38,0,0,0,10.69,11.33,13.23,13.23,0,0,0,2-.15h.2a11.48,11.48,0,0,0,5.38-2.34h0a10.44,10.44,0,0,0,1.2-1.1v1.71a1.25,1.25,0,0,0,1.25,1.25h5.07a1.25,1.25,0,0,0,1.25-1.25V52.34A1.25,1.25,0,0,0,646.82,51.09Zm-138.58-.87A14.76,14.76,0,1,0,523,65v0A14.77,14.77,0,0,0,508.24,50.22Zm0,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.2,0,.3A7.62,7.62,0,0,1,508.24,72.72ZM738.32,50.57h-.82a7.36,7.36,0,0,0-6.44,3.57v-1.8a1.28,1.28,0,0,0-1.25-1.25h-5a1.27,1.27,0,0,0-1.26,1.25V77.58a1.26,1.26,0,0,0,1.26,1.27h5a1.27,1.27,0,0,0,1.25-1.27V65.08c0-4.36,2-6.62,5.81-6.62h1.45a1.59,1.59,0,0,0,.93-.35,1.32,1.32,0,0,0,.46-1.11V52C739.62,51.05,739.17,50.57,738.32,50.57Zm-34.26-.33a14.75,14.75,0,0,0,.69,29.48,15.08,15.08,0,0,0,12.12-5.48,1.26,1.26,0,0,0-.27-1.74l0,0-3.44-2.42a1.28,1.28,0,0,0-1.73.29,8.61,8.61,0,0,1-6.64,2.9c-3.45,0-6.92-3.41-6.92-6.21h19.89A1.28,1.28,0,0,0,719,65.85V65C719,56,712.52,49.92,704.06,50.24ZM698.25,62c0-2.91,3.48-5.81,6.58-5.81s6.58,2.9,6.58,5.81ZM567.48,50.24a14.75,14.75,0,0,0,.69,29.48,15,15,0,0,0,12.1-5.48A1.24,1.24,0,0,0,580,72.5l0,0-3.45-2.42a1.26,1.26,0,0,0-1.72.29,8.73,8.73,0,0,1-6.64,2.9c-3.45,0-6.94-3.41-6.94-6.21h19.91a1.25,1.25,0,0,0,1.25-1.18V65C582.42,56,575.93,49.92,567.48,50.24ZM561.6,62c0-2.91,3.48-5.81,6.57-5.81s6.57,2.9,6.57,5.81ZM672.13,71.8a1.24,1.24,0,0,0-1.62-.68l0,0c-2.7,1.22-4.35,1.25-5.05.82a3.92,3.92,0,0,1-1.13-2.9V68.8h0V57.34h8a1.25,1.25,0,0,0,1.26-1.24h0V52.34a1.27,1.27,0,0,0-1.26-1.25h-8V43.48A1.25,1.25,0,0,0,663,42.23h-5a1.25,1.25,0,0,0-1.25,1.25v7.61H653a1.27,1.27,0,0,0-1.25,1.25v3.75A1.25,1.25,0,0,0,653,57.34h3.73V68.7h0v.23a11,11,0,0,0,4.69,9.41,9.42,9.42,0,0,0,5,1.37,17.39,17.39,0,0,0,6.87-1.66,1.26,1.26,0,0,0,.64-1.61Zm-59.35,3.77a13.44,13.44,0,0,1-9.88,4.15,9.68,9.68,0,0,1-8.6-4.23v2.25a1.19,1.19,0,0,1-1.16,1.17h-5a1.18,1.18,0,0,1-.87-.35,1.1,1.1,0,0,1-.35-.82V39.42a1.16,1.16,0,0,1,.35-.82,1.22,1.22,0,0,1,.87-.35h5a1.19,1.19,0,0,1,.84.35,1,1,0,0,1,.38.82V54.27a8.19,8.19,0,0,1,3.43-2.9A11.55,11.55,0,0,1,603,50.21a13.39,13.39,0,0,1,9.82,4.06,14.41,14.41,0,0,1,4.12,10.64A14.55,14.55,0,0,1,612.78,75.57Zm-11-18.49a7.08,7.08,0,0,0-5.35,2.26,7.87,7.87,0,0,0-2.15,5.58,8,8,0,0,0,2.15,5.61,7.4,7.4,0,0,0,10.47.24l.25-.24a7.91,7.91,0,0,0,2.18-5.61,7.77,7.77,0,0,0-2.18-5.58A7.13,7.13,0,0,0,601.8,57.08Zm77.46-18.9h5a1.25,1.25,0,0,1,1.25,1.25V77.58a1.25,1.25,0,0,1-1.25,1.25h-5A1.25,1.25,0,0,1,678,77.58V39.43A1.25,1.25,0,0,1,679.26,38.18ZM549.7,51.09h-5.27a1.28,1.28,0,0,0-1.19.88l-5,15.54L533.14,52a1.25,1.25,0,0,0-1.19-.88H526.7a1.26,1.26,0,0,0-1.26,1.25,1.27,1.27,0,0,0,.06.39l6.08,18.73,2.1,6.52a1.28,1.28,0,0,0,1.19.87h6.64A1.28,1.28,0,0,0,542.7,78l.84-2.62L547,64.86h0l4-12.13a1.23,1.23,0,0,0-.79-1.57A1.08,1.08,0,0,0,549.7,51.09Z"/>
36
+ </symbol>
37
+
38
+ <symbol id="logo-medwaylaw" viewBox="0 0 464 130" preserveAspectRatio="xMinYMid meet">
39
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-iam"></use>
40
+ <path d="M204.2,40.43s0,0,0,0v0h0A3,3,0,0,0,207,42.25a3.09,3.09,0,0,0,1.25-.27,3,3,0,0,0,1.48-4s0,0,0,0v0a3,3,0,0,0-5.46,2.5Zm5,9.81a14.75,14.75,0,0,0,.7,29.48c4.81,0,9.42-1.91,12.11-5.48a1.25,1.25,0,0,0-.3-1.77l-3.45-2.41a1.24,1.24,0,0,0-1.72.29c-1.36,1.84-4.23,2.82-6.64,2.82-3.46,0-6.94-3.41-6.94-6.21h19.92a1.26,1.26,0,0,0,1.25-1.19c0-.26,0-.53,0-.8C224.12,56,217.64,49.85,209.17,50.24ZM203.29,62c0-2.84,3.49-5.74,6.58-5.74s6.57,2.9,6.57,5.74ZM179.78,50.39c-5,0-8.73,1.32-10.84,5a10.58,10.58,0,0,0-8.69-5,11.78,11.78,0,0,0-8.93,3.66v-1.7a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V64.54a11,11,0,0,1,.26-2.78c.95-3,3-4.54,5.6-4.54,3.45,0,6.11,1.81,6.26,7.32V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V64.54a11.52,11.52,0,0,1,.25-2.78c.92-3.1,2.92-4.54,5.53-4.54,3.44,0,6.1,1.81,6.26,7.32V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V61.73C190.48,55.27,185,50.41,179.78,50.39ZM208.21,88a3,3,0,0,0-2.49,5.46,2.89,2.89,0,0,0,1.24.27A3,3,0,0,0,208.21,88Zm48.7-49.83h-5a1.25,1.25,0,0,0-1.25,1.25V54.25a11.61,11.61,0,0,0-8.83-4c-7.39,0-13.64,6.61-13.64,14.75s6.25,14.75,13.64,14.75a11.61,11.61,0,0,0,8.83-4V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.24,1.24,0,0,0,1.24-1.25V39.43A1.24,1.24,0,0,0,256.91,38.18ZM243.19,72.72A7.76,7.76,0,1,1,250.64,65,7.61,7.61,0,0,1,243.19,72.72ZM380.56,38.18h-5a1.24,1.24,0,0,0-1.24,1.25V77.6a1.24,1.24,0,0,0,1.24,1.25h5a1.25,1.25,0,0,0,1.25-1.25V39.43A1.25,1.25,0,0,0,380.56,38.18ZM335.88,51.1h-5a1.24,1.24,0,0,0-1.25,1.25v1.9a11.64,11.64,0,0,0-8.84-4c-7.39,0-13.64,6.61-13.64,14.75s6.25,14.75,13.64,14.75a11.64,11.64,0,0,0,8.84-4V77.6a1.24,1.24,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V52.35A1.25,1.25,0,0,0,335.88,51.1ZM322.16,72.72A7.76,7.76,0,1,1,329.61,65,7.61,7.61,0,0,1,322.16,72.72ZM415,51.1h-5a1.25,1.25,0,0,0-1.25,1.25v1.9a11.64,11.64,0,0,0-8.84-4c-7.39,0-13.63,6.61-13.63,14.75s6.24,14.75,13.63,14.75a11.64,11.64,0,0,0,8.84-4V77.6A1.25,1.25,0,0,0,410,78.85h5a1.25,1.25,0,0,0,1.25-1.25V52.35A1.25,1.25,0,0,0,415,51.1ZM401.31,72.72A7.76,7.76,0,1,1,408.76,65,7.61,7.61,0,0,1,401.31,72.72ZM368.46,51.1H363.2A1.25,1.25,0,0,0,362,52l-6.24,19.2L349.53,52a1.23,1.23,0,0,0-1.19-.86h-5.25a1.25,1.25,0,0,0-1.19,1.63L348,71.42l2.1,6.51a1.25,1.25,0,0,0,1.19.87h2l-1.19,3.67c-.32.78-.93,1.78-1.67,2s-2.37-.23-4.68-2.1a1.25,1.25,0,0,0-1.78.22l-3,4a1.24,1.24,0,0,0,.21,1.72,17.32,17.32,0,0,0,6.21,3.37,9.44,9.44,0,0,0,5.22,0c3.89-1.17,6.14-4.85,6.91-7.73l10.14-31.19A1.25,1.25,0,0,0,368.46,51.1Zm-63.81,0h-5.26a1.22,1.22,0,0,0-1.18.86l-5,15.49-5-15.49A1.25,1.25,0,0,0,287,51.1H281.6a1.22,1.22,0,0,0-1.18.86l-5,15.49-5-15.49a1.25,1.25,0,0,0-1.19-.86h-5.25a1.24,1.24,0,0,0-1.19,1.63l6.07,18.69,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.62,3.4-10.47v0l.16-.48,2.3,7.08,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.61,3.41-10.48,0,0,3.93-12.09A1.25,1.25,0,0,0,304.65,51.1Zm158.13,0h-5.26a1.25,1.25,0,0,0-1.19.86l-5,15.49-5-15.49a1.25,1.25,0,0,0-1.19-.86h-5.35a1.25,1.25,0,0,0-1.19.86l-5,15.49-5-15.49a1.22,1.22,0,0,0-1.18-.86H422a1.25,1.25,0,0,0-1.19,1.63l6.07,18.69,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.62,3.41-10.47v0l.15-.48,2.3,7.08,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.61,3.41-10.48v0L464,52.73A1.24,1.24,0,0,0,462.78,51.1Z"/>
41
+ </symbol>
42
+
43
43
  </svg>
@@ -0,0 +1,57 @@
1
+ // Modules
2
+ import * as helpers from '../js/modules/helpers';
3
+ import nav from '../js/modules/nav';
4
+ import table from '../js/modules/table';
5
+ import accordion from './modules/accordion';
6
+ import testimonial from '../js/modules/testimonial';
7
+ import carousel from '../js/modules/carousel';
8
+ import form from '../js/modules/form';
9
+ import youtubeVideo from '../js/modules/youtubevideo';
10
+ import modal from '../js/modules/modal';
11
+ // Attach classes to dom elements
12
+ document.addEventListener("DOMContentLoaded", function () {
13
+ helpers.addBodyClasses(document.body);
14
+ helpers.addGlobalEvents(document.body);
15
+ helpers.checkElements(document.body);
16
+ console.log('test.js');
17
+ // ANav
18
+ Array.from(document.querySelectorAll('.nav')).forEach((arrayElement, index) => {
19
+ nav(arrayElement);
20
+ });
21
+ // Advanced tables
22
+ Array.from(document.querySelectorAll('.table__wrapper')).forEach((arrayElement, index) => {
23
+ table(arrayElement);
24
+ });
25
+ // Accordions
26
+ Array.from(document.querySelectorAll('.accordion')).forEach((arrayElement, index) => {
27
+ accordion(arrayElement);
28
+ });
29
+ // Testimonial
30
+ Array.from(document.querySelectorAll('.testimonial')).forEach((arrayElement, index) => {
31
+ testimonial(arrayElement);
32
+ });
33
+ // Carousel
34
+ Array.from(document.querySelectorAll('.carousel')).forEach((arrayElement, index) => {
35
+ carousel(arrayElement);
36
+ });
37
+ // Form
38
+ Array.from(document.querySelectorAll('form')).forEach((arrayElement, index) => {
39
+ form(arrayElement);
40
+ });
41
+ // Modal
42
+ Array.from(document.querySelectorAll('.modal')).forEach((arrayElement, index) => {
43
+ modal(arrayElement);
44
+ });
45
+ // YouTube videos
46
+ Array.from(document.querySelectorAll('.youtube-embed')).forEach((arrayElement, index) => {
47
+ new youtubeVideo(arrayElement);
48
+ });
49
+ window.addEventListener('hashchange', function () {
50
+ const hash = location.hash.replace('#', '');
51
+ const label = document.querySelector(`label[for="${hash}"]`);
52
+ if (label instanceof HTMLElement) {
53
+ label.click();
54
+ }
55
+ }, false);
56
+ });
57
+ //# sourceMappingURL=main.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"main.js","sourceRoot":"","sources":["main.ts"],"names":[],"mappings":"AACA,UAAU;AACV,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAA;AAChD,OAAO,GAAG,MAAM,mBAAmB,CAAA;AACnC,OAAO,KAAK,MAAM,qBAAqB,CAAA;AACvC,OAAO,SAAS,MAAM,qBAAqB,CAAA;AAC3C,OAAO,WAAW,MAAM,2BAA2B,CAAA;AACnD,OAAO,QAAQ,MAAM,wBAAwB,CAAA;AAC7C,OAAO,IAAI,MAAM,oBAAoB,CAAA;AACrC,OAAO,YAAY,MAAM,4BAA4B,CAAA;AACrD,OAAO,KAAK,MAAM,qBAAqB,CAAA;AAEvC,iCAAiC;AACjC,QAAQ,CAAC,gBAAgB,CAAC,kBAAkB,EAAE;IAE5C,OAAO,CAAC,cAAc,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;IACtC,OAAO,CAAC,eAAe,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;IACvC,OAAO,CAAC,aAAa,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;IACrC,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAEvB,OAAO;IACP,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,YAAY,EAAE,KAAK,EAAE,EAAE;QAC5E,GAAG,CAAC,YAAY,CAAC,CAAC;IACpB,CAAC,CAAC,CAAC;IAEH,kBAAkB;IAClB,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,iBAAiB,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,YAAY,EAAE,KAAK,EAAE,EAAE;QACvF,KAAK,CAAC,YAAY,CAAC,CAAC;IACtB,CAAC,CAAC,CAAC;IAEH,aAAa;IACb,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,YAAY,EAAE,KAAK,EAAE,EAAE;QAClF,SAAS,CAAC,YAAY,CAAC,CAAC;IAC1B,CAAC,CAAC,CAAC;IAEH,cAAc;IACd,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,cAAc,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,YAAY,EAAE,KAAK,EAAE,EAAE;QACpF,WAAW,CAAC,YAAY,CAAC,CAAC;IAC5B,CAAC,CAAC,CAAC;IACH,WAAW;IACX,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,YAAY,EAAE,KAAK,EAAE,EAAE;QACjF,QAAQ,CAAC,YAAY,CAAC,CAAC;IACzB,CAAC,CAAC,CAAC;IACH,OAAO;IACP,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,YAAY,EAAE,KAAK,EAAE,EAAE;QAC5E,IAAI,CAAC,YAAY,CAAC,CAAC;IACrB,CAAC,CAAC,CAAC;IACH,QAAQ;IACR,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,YAAY,EAAE,KAAK,EAAE,EAAE;QAC9E,KAAK,CAAC,YAAY,CAAC,CAAC;IACtB,CAAC,CAAC,CAAC;IACH,iBAAiB;IACjB,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,YAAY,EAAE,KAAK,EAAE,EAAE;QACtF,IAAI,YAAY,CAAC,YAAY,CAAC,CAAC;IACjC,CAAC,CAAC,CAAC;IAGH,MAAM,CAAC,gBAAgB,CAAC,YAAY,EAAE;QAEpC,MAAM,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,EAAC,EAAE,CAAC,CAAC;QAC3C,MAAM,KAAK,GAAG,QAAQ,CAAC,aAAa,CAAC,cAAc,IAAI,IAAI,CAAC,CAAC;QAE7D,IAAI,KAAK,YAAY,WAAW,EAAE;YAChC,KAAK,CAAC,KAAK,EAAE,CAAC;SACf;IAEH,CAAC,EAAE,KAAK,CAAC,CAAC;AACZ,CAAC,CAAC,CAAC"}
@@ -0,0 +1,68 @@
1
+ // @ts-nocheck
2
+ // Modules
3
+ import * as helpers from '../js/modules/helpers'
4
+ import nav from '../js/modules/nav'
5
+ import table from '../js/modules/table'
6
+ import accordion from './modules/accordion'
7
+ import testimonial from '../js/modules/testimonial'
8
+ import carousel from '../js/modules/carousel'
9
+ import form from '../js/modules/form'
10
+ import youtubeVideo from '../js/modules/youtubevideo'
11
+ import modal from '../js/modules/modal'
12
+
13
+ // Attach classes to dom elements
14
+ document.addEventListener("DOMContentLoaded", function() {
15
+
16
+ helpers.addBodyClasses(document.body);
17
+ helpers.addGlobalEvents(document.body);
18
+ helpers.checkElements(document.body);
19
+ console.log('test.js');
20
+
21
+ // ANav
22
+ Array.from(document.querySelectorAll('.nav')).forEach((arrayElement) => {
23
+ nav(arrayElement);
24
+ });
25
+
26
+ // Advanced tables
27
+ Array.from(document.querySelectorAll('.table__wrapper')).forEach((arrayElement) => {
28
+ table(arrayElement);
29
+ });
30
+
31
+ // Accordions
32
+ Array.from(document.querySelectorAll('.accordion')).forEach((arrayElement) => {
33
+ accordion(arrayElement);
34
+ });
35
+
36
+ // Testimonial
37
+ Array.from(document.querySelectorAll('.testimonial')).forEach((arrayElement) => {
38
+ testimonial(arrayElement);
39
+ });
40
+ // Carousel
41
+ Array.from(document.querySelectorAll('.carousel')).forEach((arrayElement) => {
42
+ carousel(arrayElement);
43
+ });
44
+ // Form
45
+ Array.from(document.querySelectorAll('form')).forEach((arrayElement) => {
46
+ form(arrayElement);
47
+ });
48
+ // Modal
49
+ Array.from(document.querySelectorAll('.modal')).forEach((arrayElement) => {
50
+ modal(arrayElement);
51
+ });
52
+ // YouTube videos
53
+ Array.from(document.querySelectorAll('.youtube-embed')).forEach((arrayElement) => {
54
+ new youtubeVideo(arrayElement);
55
+ });
56
+
57
+
58
+ window.addEventListener('hashchange', function() {
59
+
60
+ const hash = location.hash.replace('#','');
61
+ const label = document.querySelector(`label[for="${hash}"]`);
62
+
63
+ if (label instanceof HTMLElement) {
64
+ label.click();
65
+ }
66
+
67
+ }, false);
68
+ });
@@ -0,0 +1,33 @@
1
+ function accordion(accordionElement) {
2
+ // Fetch all the details element.
3
+ if (!accordionElement.classList.contains('accordion--keep-open')) {
4
+ const details = accordionElement.querySelectorAll(":scope > details");
5
+ // Add the onclick listeners.
6
+ details.forEach((targetDetail) => {
7
+ targetDetail.addEventListener("click", () => {
8
+ // Close all the details that are not targetDetail.
9
+ details.forEach((detail) => {
10
+ if (detail !== targetDetail) {
11
+ detail.removeAttribute("open");
12
+ }
13
+ });
14
+ });
15
+ });
16
+ }
17
+ if (window.location.hash && document.querySelector(window.location.hash + ':not([open]) summary')) {
18
+ const detail = document.querySelector(window.location.hash + ' summary');
19
+ if (detail instanceof HTMLElement) {
20
+ detail.click();
21
+ }
22
+ }
23
+ window.addEventListener('hashchange', function () {
24
+ if (window.location.hash && document.querySelector(window.location.hash + ' summary')) {
25
+ const detail = document.querySelector(window.location.hash + ' summary');
26
+ if (detail instanceof HTMLElement) {
27
+ detail.click();
28
+ }
29
+ }
30
+ });
31
+ }
32
+ export default accordion;
33
+ //# sourceMappingURL=accordion.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accordion.js","sourceRoot":"","sources":["accordion.ts"],"names":[],"mappings":"AAAA,SAAS,SAAS,CAAC,gBAAyB;IAE1C,iCAAiC;IACjC,IAAG,CAAC,gBAAgB,CAAC,SAAS,CAAC,QAAQ,CAAC,sBAAsB,CAAC,EAAC;QAE9D,MAAM,OAAO,GAA4B,gBAAgB,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,CAAC;QAE/F,6BAA6B;QAC7B,OAAO,CAAC,OAAO,CAAC,CAAC,YAAY,EAAE,EAAE;YAC/B,YAAY,CAAC,gBAAgB,CAAC,OAAO,EAAE,GAAG,EAAE;gBAC1C,mDAAmD;gBACnD,OAAO,CAAC,OAAO,CAAC,CAAC,MAAM,EAAE,EAAE;oBACzB,IAAI,MAAM,KAAK,YAAY,EAAE;wBAC3B,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;qBAChC;gBACH,CAAC,CAAC,CAAC;YACL,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;KACJ;IAGD,IAAG,MAAM,CAAC,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,aAAa,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,GAAC,sBAAsB,CAAC,EAAE;QAE9F,MAAM,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,GAAC,UAAU,CAAC,CAAC;QAEvE,IAAI,MAAM,YAAY,WAAW,EAAE;YACjC,MAAM,CAAC,KAAK,EAAE,CAAC;SAChB;KACF;IAED,MAAM,CAAC,gBAAgB,CAAC,YAAY,EAAE;QACpC,IAAG,MAAM,CAAC,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,aAAa,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,GAAC,UAAU,CAAC,EAAE;YAElF,MAAM,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,GAAC,UAAU,CAAC,CAAC;YAEvE,IAAI,MAAM,YAAY,WAAW,EAAE;gBACjC,MAAM,CAAC,KAAK,EAAE,CAAC;aAChB;SACF;IACH,CAAC,CAAC,CAAC;AACL,CAAC;AAED,eAAe,SAAS,CAAA"}
@@ -0,0 +1,43 @@
1
+ function accordion(accordionElement: Element) {
2
+
3
+ // Fetch all the details element.
4
+ if(!accordionElement.classList.contains('accordion--keep-open')){
5
+
6
+ const details: NodeListOf<HTMLElement> = accordionElement.querySelectorAll(":scope > details");
7
+
8
+ // Add the onclick listeners.
9
+ details.forEach((targetDetail) => {
10
+ targetDetail.addEventListener("click", () => {
11
+ // Close all the details that are not targetDetail.
12
+ details.forEach((detail) => {
13
+ if (detail !== targetDetail) {
14
+ detail.removeAttribute("open");
15
+ }
16
+ });
17
+ });
18
+ });
19
+ }
20
+
21
+
22
+ if(window.location.hash && document.querySelector(window.location.hash+':not([open]) summary')) {
23
+
24
+ const detail = document.querySelector(window.location.hash+' summary');
25
+
26
+ if (detail instanceof HTMLElement) {
27
+ detail.click();
28
+ }
29
+ }
30
+
31
+ window.addEventListener('hashchange', function(){
32
+ if(window.location.hash && document.querySelector(window.location.hash+' summary')) {
33
+
34
+ const detail = document.querySelector(window.location.hash+' summary');
35
+
36
+ if (detail instanceof HTMLElement) {
37
+ detail.click();
38
+ }
39
+ }
40
+ });
41
+ }
42
+
43
+ export default accordion