style.css 8.1 KB

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