@npm_leadtech/legal-lib-components 5.3.13 → 5.3.14

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 (201) hide show
  1. package/dist/css/styles.css +1075 -0
  2. package/dist/images/svg/arrow-right-24px-outlined.svg +3 -0
  3. package/dist/src/components/atoms/ContactCard/ContactCard.d.ts +4 -0
  4. package/dist/src/components/atoms/ContactCard/ContactCard.js +6 -0
  5. package/dist/src/components/{sections/BlogSection/BlogSection.styled.d.ts → atoms/ContactCard/ContactCard.styled.d.ts} +1 -1
  6. package/dist/src/components/atoms/ContactCard/ContactCard.styled.js +38 -0
  7. package/dist/src/components/atoms/ContactCard/ContactCard.styled.ts +39 -0
  8. package/dist/src/components/atoms/ContactCard/ContactCard.tsx +38 -0
  9. package/dist/src/components/atoms/ContactCard/ContactCardProps.types.d.ts +9 -0
  10. package/dist/src/components/atoms/ContactCard/ContactCardProps.types.js +1 -0
  11. package/dist/src/components/atoms/ContactCard/ContactCardProps.types.ts +9 -0
  12. package/dist/src/components/atoms/ContactCard/index.d.ts +2 -0
  13. package/dist/src/components/atoms/ContactCard/index.js +1 -0
  14. package/dist/src/components/atoms/ContactCard/index.ts +2 -0
  15. package/dist/src/components/atoms/index.d.ts +1 -0
  16. package/dist/src/components/atoms/index.js +1 -0
  17. package/dist/src/components/atoms/index.ts +1 -0
  18. package/dist/src/components/molecules/Article/Article.js +3 -2
  19. package/dist/src/components/molecules/Article/Article.scss +17 -0
  20. package/dist/src/components/molecules/Article/Article.tsx +17 -2
  21. package/dist/src/components/molecules/Article/ArticleProps.types.d.ts +1 -0
  22. package/dist/src/components/molecules/Article/ArticleProps.types.ts +1 -0
  23. package/dist/src/components/molecules/ContactCardList/ContactCardList.d.ts +4 -0
  24. package/dist/src/components/molecules/ContactCardList/ContactCardList.js +7 -0
  25. package/dist/src/components/molecules/ContactCardList/ContactCardList.styled.d.ts +1 -0
  26. package/dist/src/components/{sections/FunctionalityCardsSection/FunctionalityCardsSection.styled.js → molecules/ContactCardList/ContactCardList.styled.js} +4 -5
  27. package/dist/src/components/{sections/FunctionalityCardsSection/FunctionalityCardsSection.styled.ts → molecules/ContactCardList/ContactCardList.styled.ts} +4 -5
  28. package/dist/src/components/molecules/ContactCardList/ContactCardList.tsx +17 -0
  29. package/dist/src/components/molecules/ContactCardList/ContactCardListProps.types.d.ts +4 -0
  30. package/dist/src/components/molecules/ContactCardList/ContactCardListProps.types.js +1 -0
  31. package/dist/src/components/molecules/ContactCardList/ContactCardListProps.types.ts +5 -0
  32. package/dist/src/components/molecules/ContactCardList/index.d.ts +2 -0
  33. package/dist/src/components/molecules/ContactCardList/index.js +1 -0
  34. package/dist/src/components/molecules/ContactCardList/index.ts +2 -0
  35. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.scss +1 -1
  36. package/dist/src/components/molecules/index.d.ts +1 -0
  37. package/dist/src/components/molecules/index.js +1 -0
  38. package/dist/src/components/molecules/index.ts +1 -0
  39. package/dist/src/components/organisms/ArticlesList/ArticlesList.js +2 -2
  40. package/dist/src/components/organisms/ArticlesList/ArticlesList.tsx +2 -2
  41. package/dist/src/components/organisms/ArticlesList/ArticlesListProps.types.d.ts +1 -0
  42. package/dist/src/components/organisms/ArticlesList/ArticlesListProps.types.ts +1 -0
  43. package/dist/src/components/organisms/ContactContent/ContactContent.d.ts +4 -0
  44. package/dist/src/components/organisms/ContactContent/ContactContent.js +9 -0
  45. package/dist/src/components/{sections/AboutUsSection/AboutUsSection.styled.d.ts → organisms/ContactContent/ContactContent.styled.d.ts} +1 -1
  46. package/dist/src/components/organisms/ContactContent/ContactContent.styled.js +28 -0
  47. package/dist/src/components/organisms/ContactContent/ContactContent.styled.ts +29 -0
  48. package/dist/src/components/organisms/ContactContent/ContactContent.tsx +20 -0
  49. package/dist/src/components/organisms/ContactContent/ContactContentProps.types.d.ts +6 -0
  50. package/dist/src/components/organisms/ContactContent/ContactContentProps.types.js +1 -0
  51. package/dist/src/components/organisms/ContactContent/ContactContentProps.types.ts +7 -0
  52. package/dist/src/components/organisms/ContactContent/index.d.ts +2 -0
  53. package/dist/src/components/organisms/ContactContent/index.js +1 -0
  54. package/dist/src/components/organisms/ContactContent/index.ts +2 -0
  55. package/dist/src/components/organisms/index.d.ts +1 -0
  56. package/dist/src/components/organisms/index.js +1 -0
  57. package/dist/src/components/organisms/index.ts +1 -0
  58. package/dist/src/components/sections/AboutUsSection/AboutUsSection.js +2 -2
  59. package/dist/src/components/sections/AboutUsSection/AboutUsSection.scss +52 -0
  60. package/dist/src/components/sections/AboutUsSection/AboutUsSection.tsx +3 -3
  61. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.js +3 -3
  62. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.scss +36 -0
  63. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.tsx +5 -21
  64. package/dist/src/components/sections/AsSeeInSection/AsSeeInSectionProps.types.d.ts +3 -6
  65. package/dist/src/components/sections/AsSeeInSection/AsSeeInSectionProps.types.ts +3 -6
  66. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.js +2 -2
  67. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.scss +50 -0
  68. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.tsx +3 -3
  69. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.js +2 -2
  70. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.scss +57 -0
  71. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.tsx +3 -3
  72. package/dist/src/components/sections/BlogSection/BlogSection.js +4 -4
  73. package/dist/src/components/sections/BlogSection/BlogSection.scss +54 -0
  74. package/dist/src/components/sections/BlogSection/BlogSection.tsx +11 -8
  75. package/dist/src/components/sections/BlogSection/BlogSectionProps.types.d.ts +2 -1
  76. package/dist/src/components/sections/BlogSection/BlogSectionProps.types.ts +2 -1
  77. package/dist/src/components/sections/ContactSection/ContactSection.js +2 -2
  78. package/dist/src/components/sections/ContactSection/{ContactSection.styled.ts → ContactSection.scss} +9 -9
  79. package/dist/src/components/sections/ContactSection/ContactSection.tsx +3 -3
  80. package/dist/src/components/sections/ExpertsSection/ExpertsSection.js +2 -2
  81. package/dist/src/components/sections/ExpertsSection/ExpertsSection.scss +26 -0
  82. package/dist/src/components/sections/ExpertsSection/ExpertsSection.tsx +3 -3
  83. package/dist/src/components/sections/FaqSection/FaqSection.js +2 -2
  84. package/dist/src/components/sections/FaqSection/FaqSection.scss +31 -0
  85. package/dist/src/components/sections/FaqSection/FaqSection.tsx +3 -3
  86. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.js +2 -2
  87. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.scss +57 -0
  88. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.tsx +3 -3
  89. package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.js +1 -2
  90. package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.scss +15 -0
  91. package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.tsx +2 -3
  92. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.js +2 -2
  93. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.scss +12 -0
  94. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.tsx +3 -3
  95. package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.js +2 -2
  96. package/dist/src/components/sections/HowGetYourFormsSection/{HowGetYourFormsSection.styled.ts → HowGetYourFormsSection.scss} +8 -7
  97. package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.tsx +3 -3
  98. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.js +2 -2
  99. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.scss +41 -0
  100. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.tsx +3 -6
  101. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.js +2 -2
  102. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.scss +41 -0
  103. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.tsx +3 -3
  104. package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.js +2 -2
  105. package/dist/src/components/sections/LearnMoreSection/{LearnMoreSection.styled.ts → LearnMoreSection.scss} +12 -12
  106. package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.tsx +3 -3
  107. package/dist/src/components/sections/LegalSection/LegalSection.js +2 -2
  108. package/dist/src/components/sections/LegalSection/LegalSection.scss +120 -0
  109. package/dist/src/components/sections/LegalSection/LegalSection.tsx +3 -3
  110. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.js +2 -2
  111. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.scss +47 -0
  112. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.tsx +3 -3
  113. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.js +2 -2
  114. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.scss +42 -0
  115. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.tsx +3 -3
  116. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.js +2 -2
  117. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.scss +53 -0
  118. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.tsx +4 -3
  119. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.js +1 -2
  120. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.scss +69 -0
  121. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.tsx +2 -3
  122. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.js +2 -2
  123. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.scss +11 -0
  124. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.tsx +3 -3
  125. package/dist/src/components/sections/TryUsSection/TryUsSection.js +2 -2
  126. package/dist/src/components/sections/TryUsSection/{TryUsSection.styled.ts → TryUsSection.scss} +5 -5
  127. package/dist/src/components/sections/TryUsSection/TryUsSection.tsx +3 -3
  128. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.js +2 -2
  129. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.scss +62 -0
  130. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.tsx +3 -3
  131. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.js +2 -2
  132. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.scss +35 -0
  133. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.tsx +4 -3
  134. package/dist/src/custom.d.ts +1 -1
  135. package/dist/src/globalStyles/styles.scss +25 -0
  136. package/dist/tsconfig.build.tsbuildinfo +1 -1
  137. package/package.json +1 -1
  138. package/dist/src/components/sections/AboutUsSection/AboutUsSection.styled.js +0 -53
  139. package/dist/src/components/sections/AboutUsSection/AboutUsSection.styled.ts +0 -54
  140. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.styled.d.ts +0 -1
  141. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.styled.js +0 -97
  142. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.styled.ts +0 -98
  143. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.styled.d.ts +0 -1
  144. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.styled.js +0 -51
  145. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.styled.ts +0 -52
  146. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.styled.d.ts +0 -1
  147. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.styled.js +0 -54
  148. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.styled.ts +0 -55
  149. package/dist/src/components/sections/BlogSection/BlogSection.styled.js +0 -32
  150. package/dist/src/components/sections/BlogSection/BlogSection.styled.ts +0 -33
  151. package/dist/src/components/sections/ContactSection/ContactSection.styled.d.ts +0 -1
  152. package/dist/src/components/sections/ContactSection/ContactSection.styled.js +0 -89
  153. package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.d.ts +0 -1
  154. package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.js +0 -27
  155. package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.ts +0 -28
  156. package/dist/src/components/sections/FaqSection/FaqSection.styled.d.ts +0 -1
  157. package/dist/src/components/sections/FaqSection/FaqSection.styled.js +0 -29
  158. package/dist/src/components/sections/FaqSection/FaqSection.styled.ts +0 -30
  159. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.styled.d.ts +0 -1
  160. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.styled.js +0 -56
  161. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.styled.ts +0 -57
  162. package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.styled.d.ts +0 -1
  163. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.styled.d.ts +0 -1
  164. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.styled.js +0 -10
  165. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.styled.ts +0 -11
  166. package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.d.ts +0 -1
  167. package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.js +0 -24
  168. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.styled.d.ts +0 -1
  169. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.styled.js +0 -39
  170. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.styled.ts +0 -40
  171. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.styled.d.ts +0 -1
  172. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.styled.js +0 -40
  173. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.styled.ts +0 -41
  174. package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.d.ts +0 -1
  175. package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.js +0 -106
  176. package/dist/src/components/sections/LegalSection/LegalSection.styled.d.ts +0 -1
  177. package/dist/src/components/sections/LegalSection/LegalSection.styled.js +0 -121
  178. package/dist/src/components/sections/LegalSection/LegalSection.styled.ts +0 -122
  179. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.styled.d.ts +0 -1
  180. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.styled.js +0 -46
  181. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.styled.ts +0 -47
  182. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.styled.d.ts +0 -1
  183. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.styled.js +0 -43
  184. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.styled.ts +0 -44
  185. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.styled.d.ts +0 -1
  186. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.styled.js +0 -55
  187. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.styled.ts +0 -56
  188. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.styled.d.ts +0 -1
  189. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.styled.js +0 -70
  190. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.styled.ts +0 -71
  191. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.styled.d.ts +0 -1
  192. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.styled.js +0 -10
  193. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.styled.ts +0 -11
  194. package/dist/src/components/sections/TryUsSection/TryUsSection.styled.d.ts +0 -1
  195. package/dist/src/components/sections/TryUsSection/TryUsSection.styled.js +0 -23
  196. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.styled.d.ts +0 -1
  197. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.styled.js +0 -63
  198. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.styled.ts +0 -64
  199. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.d.ts +0 -1
  200. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.js +0 -36
  201. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.ts +0 -37
