index.css 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
  2. @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@300;400;500;600;700;800;900&display=swap");
  3. @import url("https://fonts.googleapis.com/css2?family=Tiro+Bangla&display=swap");
  4. * {
  5. list-style: none;
  6. text-decoration: none;
  7. }
  8. a {
  9. opacity: 1;
  10. }
  11. body {
  12. background: rgb(255, 255, 255);
  13. color: rgb(0, 0, 0);
  14. font-family: "Tiro Bangla", serif;
  15. }
  16. main {
  17. height: 200vh;
  18. padding-top: 4rem;
  19. }
  20. section {
  21. padding: 4rem 0;
  22. margin: unset;
  23. }
  24. h1, h2, h3, h4, h5, h6, p {
  25. color: inherit;
  26. font-family: inherit;
  27. margin: unset;
  28. }
  29. .section-title {
  30. font-weight: 600;
  31. color: rgb(0, 0, 0);
  32. text-align: center;
  33. margin-bottom: 1.2rem;
  34. }
  35. .section-sub-title {
  36. color: rgba(0, 0, 0, 0.6);
  37. text-align: center;
  38. font-size: 1.1rem;
  39. margin-bottom: 2rem;
  40. }
  41. .img-container {
  42. overflow: hidden;
  43. }
  44. .img-container img {
  45. height: 100%;
  46. width: 100%;
  47. -o-object-fit: cover;
  48. object-fit: cover;
  49. -o-object-position: center;
  50. object-position: center;
  51. }
  52. .link-btn {
  53. margin: 0 !important;
  54. padding: 0.25rem 1rem !important;
  55. background: rgb(0, 38, 136);
  56. border-color: rgb(0, 38, 136);
  57. border-width: 2px;
  58. font-size: 0.9rem;
  59. font-weight: 600;
  60. box-shadow: none;
  61. opacity: unset;
  62. display: block;
  63. height: unset;
  64. }
  65. .link-btn:hover {
  66. background: rgb(255, 255, 255);
  67. color: rgb(0, 38, 136);
  68. }
  69. .link-btn-outline {
  70. margin: 0 !important;
  71. padding: 0.25rem 1rem !important;
  72. color: rgb(0, 38, 136);
  73. border-color: rgb(0, 38, 136);
  74. background: rgb(255, 255, 255);
  75. border-width: 2px;
  76. font-size: 0.9rem;
  77. font-weight: 600;
  78. box-shadow: none;
  79. opacity: unset;
  80. height: unset;
  81. }
  82. .link-btn-outline:hover {
  83. background: rgb(0, 38, 136);
  84. color: rgb(255, 255, 255);
  85. }
  86. #navbar {
  87. position: fixed;
  88. top: 0;
  89. left: 0;
  90. width: 100%;
  91. padding: 0.75rem 0;
  92. font-family: "Poppins", sans-serif;
  93. background: rgb(255, 255, 255);
  94. }
  95. #navbar .container-fluid {
  96. display: flex;
  97. justify-content: space-between;
  98. align-items: center;
  99. }
  100. @media screen and (max-width: 768px) {
  101. #navbar .container-fluid {
  102. flex-direction: column;
  103. }
  104. }
  105. #navbar .nav-icons {
  106. display: flex;
  107. align-items: center;
  108. }
  109. @media screen and (max-width: 768px) {
  110. #navbar .nav-icons {
  111. position: fixed;
  112. top: 0;
  113. left: 0;
  114. right: 0;
  115. justify-content: space-between;
  116. width: 100%;
  117. padding: 0 1rem;
  118. background: rgb(255, 255, 255);
  119. height: 4rem;
  120. }
  121. }
  122. #navbar .navbar-brand {
  123. height: 3.5rem;
  124. }
  125. #navbar .navbar-brand img {
  126. height: 100%;
  127. }
  128. #navbar .res-btn {
  129. font-size: 1.2rem;
  130. padding: 0.25rem;
  131. background: unset;
  132. color: rgb(0, 0, 0);
  133. border: none;
  134. margin: 0;
  135. width: unset;
  136. height: -moz-fit-content;
  137. height: fit-content;
  138. width: -moz-fit-content;
  139. width: fit-content;
  140. display: none;
  141. }
  142. #navbar .res-btn:focus {
  143. box-shadow: none;
  144. }
  145. @media screen and (max-width: 768px) {
  146. #navbar .res-btn {
  147. display: block;
  148. }
  149. }
  150. #navbar .nav-links {
  151. display: flex;
  152. justify-content: center;
  153. align-items: center;
  154. gap: 1rem;
  155. }
  156. @media screen and (max-width: 768px) {
  157. #navbar .nav-links {
  158. background: rgb(255, 255, 255);
  159. display: block;
  160. position: fixed;
  161. top: 4rem;
  162. left: 0;
  163. right: 0;
  164. min-height: calc(100vh - 4rem);
  165. padding: 1rem;
  166. overflow-y: auto;
  167. transform: translateX(-200vw);
  168. transition: 0.75s;
  169. }
  170. #navbar .nav-links li {
  171. display: block;
  172. color: #fff;
  173. margin-top: 1rem !important;
  174. }
  175. }
  176. #navbar .nav-links li {
  177. margin: unset;
  178. padding: unset;
  179. }
  180. #navbar .link-item {
  181. padding: 0.25rem 0.5rem;
  182. margin: unset;
  183. color: rgba(0, 0, 0, 0.8);
  184. font-size: 0.9rem;
  185. font-weight: 600;
  186. background: transparent;
  187. }
  188. #navbar .link-item:hover {
  189. color: rgb(0, 38, 136);
  190. }
  191. #navbar .link-item.active {
  192. color: rgb(0, 38, 136);
  193. }
  194. @media screen and (max-width: 768px) {
  195. body.show-mobile-menu #navbar .nav-links {
  196. transform: translateX(0px);
  197. }
  198. body.show-mobile-menu main {
  199. overflow-y: none;
  200. }
  201. }
  202. #hero-banner {
  203. font-family: "Tiro Bangla", serif !important;
  204. color: rgb(0, 0, 0);
  205. background: url(../images/hero-background.svg) no-repeat;
  206. }
  207. #hero-banner .hero-content {
  208. align-items: center;
  209. min-height: 70vh;
  210. }
  211. #hero-banner .hero-content .hero-title {
  212. font-weight: 500;
  213. font-size: 2.5rem;
  214. font-family: "Tiro Bangla", serif;
  215. line-height: 1.2;
  216. margin-bottom: 1.5rem;
  217. }
  218. @media screen and (max-width: 768px) {
  219. #hero-banner .hero-content .hero-title {
  220. font-size: 1.5rem;
  221. margin-bottom: 0.75rem;
  222. }
  223. }
  224. #hero-banner .hero-content .hero-paragraph {
  225. line-height: 1.7;
  226. font-size: 1.3rem;
  227. margin-bottom: 2rem;
  228. }
  229. @media screen and (max-width: 768px) {
  230. #hero-banner .hero-content .hero-paragraph {
  231. font-size: 0.9rem;
  232. }
  233. }
  234. #hero-banner .hero-content .hero-desc {
  235. order: 0;
  236. }
  237. @media screen and (max-width: 992px) {
  238. #hero-banner .hero-content .hero-desc {
  239. order: 1;
  240. }
  241. }
  242. @media screen and (max-width: 768px) {
  243. #hero-banner .hero-content .hero-image {
  244. height: 240px;
  245. text-align: center;
  246. }
  247. #hero-banner .hero-content .hero-image img {
  248. height: 100%;
  249. }
  250. }
  251. #hero-banner .statistics {
  252. display: flex;
  253. align-items: center;
  254. gap: 1rem;
  255. }
  256. #hero-banner .single-statistics {
  257. color: rgba(0, 0, 0, 0.6);
  258. text-align: center;
  259. padding-right: 1rem;
  260. border-right: 5px solid rgb(203, 236, 71);
  261. }
  262. #hero-banner .single-statistics:last-child {
  263. border-right: none;
  264. }
  265. #hero-banner .single-statistics .count {
  266. margin-bottom: 0.2rem;
  267. font-size: 1.3rem;
  268. }
  269. @media screen and (max-width: 768px) {
  270. #hero-banner .single-statistics .count {
  271. font-size: 0.9rem;
  272. }
  273. }
  274. #hero-banner .single-statistics p {
  275. margin-bottom: 0;
  276. }
  277. @media screen and (max-width: 768px) {
  278. #hero-banner .single-statistics p {
  279. font-size: 0.75rem;
  280. }
  281. }
  282. #hero-banner .hero-links {
  283. margin-top: 2rem;
  284. display: flex;
  285. flex-wrap: wrap;
  286. gap: 0.75rem;
  287. }
  288. #feature {
  289. font-family: "Tiro Bangla", serif !important;
  290. color: rgb(0, 0, 0);
  291. background: url(../images/2-features.svg) no-repeat;
  292. }
  293. #course-catagory {
  294. font-family: "Tiro Bangla", serif !important;
  295. color: rgb(0, 0, 0);
  296. background: url(../images/3-jobcourse_catagory.svg) no-repeat;
  297. }
  298. #course-catagory .section-title, #course-catagory .section-sub-title {
  299. text-align: start;
  300. }
  301. #course-catagory .course-container {
  302. margin-top: 2rem;
  303. }
  304. #course-catagory .single-course {
  305. box-shadow: 1px 2px 5px rgba(0, 46, 116, 0.25);
  306. height: 100%;
  307. }
  308. #course-catagory .single-course .img-container {
  309. position: relative;
  310. height: 180px;
  311. }
  312. #course-catagory .details {
  313. height: calc(100% - 180px);
  314. padding: 1rem;
  315. display: flex;
  316. flex-direction: column;
  317. gap: 0.75rem;
  318. font-family: "Poppins", sans-serif;
  319. line-height: 1.2;
  320. }
  321. #course-catagory .details .level {
  322. font-size: 0.75rem;
  323. font-weight: 500;
  324. color: rgb(0, 38, 136);
  325. }
  326. #course-catagory .details .title {
  327. font-size: 0.9rem;
  328. font-weight: 600;
  329. }
  330. #course-catagory .details .stats {
  331. font-size: 0.7rem;
  332. color: rgba(0, 0, 0, 0.6);
  333. }
  334. #course-catagory .details .price {
  335. color: rgb(0, 38, 136);
  336. font-weight: 600;
  337. font-size: 1rem;
  338. text-align: right;
  339. }/*# sourceMappingURL=index.css.map */