_page-services.less 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /* Page service */
  2. .page-services__main-info {
  3. padding: 70px 100px;
  4. background-position: center;
  5. background-repeat: no-repeat;
  6. background-size: cover;
  7. font-size: 16px;
  8. line-height: 150%;
  9. color: #ffffff;
  10. margin-bottom: 30px;
  11. h5 {
  12. font-weight: 500;
  13. font-size: 18px;
  14. margin-bottom: 20px;
  15. }
  16. p {
  17. margin-bottom: 20px;
  18. &:last-child {
  19. margin-bottom: 0px;
  20. }
  21. }
  22. .wrapper {
  23. max-width: 510px;
  24. }
  25. }
  26. .page-services__sub-info {
  27. font-size: 16px;
  28. line-height: 150%;
  29. text-align: center;
  30. margin-bottom: 150px;
  31. p {
  32. margin-bottom: 20px;
  33. &:last-child {
  34. margin-bottom: 0px;
  35. }
  36. }
  37. }
  38. /* //Page service */
  39. /* Useful */
  40. .useful-info {
  41. padding: 50px 0px;
  42. margin: -50px 0px 100px;
  43. background-color: #F9F8F8;
  44. }
  45. .useful-info__list {
  46. display: flex;
  47. margin-right: -30px;
  48. }
  49. .useful-info__item {
  50. display: flex;
  51. flex-direction: column;
  52. width: calc(33.333% - 30px);
  53. margin-right: 30px;
  54. border: 1px solid #E9E4E4;
  55. padding: 20px;
  56. }
  57. .useful-info__item__caption {
  58. font-family: "Cochin", serif;
  59. font-weight: 700;
  60. font-size: 20px;
  61. line-height: 120%;
  62. letter-spacing: 0.05em;
  63. text-transform: uppercase;
  64. margin-bottom: 10px;
  65. display: -webkit-box;
  66. -webkit-box-orient: vertical;
  67. -webkit-line-clamp: 2;
  68. max-height: 48px;
  69. overflow: hidden;
  70. text-overflow: ellipsis;
  71. }
  72. .useful-info__item__footer {
  73. display: flex;
  74. justify-content: space-between;
  75. align-items: flex-end;
  76. margin-top: auto;
  77. img {
  78. width: 50px;
  79. height: 50px;
  80. object-fit: cover;
  81. }
  82. }