@@ -1,52 +0,0 @@
1
- import styled from 'styled-components'
2
-
3
- export const AsideMenuSectionStyled = styled.aside`
4
- &.asideMenu {
5
- .title {
6
- color: var(--neutral-neutral-1);
7
- font-weight: bold;
8
- padding-bottom: 1rem;
9
- border-bottom: var(--neutral-neutral-4) 1px solid;
10
- margin-bottom: 1.5rem;
11
- }
12
-
13
- .list {
14
- display: flex;
15
- flex-direction: column;
16
- position: sticky;
17
- top: 17%;
18
- }
19
-
20
- .navItem {
21
- color: var(--neutral-neutral-1);
22
- font-size: 14px;
23
- line-height: 18px;
24
- letter-spacing: -0.3px;
25
- padding: 16px 0;
26
- border-top: var(--neutral-neutral-4) 1px solid;
27
- border-bottom: var(--neutral-neutral-4) 1px solid;
28
-
29
- span {
30
- cursor: pointer;
31
- }
32
-
33
- &.inView {
34
- span,
35
- a {
36
- color: var(--primary-main);
37
- font-weight: 700;
38
- }
39
- }
40
-
41
- &:first-child {
42
- padding-top: 0;
43
- border: none;
44
- }
45
-
46
- &:last-child {
47
- padding-bottom: 0;
48
- border: none;
49
- }
50
- }
51
- }
52
- `
@@ -1 +0,0 @@
1
- export declare const BenefitsRatafiaSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,54 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const BenefitsRatafiaSectionStyled = styled.section `
4
- display: flex;
5
- justify-content: center;
6
- align-content: center;
7
- width: 100%;
8
- padding: 2rem 1.5rem;
9
-
10
- @media ${device.laptop} {
11
- padding: 3rem 2rem;
12
- }
13
-
14
- @media ${device['desktop-xl']} {
15
- padding: 3rem 0;
16
- }
17
-
18
- .benefit-ratafia-section {
19
- &__wrapper {
20
- display: flex;
21
- flex-direction: column;
22
- justify-content: center;
23
- align-items: center;
24
- align-self: stretch;
25
- padding: 1.5rem;
26
- gap: 2rem;
27
- border-radius: 16px;
28
- max-width: 1200px;
29
-
30
- @media ${device['landscape-tablets']} {
31
- padding: 2rem;
32
- }
33
- @media ${device.laptop} {
34
- padding: 3rem;
35
- }
36
-
37
- &__title {
38
- display: flex;
39
- flex-direction: column;
40
- justify-content: center;
41
- align-items: flex-start;
42
- align-self: stretch;
43
- gap: 1rem;
44
-
45
- &__text {
46
- color: var(--others-white);
47
- }
48
- &__description {
49
- color: var(--others-white);
50
- }
51
- }
52
- }
53
- }
54
- `;
@@ -1,55 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
-
4
- export const BenefitsRatafiaSectionStyled = styled.section`
5
- display: flex;
6
- justify-content: center;
7
- align-content: center;
8
- width: 100%;
9
- padding: 2rem 1.5rem;
10
-
11
- @media ${device.laptop} {
12
- padding: 3rem 2rem;
13
- }
14
-
15
- @media ${device['desktop-xl']} {
16
- padding: 3rem 0;
17
- }
18
-
19
- .benefit-ratafia-section {
20
- &__wrapper {
21
- display: flex;
22
- flex-direction: column;
23
- justify-content: center;
24
- align-items: center;
25
- align-self: stretch;
26
- padding: 1.5rem;
27
- gap: 2rem;
28
- border-radius: 16px;
29
- max-width: 1200px;
30
-
31
- @media ${device['landscape-tablets']} {
32
- padding: 2rem;
33
- }
34
- @media ${device.laptop} {
35
- padding: 3rem;
36
- }
37
-
38
- &__title {
39
- display: flex;
40
- flex-direction: column;
41
- justify-content: center;
42
- align-items: flex-start;
43
- align-self: stretch;
44
- gap: 1rem;
45
-
46
- &__text {
47
- color: var(--others-white);
48
- }
49
- &__description {
50
- color: var(--others-white);
51
- }
52
- }
53
- }
54
- }
55
- `
@@ -1,32 +0,0 @@
1
- import { device, size } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const BlogSectionStyled = styled.div `
4
- text-align: center;
5
- margin: 0 auto 3rem;
6
- padding: 0 1rem;
7
- max-width: ${size.md};
8
-
9
- @media ${device.laptop} {
10
- padding: 0;
11
- }
12
- @media ${device.desktop} {
13
- max-width: ${size.lg};
14
- }
15
-
16
- .blog__title {
17
- color: var(--primary-main-dark-1);
18
-
19
- @media ${device.laptop} {
20
- margin-bottom: 3rem;
21
- }
22
- }
23
-
24
- .cta-button {
25
- width: 100%;
26
- margin-top: 3rem;
27
- display: inline-block;
28
- @media ${device['landscape-tablets']} {
29
- width: auto;
30
- }
31
- }
32
- `;
@@ -1,33 +0,0 @@
1
- import { device, size } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
-
4
- export const BlogSectionStyled = styled.div`
5
- text-align: center;
6
- margin: 0 auto 3rem;
7
- padding: 0 1rem;
8
- max-width: ${size.md};
9
-
10
- @media ${device.laptop} {
11
- padding: 0;
12
- }
13
- @media ${device.desktop} {
14
- max-width: ${size.lg};
15
- }
16
-
17
- .blog__title {
18
- color: var(--primary-main-dark-1);
19
-
20
- @media ${device.laptop} {
21
- margin-bottom: 3rem;
22
- }
23
- }
24
-
25
- .cta-button {
26
- width: 100%;
27
- margin-top: 3rem;
28
- display: inline-block;
29
- @media ${device['landscape-tablets']} {
30
- width: auto;
31
- }
32
- }
33
- `
@@ -1 +0,0 @@
1
- export declare const ContactSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,89 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const ContactSectionStyled = styled.section `
4
- background-color: var(--primary-main-light-6);
5
-
6
- span > a {
7
- text-decoration: underline;
8
- }
9
-
10
- .wrapper--contact {
11
- padding-left: 0;
12
- padding-right: 0;
13
-
14
- @media ${device['portrait-tablets']} {
15
- padding-left: 1.5rem;
16
- padding-right: 1.5rem;
17
- }
18
- }
19
-
20
- .contact__main {
21
- display: flex;
22
- flex-direction: column-reverse;
23
-
24
- @media ${device['portrait-tablets']} {
25
- flex-direction: row;
26
- justify-content: space-between;
27
- }
28
- }
29
-
30
- .contact-left-container {
31
- padding-left: 1.5rem;
32
- padding-right: 1.5rem;
33
-
34
- @media ${device['portrait-tablets']} {
35
- padding-left: 0;
36
- padding-right: 0;
37
- width: 45%;
38
- }
39
- }
40
-
41
- .contact-right-container {
42
- display: flex;
43
- justify-content: flex-start;
44
- background-color: var(--primary-main-light-6);
45
- margin-bottom: 2.5rem;
46
- width: 100%;
47
-
48
- @media ${device['portrait-tablets']} {
49
- background-size: 21rem;
50
- background-repeat: no-repeat;
51
- background-position: 100% 100%;
52
- margin-bottom: 0;
53
- padding-bottom: 0;
54
- width: 45%;
55
- }
56
-
57
- @media ${device.laptop} {
58
- padding-bottom: 12rem;
59
- }
60
-
61
- .rec-text-container .rectangle-text__container {
62
- margin-top: 1rem;
63
- width: 100%;
64
- background-color: gray;
65
- }
66
-
67
- .contact__form {
68
- width: 100%;
69
- }
70
-
71
- .small-container {
72
- margin: 1.5rem 0;
73
-
74
- small {
75
- text-align: center;
76
- }
77
- }
78
-
79
- .sign-in-container {
80
- display: flex;
81
- justify-content: space-between;
82
- align-items: center;
83
-
84
- p {
85
- margin-bottom: 0;
86
- }
87
- }
88
- }
89
- `;
@@ -1 +0,0 @@
1
- export declare const ExpertsSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -1,27 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const ExpertsSectionStyled = styled.div `
4
- display: flex;
5
- justify-content: center;
6
- flex-direction: column;
7
- background-color: var(--neutral-neutral-6);
8
- margin-bottom: 4rem;
9
-
10
- .experts-section {
11
- &__title {
12
- font-family: var(--font-serif);
13
- font-size: 32px;
14
- font-weight: 400;
15
- line-height: 42px;
16
- letter-spacing: -0.3px;
17
- text-align: center;
18
- margin: 0 auto 5rem;
19
- width: 90%;
20
- transform: translateY(50px);
21
-
22
- @media ${device['landscape-tablets']} {
23
- width: 100%;
24
- }
25
- }
26
- }
27
- `;
@@ -1,28 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
-
4
- export const ExpertsSectionStyled = styled.div`
5
- display: flex;
6
- justify-content: center;
7
- flex-direction: column;
8
- background-color: var(--neutral-neutral-6);
9
- margin-bottom: 4rem;
10
-
11
- .experts-section {
12
- &__title {
13
- font-family: var(--font-serif);
14
- font-size: 32px;
15
- font-weight: 400;
16
- line-height: 42px;
17
- letter-spacing: -0.3px;
18
- text-align: center;
19
- margin: 0 auto 5rem;
20
- width: 90%;
21
- transform: translateY(50px);
22
-
23
- @media ${device['landscape-tablets']} {
24
- width: 100%;
25
- }
26
- }
27
- }
28
- `
@@ -1 +0,0 @@
1
- export declare const FaqSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,29 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const FaqSectionStyled = styled.section `
4
- display: flex;
5
- padding-bottom: 40px;
6
- flex-direction: column;
7
- gap: 40px;
8
- max-width: 700px;
9
- width: 100%;
10
-
11
- .faq-ratafia-section {
12
- display: flex;
13
- align-items: center;
14
- justify-content: center;
15
- padding: 3rem 1.5rem 5rem 1.5rem;
16
- max-width: none;
17
- background: var(--neutral-neutral-6);
18
-
19
- @media ${device.laptop} {
20
- padding: 3rem 2rem 5rem 2rem;
21
- }
22
- @media ${device.desktop} {
23
- padding: 3rem 13.75rem 5rem 13.75rem;
24
- }
25
- @media ${device['desktop-xl']} {
26
- padding: 3rem 28rem 5rem 28rem;
27
- }
28
- }
29
- `;
@@ -1,30 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
-
4
- export const FaqSectionStyled = styled.section`
5
- display: flex;
6
- padding-bottom: 40px;
7
- flex-direction: column;
8
- gap: 40px;
9
- max-width: 700px;
10
- width: 100%;
11
-
12
- .faq-ratafia-section {
13
- display: flex;
14
- align-items: center;
15
- justify-content: center;
16
- padding: 3rem 1.5rem 5rem 1.5rem;
17
- max-width: none;
18
- background: var(--neutral-neutral-6);
19
-
20
- @media ${device.laptop} {
21
- padding: 3rem 2rem 5rem 2rem;
22
- }
23
- @media ${device.desktop} {
24
- padding: 3rem 13.75rem 5rem 13.75rem;
25
- }
26
- @media ${device['desktop-xl']} {
27
- padding: 3rem 28rem 5rem 28rem;
28
- }
29
- }
30
- `
@@ -1 +0,0 @@
1
- export declare const FeaturesRatafiaSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,56 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const FeaturesRatafiaSectionStyled = styled.section `
4
- display: flex;
5
- justify-content: center;
6
- align-items: center;
7
- align-self: stretch;
8
- width: 100%;
9
- padding: 2rem 1.5rem;
10
-
11
- @media ${device.laptop} {
12
- padding: 3rem 2rem;
13
- gap: 1.5rem;
14
- }
15
- @media ${device['desktop-xl']} {
16
- padding: 3rem 0;
17
- gap: 5rem;
18
- }
19
-
20
- .features-ratafia-section {
21
- &__wrapper {
22
- display: flex;
23
- justify-content: center;
24
- align-items: center;
25
- align-self: stretch;
26
-
27
- width: 100%;
28
- max-width: 1200px;
29
-
30
- @media ${device.laptop} {
31
- gap: 1.5rem;
32
- }
33
- @media ${device['desktop-xl']} {
34
- gap: 5rem;
35
- }
36
- &__content {
37
- width: 100%;
38
- }
39
-
40
- &__children {
41
- display: none;
42
- //TODO: Check again with the real container;
43
- min-width: 50%;
44
-
45
- @media ${device.desktop} {
46
- display: flex;
47
- flex-direction: column;
48
- align-items: center;
49
- }
50
- img {
51
- width: 100%;
52
- }
53
- }
54
- }
55
- }
56
- `;
@@ -1,57 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
-
4
- export const FeaturesRatafiaSectionStyled = styled.section`
5
- display: flex;
6
- justify-content: center;
7
- align-items: center;
8
- align-self: stretch;
9
- width: 100%;
10
- padding: 2rem 1.5rem;
11
-
12
- @media ${device.laptop} {
13
- padding: 3rem 2rem;
14
- gap: 1.5rem;
15
- }
16
- @media ${device['desktop-xl']} {
17
- padding: 3rem 0;
18
- gap: 5rem;
19
- }
20
-
21
- .features-ratafia-section {
22
- &__wrapper {
23
- display: flex;
24
- justify-content: center;
25
- align-items: center;
26
- align-self: stretch;
27
-
28
- width: 100%;
29
- max-width: 1200px;
30
-
31
- @media ${device.laptop} {
32
- gap: 1.5rem;
33
- }
34
- @media ${device['desktop-xl']} {
35
- gap: 5rem;
36
- }
37
- &__content {
38
- width: 100%;
39
- }
40
-
41
- &__children {
42
- display: none;
43
- //TODO: Check again with the real container;
44
- min-width: 50%;
45
-
46
- @media ${device.desktop} {
47
- display: flex;
48
- flex-direction: column;
49
- align-items: center;
50
- }
51
- img {
52
- width: 100%;
53
- }
54
- }
55
- }
56
- }
57
- `
@@ -1 +0,0 @@
1
- export declare const FunctionalityCardsSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1 +0,0 @@
1
- export declare const GuidelinesSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,10 +0,0 @@
1
- import styled from 'styled-components';
2
- export const GuidelinesSectionStyled = styled.section `
3
- display: flex;
4
- flex-direction: column;
5
- align-items: center;
6
- background: var(--neutral-neutral-6);
7
- padding-top: 2rem;
8
- padding-bottom: 2rem;
9
- margin-top: 3rem;
10
- `;
@@ -1,11 +0,0 @@
1
- import styled from 'styled-components'
2
-
3
- export const GuidelinesSectionStyled = styled.section`
4
- display: flex;
5
- flex-direction: column;
6
- align-items: center;
7
- background: var(--neutral-neutral-6);
8
- padding-top: 2rem;
9
- padding-bottom: 2rem;
10
- margin-top: 3rem;
11
- `
@@ -1 +0,0 @@
1
- export declare const HowGetYourFormsSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,24 +0,0 @@
1
- import { device, size } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const HowGetYourFormsSectionStyled = styled.section `
4
- background-color: var(--neutral-neutral-6);
5
- @media ${device.laptop} {
6
- background-repeat: no-repeat;
7
- background-position: top right;
8
- background-size: 21rem;
9
- }
10
-
11
- @media only screen and (max-width: ${size.md}) {
12
- background-image: none !important;
13
- }
14
-
15
- .works-title {
16
- width: auto;
17
- font-family: var(--font-serif);
18
- text-align: center;
19
- padding-top: 4rem;
20
- @media only screen and (max-width: ${size.md}) {
21
- padding-top: 2.5rem;
22
- }
23
- }
24
- `;
@@ -1 +0,0 @@
1
- export declare const JumbotronRatafiaSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,39 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const JumbotronRatafiaSectionStyled = styled.section `
4
- display: flex;
5
- justify-content: center;
6
- align-content: center;
7
- width: 100%;
8
- padding: 2.5rem 1.5rem 6.5rem 1.5rem;
9
-
10
- @media ${device.desktop} {
11
- padding: 5rem 2rem 6.5rem 2rem;
12
- }
13
- @media ${device['desktop-xl']} {
14
- padding: 5rem 7.5rem 6.5rem 7.5rem;
15
- }
16
-
17
- .jumbotron-ratafia-section {
18
- &__wrapper {
19
- display: flex;
20
- flex-direction: column;
21
- justify-content: center;
22
- align-items: center;
23
- align-self: stretch;
24
- gap: 2.5rem;
25
- max-width: 1200px;
26
-
27
- @media ${device['landscape-tablets']} {
28
- flex-direction: row;
29
- }
30
- @media ${device['desktop-xl']} {
31
- gap: 5rem;
32
- }
33
-
34
- &__children {
35
- flex: none;
36
- }
37
- }
38
- }
39
- `;