_contact_action.scss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .contact_action_area{
  2. background-image: url(../img/banner/add_property.png);
  3. position: relative;
  4. z-index: 0;
  5. padding: 100px 0;
  6. background-repeat: no-repeat;
  7. background-size: cover;
  8. background-position: center center;
  9. @media #{$mobile_device} {
  10. padding: 50px 0;
  11. }
  12. &::before{
  13. position: absolute;
  14. left: 0;
  15. top: 0;
  16. width: 100%;
  17. height: 100%;
  18. background: #FDAE5C;
  19. opacity: .9;
  20. z-index: -1;
  21. content: '';
  22. }
  23. .action_heading{
  24. h3{
  25. margin-bottom: 0;
  26. font-size: 42px;
  27. color: #fff;
  28. font-weight: 400;
  29. @media #{$tablet_device}{
  30. text-align: center;
  31. }
  32. @media #{$mobile_device} {
  33. font-size: 25px;
  34. }
  35. }
  36. }
  37. .call_add_action {
  38. text-align: right;
  39. @media #{$mobile_device} {
  40. text-align: center;
  41. }
  42. @media #{$tablet_device} {
  43. text-align: center;
  44. margin-top: 20px;
  45. }
  46. span{
  47. color: #fff;
  48. font-weight: 500;
  49. font-size: 18px;
  50. margin-right: 25px;
  51. @media #{$mobile_device} {
  52. margin: 20px 0;
  53. display: block;
  54. }
  55. }
  56. .boxed-btn3-line{
  57. border-color: #fff;
  58. color: #fff !important;
  59. padding: 13px 31px;
  60. display: inline-block;
  61. &:hover{
  62. color: #000 !important;
  63. background: #fff !important;
  64. border-color: transparent;
  65. }
  66. }
  67. }
  68. }