style.css 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
  2. :root {
  3. --pry-color:#0276CF;
  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: #545E65;
  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: 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: 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-pry:hover {
  100. transition: .5s;
  101. box-shadow: 0px 15px 15px rgb(11 28 91 / 10%);
  102. }
  103. .dropdown-menu {
  104. border-radius: 0;
  105. margin-top: 18px !important;
  106. border: 1px solid #eee;
  107. }
  108. .dropdown-item small {
  109. color: #545E65 !important;
  110. }
  111. .dropdown-item {
  112. padding: 15px 25px;
  113. font-size: 15px;
  114. }
  115. .dropdown-item:hover{
  116. background-color: #ffffff;
  117. }
  118. .dropdown-item:hover h6{
  119. color: var(--pry-color);
  120. }
  121. .dropdown-menu li:not(:last-child) {
  122. border-bottom: 1px solid #ccc;
  123. }
  124. .top {
  125. background-image: url('/img/top-bg.png');
  126. background-size: cover;
  127. background-repeat: no-repeat;
  128. min-height: 400px;
  129. color: #fff;
  130. }
  131. .dark {
  132. background-image: url('/img/top-overlay.png');
  133. background-position: left;
  134. background-size: cover;
  135. min-height: 400px;
  136. width: 100%;
  137. display: grid;
  138. place-items: center;
  139. }
  140. .title {
  141. font-weight: 300;
  142. font-size: 48px;
  143. /* line-height: 56px; */
  144. letter-spacing: -0.912px;
  145. }
  146. .subtitle {
  147. font-weight: 300;
  148. font-size: 39px;
  149. /* line-height: 56px; */
  150. letter-spacing: -0.741px;
  151. }
  152. .fp-container {
  153. border: 1px solid #DDE0E2;
  154. border-radius: 2px;
  155. padding: 40px 70px;
  156. background-color: #fff;
  157. border-bottom: 4px solid var(--pry-color);
  158. position: absolute;
  159. top: -26.5rem;
  160. }
  161. .fp-container img {
  162. height: 40px;
  163. width: 40px;
  164. object-fit: contain;
  165. margin-right: 20px;
  166. }
  167. .fp-container h5, .header {
  168. font-weight: 400;
  169. font-size: 30px;
  170. }
  171. .header {
  172. font-weight: 300;
  173. }
  174. .box-1 {
  175. display: grid;
  176. padding: 50px 60px;
  177. background-color: #0276CF;
  178. color: #fff;
  179. height: 100%;
  180. }
  181. .box-2 {
  182. display: grid;
  183. padding: 50px;
  184. background-color: #5C6D7A;
  185. color: #fff;
  186. }
  187. .box-3 {
  188. display: grid;
  189. height: 100%;
  190. padding: 50px;
  191. background-color: #778FA1;
  192. color: #fff;
  193. }
  194. .box-4{
  195. display: grid;
  196. height: 100%;
  197. padding: 50px;
  198. background-color: #F7F7F7;
  199. }
  200. .doc-bg {
  201. background-size: cover;
  202. background-position: top;
  203. }
  204. .text-justify {
  205. text-align: justify;
  206. }
  207. .ft-spacing {
  208. margin-left: 100px;
  209. padding-left: 100px;
  210. }
  211. .fw-thin {
  212. font-weight: 300;
  213. }
  214. .about-hem {
  215. background-image: url('/img/about-hem.png');
  216. background-size: cover;
  217. background-repeat: no-repeat;
  218. background-position: center right;
  219. background-color: #5C6D7A;
  220. color: #fff;
  221. }
  222. .cause {
  223. color: #545E65;
  224. }
  225. .cause:hover {
  226. transition: .5s;
  227. color: var(--pry-color);
  228. }
  229. .fx-symptoms {
  230. display: flex;
  231. align-items: flex-start;
  232. justify-content: space-between;
  233. /* flex-wrap: wrap; */
  234. gap:10px;
  235. }
  236. .fx-symptoms p {
  237. font-size: 15px;
  238. text-align: center;
  239. }
  240. .d-center {
  241. display: grid;
  242. place-items: center;
  243. }
  244. .guide-img {
  245. width: 40px;
  246. height: 40px;
  247. object-fit: contain;
  248. }
  249. .tt-container {
  250. display: flex;
  251. justify-content: space-between;
  252. }
  253. .tt-container > div {
  254. width: 100%;
  255. }
  256. .tt-container > div:nth-child(1) {
  257. background-color: #0276CF;
  258. color: #fff;
  259. }
  260. .tt-container > div:nth-child(2) {
  261. background-color: #5C6D7A;
  262. color: #fff;
  263. }
  264. .tt-container > div:nth-child(3) {
  265. background-color: #778FA1;
  266. color: #fff;
  267. }
  268. .tt-container > div:nth-child(4) {
  269. background-color: #F7F7F7;
  270. }
  271. .accordion-header button {
  272. font-size: 20px;
  273. font-weight: 300;
  274. }
  275. .accordion-item {
  276. border:0;
  277. border-bottom: 1px solid #ddd;
  278. }
  279. .accordion-button:focus{
  280. box-shadow: none !important;
  281. }
  282. .accordion-button:not(.collapsed){
  283. background-color: #ffffff;
  284. border-bottom: 1px solid #ddd;
  285. }
  286. .border-lg-start {
  287. border-left: 1px solid #ccc;
  288. }
  289. @media screen and (max-width:1399px) {
  290. .nav-item {
  291. margin-left: 1rem;
  292. }
  293. .fp-container {
  294. padding: 40px;
  295. top:-25rem;
  296. margin-bottom: -26.5rem;
  297. position: relative;
  298. }
  299. .fp-container img {
  300. height: 30px;
  301. width: 30px;
  302. }
  303. .fp-container h5 {
  304. font-size: 25px;
  305. }
  306. .title {
  307. font-size: 45px;
  308. }
  309. .subtitle {
  310. font-size: 35px;
  311. }
  312. .tt-container {
  313. flex-wrap: wrap;
  314. }
  315. .tt-container > div{
  316. width: 50%;
  317. }
  318. }
  319. @media screen and (max-width:1199px) {
  320. .fp-container {
  321. top:0;
  322. margin-bottom: 0;
  323. padding: 30px 40px;
  324. }
  325. .nav-item {
  326. margin-left: .5rem;
  327. }
  328. .nav-link {
  329. font-size: 15px;
  330. }
  331. .navbar-brand {
  332. margin: 0;
  333. }
  334. .navbar-brand img {
  335. max-width: 200px;
  336. }
  337. .top-blue a {
  338. font-size: 14px;
  339. padding-bottom: 0;
  340. }
  341. .ft-spacing {
  342. padding-left: 50px;
  343. margin-left: 50px;
  344. }
  345. .box-1, .box-2, .box-3, .box-4 {
  346. padding: 30px 40px;
  347. }
  348. .header{
  349. font-size: 25px;
  350. }
  351. }
  352. @media screen and (max-width:991px) {
  353. #navBar {
  354. position: absolute;
  355. background-color: #ffffff;
  356. width: 100%;
  357. left: 0;
  358. margin-top: 17px;
  359. }
  360. .dropdown-menu {
  361. margin-top: 0 !important;
  362. margin-bottom: 10px;
  363. }
  364. .navbar-toggler {
  365. padding: 10px;
  366. border: 1px solid #aaa;
  367. margin-left: 10px;
  368. }
  369. .navbar-toggler:focus {
  370. box-shadow: none !important;
  371. }
  372. .navbar-brand img {
  373. max-width: 250px;
  374. }
  375. }
  376. @media screen and (max-width:767px) {
  377. .ft-spacing {
  378. padding-left: 30px;
  379. margin-left: 30px;
  380. }
  381. .fx-symptoms {
  382. flex-wrap: wrap;
  383. }
  384. .fx-symptoms > div {
  385. width: 30%;
  386. }
  387. .tt-container > div{
  388. width: 100%;
  389. }
  390. }
  391. @media screen and (max-width:500px) {
  392. .navbar-brand img {
  393. max-width: 180px;
  394. }
  395. .top .title {
  396. text-align: center;
  397. }
  398. .title {
  399. font-size: 40px;
  400. }
  401. .subtitle {
  402. font-size: 32px;
  403. }
  404. .header {
  405. font-size: 27px;
  406. }
  407. .ft-spacing {
  408. padding-left: 20px;
  409. margin-left:10px;
  410. }
  411. }