style.css 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');
  2. :root {
  3. --pry-color:#1C3D80;
  4. }
  5. * {
  6. font-family: 'Roboto';
  7. padding: 0;
  8. margin: 0;
  9. }
  10. body {
  11. display: flex;
  12. flex-direction: column;
  13. font-weight: 400;
  14. background-color: #ffffff;
  15. color: #333;
  16. width: 100%;
  17. font-size: 17px;
  18. min-height: 100vh;
  19. }
  20. ::-moz-selection { background: #333; color: #fff; }
  21. ::selection { background: #333; color: #fff; }
  22. .bg-grey {
  23. background-color: #5C6D7A;
  24. color: #fff;
  25. }
  26. footer{
  27. margin-top: auto;
  28. }
  29. footer span {
  30. font-size: 15px;
  31. }
  32. a {
  33. text-decoration: none;
  34. color: var(--pry-color);
  35. font-size: 16px;
  36. }
  37. p {
  38. font-size: 18px;
  39. }
  40. .text-pry {
  41. color: var(--pry-color);
  42. }
  43. .bg-pry {
  44. background-color: var(--pry-color);
  45. }
  46. .top-blue {
  47. padding: 8px 0;
  48. background-color: var(--pry-color);
  49. }
  50. .top-blue a {
  51. color: #fff !important;
  52. padding-bottom: 3px;
  53. font-size: 15px;
  54. border-bottom: 1px solid transparent;
  55. transition: .5s;
  56. }
  57. .top-blue a:hover, .top-blue a.active {
  58. transition: .5s;
  59. border-bottom: 1px dotted rgba(255,255,255,.6);
  60. }
  61. .top-blue span {
  62. color: #fff;
  63. font-weight: 300;
  64. font-size: 20px;
  65. }
  66. .breadcrumb-item {
  67. font-weight: 300;
  68. }
  69. .navbar {
  70. background-color: #ffffff;
  71. }
  72. .navbar-brand img{
  73. width: 100%;
  74. height: 35px;
  75. max-width: 250px;
  76. object-fit: contain;
  77. }
  78. .nav-item {
  79. margin-left: 1.5rem;
  80. }
  81. .nav-link {
  82. color: #000000;
  83. font-size: 17px;
  84. border-bottom:1px dashed transparent;
  85. transition: .3s;
  86. position: relative;
  87. }
  88. .nav-link:hover, .nav-link.active {
  89. color: var(--pry-color);
  90. transition: .3s;
  91. }
  92. .btn-pry {
  93. background-color: var(--pry-color);
  94. color: #fff !important;
  95. font-size: 16px;
  96. border-radius: 0;
  97. padding: 10px 45px;
  98. }
  99. .btn-outline-pry {
  100. border: 1px solid;
  101. border-color: var(--pry-color);
  102. color: var(--pry-color);
  103. font-size: 16px;
  104. border-radius: 0;
  105. padding: 10px 45px;
  106. }
  107. .btn-pry:hover, .btn-outline-pry:hover {
  108. transition: .5s;
  109. box-shadow: 0px 15px 15px rgb(11 28 91 / 10%);
  110. }
  111. .dropdown-menu {
  112. border-radius: 0;
  113. margin-top: 18px !important;
  114. border: 1px solid #eee;
  115. }
  116. .dropdown-item small {
  117. color: #545E65 !important;
  118. }
  119. .dropdown-item {
  120. padding: 15px 25px;
  121. font-size: 15px;
  122. }
  123. .dropdown-item:hover{
  124. background-color: #ffffff;
  125. }
  126. .dropdown-item:hover h6{
  127. color: var(--pry-color);
  128. }
  129. .dropdown-menu li:not(:last-child) {
  130. border-bottom: 1px solid #ccc;
  131. }
  132. .top {
  133. background-image: url('/img/top-bg.png');
  134. background-size: cover;
  135. background-position: top center;
  136. background-repeat: no-repeat;
  137. min-height: 600px;
  138. color: #333;
  139. display: grid;
  140. }
  141. .top > div {
  142. }
  143. .top .light-bg p{
  144. font-size: 20px;
  145. }
  146. .top .light-bg {
  147. padding: 30px 30px 35px;
  148. }
  149. .light-bg {
  150. background-color: rgba(255,255,255, .9);
  151. }
  152. .dark {
  153. background-image: url('/img/top-overlay.png');
  154. background-position: left;
  155. background-size: cover;
  156. min-height: 400px;
  157. width: 100%;
  158. display: grid;
  159. place-items: center;
  160. }
  161. .md-title {
  162. font-size: 45px;
  163. margin-bottom: 20px;
  164. font-weight: 900;
  165. }
  166. .title {
  167. font-weight: 300;
  168. font-size: 48px;
  169. /* line-height: 56px; */
  170. letter-spacing: -0.912px;
  171. }
  172. .subtitle {
  173. font-weight: 300;
  174. font-size: 39px;
  175. /* line-height: 56px; */
  176. letter-spacing: -0.741px;
  177. }
  178. .steps {
  179. display: flex;
  180. justify-content: space-between;
  181. align-items: flex-start;
  182. width: 70%;
  183. }
  184. .steps > div {
  185. width: 100%;
  186. }
  187. .fp-container {
  188. border: 1px solid #DDE0E2;
  189. border-radius: 2px;
  190. padding: 40px 70px;
  191. background-color: #fff;
  192. border-bottom: 4px solid var(--pry-color);
  193. position: absolute;
  194. top: -26.5rem;
  195. }
  196. .fp-container img {
  197. height: 40px;
  198. width: 40px;
  199. object-fit: contain;
  200. margin-right: 20px;
  201. }
  202. .fp-container h5, .header {
  203. font-weight: 400;
  204. font-size: 30px;
  205. }
  206. .header {
  207. font-weight: 300;
  208. }
  209. .box-1 {
  210. display: grid;
  211. padding: 50px 60px;
  212. background-color: #0276CF;
  213. color: #fff;
  214. height: 100%;
  215. }
  216. .box-2 {
  217. display: grid;
  218. padding: 50px;
  219. background-color: #5C6D7A;
  220. color: #fff;
  221. }
  222. .box-3 {
  223. display: grid;
  224. height: 100%;
  225. padding: 50px;
  226. background-color: #778FA1;
  227. color: #fff;
  228. }
  229. .box-4{
  230. display: grid;
  231. height: 100%;
  232. padding: 50px;
  233. background-color: #F7F7F7;
  234. }
  235. .doc-bg {
  236. background-size: cover;
  237. background-position: top;
  238. }
  239. .text-justify {
  240. text-align: justify;
  241. }
  242. .ft-spacing {
  243. margin-left: 100px;
  244. padding-left: 100px;
  245. }
  246. .fw-thin {
  247. font-weight: 300;
  248. }
  249. .about-hem {
  250. background-image: url('/img/about-hem.png');
  251. background-size: cover;
  252. background-repeat: no-repeat;
  253. background-position: center right;
  254. background-color: #5C6D7A;
  255. color: #fff;
  256. }
  257. .cause {
  258. color: #545E65;
  259. }
  260. .cause:hover {
  261. transition: .5s;
  262. color: var(--pry-color);
  263. }
  264. .fx-symptoms {
  265. display: flex;
  266. align-items: flex-start;
  267. justify-content: space-between;
  268. /* flex-wrap: wrap; */
  269. gap:10px;
  270. }
  271. .fx-symptoms p {
  272. font-size: 15px;
  273. text-align: center;
  274. }
  275. .d-center {
  276. display: grid;
  277. place-items: center;
  278. }
  279. .guide-img {
  280. width: 40px;
  281. height: 40px;
  282. object-fit: contain;
  283. }
  284. .tt-container {
  285. display: flex;
  286. justify-content: space-between;
  287. }
  288. .tt-container > div {
  289. width: 100%;
  290. }
  291. .tt-container > div:nth-child(1) {
  292. background-color: #0276CF;
  293. color: #fff;
  294. }
  295. .tt-container > div:nth-child(2) {
  296. background-color: #5C6D7A;
  297. color: #fff;
  298. }
  299. .tt-container > div:nth-child(3) {
  300. background-color: #778FA1;
  301. color: #fff;
  302. }
  303. .tt-container > div:nth-child(4) {
  304. background-color: #F7F7F7;
  305. }
  306. .accordion-header button {
  307. font-size: 20px;
  308. font-weight: 300;
  309. }
  310. .accordion-item {
  311. border:0;
  312. border-bottom: 1px solid #ddd;
  313. }
  314. .accordion-button:focus{
  315. box-shadow: none !important;
  316. }
  317. .accordion-button:not(.collapsed){
  318. background-color: #ffffff;
  319. border-bottom: 1px solid #ddd;
  320. }
  321. .border-lg-start {
  322. border-left: 1px solid #ccc;
  323. }
  324. @media screen and (max-width:1399px) {
  325. .nav-item {
  326. margin-left: 1rem;
  327. }
  328. .fp-container {
  329. padding: 40px;
  330. top:-25rem;
  331. margin-bottom: -26.5rem;
  332. position: relative;
  333. }
  334. .fp-container img {
  335. height: 30px;
  336. width: 30px;
  337. }
  338. .fp-container h5 {
  339. font-size: 25px;
  340. }
  341. .title {
  342. font-size: 45px;
  343. }
  344. .subtitle {
  345. font-size: 35px;
  346. }
  347. .tt-container {
  348. flex-wrap: wrap;
  349. }
  350. .tt-container > div{
  351. width: 50%;
  352. }
  353. }
  354. @media screen and (max-width:1199px) {
  355. .fp-container {
  356. top:0;
  357. margin-bottom: 0;
  358. padding: 30px 40px;
  359. }
  360. .nav-item {
  361. margin-left: .5rem;
  362. }
  363. .nav-link {
  364. font-size: 15px;
  365. }
  366. .navbar-brand {
  367. margin: 0;
  368. }
  369. .navbar-brand img {
  370. max-width: 200px;
  371. }
  372. .top-blue a {
  373. font-size: 14px;
  374. padding-bottom: 0;
  375. }
  376. .ft-spacing {
  377. padding-left: 50px;
  378. margin-left: 50px;
  379. }
  380. .box-1, .box-2, .box-3, .box-4 {
  381. padding: 30px 40px;
  382. }
  383. .header{
  384. font-size: 25px;
  385. }
  386. }
  387. @media screen and (max-width:991px) {
  388. #navBar {
  389. position: absolute;
  390. background-color: #ffffff;
  391. width: 100%;
  392. left: 0;
  393. margin-top: 17px;
  394. }
  395. .dropdown-menu {
  396. margin-top: 0 !important;
  397. margin-bottom: 10px;
  398. }
  399. .navbar-toggler {
  400. padding: 10px;
  401. border: 1px solid #aaa;
  402. margin-left: 10px;
  403. }
  404. .navbar-toggler:focus {
  405. box-shadow: none !important;
  406. }
  407. .navbar-brand img {
  408. max-width: 250px;
  409. }
  410. }
  411. @media screen and (max-width:767px) {
  412. .ft-spacing {
  413. padding-left: 30px;
  414. margin-left: 30px;
  415. }
  416. .fx-symptoms {
  417. flex-wrap: wrap;
  418. }
  419. .fx-symptoms > div {
  420. width: 30%;
  421. }
  422. .tt-container > div{
  423. width: 100%;
  424. }
  425. }
  426. @media screen and (max-width:500px) {
  427. .navbar-brand img {
  428. max-width: 180px;
  429. }
  430. .top .title {
  431. text-align: center;
  432. }
  433. .title {
  434. font-size: 40px;
  435. }
  436. .subtitle {
  437. font-size: 32px;
  438. }
  439. .header {
  440. font-size: 27px;
  441. }
  442. .ft-spacing {
  443. padding-left: 20px;
  444. margin-left:10px;
  445. }
  446. .profile-img {
  447. height: 150px;
  448. width: 150px;
  449. margin: auto;
  450. overflow: hidden;
  451. }
  452. .profile-img img{
  453. height: 150px;
  454. width: 150px;
  455. object-fit: cover;
  456. object-position: top;
  457. }
  458. }