1234567891011121314151617181920212223242526 |
- @import 'variables';
- @import 'functions';
-
- *,::before,::after{
- padding: 0;
- margin: 0;
- box-sizing: border-box;
-
- }
-
- html{
- font-size: 16px;
- }
-
- .bg-green{
- background-color:#3BB78F;
- background: linear-gradient(90deg, #3BB78F 0%, rgba(11,171,100,1) 35%, rgba(59,183,143,1) 100%);
- }
-
- .banner_heading_4{
- font-size: 4rem;
- }
-
- .subtitle_1{
- font-size: 1rem;
- }
|