layout.css 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  1. html {
  2. scroll-behavior: smooth;
  3. height: 100%;
  4. }
  5. body {
  6. background: #FFF;
  7. min-height: 100%;
  8. }
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. body {
  14. display: flex;
  15. flex-direction: column;
  16. min-height: 100vh;
  17. width: 100%;
  18. }
  19. footer {
  20. margin-top: auto;
  21. }
  22. a:hover {
  23. text-decoration: none;
  24. }
  25. :root {
  26. --pry-color: #154159;
  27. --pry-dark-color: #1428AC;
  28. --sec-color: #fff5cc;
  29. }
  30. ::-moz-selection { background: var(--pry-color); color: #fff; }
  31. ::selection { background: var(--pry-color); color: #fff; }
  32. nav.navbar {
  33. position: relative;
  34. width: 100%;
  35. background-color: #fff;
  36. z-index: 100;
  37. padding: 0;
  38. }
  39. .logo, .small {
  40. width: 250px;
  41. transition: 0.3s;
  42. }
  43. .small {
  44. transition: 0.3s;
  45. }
  46. nav .container {
  47. height: 90px;
  48. }
  49. .navbar-nav {
  50. margin-left: 240px;
  51. margin-bottom: 0;
  52. }
  53. .navbar-nav li{
  54. display: inline;
  55. padding: 0 5px;
  56. font-size: 15px;
  57. }
  58. .navbar-nav li a {
  59. color: #000000;
  60. font-weight: 500;
  61. }
  62. .navbar-nav li a:hover {
  63. color: var(--pry-color);
  64. }
  65. .nav-item a {
  66. color: var(--pry-dark-color);
  67. }
  68. .nav-item a:hover {
  69. color: var(--pry-color);
  70. }
  71. .nav-links {
  72. font-size: 13px;
  73. }
  74. .nav-links a {
  75. color: var(--pry-color);
  76. }
  77. .top h4 {
  78. font-size: 45px;
  79. font-weight: 700;
  80. }
  81. .top p {
  82. font-size: 16px;
  83. margin-top: 20px;
  84. }
  85. .call, .call-light {
  86. padding: 10px 20px;
  87. border: 1px solid var(--pry-color);
  88. width: fit-content;
  89. }
  90. .call-light {
  91. border-color:#fff;
  92. }
  93. .call a, .call-light a{
  94. font-size: 30px;
  95. color: var(--pry-color);
  96. font-weight: 700;
  97. }
  98. .call-light a {
  99. color: #fff;
  100. }
  101. .call:hover {
  102. border-color: var(--pry-color);
  103. }
  104. .announcement {
  105. display: flex;
  106. margin-top: 50px;
  107. }
  108. .special {
  109. text-transform: uppercase;
  110. background-color: #154159;
  111. flex-basis: 40%;
  112. }
  113. .special img {
  114. width: 100%;
  115. height: 220px;
  116. }
  117. .special h4{
  118. font-size: 18px;
  119. color: #fff;
  120. font-weight: 400;
  121. text-align: center;
  122. margin: 20px 0;
  123. }
  124. .special-content {
  125. flex-basis: 60%;
  126. padding: 0 10px;
  127. background-color:var(--sec-color);
  128. }
  129. .about {
  130. padding: 80px 0;
  131. }
  132. .about img, .hope img {
  133. width: 100%;
  134. }
  135. p {
  136. font-size: 20px;
  137. }
  138. .btn-pry, .blue-card, .btn-pry-light {
  139. background-color: var(--pry-color);
  140. color: #fff;
  141. border-radius: 0;
  142. font-size: 18px;
  143. font-weight: 500;
  144. }
  145. .btn-pry-light {
  146. color: var(--pry-color);
  147. border: 1px solid var(--pry-color);
  148. background: #fff;
  149. }
  150. .btn-pry:hover, .blue-card:hover {
  151. background-color: var(--pry-color);
  152. color: #fff;
  153. }
  154. .btn-pry-light {
  155. border: 1px solid #fff;
  156. }
  157. .white-card {
  158. border-left:3px solid var(--pry-color);
  159. padding: 20px;
  160. background-color: #ffffff;
  161. }
  162. .white-card p {
  163. margin-bottom: 13px;
  164. }
  165. .green-card {
  166. border-left:6px solid var(--sec-color);
  167. border-right:3px solid var(--pry-color);
  168. display: flex;
  169. align-items: center;
  170. flex-wrap: wrap;
  171. width: 100%;
  172. background-color: #F1F2F2;
  173. transition: 0.3s;
  174. color: var(--pry-color);
  175. }
  176. .green-card:hover {
  177. background-color: var(--sec-color);
  178. transition: 0.3s;
  179. }
  180. .outreach-container {
  181. display: flex;
  182. flex-wrap: wrap;
  183. margin-top: 20px;
  184. }
  185. .outreach-container div {
  186. margin-right: 20px;
  187. margin-bottom: 20px;
  188. width: 250px;
  189. padding: 10px;
  190. cursor: pointer;
  191. }
  192. .outreach-container p {
  193. font-size: 17px;
  194. font-weight: 700;
  195. letter-spacing: 1.1px;
  196. }
  197. .outreach-container img {
  198. width: 50px;
  199. margin-right: 10px;
  200. }
  201. .flex-container {
  202. display: flex;
  203. align-items: center;
  204. }
  205. .flex-container div {
  206. flex-basis: 60%;
  207. }
  208. .flex-container .size-4 {
  209. flex-basis: 35%;
  210. margin-right: 12px;
  211. }
  212. .bg-grey{
  213. background-color: #F1F2F2;
  214. }
  215. .steps {
  216. background-color: var(--sec-color);
  217. border-bottom: 2px solid var(--pry-color);
  218. position: relative;
  219. }
  220. .title {
  221. font-weight: 500;
  222. font-size: 30px;
  223. }
  224. .popper {
  225. cursor: pointer;
  226. }
  227. .popover {
  228. padding: 12px;
  229. }
  230. .popover h6 {
  231. font-size: 18px;
  232. }
  233. /* .steps-container {
  234. display: none;
  235. } */
  236. .steps-content {
  237. display: flex;
  238. flex-wrap: wrap;
  239. justify-content: center;
  240. }
  241. .steps-content .content {
  242. flex-basis: 45%;
  243. background-color: #ffffff;
  244. border-left:2px solid var(--pry-color);
  245. padding: 20px;
  246. margin-right: 20px;
  247. margin-bottom: 20px;
  248. font-size: 18px;
  249. }
  250. .plus {
  251. width: 100%;
  252. text-align: center;
  253. position: absolute;
  254. bottom:-20px;
  255. left:0;
  256. }
  257. .list {
  258. list-style:none;
  259. padding: 0;
  260. margin-left: 0 !important;
  261. }
  262. .list li::before{
  263. font-family: "Font Awesome 5 Free";
  264. font-weight: 900;
  265. content: "\f105";
  266. font-size: 18px;
  267. margin-left: 10px;
  268. padding-right: 10px !important;
  269. color:var(--pry-color);
  270. border-radius: 100%;
  271. }
  272. .plus a::before{
  273. font-family: "Font Awesome 5 Free";
  274. font-weight: 900;
  275. content: "\f055";
  276. font-size: 25px;
  277. color:var(--pry-dark-color);
  278. border-radius: 100%;
  279. }
  280. .minus a::before{
  281. font-family: "Font Awesome 5 Free";
  282. font-weight: 900;
  283. content: "\f056";
  284. font-size: 25px;
  285. color:var(--pry-dark-color);
  286. border-radius: 100%;
  287. }
  288. .lifeline {
  289. margin-top: 10px;
  290. display: flex;
  291. align-items: center;
  292. justify-content: center;
  293. }
  294. .lifeline p{
  295. width: 50%;
  296. margin-bottom: 10px;
  297. font-weight: 700;
  298. }
  299. .lifeline img{
  300. width: 25%;
  301. }
  302. .role-container {
  303. display: flex;
  304. }
  305. .role-container .content {
  306. width: 50%;
  307. background-color: #ffffff;
  308. padding: 15px;
  309. border: 2px solid #fff;
  310. margin-right: 10px;
  311. }
  312. .role-container .content p {
  313. margin-bottom: 12px;
  314. font-size: 18px;
  315. }
  316. .role-container .content h5 {
  317. letter-spacing: 1.1px;
  318. font-size: 17px;
  319. font-weight: bold;
  320. color: var(--pry-color);
  321. }
  322. .role-container .content:hover {
  323. border: 2px solid var(--pry-color);
  324. cursor: pointer;
  325. }
  326. .contact {
  327. display: flex;
  328. justify-content: space-between;
  329. }
  330. .contact > div {
  331. width: 48%;
  332. padding: 20px;
  333. }
  334. .contact .phone {
  335. background-color: var(--pry-color);
  336. display: flex;
  337. flex-direction: column;
  338. align-items: center;
  339. color: #fff;
  340. }
  341. .links ul li{
  342. display: inline;
  343. margin-right: 20px;
  344. font-size: 20px;
  345. text-transform: uppercase;
  346. font-weight: 500;
  347. }
  348. .social {
  349. display: flex;
  350. margin-top: 30px;
  351. }
  352. .social a {
  353. height: 40px;
  354. display: flex;
  355. align-items: center;
  356. justify-content: center;
  357. width: 40px;
  358. font-size: 25px;
  359. border: 1.5px solid var(--pry-color);
  360. color: var(--pry-color);
  361. margin-right: 10px;
  362. }
  363. .social a:hover {
  364. background-color: var(--pry-color);
  365. color: #fff;
  366. }
  367. .partners {
  368. text-align: right;
  369. }
  370. .partners p, .partners p a{
  371. font-size: 15px;
  372. font-weight: 500;
  373. margin-bottom: 12px;
  374. color: var(--pry-color);
  375. }
  376. .partners p a:hover {
  377. color: var(--pry-dark-color);
  378. }
  379. .footer {
  380. display: flex;
  381. justify-content: space-between;
  382. flex-wrap: wrap;
  383. }
  384. .footer .links a {
  385. color: var(--pry-color);
  386. }
  387. .footer .images img{
  388. filter: grayscale(100%);
  389. opacity: 0.6;
  390. margin-left: 10px;
  391. }
  392. .footer .images img:hover{
  393. filter: grayscale(0%);
  394. opacity: 1;
  395. }
  396. footer small {
  397. font-size: 12px;
  398. }
  399. .content-flex {
  400. display: flex;
  401. margin-top: 70px;
  402. }
  403. .content-flex .sidebar {
  404. flex-basis: 25%;
  405. border-right: 1px solid #ddd;
  406. }
  407. .content-flex .content {
  408. flex-basis: 75%;
  409. }
  410. .img-overlay {
  411. background:rgb(21, 65, 89);
  412. }
  413. .img-overlay img{
  414. width: 100%;
  415. opacity: 0.6;
  416. }
  417. .mobile {
  418. display: none;
  419. }
  420. @media screen and (max-width:991px) {
  421. .announcement {
  422. display: block;
  423. }
  424. .special h4 {
  425. padding: 10px 0;
  426. margin-bottom: 0;
  427. }
  428. .special img {
  429. display: none;
  430. }
  431. .special-content {
  432. padding: 10px;
  433. }
  434. .special-content p {
  435. margin: 0;
  436. }
  437. .title {
  438. font-size: 25px;
  439. }
  440. .outreach-container div, .blue-card {
  441. max-width: 100%;
  442. width:100%;
  443. margin-right: 0;
  444. }
  445. .flex-container .size-4 {
  446. flex-basis: 40%;
  447. }
  448. .contact {
  449. display: block;
  450. }
  451. .contact > div {
  452. width: 100%;
  453. margin-bottom: 20px;
  454. }
  455. .footer, .social{
  456. justify-content: center;
  457. text-align: center;
  458. }
  459. .partners {
  460. margin-top: 20px;
  461. text-align: center;
  462. }
  463. .role-container {
  464. flex-wrap: wrap;
  465. }
  466. .role-container .content {
  467. width: 100%;
  468. margin-bottom: 20px;
  469. }
  470. .lifeline p {
  471. width: 40%;
  472. }
  473. .btn-pry, .blue-card, .btn-pry-light {
  474. font-size: 16px;
  475. }
  476. #navBar {
  477. position: absolute;
  478. width: 100%;
  479. background-color: #ffffff;
  480. top: 70px;
  481. right: 0;
  482. padding: 10px;
  483. border-top: 1px solid #ddd;
  484. }
  485. .navbar-nav {
  486. margin-left: 0;
  487. }
  488. .nav-item {
  489. border-bottom: 1px solid #ddd;
  490. }
  491. .nav-links > div{
  492. text-align: left !important;
  493. margin-top: 10px;
  494. }
  495. .logo {
  496. width: 220px;
  497. }
  498. .navbar-toggler {
  499. color: var(--pry-color);
  500. border:1px solid var(--pry-color);
  501. background-color: #fff;
  502. padding: 12px;
  503. margin-bottom: 0;
  504. margin-right: 12px;
  505. }
  506. .navbar-toggler:hover {
  507. background-color: var(--pry-color);
  508. color: #fff;
  509. }
  510. nav {
  511. padding: 0 10px;
  512. }
  513. }
  514. @media screen and (max-width:767px) {
  515. .web {
  516. display: none;
  517. }
  518. .mobile {
  519. display: block;
  520. }
  521. .flex-container, .content-flex {
  522. display: block;
  523. }
  524. .img-overlay, .sidebar h4 {
  525. display: none;
  526. }
  527. .content-flex .sidebar {
  528. padding-top: 20px;
  529. border:none;
  530. }
  531. .content-flex .content {
  532. padding-left: 0 !important;
  533. padding-right: 0 !important;
  534. }
  535. .flex-container .size-4 {
  536. margin-bottom: 20px;
  537. }
  538. .steps-container .content {
  539. flex-basis: 100%;
  540. margin-right: 0;
  541. }
  542. .lifeline {
  543. display: block;
  544. text-align: center;
  545. }
  546. .lifeline p {
  547. width: 100%;
  548. }
  549. }
  550. .line-height-110 {
  551. line-height: 110%;
  552. }