style.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
  2. body {
  3. font-family: 'Poppins', sans-serif;
  4. background-color: #271956;
  5. color: white;
  6. background-image: url(../imgs/header-bg.png);
  7. background-repeat: no-repeat;
  8. background-position: top;
  9. }
  10. p {
  11. font-size: 12px;
  12. }
  13. .bg-menu {
  14. background-color: #271956;
  15. backdrop-filter: blur(10px);
  16. }
  17. .btn-primary {
  18. background: rgb(237,31,37);
  19. background: linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
  20. border: none;
  21. padding-left: 30px !important;
  22. padding-right: 30px !important;
  23. color: white;
  24. }
  25. .main-heading {
  26. font-size: 70px;
  27. font-weight: 700;
  28. }
  29. .main-heading-2 {
  30. border-radius: 10px;
  31. font-size: 50px;
  32. background-color: rgb(37 5 77 / 67%);
  33. border-width: 2px;
  34. border-style: solid;
  35. border-image: linear-gradient(to top, rgb(58, 157, 213), rgb(242, 48, 37)) 1 / 1 / 0 stretch;
  36. padding: 10px;
  37. margin-top: 30px;
  38. font-weight: 600;
  39. }
  40. .main-heading-3 {
  41. border-radius: 10px;
  42. font-size: 24px;
  43. background-color: rgb(37 5 77 / 67%);
  44. border-width: 2px;
  45. border-style: solid;
  46. border-image: linear-gradient(to top, rgb(58, 157, 213), rgb(242, 48, 37)) 1 / 1 / 0 stretch;
  47. padding: 10px;
  48. font-weight: 600;
  49. }
  50. .btn-gradient {
  51. background: -webkit-linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
  52. color: white;
  53. border: none;
  54. font-size: 20px;
  55. width: 80%;
  56. font-weight: 700;
  57. padding: 10px;
  58. }
  59. .btn-gradient:hover {
  60. background: -webkit-linear-gradient(90deg, rgba(254,89,36,1) 0%, rgba(237,31,37,1) 100%);
  61. color: white;
  62. }
  63. .text-primary {
  64. background: -webkit-linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
  65. -webkit-background-clip: text;
  66. -webkit-text-fill-color: transparent;
  67. }
  68. section {
  69. padding-top: 5rem;
  70. padding-bottom: 5rem;
  71. }
  72. .bg-danger {
  73. background: -webkit-linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
  74. color: white;
  75. }
  76. .btn-secondary {
  77. color: white;
  78. background-color: #34065c;
  79. }
  80. .bg-secondary {
  81. color: white;
  82. background-color: #34065c !important;
  83. }
  84. .count {
  85. list-style-type: none;
  86. display: inline-block;
  87. min-width: 85px;
  88. }
  89. .count-1 {
  90. list-style-type: none;
  91. padding: 1em;
  92. display: inline-block;
  93. top: 70%;
  94. transform: translateY(-70%);
  95. }
  96. ol, ul {
  97. padding-left: 0rem;
  98. }
  99. .bg-primary {
  100. background-color: #271956 !important
  101. }
  102. .gold {
  103. background-color: #fff6e5;
  104. border: 1px solid #FF9D00;
  105. }
  106. .silver {
  107. background-color: #e4e4e4;
  108. border: 1px solid #a4b8b8;
  109. }
  110. .platnium {
  111. background-color: #ffdbcb;
  112. border: 1px solid #f57020;
  113. }
  114. .main-heading-4 {
  115. background-color: rgb(37 5 77 / 67%);
  116. border-width: 2px;
  117. border-style: solid;
  118. border-image: linear-gradient(to top, rgb(58, 157, 213), rgb(242, 48, 37)) 1 / 1 / 0 stretch;
  119. padding: 10px;
  120. backdrop-filter: blur(8px);
  121. }
  122. header {
  123. padding-bottom: 0rem;
  124. }
  125. section {
  126. padding-bottom: 0rem;
  127. }
  128. .step-bg {
  129. background-image: url(../imgs/step-bg.png);
  130. background-repeat: no-repeat;
  131. background-size: cover;
  132. }
  133. .footer-bg {
  134. background-image: url(../imgs/footer-bg.png);
  135. background-repeat: no-repeat;
  136. background-position: bottom;
  137. }
  138. .language-box{
  139. display: block;
  140. width: 124px;
  141. height: 40px;
  142. line-height: 40px;
  143. text-align: center;
  144. border: 1px solid #fff;
  145. border-radius: 6px;
  146. font-size: 16px;
  147. font-weight: 400;
  148. text-decoration: none;
  149. color: #ffffff;
  150. margin-left: 24px;
  151. }
  152. .crm_pagination{
  153. text-align: center;
  154. margin-top: 10px;
  155. }
  156. .el-pagination.is-background .el-pager li:not(.disabled):hover {
  157. color: #ED2025 !important;
  158. }
  159. .el-pagination.is-background .el-pager li:not(.disabled).active {
  160. background-color: #fff !important;
  161. color: #ED2025 !important;
  162. border: 1px solid #ED2025 !important;
  163. }
  164. .el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev, .el-pagination.is-background .el-pager li {
  165. background-color: #fff !important;
  166. color: #333 !important;
  167. border: 1px solid #DFE3E8;
  168. }
  169. .luckyLoginBox{
  170. position: relative;
  171. }
  172. .luckyLogin{
  173. width: 100%;
  174. position: absolute;
  175. top: 160px;
  176. left: 0;
  177. text-align: center;
  178. color: rgb(220, 53, 69);
  179. font-size: 20px;
  180. }
  181. .luckyLogin p{
  182. font-size: 22px;
  183. font-weight: bold;
  184. margin-bottom: 0.5rem;
  185. }
  186. .el-icon-bottom,.el-icon-top{
  187. font-size: 24px;
  188. font-weight: bold !important;
  189. position: absolute;
  190. left: 5px;
  191. }
  192. .el-icon-bottom{
  193. color: green;
  194. }
  195. .el-icon-top{
  196. color: red;
  197. }
  198. @media screen and (max-width: 768px) {
  199. .px-4 {
  200. padding-right: 0.5rem !important;
  201. padding-left: 0.5rem !important;
  202. }
  203. .main-heading-4 {
  204. overflow-x: scroll;
  205. }
  206. .nav-item {
  207. margin-bottom: 10px;
  208. }
  209. .main-heading{
  210. font-size: 28px;
  211. }
  212. .main-heading-2{
  213. font-size: 22px;
  214. }
  215. .count-1.active{
  216. width: 100%;
  217. }
  218. .count-1.active1{
  219. display: none;
  220. }
  221. .luckyLogin{
  222. top: 140px;
  223. }
  224. .table > :not(caption) > * > *{
  225. min-width: 90px;
  226. }
  227. .el-icon-bottom, .el-icon-top {
  228. left: -5px;
  229. }
  230. }