123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // colors
- .bg-green {
- background-color: #3bb78f;
- background: linear-gradient(90deg, #3bb78f 0%, rgba(11, 171, 100, 1) 35%, rgba(59, 183, 143, 1) 100%);
- }
-
- // font size
- .font-3 {
- font-size: 3rem;
- }
- .font-1_5 {
- font-size: 2rem;
- }
-
- .subtitle_1 {
- font-size: 1.5rem;
- }
-
- .gap-1 {
- gap: 0.7rem;
- }
-
- .banner_heading_4 {
- font-size: 3rem;
- }
-
-
- // padding
-
- .padding_top_14 {
- padding-top: 14rem;
- }
-
- // heights
-
- .vh-85 {
- height: 85vh;
- }
-
- .vh-15 {
- height: 15vh;
- }
|