_cta.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. .cta-one {
  2. padding: 165px 0;
  3. position: relative;
  4. &__bg {
  5. position: absolute;
  6. bottom: 4%;
  7. right: 0;
  8. }
  9. .container {
  10. position: relative;
  11. &:before {
  12. content: '';
  13. width: 448px;
  14. height: 448px;
  15. border-radius: 50%;
  16. background-color: #f6fff7;
  17. position: absolute;
  18. top: -19%;
  19. left: -12%;
  20. }
  21. }
  22. &__moc {
  23. position: absolute;
  24. top: -45px;
  25. left: -10%;
  26. animation: featureImgBounce 5s ease-in-out 0s infinite alternate;
  27. }
  28. .block-title {
  29. margin-bottom: 0;
  30. margin-top: 30px;
  31. margin-bottom: 45px;
  32. }
  33. .block-title__title {
  34. letter-spacing: -.04em;
  35. }
  36. &__icon {
  37. font-size: 62px;
  38. color: #ff4eb5;
  39. }
  40. &__text {
  41. p {
  42. margin: 0;
  43. color: #74727a;
  44. font-size: 24px;
  45. line-height: 40px;
  46. }
  47. }
  48. ul {
  49. margin: 0;
  50. margin-top: 45px;
  51. margin-bottom: 50px;
  52. li {
  53. position: relative;
  54. font-size: 16px;
  55. color: #74727a;
  56. padding-left: 30px;
  57. +li {
  58. margin-top: 3px;
  59. }
  60. i {
  61. font-size: 18px;
  62. color: #ffa065;
  63. position: absolute;
  64. top: 50%;
  65. left: 0;
  66. transform: translateY(-50%);
  67. }
  68. }
  69. }
  70. .thm-btn {
  71. padding: 18px 55.5px;
  72. }
  73. }
  74. .cta-two {
  75. padding: 120px 0;
  76. background-color: #fefbf4;
  77. .container {
  78. position: relative;
  79. }
  80. &__moc {
  81. position: absolute;
  82. top: -40px;
  83. right: -35px;
  84. animation: featureImgBounce 5s ease-in-out 0s infinite alternate;
  85. }
  86. .block-title {
  87. margin-top: 30px;
  88. margin-bottom: 35px;
  89. }
  90. .block-title__title {
  91. letter-spacing: -.04em;
  92. }
  93. &__icon {
  94. font-size: 62px;
  95. color: #ffa065;
  96. }
  97. &__text {
  98. margin-bottom: 50px;
  99. p {
  100. margin: 0;
  101. color: #74727a;
  102. font-size: 18px;
  103. line-height: 34px;
  104. +p {
  105. margin-top: 35px;
  106. }
  107. }
  108. }
  109. .thm-btn {
  110. padding: 18px 55.5px;
  111. }
  112. }
  113. @keyframes featureImgBounce {
  114. 0% {
  115. -webkit-transform: translateY(0);
  116. transform: translateY(0)
  117. }
  118. 100% {
  119. -webkit-transform: translateY(-30px);
  120. transform: translateY(-30px)
  121. }
  122. }