Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. /*--------------------------------------------------------------
  2. 17. Hero
  3. ----------------------------------------------------------------*/
  4. .cs_hero.cs_style_1 {
  5. width: 100%;
  6. height: 100%;
  7. min-height: 750px;
  8. background: #fbfbfb;
  9. margin: 0 auto;
  10. display: flex;
  11. align-items: center;
  12. justify-content: space-between;
  13. @media (max-width: 1400px) {
  14. min-height: 700px;
  15. }
  16. @media (max-width: 991px) {
  17. min-height: initial;
  18. padding-bottom: 80px;
  19. }
  20. .cs_hero_text {
  21. width: 750px;
  22. padding: 0 75px;
  23. flex: none;
  24. @media (max-width: 1400px) {
  25. width: 670px;
  26. padding: 0 45px;
  27. }
  28. @media (max-width: 1199px) {
  29. width: 550px;
  30. padding: 0 25px;
  31. }
  32. @media (max-width: 991px) {
  33. padding: 30px 15px 70px;
  34. }
  35. @media (max-width: 991px) {
  36. width: 100%;
  37. }
  38. .cs_heto_title {
  39. margin-bottom: 17px;
  40. }
  41. .cs_heto_subtitle {
  42. margin-bottom: 37px;
  43. }
  44. }
  45. .cs_hero_thumb {
  46. flex: 1;
  47. height: 100%;
  48. @media (max-width: 991px) {
  49. height: 450px;
  50. min-height: initial;
  51. width: 100%;
  52. flex: initial;
  53. }
  54. }
  55. @media (max-width: 991px) {
  56. flex-direction: column-reverse;
  57. }
  58. }
  59. .cs_hero.cs_style_2 {
  60. background: rgba($secondary, 0.1);
  61. display: flex;
  62. height: calc(100vh - 80px);
  63. min-height: 700px;
  64. max-height: 1000px;
  65. @media (max-width: 991px) {
  66. flex-direction: column-reverse;
  67. height: initial;
  68. min-height: initial;
  69. max-height: initial;
  70. }
  71. .cs_hero_left {
  72. width: 50%;
  73. flex: none;
  74. display: flex;
  75. align-items: center;
  76. padding: 75px;
  77. padding-bottom: 175px;
  78. @media (max-width: 1400px) {
  79. padding: 50px;
  80. padding-bottom: 175px;
  81. }
  82. @media (max-width: 991px) {
  83. width: 100%;
  84. padding: 50px 40px 60px 40px;
  85. }
  86. @media (max-width: 380px) {
  87. padding: 40px 25px 50px 25px;
  88. }
  89. }
  90. .cs_hero_right {
  91. width: 50%;
  92. flex: none;
  93. position: relative;
  94. @media (max-width: 991px) {
  95. width: 100%;
  96. }
  97. }
  98. .cs_hero_thumb {
  99. height: 100%;
  100. img {
  101. height: 100%;
  102. width: 100%;
  103. object-fit: cover;
  104. }
  105. }
  106. .cs_hero_title_mini {
  107. margin-bottom: 20px;
  108. }
  109. .cs_hero_title {
  110. margin-bottom: 34px;
  111. }
  112. .cs_animated_text {
  113. width: 200px;
  114. height: 200px;
  115. display: flex;
  116. align-items: center;
  117. justify-content: center;
  118. bottom: 20%;
  119. left: -100px;
  120. background: rgba(255, 255, 255, 0.5);
  121. backdrop-filter: blur(10px);
  122. padding: 30px;
  123. border-radius: 50%;
  124. @media (max-width: 991px) {
  125. bottom: initial;
  126. left: 50%;
  127. transform: translate(-50%, -50%);
  128. top: 50%;
  129. }
  130. @media (max-width: 500px) {
  131. display: none;
  132. }
  133. img {
  134. animation: text_rotate 20s linear infinite;
  135. }
  136. .cs_text_light {
  137. display: inline-block;
  138. width: 30px;
  139. height: 30px;
  140. background-color: $accent;
  141. border-radius: 50%;
  142. position: absolute;
  143. top: 50%;
  144. left: 50%;
  145. transform: translate(-50%, -50%) scale(1);
  146. animation: scale_all 3s cubic-bezier(0.28, 1.84, 0.55, -0.11) infinite;
  147. }
  148. }
  149. }
  150. .cs_hero.cs_style_3 {
  151. padding-top: 118px;
  152. padding-bottom: 118px;
  153. background-color: #efefef;
  154. @media (max-width: 991px) {
  155. padding-top: 80px;
  156. padding-bottom: 80px;
  157. }
  158. .cs_hero_in {
  159. display: flex;
  160. align-items: center;
  161. position: relative;
  162. z-index: 2;
  163. @media (max-width: 991px) {
  164. flex-direction: column;
  165. }
  166. }
  167. .cs_hero_right {
  168. flex: 1;
  169. padding-left: 136px;
  170. @media (max-width: 1400px) {
  171. padding-left: 80px;
  172. }
  173. @media (max-width: 1199px) {
  174. padding-left: 50px;
  175. }
  176. @media (max-width: 991px) {
  177. padding-left: 0;
  178. padding-top: 40px;
  179. width: 100%;
  180. }
  181. }
  182. .cs_hero_left {
  183. flex: none;
  184. width: 43%;
  185. @media (max-width: 1400px) {
  186. width: 48%;
  187. }
  188. @media (max-width: 1199px) {
  189. width: 45%;
  190. }
  191. @media (max-width: 991px) {
  192. width: 100%;
  193. }
  194. }
  195. .cs_hero_title {
  196. margin-bottom: 47px;
  197. @media (max-width: 991px) {
  198. margin-bottom: 25px;
  199. }
  200. @media (max-width: 500px) {
  201. br {
  202. display: none;
  203. }
  204. }
  205. }
  206. .cs_hero_shape {
  207. top: 50%;
  208. transform: translateY(-50%);
  209. right: 76px;
  210. @media (max-width: 991px) {
  211. right: 30px;
  212. top: initial;
  213. bottom: -40px;
  214. transform: initial;
  215. }
  216. @media (max-width: 575px) {
  217. display: none;
  218. }
  219. }
  220. }
  221. @keyframes text_rotate {
  222. 100% {
  223. transform: rotate(360deg);
  224. }
  225. }
  226. @keyframes scale_all {
  227. 50% {
  228. transform: translate(-50%, -50%) scale(1.5);
  229. }
  230. }