index.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941
  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=Inter:wght@300;400;500;600;700;800&display=swap");
  3. @import url("https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@300;400;500;600;700;800;900&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: "Inter", sans-serif;
  15. }
  16. main {
  17. padding-top: 4rem;
  18. padding-bottom: 0 !important;
  19. }
  20. section {
  21. padding: 5rem 0;
  22. margin: unset;
  23. }
  24. h1, h2, h3, h4, h5, h6, p {
  25. color: inherit;
  26. font-family: inherit;
  27. margin: unset;
  28. text-shadow: unset;
  29. }
  30. .row {
  31. margin-top: unset;
  32. }
  33. @media screen and (min-width: 1400px) {
  34. .container {
  35. max-width: 1360px;
  36. }
  37. }
  38. .section-title {
  39. font-weight: 600;
  40. color: rgb(0, 0, 0);
  41. text-align: center;
  42. margin-bottom: 1rem;
  43. font-size: 2.2rem;
  44. }
  45. .section-sub-title {
  46. color: rgba(0, 0, 0, 0.6);
  47. text-align: center;
  48. font-size: 1.4rem;
  49. margin-bottom: 2rem;
  50. }
  51. .img-container {
  52. overflow: hidden;
  53. }
  54. .img-container img {
  55. height: 100%;
  56. width: 100%;
  57. -o-object-fit: cover;
  58. object-fit: cover;
  59. -o-object-position: center;
  60. object-position: center;
  61. }
  62. .link-btn {
  63. margin: 0;
  64. padding: 0.45rem 1.2rem !important;
  65. background: rgb(0, 38, 136);
  66. border-color: rgb(0, 38, 136);
  67. border-width: 2px;
  68. font-size: 0.9rem;
  69. font-weight: 600;
  70. box-shadow: none;
  71. opacity: unset;
  72. display: block;
  73. height: unset;
  74. width: -moz-fit-content;
  75. width: fit-content;
  76. }
  77. .link-btn:hover {
  78. background: rgb(255, 255, 255);
  79. color: rgb(0, 38, 136);
  80. }
  81. .link-btn-outline {
  82. margin: 0;
  83. padding: 0.45rem 1.2rem !important;
  84. color: rgb(0, 38, 136);
  85. border-color: rgb(0, 38, 136);
  86. background: rgb(255, 255, 255);
  87. border-width: 2px;
  88. font-size: 0.9rem;
  89. font-weight: 600;
  90. box-shadow: none;
  91. opacity: unset;
  92. height: unset;
  93. }
  94. .link-btn-outline:hover {
  95. background: rgb(0, 38, 136);
  96. color: rgb(255, 255, 255);
  97. }
  98. .single-course {
  99. box-shadow: 1px 2px 5px rgba(0, 46, 116, 0.25);
  100. font-family: "Inter", sans-serif;
  101. }
  102. .single-course .top-part {
  103. height: 200px;
  104. position: relative;
  105. overflow: hidden;
  106. }
  107. .single-course .top-part .img-container {
  108. height: 100%;
  109. width: 100%;
  110. }
  111. .single-course .top-part .tag {
  112. position: absolute;
  113. left: 4%;
  114. bottom: 4%;
  115. padding: 0.1rem 1rem;
  116. background: rgb(203, 236, 71);
  117. font-size: 0.75rem;
  118. font-weight: 700;
  119. border-radius: 15px;
  120. }
  121. .single-course .details {
  122. height: calc(100% - 180px);
  123. padding: 1rem;
  124. display: flex;
  125. flex-direction: column;
  126. gap: 0.75rem;
  127. font-family: "Inter", sans-serif;
  128. line-height: 1.2;
  129. background: rgb(255, 255, 255);
  130. }
  131. .single-course .details .level {
  132. font-size: 0.75rem;
  133. font-weight: 500;
  134. color: rgb(0, 38, 136);
  135. }
  136. .single-course .details .title {
  137. font-size: 0.9rem;
  138. font-weight: 600;
  139. text-decoration: none;
  140. color: rgb(0, 0, 0);
  141. cursor: pointer;
  142. }
  143. .single-course .details .stats {
  144. font-size: 0.7rem;
  145. color: rgba(0, 0, 0, 0.6);
  146. }
  147. .single-course .details .price {
  148. color: rgb(0, 38, 136);
  149. font-weight: 600;
  150. font-size: 1rem;
  151. text-align: right;
  152. }
  153. #navbar {
  154. position: fixed;
  155. top: 0;
  156. left: 0;
  157. width: 100%;
  158. padding: 0.75rem 0;
  159. font-family: "Poppins", sans-serif;
  160. background: rgb(255, 255, 255);
  161. z-index: 999;
  162. }
  163. #navbar .container-fluid {
  164. display: flex;
  165. justify-content: space-between;
  166. align-items: center;
  167. }
  168. @media screen and (max-width: 768px) {
  169. #navbar .container-fluid {
  170. flex-direction: column;
  171. }
  172. }
  173. #navbar .nav-icons {
  174. display: flex;
  175. align-items: center;
  176. }
  177. @media screen and (max-width: 768px) {
  178. #navbar .nav-icons {
  179. position: fixed;
  180. top: 0;
  181. left: 0;
  182. right: 0;
  183. justify-content: space-between;
  184. width: 100%;
  185. padding: 0 1rem;
  186. background: rgb(255, 255, 255);
  187. height: 4rem;
  188. }
  189. }
  190. #navbar .navbar-brand {
  191. height: 3.5rem;
  192. }
  193. #navbar .navbar-brand img {
  194. height: 100%;
  195. }
  196. #navbar .res-btn {
  197. font-size: 1.2rem;
  198. padding: 0.25rem;
  199. background: unset;
  200. color: rgb(0, 0, 0);
  201. border: none;
  202. margin: 0;
  203. width: unset;
  204. height: -moz-fit-content;
  205. height: fit-content;
  206. width: -moz-fit-content;
  207. width: fit-content;
  208. display: none;
  209. }
  210. #navbar .res-btn:focus {
  211. box-shadow: none;
  212. }
  213. @media screen and (max-width: 768px) {
  214. #navbar .res-btn {
  215. display: block;
  216. }
  217. }
  218. #navbar .nav-links {
  219. display: flex;
  220. justify-content: center;
  221. align-items: center;
  222. gap: 1rem;
  223. }
  224. @media screen and (max-width: 768px) {
  225. #navbar .nav-links {
  226. background: rgb(255, 255, 255);
  227. display: block;
  228. position: fixed;
  229. top: 4rem;
  230. left: 0;
  231. right: 0;
  232. min-height: calc(100vh - 4rem);
  233. padding: 1rem;
  234. overflow-y: auto;
  235. transform: translateX(-200vw);
  236. transition: 0.75s;
  237. }
  238. #navbar .nav-links li {
  239. display: block;
  240. color: #fff;
  241. margin-top: 1rem !important;
  242. }
  243. }
  244. #navbar .nav-links li {
  245. margin: unset;
  246. padding: unset;
  247. }
  248. #navbar .link-item {
  249. padding: 0.25rem 0.5rem;
  250. margin: unset;
  251. color: rgba(0, 0, 0, 0.8);
  252. font-size: 0.9rem;
  253. font-weight: 600;
  254. background: transparent;
  255. }
  256. #navbar .link-item:hover {
  257. color: rgb(0, 38, 136);
  258. }
  259. #navbar .link-item.active {
  260. color: rgb(0, 38, 136);
  261. }
  262. #navbar .link-btn {
  263. padding: 0.25rem 0.75rem !important;
  264. }
  265. @media screen and (max-width: 768px) {
  266. body.show-mobile-menu #navbar .nav-links {
  267. transform: translateX(0px);
  268. }
  269. body.show-mobile-menu main {
  270. overflow-y: none;
  271. }
  272. }
  273. #footer {
  274. background: #151E37;
  275. padding: 2rem 0;
  276. font-family: "Inter", sans-serif;
  277. }
  278. #footer .top-part {
  279. padding-bottom: 2rem;
  280. border-bottom: 2px solid rgb(255, 255, 255);
  281. }
  282. #footer .top-part ul {
  283. display: flex;
  284. justify-content: space-around;
  285. align-items: flex-end;
  286. flex-direction: row;
  287. list-style: none;
  288. }
  289. #footer .top-part ul li {
  290. list-style: none;
  291. }
  292. #footer .top-part ul .short-icon {
  293. width: 4rem;
  294. }
  295. #footer .top-part ul a {
  296. font-size: 1.2rem;
  297. color: rgb(255, 255, 255);
  298. }
  299. @media screen and (max-width: 767px) {
  300. #footer .top-part ul a {
  301. font-size: 0.85rem;
  302. }
  303. }
  304. #footer .top-part ul a.active {
  305. color: #ADBCFF;
  306. }
  307. #footer .address {
  308. display: flex;
  309. flex-direction: column;
  310. gap: 0.5rem;
  311. color: rgb(255, 255, 255);
  312. }
  313. #footer .address li {
  314. list-style: none;
  315. display: flex;
  316. align-items: center;
  317. gap: 0.75rem;
  318. font-size: 1rem;
  319. font-weight: 300;
  320. }
  321. #footer .other-link {
  322. color: rgb(255, 255, 255);
  323. display: flex;
  324. justify-content: center;
  325. align-items: center;
  326. flex-direction: column;
  327. gap: 1rem;
  328. }
  329. #footer .social-link {
  330. display: flex;
  331. gap: 0.5rem;
  332. }
  333. #footer .social-link img {
  334. height: 100%;
  335. width: 100%;
  336. }
  337. #footer .privacy-links {
  338. display: flex;
  339. gap: 0.25rem;
  340. }
  341. #footer .privacy-links a {
  342. padding: 0.1rem 0.5rem;
  343. font-size: 0.7rem;
  344. color: rgb(255, 255, 255);
  345. border-right: 2px solid rgb(255, 255, 255);
  346. }
  347. #footer .privacy-links a:last-child {
  348. border-right: none;
  349. }
  350. #footer .app-download {
  351. margin-top: 0.5rem;
  352. display: flex;
  353. gap: 1.5rem;
  354. }
  355. #footer .app-download a {
  356. height: 2.2rem;
  357. text-decoration: none;
  358. }
  359. #footer .app-download a img {
  360. height: 100%;
  361. }
  362. #hero-banner {
  363. font-family: "Noto Serif Bengali", serif !important;
  364. color: rgb(0, 0, 0);
  365. background: url(../images/hero-background.svg) no-repeat center center/cover;
  366. }
  367. #hero-banner .hero-content {
  368. align-items: center;
  369. min-height: 70vh;
  370. }
  371. #hero-banner .hero-content .hero-title {
  372. font-weight: 500;
  373. font-size: 2.5rem;
  374. font-family: "Noto Serif Bengali", serif;
  375. line-height: 1.2;
  376. margin-bottom: 1.5rem;
  377. }
  378. @media screen and (max-width: 768px) {
  379. #hero-banner .hero-content .hero-title {
  380. font-size: 1.5rem;
  381. margin-bottom: 0.75rem;
  382. }
  383. }
  384. #hero-banner .hero-content .hero-paragraph {
  385. line-height: 1.7;
  386. font-size: 1.3rem;
  387. margin-bottom: 2rem;
  388. }
  389. @media screen and (max-width: 768px) {
  390. #hero-banner .hero-content .hero-paragraph {
  391. font-size: 0.9rem;
  392. }
  393. }
  394. #hero-banner .hero-content .hero-desc {
  395. order: 0;
  396. }
  397. @media screen and (max-width: 992px) {
  398. #hero-banner .hero-content .hero-desc {
  399. order: 1;
  400. }
  401. }
  402. @media screen and (max-width: 768px) {
  403. #hero-banner .hero-content .hero-image {
  404. height: 240px;
  405. text-align: center;
  406. }
  407. #hero-banner .hero-content .hero-image img {
  408. height: 100%;
  409. }
  410. }
  411. #hero-banner .statistics {
  412. display: flex;
  413. align-items: center;
  414. gap: 1rem;
  415. }
  416. #hero-banner .single-statistics {
  417. color: rgba(0, 0, 0, 0.6);
  418. text-align: center;
  419. padding-right: 1rem;
  420. border-right: 5px solid rgb(203, 236, 71);
  421. }
  422. #hero-banner .single-statistics:last-child {
  423. border-right: none;
  424. }
  425. #hero-banner .single-statistics .count {
  426. margin-bottom: 0.2rem;
  427. font-size: 1.3rem;
  428. }
  429. @media screen and (max-width: 768px) {
  430. #hero-banner .single-statistics .count {
  431. font-size: 0.9rem;
  432. }
  433. }
  434. #hero-banner .single-statistics p {
  435. margin-bottom: 0;
  436. }
  437. @media screen and (max-width: 768px) {
  438. #hero-banner .single-statistics p {
  439. font-size: 0.75rem;
  440. }
  441. }
  442. #hero-banner .hero-links {
  443. margin-top: 2rem;
  444. display: flex;
  445. flex-wrap: wrap;
  446. gap: 0.75rem;
  447. }
  448. #feature {
  449. font-family: "Noto Serif Bengali", serif !important;
  450. color: rgb(0, 0, 0);
  451. background: url(../images/2-features.svg) no-repeat center center/cover;
  452. }
  453. #feature .infography {
  454. margin-top: 3rem;
  455. display: block;
  456. width: 100%;
  457. }
  458. #feature .infography img {
  459. width: 100%;
  460. }
  461. #course-catagory {
  462. font-family: "Noto Serif Bengali", serif !important;
  463. color: rgb(0, 0, 0);
  464. background: url(../images/3-jobcourse_catagory.svg) no-repeat center center/cover;
  465. }
  466. #course-catagory .section-title, #course-catagory .section-sub-title {
  467. text-align: start;
  468. }
  469. #course-catagory .courses-short-desc .swiper-slide {
  470. padding: 1rem 0;
  471. height: -moz-max-content;
  472. height: max-content;
  473. }
  474. #course-catagory .courses-short-desc .single-course-short-desc {
  475. font-family: "Inter", sans-serif;
  476. padding: 0.75rem 1rem;
  477. border: 3px solid #ADBCFF;
  478. border-radius: unset;
  479. display: flex;
  480. flex-direction: column;
  481. height: 100%;
  482. }
  483. @media screen and (max-width: 767px) {
  484. #course-catagory .courses-short-desc .single-course-short-desc {
  485. align-items: center;
  486. justify-content: center;
  487. }
  488. }
  489. #course-catagory .courses-short-desc .single-course-short-desc h6 {
  490. font-size: 1rem;
  491. }
  492. #course-catagory .courses-short-desc .single-course-short-desc .desc {
  493. margin-top: 0.2rem;
  494. font-size: 0.65rem;
  495. color: rgba(0, 0, 0, 0.6);
  496. display: flex;
  497. align-items: center;
  498. gap: 0.25rem;
  499. font-weight: 600;
  500. }
  501. #course-catagory .courses-short-desc .single-course-short-desc .desc span {
  502. display: flex;
  503. align-items: center;
  504. gap: 0.25rem;
  505. }
  506. #course-catagory .courses-short-desc .single-course-short-desc .desc span::before {
  507. content: "";
  508. background: #ADBCFF;
  509. height: 15px;
  510. width: 15px;
  511. padding: 0.15rem;
  512. }
  513. #course-catagory .course-container {
  514. margin-top: 2rem;
  515. margin-bottom: 2rem;
  516. }
  517. #course-catagory .link-btn {
  518. margin-top: 1rem;
  519. margin-left: auto;
  520. margin-right: auto;
  521. }
  522. #why-studypress {
  523. background: rgb(173, 188, 255);
  524. padding: 0;
  525. }
  526. #why-studypress .section-title {
  527. text-align: left;
  528. font-weight: 500;
  529. font-size: 2rem;
  530. }
  531. #why-studypress .details {
  532. display: flex;
  533. flex-direction: column;
  534. justify-content: center;
  535. }
  536. #why-studypress ul li {
  537. font-size: 1rem;
  538. margin-bottom: 1rem;
  539. color: rgb(0, 0, 0);
  540. }
  541. #why-studypress .slider {
  542. display: flex;
  543. align-items: center;
  544. }
  545. #why-studypress .why-slider-1 .swiper-wrapper, #why-studypress .why-slider-2 .swiper-wrapper {
  546. max-height: 600px;
  547. }
  548. #why-studypress .why-slider-1 .swiper-slide, #why-studypress .why-slider-2 .swiper-slide {
  549. height: 60%;
  550. }
  551. @media screen and (max-width: 768px) {
  552. #why-studypress .why-slider-1 .swiper-slide, #why-studypress .why-slider-2 .swiper-slide {
  553. display: none;
  554. }
  555. }
  556. #new-course {
  557. font-family: "Noto Serif Bengali", serif;
  558. color: rgb(0, 0, 0);
  559. background: url(../images/5-courses.svg) no-repeat center center/cover;
  560. }
  561. #new-course .section-title, #new-course .section-sub-title {
  562. text-align: left;
  563. }
  564. #new-course .new-course-slider {
  565. padding: 1rem 0;
  566. }
  567. #app-download {
  568. font-family: "Noto Serif Bengali", serif;
  569. color: rgb(0, 0, 0);
  570. background: url(../images/6-download.svg) no-repeat center center/cover;
  571. }
  572. #app-download .feature-img {
  573. order: 0;
  574. }
  575. #app-download .feature-img img {
  576. width: 100%;
  577. }
  578. @media screen and (max-width: 767px) {
  579. #app-download .feature-img {
  580. order: 1;
  581. }
  582. }
  583. #app-download .details {
  584. display: flex;
  585. flex-direction: column;
  586. justify-content: center;
  587. }
  588. #app-download .details .section-title, #app-download .details .section-sub-title {
  589. text-align: left;
  590. }
  591. #app-download .download-btns {
  592. display: flex;
  593. align-items: center;
  594. gap: 0.75rem;
  595. }
  596. #app-download .download-btns a {
  597. text-decoration: none;
  598. height: 3.2rem;
  599. }
  600. #app-download .download-btns a img {
  601. height: 100%;
  602. }
  603. #our-blog {
  604. font-family: "Noto Serif Bengali", serif;
  605. color: rgb(0, 0, 0);
  606. background: url(../images/7-blog.svg) no-repeat center center/cover;
  607. }
  608. #our-blog .link-btn {
  609. margin: 2rem auto 0;
  610. }
  611. #our-blog .blog-container {
  612. margin: 2rem 0 2.5rem;
  613. display: grid;
  614. grid-template-columns: repeat(4, 1fr);
  615. grid-gap: 1rem;
  616. }
  617. @media screen and (max-width: 992px) {
  618. #our-blog .blog-container {
  619. grid-template-columns: repeat(2, 1fr);
  620. }
  621. }
  622. @media screen and (max-width: 767px) {
  623. #our-blog .blog-container {
  624. grid-template-columns: repeat(1, 1fr);
  625. }
  626. }
  627. #our-blog .blog-container .blog-single {
  628. width: 100%;
  629. height: 100%;
  630. border: 1.5px solid rgb(173, 188, 255);
  631. display: flex;
  632. flex-direction: column;
  633. border-radius: 5px;
  634. }
  635. #our-blog .blog-container .blog-single .img-container {
  636. height: 100%;
  637. flex: 3;
  638. }
  639. #our-blog .blog-container .blog-single .details {
  640. flex: 2;
  641. padding: 1rem 1rem 0.5rem;
  642. line-height: 1.4;
  643. }
  644. #our-blog .blog-container .blog-single .details .title {
  645. font-size: 0.95rem;
  646. color: rgb(0, 0, 0);
  647. text-decoration: none;
  648. cursor: pointer;
  649. font-weight: 600;
  650. line-height: 1.2;
  651. margin-bottom: 0.5rem;
  652. display: block;
  653. }
  654. #our-blog .blog-container .blog-single .details p {
  655. font-size: 0.85rem;
  656. color: rgba(0, 0, 0, 0.6);
  657. line-height: 1.7;
  658. }
  659. #our-blog .blog-container .blog-single:first-child {
  660. grid-column: span 2;
  661. grid-row: span 2;
  662. }
  663. #our-blog .blog-container .blog-single:first-child .details {
  664. padding-top: 1.5rem;
  665. }
  666. #our-blog .blog-container .blog-single:first-child .title {
  667. font-size: 1.3rem;
  668. margin-bottom: 1rem;
  669. }
  670. #our-blog .blog-container .blog-single:first-child p {
  671. font-size: 0.9rem;
  672. line-height: 1.7;
  673. }
  674. @media screen and (max-width: 992px) {
  675. #our-blog .blog-container .blog-single:first-child {
  676. grid-column: unset;
  677. grid-row: unset;
  678. }
  679. #our-blog .blog-container .blog-single:first-child .title {
  680. font-size: 1rem;
  681. }
  682. #our-blog .blog-container .blog-single:first-child p {
  683. font-size: 0.85rem;
  684. }
  685. }
  686. #our-blog .blog-container .blog-single:nth-child(4) {
  687. grid-column: span 2;
  688. flex-direction: row;
  689. }
  690. #our-blog .blog-container .blog-single:nth-child(4) .img-container {
  691. height: 100%;
  692. flex: 1;
  693. }
  694. #our-blog .blog-container .blog-single:nth-child(4) .details {
  695. flex: 1;
  696. }
  697. #our-blog .blog-container .blog-single:nth-child(4) p {
  698. font-size: 0.8rem;
  699. }
  700. @media screen and (max-width: 992px) {
  701. #our-blog .blog-container .blog-single:nth-child(4) {
  702. grid-column: unset;
  703. flex-direction: column;
  704. }
  705. #our-blog .blog-container .blog-single:nth-child(4) .img-container {
  706. flex: 3;
  707. }
  708. #our-blog .blog-container .blog-single:nth-child(4) .details {
  709. flex: 2;
  710. }
  711. }
  712. #current-news {
  713. font-family: "Noto Serif Bengali", serif;
  714. color: rgb(255, 255, 255);
  715. background: url(../images/8-news.svg) no-repeat center center/cover;
  716. }
  717. #current-news .section-title {
  718. color: rgb(255, 255, 255);
  719. }
  720. #current-news .link-btn-outline {
  721. display: block;
  722. width: -moz-fit-content;
  723. width: fit-content;
  724. margin: 2rem auto;
  725. border-color: rgb(255, 255, 255);
  726. color: rgb(255, 255, 255);
  727. background: transparent;
  728. }
  729. #current-news .all-news {
  730. margin: 2rem 0;
  731. }
  732. #current-news .single-news {
  733. box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  734. border-radius: 5px;
  735. overflow: hidden;
  736. }
  737. #current-news .single-news .img-container {
  738. height: 250px;
  739. }
  740. #current-news .single-news .details {
  741. padding: 1rem 1rem 1.5rem;
  742. background: rgb(255, 255, 255);
  743. color: rgb(0, 0, 0);
  744. display: flex;
  745. flex-direction: column;
  746. gap: 0.5rem;
  747. }
  748. #current-news .single-news .title {
  749. font-size: 1rem;
  750. }
  751. #current-news .single-news p {
  752. font-size: 0.8rem;
  753. }
  754. #current-news .single-news .link {
  755. font-size: 0.8rem;
  756. font-weight: 700;
  757. color: rgb(0, 38, 136);
  758. }
  759. #current-news .single-news .link:hover {
  760. opacity: 0.8;
  761. }
  762. #feature-sec {
  763. padding: 0;
  764. font-family: "Noto Serif Bengali", serif;
  765. }
  766. #feature-sec .all-feature {
  767. width: 100%;
  768. display: flex;
  769. }
  770. @media screen and (max-width: 992px) {
  771. #feature-sec .all-feature {
  772. flex-direction: column;
  773. }
  774. }
  775. #feature-sec .word-day, #feature-sec .memory {
  776. flex: 1;
  777. padding: 2rem;
  778. }
  779. #feature-sec .word-day {
  780. background: rgb(173, 188, 255);
  781. }
  782. #feature-sec .word-day .sub-heading {
  783. text-align: center;
  784. color: rgb(255, 255, 255);
  785. }
  786. #feature-sec .word-day .heading {
  787. display: block;
  788. max-width: -moz-fit-content;
  789. max-width: fit-content;
  790. margin: 1rem auto;
  791. }
  792. #feature-sec .word-day .word-container {
  793. min-height: 300px;
  794. width: 54%;
  795. margin: 1.5rem auto 0;
  796. padding: 3rem 3rem 8% 12%;
  797. background: rgb(255, 255, 255);
  798. color: rgb(0, 0, 0);
  799. position: relative;
  800. }
  801. @media screen and (max-width: 767px) {
  802. #feature-sec .word-day .word-container {
  803. width: 80%;
  804. }
  805. }
  806. #feature-sec .word-day .word-container .realated-image {
  807. width: 40%;
  808. position: absolute;
  809. bottom: 0;
  810. left: -20%;
  811. }
  812. #feature-sec .word-day .word-container .word {
  813. font-weight: 500;
  814. font-size: 1.6rem;
  815. margin-bottom: 0.5rem;
  816. }
  817. #feature-sec .word-day .word-container .meaning {
  818. color: rgb(0, 38, 136);
  819. font-weight: 600;
  820. margin-bottom: 0.25rem;
  821. }
  822. #feature-sec .word-day .word-container .synonyms, #feature-sec .word-day .word-container .antonyms {
  823. font-size: 0.8rem;
  824. color: rgba(0, 0, 0, 0.6);
  825. margin-top: 1rem;
  826. }
  827. #feature-sec .word-day .word-container .synonyms strong, #feature-sec .word-day .word-container .antonyms strong {
  828. color: rgb(0, 0, 0);
  829. }
  830. #feature-sec .word-day .word-container .desc {
  831. margin-top: 1rem;
  832. color: rgba(0, 0, 0, 0.6);
  833. font-size: 0.75rem;
  834. }
  835. #feature-sec .memory {
  836. background: #FFF3E4;
  837. padding: 4rem 3rem 2.5rem;
  838. width: 100%;
  839. }
  840. @media screen and (max-width: 768px) {
  841. #feature-sec .memory {
  842. padding: 1rem;
  843. }
  844. }
  845. #feature-sec .memory .title {
  846. font-size: 1.8rem;
  847. font-weight: 600;
  848. text-align: center;
  849. max-width: 500px;
  850. margin: 0 auto;
  851. }
  852. #feature-sec .memory .date {
  853. font-size: 1.3rem;
  854. color: rgba(0, 0, 0, 0.6);
  855. text-align: center;
  856. margin-top: 2rem;
  857. }
  858. #feature-sec .memory .memory-slider {
  859. max-width: 600px;
  860. margin: 3rem auto 0;
  861. padding: 0.5rem 60px;
  862. }
  863. @media screen and (max-width: 500px) {
  864. #feature-sec .memory .memory-slider {
  865. max-width: 400px;
  866. padding: 3rem;
  867. margin-top: 1rem;
  868. }
  869. }
  870. #feature-sec .memory .memory-slider-next, #feature-sec .memory .memory-slider-prev {
  871. color: rgb(0, 38, 136);
  872. background: none;
  873. border: none;
  874. height: 2rem;
  875. width: 2rem;
  876. padding: 0.25rem;
  877. }
  878. #feature-sec .memory .memory-slider-next:focus, #feature-sec .memory .memory-slider-prev:focus {
  879. box-shadow: none;
  880. }
  881. #feature-sec .memory .single-memory {
  882. box-shadow: 1px 2px 5px rgba(0, 46, 116, 0.25);
  883. display: flex;
  884. width: 100%;
  885. }
  886. @media screen and (max-width: 768px) {
  887. #feature-sec .memory .single-memory {
  888. flex-direction: column;
  889. }
  890. }
  891. #feature-sec .memory .single-memory .img-container {
  892. flex: 1;
  893. }
  894. @media screen and (max-width: 768px) {
  895. #feature-sec .memory .single-memory .img-container {
  896. flex: unset;
  897. height: 200px;
  898. }
  899. }
  900. #feature-sec .memory .single-memory .detail {
  901. flex: 2;
  902. padding: 0.75rem;
  903. }
  904. @media screen and (max-width: 768px) {
  905. #feature-sec .memory .single-memory .detail {
  906. flex: unset;
  907. }
  908. }
  909. #feature-sec .memory .single-memory .detail .title {
  910. text-align: left;
  911. font-size: 1rem;
  912. margin-bottom: 0.5rem;
  913. }
  914. #feature-sec .memory .single-memory .detail p {
  915. font-size: 0.75rem;
  916. }/*# sourceMappingURL=index.css.map */