123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544 |
- html {
- scroll-behavior: smooth;
- height: 100%;
- }
- body {
- background: #FFF;
- min-height: 100%;
- }
- * {
- margin: 0;
- padding: 0;
- }
- body {
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- width: 100%;
- }
- footer {
- margin-top: auto;
- }
- a:hover {
- text-decoration: none;
- }
- :root {
- --pry-color: #154159;
- --pry-dark-color: #1428AC;
- --sec-color: #fff5cc;
- }
- ::-moz-selection { background: var(--pry-color); color: #fff; }
- ::selection { background: var(--pry-color); color: #fff; }
- nav.navbar {
- position: relative;
- width: 100%;
- /* background-color: #fff; */
- padding: 0;
- }
- .logo, .small {
- width: 250px;
- transition: 0.3s;
- }
- .small {
- transition: 0.3s;
- }
- nav .container {
- height: 90px;
- }
- .navbar-nav {
- margin-left: 240px;
- margin-bottom: 0;
- }
- .navbar-nav li{
- display: inline;
- padding: 0 5px;
- font-size: 15px;
- }
- .navbar-nav li a {
- color: #000000;
- font-weight: 500;
- }
- .navbar-nav li a:hover {
- color: var(--pry-color);
- }
- .nav-item a {
- color: var(--pry-dark-color);
- }
- .nav-item a:hover {
- color: var(--pry-color);
- }
- .nav-links {
- font-size: 13px;
- }
- .nav-links a {
- color: var(--pry-color);
- }
- .top h4 {
- font-size: 45px;
- font-weight: 700;
- }
- .top p {
- font-size: 16px;
- margin-top: 20px;
- }
- .call, .call-light {
- padding: 10px 20px;
- border: 1px solid var(--pry-color);
- width: fit-content;
- }
- .call-light {
- border-color:#fff;
- }
- .call a, .call-light a{
- font-size: 30px;
- color: var(--pry-color);
- font-weight: 700;
- }
- .call-light a {
- color: #fff;
- }
- .call:hover {
- border-color: var(--pry-color);
- }
- .announcement {
- display: flex;
- margin-top: 50px;
- }
- .special {
- text-transform: uppercase;
- background-color: #154159;
- flex-basis: 40%;
- }
- .special img {
- width: 100%;
- height: 220px;
- }
- .special h4{
- font-size: 18px;
- color: #fff;
- font-weight: 400;
- text-align: center;
- margin: 20px 0;
- }
- .special-content {
- flex-basis: 60%;
- padding: 0 10px;
- background-color:var(--sec-color);
- }
- .about {
- padding: 80px 0;
- }
- .about img, .hope img {
- width: 100%;
- }
- p {
- font-size: 20px;
- }
- .btn-pry, .blue-card, .btn-pry-light {
- background-color: var(--pry-color);
- color: #fff;
- border-radius: 0;
- font-size: 18px;
- font-weight: 500;
- }
- .btn-pry-light {
- color: var(--pry-color);
- border: 1px solid var(--pry-color);
- background: #fff;
- }
- .btn-pry:hover, .blue-card:hover {
- background-color: var(--pry-color);
- color: #fff;
- }
- .btn-pry-light {
- border: 1px solid #fff;
- }
- .white-card {
- border-left:3px solid var(--pry-color);
- padding: 20px;
- background-color: #ffffff;
- }
- .white-card p {
- margin-bottom: 13px;
- }
- .green-card {
- border-left:6px solid var(--sec-color);
- border-right:3px solid var(--pry-color);
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- width: 100%;
- background-color: #F1F2F2;
- transition: 0.3s;
- color: var(--pry-color);
- }
- .green-card:hover {
- background-color: var(--sec-color);
- transition: 0.3s;
- }
- .outreach-container {
- display: flex;
- flex-wrap: wrap;
- margin-top: 20px;
- }
- .outreach-container div {
- margin-right: 20px;
- margin-bottom: 20px;
- width: 250px;
- padding: 10px;
- cursor: pointer;
- }
- .outreach-container p {
- font-size: 17px;
- font-weight: 700;
- letter-spacing: 1.1px;
- }
- .outreach-container img {
- width: 50px;
- margin-right: 10px;
- }
- .flex-container {
- display: flex;
- align-items: center;
- }
- .flex-container div {
- flex-basis: 60%;
- }
- .flex-container .size-4 {
- flex-basis: 35%;
- margin-right: 12px;
- }
- .bg-grey{
- background-color: #F1F2F2;
- }
- .steps {
- background-color: var(--sec-color);
- border-bottom: 2px solid var(--pry-color);
- position: relative;
- }
- .title {
- font-weight: 500;
- font-size: 30px;
- }
- .popper {
- cursor: pointer;
- }
- .popover {
- padding: 12px;
- }
- .popover h6 {
- font-size: 18px;
- }
- /* .steps-container {
- display: none;
- } */
- .steps-content {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- }
- .steps-content .content {
- flex-basis: 45%;
- background-color: #ffffff;
- border-left:2px solid var(--pry-color);
- padding: 20px;
- margin-right: 20px;
- margin-bottom: 20px;
- font-size: 18px;
- }
- .plus {
- width: 100%;
- text-align: center;
- position: absolute;
- bottom:-20px;
- left:0;
- }
- .list {
- list-style:none;
- }
- .plus a::before{
- font-family: "Font Awesome 5 Free";
- font-weight: 900;
- content: "\f055";
- font-size: 25px;
- color:var(--pry-dark-color);
- border-radius: 100%;
- }
- .minus a::before{
- font-family: "Font Awesome 5 Free";
- font-weight: 900;
- content: "\f056";
- font-size: 25px;
- color:var(--pry-dark-color);
- border-radius: 100%;
- }
- .lifeline {
- margin-top: 10px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .lifeline p{
- width: 50%;
- margin-bottom: 10px;
- font-weight: 700;
- }
- .lifeline img{
- width: 25%;
- }
- .role-container {
- display: flex;
- }
- .role-container .content {
- width: 50%;
- background-color: #ffffff;
- padding: 15px;
- border: 2px solid #fff;
- margin-right: 10px;
- }
- .role-container .content p {
- margin-bottom: 12px;
- font-size: 18px;
- }
- .role-container .content h5 {
- letter-spacing: 1.1px;
- font-size: 17px;
- font-weight: bold;
- color: var(--pry-color);
- }
- .role-container .content:hover {
- border: 2px solid var(--pry-color);
- cursor: pointer;
- }
- .contact {
- display: flex;
- justify-content: space-between;
- }
- .contact > div {
- width: 48%;
- padding: 20px;
- }
- .contact .phone {
- background-color: var(--pry-color);
- display: flex;
- flex-direction: column;
- align-items: center;
- color: #fff;
- }
- .links ul li{
- display: inline;
- margin-right: 20px;
- font-size: 20px;
- text-transform: uppercase;
- font-weight: 500;
- }
- .social {
- display: flex;
- margin-top: 30px;
- }
- .social a {
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 40px;
- font-size: 25px;
- border: 1.5px solid var(--pry-color);
- color: var(--pry-color);
- margin-right: 10px;
- }
- .social a:hover {
- background-color: var(--pry-color);
- color: #fff;
- }
- .partners {
- text-align: right;
- }
- .partners p, .partners p a{
- font-size: 15px;
- font-weight: 500;
- margin-bottom: 12px;
- color: var(--pry-color);
- }
- .partners p a:hover {
- color: var(--pry-dark-color);
- }
- .footer {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- }
- .footer .links a {
- color: var(--pry-color);
- }
- .footer .images img{
- filter: grayscale(100%);
- opacity: 0.6;
- margin-left: 10px;
- }
- .footer .images img:hover{
- filter: grayscale(0%);
- opacity: 1;
- }
- footer small {
- font-size: 11px;
- }
- .content-flex {
- display: flex;
- margin-top: 70px;
- }
- .content-flex .sidebar {
- flex-basis: 25%;
- border-right: 1px solid #ddd;
- }
- .content-flex .content {
- flex-basis: 75%;
- }
- .img-overlay {
- background:rgb(21, 65, 89);
- }
- .img-overlay img{
- width: 100%;
- opacity: 0.6;
- }
- .mobile {
- display: none;
- }
- @media screen and (max-width:991px) {
- .announcement {
- display: block;
- }
- .special h4 {
- padding: 10px 0;
- margin-bottom: 0;
- }
- .special img {
- display: none;
- }
- .special-content {
- padding: 10px;
- }
- .special-content p {
- margin: 0;
- }
- .title {
- font-size: 25px;
- }
- .outreach-container div, .blue-card {
- max-width: 100%;
- width:100%;
- margin-right: 0;
- }
- .flex-container .size-4 {
- flex-basis: 40%;
- }
- .contact {
- display: block;
- }
- .contact > div {
- width: 100%;
- margin-bottom: 20px;
- }
- .footer, .social{
- justify-content: center;
- text-align: center;
- }
- .partners {
- margin-top: 20px;
- text-align: center;
- }
- .role-container {
- flex-wrap: wrap;
- }
- .role-container .content {
- width: 100%;
- margin-bottom: 20px;
- }
- .lifeline p {
- width: 40%;
- }
- .btn-pry, .blue-card, .btn-pry-light {
- font-size: 16px;
- }
- #navBar {
- position: absolute;
- width: 100%;
- background-color: #ffffff;
- top: 70px;
- right: 0;
- padding: 10px;
- border-top: 1px solid #ddd;
- }
- .navbar-nav {
- margin-left: 0;
- }
- .nav-item {
- border-bottom: 1px solid #ddd;
- }
- .nav-links > div{
- text-align: left !important;
- margin-top: 10px;
- }
- .logo {
- width: 220px;
- }
- .navbar-toggler {
- color: var(--pry-color);
- border:1px solid var(--pry-color);
- background-color: #fff;
- padding: 12px;
- margin-bottom: 0;
- margin-right: 12px;
- }
- .navbar-toggler:hover {
- background-color: var(--pry-color);
- color: #fff;
- }
- nav {
- padding: 0 10px;
- }
- }
- @media screen and (max-width:767px) {
- .web {
- display: none;
- }
- .mobile {
- display: block;
- }
- .flex-container, .content-flex {
- display: block;
- }
- .img-overlay, .sidebar h4 {
- display: none;
- }
- .content-flex .sidebar {
- padding-top: 20px;
- border:none;
- }
- .content-flex .content {
- padding-left: 0 !important;
- padding-right: 0 !important;
- }
- .flex-container .size-4 {
- margin-bottom: 20px;
- }
- .steps-container .content {
- flex-basis: 100%;
- margin-right: 0;
- }
- .lifeline {
- display: block;
- text-align: center;
- }
- .lifeline p {
- width: 100%;
- }
- }
- .line-height-110 {
- line-height: 110%;
- }
|