1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- @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: 3rem;
- }
-
- .subtitle_1{
- font-size: 1.5rem;
- }
-
- .padding_top_14{
- padding-top: 14rem;
- }
-
- .photo_dual{
- width:40rem;
- }
-
- .price_footer{
- background-color:#52cba5;
- }
-
- .boxImgContainer{
- width: 4rem;
-
- }
-
- .vh-85{
- height: 85vh;
- }
-
- .vh-15{
- height: 15vh;
- }
-
- .font-3{
- font-size: 3rem;
- }
- .font-1_5{
- font-size: 2rem;
- }
-
- .gap-1{
- font-size: 0.7rem;
- }
-
- .priceCut_multi{
- font-size: .7rem;
- }
- // button
- .button_dark{
- clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
- padding-right: 1.7rem;
- padding-bottom: 0.6rem;
- padding-top: 0.6rem;
- border-radius: 10px;
- }
|