styles.scss 921 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. // Main SASS file
  2. // Import all partial files
  3. @import 'base/reset';
  4. @import 'base/fonts';
  5. @import 'base/mixins';
  6. @import 'base/variables';
  7. @import 'base/typography';
  8. @import 'layout/header';
  9. @import 'layout/footer';
  10. @import 'layout/container';
  11. @import 'components/buttons';
  12. @import 'components/tables';
  13. body{
  14. background:#fff !important;
  15. padding-top:70px;
  16. color:#000;
  17. font-style: normal;
  18. font-weight: 400;
  19. line-height: 24px; /* 150% */
  20. }
  21. //banner
  22. .banner{
  23. background:#000;
  24. display:flex;
  25. align-items: center;
  26. justify-content: center;
  27. &__img-wrp{
  28. max-width:1920px;
  29. margin:0 auto;
  30. }
  31. &__img{
  32. display:block;
  33. width:100%;
  34. height:100%;
  35. object-fit: cover;
  36. }
  37. }
  38. .section-wrapper{
  39. padding:32px 0;
  40. display:flex;
  41. flex-direction: column;
  42. gap:32px;
  43. width:100%;
  44. @include mobile{
  45. gap:24px;
  46. }
  47. }
  48. .section{
  49. padding:32px;
  50. border-radius: 16px;
  51. border: 1px solid #E4E4E4;
  52. background: #F6F6F6;
  53. }