style.css 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  1. @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&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: 15px;
  36. }
  37. p {
  38. font-size: 17px;
  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: 18px;
  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: 18px;
  96. border-radius: 0;
  97. padding: 10px 20px;
  98. }
  99. .btn-outline-pry {
  100. border: 1px solid;
  101. border-color: var(--pry-color);
  102. color: var(--pry-color);
  103. font-size: 18px;
  104. border-radius: 0;
  105. padding: 10px 20px;
  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.jpg');
  134. background-size: cover;
  135. background-position: top right;
  136. background-repeat: no-repeat;
  137. min-height: 600px;
  138. color: #333;
  139. display: grid;
  140. }
  141. .top .light-bg p{
  142. font-size: 19px;
  143. }
  144. .top .light-bg {
  145. padding: 40px 30px;
  146. }
  147. .light-bg {
  148. background-color: rgba(255,255,255, .9);
  149. }
  150. .dark {
  151. background-image: url('/img/top-overlay.png');
  152. background-position: left;
  153. background-size: cover;
  154. min-height: 400px;
  155. width: 100%;
  156. display: grid;
  157. place-items: center;
  158. }
  159. .md-title {
  160. font-size: 45px;
  161. margin-bottom: 20px;
  162. /* font-weight: 900; */
  163. }
  164. .title {
  165. font-weight: 300;
  166. font-size: 48px;
  167. /* line-height: 56px; */
  168. letter-spacing: -0.912px;
  169. }
  170. .subtitle {
  171. font-weight: 300;
  172. font-size: 39px;
  173. /* line-height: 56px; */
  174. letter-spacing: -0.741px;
  175. }
  176. .steps {
  177. display: flex;
  178. justify-content: space-between;
  179. align-items: flex-start;
  180. }
  181. .steps > div {
  182. width: 100%;
  183. }
  184. .fp-container {
  185. border: 1px solid #DDE0E2;
  186. border-radius: 2px;
  187. padding: 40px 70px;
  188. background-color: #fff;
  189. border-bottom: 4px solid var(--pry-color);
  190. position: absolute;
  191. top: -26.5rem;
  192. }
  193. .fp-container img {
  194. height: 40px;
  195. width: 40px;
  196. object-fit: contain;
  197. margin-right: 20px;
  198. }
  199. .fp-container h5, .header {
  200. font-weight: 400;
  201. font-size: 30px;
  202. }
  203. .header {
  204. font-weight: 300;
  205. }
  206. .box-1 {
  207. display: grid;
  208. padding: 50px 60px;
  209. background-color: #0276CF;
  210. color: #fff;
  211. height: 100%;
  212. }
  213. .box-2 {
  214. display: grid;
  215. padding: 50px;
  216. background-color: #5C6D7A;
  217. color: #fff;
  218. }
  219. .box-3 {
  220. display: grid;
  221. height: 100%;
  222. padding: 50px;
  223. background-color: #778FA1;
  224. color: #fff;
  225. }
  226. .box-4{
  227. display: grid;
  228. height: 100%;
  229. padding: 50px;
  230. background-color: #F7F7F7;
  231. }
  232. .doc-bg {
  233. background-size: cover;
  234. background-position: top;
  235. }
  236. .text-justify {
  237. text-align: justify;
  238. }
  239. .ft-spacing {
  240. margin-left: 100px;
  241. padding-left: 100px;
  242. }
  243. .fw-thin {
  244. font-weight: 300;
  245. }
  246. .about-hem {
  247. background-image: url('/img/about-hem.png');
  248. background-size: cover;
  249. background-repeat: no-repeat;
  250. background-position: center right;
  251. background-color: #5C6D7A;
  252. color: #fff;
  253. }
  254. .cause {
  255. color: #545E65;
  256. }
  257. .cause:hover {
  258. transition: .5s;
  259. color: var(--pry-color);
  260. }
  261. .fx-symptoms {
  262. display: flex;
  263. align-items: flex-start;
  264. justify-content: space-between;
  265. /* flex-wrap: wrap; */
  266. gap:10px;
  267. }
  268. .fx-symptoms p {
  269. font-size: 15px;
  270. text-align: center;
  271. }
  272. .d-center {
  273. display: grid;
  274. place-items: center;
  275. }
  276. .guide-img {
  277. width: 40px;
  278. height: 40px;
  279. object-fit: contain;
  280. }
  281. .tt-container {
  282. display: flex;
  283. justify-content: space-between;
  284. }
  285. .tt-container > div {
  286. width: 100%;
  287. }
  288. .tt-container > div:nth-child(1) {
  289. background-color: #0276CF;
  290. color: #fff;
  291. }
  292. .tt-container > div:nth-child(2) {
  293. background-color: #5C6D7A;
  294. color: #fff;
  295. }
  296. .tt-container > div:nth-child(3) {
  297. background-color: #778FA1;
  298. color: #fff;
  299. }
  300. .tt-container > div:nth-child(4) {
  301. background-color: #F7F7F7;
  302. }
  303. .accordion-header button {
  304. font-size: 20px;
  305. font-weight: 300;
  306. }
  307. .accordion-item {
  308. border:0;
  309. border-bottom: 1px solid #ddd;
  310. }
  311. .accordion-button:focus{
  312. box-shadow: none !important;
  313. }
  314. .accordion-button:not(.collapsed){
  315. background-color: #ffffff;
  316. border-bottom: 1px solid #ddd;
  317. }
  318. .border-lg-start {
  319. border-left: 1px solid #ccc;
  320. }
  321. @media screen and (max-width:1399px) {
  322. .nav-item {
  323. margin-left: 1rem;
  324. }
  325. .fp-container {
  326. padding: 40px;
  327. top:-25rem;
  328. margin-bottom: -26.5rem;
  329. position: relative;
  330. }
  331. .fp-container img {
  332. height: 30px;
  333. width: 30px;
  334. }
  335. .fp-container h5 {
  336. font-size: 25px;
  337. }
  338. .title {
  339. font-size: 45px;
  340. }
  341. .subtitle {
  342. font-size: 34px;
  343. }
  344. .tt-container {
  345. flex-wrap: wrap;
  346. }
  347. .tt-container > div{
  348. width: 50%;
  349. }
  350. }
  351. @media screen and (max-width:1199px) {
  352. .fp-container {
  353. top:0;
  354. margin-bottom: 0;
  355. padding: 30px 40px;
  356. }
  357. .nav-item {
  358. margin-left: .5rem;
  359. }
  360. .nav-link {
  361. font-size: 15px;
  362. }
  363. .navbar-brand {
  364. margin: 0;
  365. }
  366. .navbar-brand img {
  367. max-width: 200px;
  368. }
  369. .top-blue a {
  370. font-size: 14px;
  371. padding-bottom: 0;
  372. }
  373. .ft-spacing {
  374. padding-left: 50px;
  375. margin-left: 50px;
  376. }
  377. .box-1, .box-2, .box-3, .box-4 {
  378. padding: 30px 40px;
  379. }
  380. .header{
  381. font-size: 25px;
  382. }
  383. }
  384. @media screen and (max-width:991px) {
  385. #navBar {
  386. position: absolute;
  387. background-color: #ffffff;
  388. width: 100%;
  389. left: 0;
  390. margin-top: 17px;
  391. }
  392. .dropdown-menu {
  393. margin-top: 0 !important;
  394. margin-bottom: 10px;
  395. }
  396. .navbar-toggler {
  397. padding: 10px;
  398. border: 1px solid #aaa;
  399. margin-left: 10px;
  400. }
  401. .navbar-toggler:focus {
  402. box-shadow: none !important;
  403. }
  404. .navbar-brand img {
  405. max-width: 250px;
  406. }
  407. .steps {
  408. flex-wrap: wrap;
  409. }
  410. .steps > div {
  411. width: 45%;
  412. padding-bottom: 30px;
  413. }
  414. }
  415. @media screen and (max-width:767px) {
  416. .ft-spacing {
  417. padding-left: 30px;
  418. margin-left: 30px;
  419. }
  420. .fx-symptoms {
  421. flex-wrap: wrap;
  422. }
  423. .fx-symptoms > div {
  424. width: 30%;
  425. }
  426. .tt-container > div{
  427. width: 100%;
  428. }
  429. .md-title {
  430. font-size: 35px
  431. }
  432. }
  433. @media screen and (max-width:500px) {
  434. .navbar-brand img {
  435. max-width: 170px;
  436. }
  437. .steps > div {
  438. width: 100%;
  439. padding-bottom: 0px;
  440. }
  441. .top .title {
  442. text-align: center;
  443. }
  444. .title {
  445. font-size: 38px;
  446. }
  447. .subtitle {
  448. font-size: 30px;
  449. }
  450. .header {
  451. font-size: 26px;
  452. }
  453. .ft-spacing {
  454. padding-left: 20px;
  455. margin-left:10px;
  456. }
  457. .profile-img {
  458. height: 150px;
  459. width: 150px;
  460. margin: auto;
  461. overflow: hidden;
  462. }
  463. .profile-img img{
  464. height: 150px;
  465. width: 150px;
  466. object-fit: cover;
  467. object-position: top;
  468. }
  469. .md-title {
  470. font-size: 34px;
  471. }
  472. .btn-pry, .btn-outline-pry{
  473. font-size: 16px
  474. }
  475. }