_section_title.scss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .section_title{
  2. h3{
  3. font-size: 50px;
  4. font-weight: 700;
  5. color:#001D38;
  6. position: relative;
  7. z-index: 0;
  8. padding-bottom: 0;
  9. @media #{$mobile_device} {
  10. font-size: 30px;
  11. line-height: 36px;
  12. }
  13. @media #{$tablet_device} {
  14. font-size: 36px;
  15. line-height: 42px;
  16. }
  17. @media #{$mid_device} {
  18. font-size: 35px;
  19. line-height: 42px;
  20. }
  21. br{
  22. @media #{$mobile_device} {
  23. display: none;
  24. }
  25. @media #{$tablet_device} {
  26. display: none;
  27. }
  28. @media #{$mid_device} {
  29. display: none;
  30. }
  31. }
  32. }
  33. p{
  34. font-size: 16px;
  35. color: #DB9A64;
  36. line-height: 28px;
  37. margin-bottom: 0;
  38. font-weight: 400;
  39. margin-bottom: 15px;
  40. br{
  41. @media #{$mobile_device} {
  42. display: none;
  43. }
  44. }
  45. }
  46. }
  47. .section_title h4 {
  48. font-size: 22px;
  49. font-weight: 500;
  50. color: #001D38;
  51. padding-bottom: 21px;
  52. }
  53. .mb-50{
  54. margin-bottom: 50px;
  55. @media #{$mobile_device} {
  56. margin-bottom: 40px;
  57. }
  58. }
  59. .mb-70{
  60. margin-bottom: 70px;
  61. @media #{$mobile_device} {
  62. margin-bottom: 40px;
  63. }
  64. @media #{$tablet_device} {
  65. margin-bottom: 40px;
  66. }
  67. }