            /* Googlefont Poppins CDN Link */
            @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');

            * {
              margin: 0;
              padding: 0;
              box-sizing: border-box;
              font-family: 'Montserrat', sans-serif;
            }

            /* width 
::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  ::-webkit-scrollbar-thumb {
    background: #3458eb; 
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #2849ca; 
  }
  */

            body {
              min-height: 100vh;
              overflow-x: hidden;

              text-align: center;
            }

            ::selection {
              background: #ff3c00;
              color: #fff;
            }

            nav {
              border-radius: 12px;
              margin: 0px 0px 0px 0px;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              height: 70px;
              background: #00b7ff;
              box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
              z-index: 99;
            }

            nav .navbar {
              height: 100%;
              max-width: 1250px;
              width: 100%;
              display: flex;
              align-items: center;
              justify-content: space-between;
              margin: auto;
              /* background: red; */
              padding: 0 50px;
            }

            .links .li:hover {
              color: #00b7ff;
              background: rgb(255, 255, 255);
            }

            .navbar .logo a {
              font-size: 34px;
              color: #fff;
              text-decoration: none;
              font-weight: 600;
            }

            nav .navbar .nav-links {
              line-height: 70px;
              height: 100%;
            }

            nav .navbar .links {
              display: flex;
            }

            nav .navbar .links li {
              position: relative;
              display: flex;
              align-items: center;
              justify-content: space-between;
              list-style: none;
              padding: 0 14px;
            }

            nav .navbar .links li a {
              height: 100%;
              text-decoration: none;
              white-space: nowrap;
              color: #fff;
              font-size: 20px;
              font-weight: 500;
            }

            .links li:hover .htmlcss-arrow,
            .links li:hover .js-arrow {
              transform: rotate(180deg);
            }

            nav .navbar .links li .arrow {
              /* background: red; */
              height: 100%;
              width: 22px;
              line-height: 70px;
              text-align: center;
              display: inline-block;
              color: #fff;
              transition: all 0.3s ease;
            }

            nav .navbar .links li .sub-menu {
              position: absolute;
              top: 70px;
              left: 0;
              line-height: 40px;
              background: #00b7ff;
              box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
              border-radius: 0 0 4px 4px;
              display: none;
              z-index: 2;
            }

            nav .navbar .links li:hover .htmlCss-sub-menu,
            nav .navbar .links li:hover .js-sub-menu {
              display: block;
            }

            .navbar .links li .sub-menu li {
              padding: 0 22px;
              border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .navbar .links li .sub-menu a {
              color: #fff;
              font-size: 25px;
              font-weight: 500;
            }

            .navbar .links li .sub-menu .more-arrow {
              line-height: 40px;
            }

            .navbar .links li .sub-menu .more-sub-menu {
              position: absolute;
              top: 0;
              left: 100%;
              border-radius: 0 4px 4px 4px;
              z-index: 1;
              display: none;
            }

            .links li .sub-menu .more:hover .more-sub-menu {
              display: block;
            }

            .navbar .search-box {
              position: relative;
              height: 40px;
              width: 40px;
            }

            .navbar .search-box i {
              position: absolute;
              height: 100%;
              width: 100%;
              line-height: 40px;
              text-align: center;
              font-size: 22px;
              color: #fff;
              font-weight: 600;
              cursor: pointer;
              transition: all 0.3s ease;
            }

            .navbar .search-box .input-box {
              position: absolute;
              right: calc(100% - 40px);
              top: 80px;
              height: 60px;
              width: 300px;
              background: #00b7ff;
              border-radius: 6px;
              opacity: 0;
              pointer-events: none;
              transition: all 0.4s ease;
            }

            .navbar .nav-links .sidebar-logo {
              display: none;
            }

            .navbar .bx-menu {
              display: none;
            }

            @media (max-width:920px) {
              nav .navbar {
                max-width: 100%;
                padding: 0 25px;
              }

              nav .navbar .logo a {
                font-size: 27px;
              }

              nav .navbar .links li {
                padding: 0 10px;
                white-space: nowrap;
              }

              nav .navbar .links li a {
                font-size: 15px;
              }
            }

            @media (max-width:800px) {
              .navbar .bx-menu {
                display: block;
              }

              nav .navbar .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                display: block;
                max-width: 270px;
                width: 100%;
                background: #00b7ff;
                line-height: 40px;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
                transition: all 0.5s ease;
                z-index: 1000;
              }

              .navbar .nav-links .sidebar-logo {
                display: flex;
                align-items: center;
                justify-content: space-between;
              }

              .sidebar-logo .logo-name {
                font-size: 25px;
                color: #fff;
              }

              .sidebar-logo i,
              .navbar .bx-menu {
                font-size: 25px;
                color: white;
              }

              nav .navbar .links {
                display: block;
                margin-top: 20px;
              }

              nav .navbar .links li .arrow {
                line-height: 40px;
              }

              nav .navbar .links li {
                display: block;
              }

              nav .navbar .links li .sub-menu {
                position: relative;
                top: 0;
                box-shadow: none;
                display: none;
              }

              nav .navbar .links li .sub-menu li {
                border-bottom: none;

              }

              .navbar .links li .sub-menu .more-sub-menu {
                display: none;
                position: relative;
                left: 0;
              }

              .navbar .links li .sub-menu .more-sub-menu li {
                display: flex;
                align-items: center;
                justify-content: space-between;
              }

              .links li:hover .htmlcss-arrow,
              .links li:hover .js-arrow {
                transform: rotate(0deg);
              }

              .navbar .links li .sub-menu .more-sub-menu {
                display: none;
              }

              .navbar .links li .sub-menu .more span {
                /* background: red; */
                display: flex;
                align-items: center;
                /* justify-content: space-between; */
              }

              .links li .sub-menu .more:hover .more-sub-menu {
                display: none;
              }

              nav .navbar .links li:hover .htmlCss-sub-menu,
              nav .navbar .links li:hover .js-sub-menu {
                display: none;
              }

              .navbar .nav-links.show1 .links .htmlCss-sub-menu,
              .navbar .nav-links.show3 .links .js-sub-menu,
              .navbar .nav-links.show2 .links .more .more-sub-menu {
                display: block;
              }

              .navbar .nav-links.show1 .links .htmlcss-arrow,
              .navbar .nav-links.show3 .links .js-arrow {
                transform: rotate(180deg);
              }

              .navbar .nav-links.show2 .links .more-arrow {
                transform: rotate(90deg);
              }
            }

            @media (max-width:370px) {
              nav .navbar .nav-links {
                max-width: 100%;
              }
            }

            .content div {
              font-size: 40px;
              font-weight: 700;
            }

            #myBtn {
              display: none;
              position: fixed;
              bottom: 30px;
              right: 30px;
              z-index: 99;
              font-size: 18px;
              border: none;
              outline: none;
              background-color: #00b7ff;
              color: white;
              cursor: pointer;
              padding: 15px;
              border-radius: 200%;
            }

            #myBtn:hover {
              background-color: #ff3c00;
            }

            /**/

            body {
              background-color: #f2f2f2;
              height: 100%;
            }

            h1 {
              font-size: 2em;
              ;
              color: #00b7ff;
              text-transform: uppercase;
              text-align: center;
            }

            h2 {
              text-align: center;
            }

            .textabout {
              text-align: center;
              margin-left: 50px;
              margin-right: 50px;
            }

            span {
              border-right: .05em solid;
              animation: caret 1s steps(1) infinite;
            }

            @keyframes caret {
              50% {
                border-color: transparent;
              }
            }

            @media (max-width: 600px) {
              .p {
                margin-left: 10px;
                margin-right: 10px;
              }
            }

            * {
              box-sizing: border-box;
            }

            /* Add a gray background color with some padding */
            body {
              padding: 20px;
              background: #f1f1f1;
            }

            .header {
              font-size: 28px;
              color: #3458eb;
              font-weight: 600;
              text-align: center;
            }

            /* Add a card effect for articles */
            .card {
              margin-bottom: 10px !important;
              margin: auto;
              width: 30% !important;
              border-radius: 12px;
              background-color: white;
              padding: 20px;
              padding-top: 0.5px;
            }

            .blogtitle {
              padding-top: 12px;
              text-align: left;
            }

            .blogtext {
              padding-top: 12px;
              text-align: left;
            }

            @media (max-width: 800px) {
              .card {
                width: 70%;
              }
            }

            .blogimage {
              border-radius: 12px;
              width: 100%;
              height: 100%;
            }

            body {
              width: 100vw;
              height: 100vh;
              margin: 0;
            }

            .curved-div {
              position: relative;
              background: #ff3c00;
              color: #f2f2f2;
              text-align: center;
              overflow: hidden;
            }

            .curved-div svg {
              display: block;
            }

            .curved-div.upper {
              background: #f2f2f2;
            }

            .curved-div h1 {
              font-size: 6rem;
              margin-top: 0rem;
            }

            .curved-div p {
              font-size: 1rem;
              margin: 0 5rem 0rem 5rem;
            }

            /* Add a card effect for articles */
            .cards {
              border-radius: 12px !important;
              background-color: white !important;
              width: 100% !important;
              height: 145px !important;
              padding: 20px !important;
              padding-top: 0.5px !important;
              margin-bottom: 10px !important;
            }

            /* Clear floats after the columns */
            .row:after {
              content: "" !important;
              display: table !important;
              clear: both !important;
            }

            .leftcolumn {
              float: left !important;
              width: 49% !important;
            }

            /* Right column */
            .rightcolumn {
              float: left !important;
              width: 51% !important;
              padding-left: 20px !important;
            }

            .button {
              display: inline-block !important;
              margin-top: 12px !important;
            }

            .button input[type="button"] {
              color: #fff !important;
              font-size: 18px !important;
              outline: none !important;
              border: none !important;
              padding: 8px 16px !important;
              border-radius: 6px !important;
              background: #00b7ff !important;
              cursor: pointer !important;
              transition: all 0.3s ease !important;
            }

            .button input[type="button"]:hover {
              background: #00b7ff !important;
            }

            @media screen and (max-width: 800px) {

              .leftcolumn,
              .rightcolumn {
                width: 100% !important;
                padding: 0 !important;
              }

              .cards {
                height: 145px !important;
              }
            }


            .header {
              font-size: 28px;
              color: #00b7ff;
              font-weight: 600;
              text-align: center;
            }


            * {
              margin: 0px;
              padding: 0px;
              box-sizing: border-box;
            }

            ::selection {
              background: #ff3c00;
              color: #fff;
            }

            html,
            body {
              display: grid;
              height: 100%;
              place-items: center;
              background: #f2f2f2;
            }

            .container {
              max-width: 1400px;
              display: flex;
              justify-content: space-between;
              align-items: center;
              flex-wrap: wrap;
              padding: 20px;
            }

            .container .box {
              height: 100%;
              width: calc(25% - 10px);
              background: #fff;
              display: flex;
              flex-direction: column;
              justify-content: center;
              align-items: center;
              padding: 20px 30px;
              border-radius: 12px;
            }

            .box .quote i {
              margin-top: 10px;
              font-size: 45px;
              color: #17c0eb
            }

            .container .box .image {
              margin: 10px 0;
              height: 150px;
              width: 150px;
              background: #00b7ff;
              padding: 3px;
              border-radius: 50%;
            }

            .box .image img {
              height: 100%;
              width: 100%;
              border-radius: 50%;
              object-fit: cover;
              border: 2px solid #fff;
            }

            .box p {
              text-align: center;
              margin-top: 8px;
              font-size: 12px;
              font-weight: 400;
            }

            .box .name_job {
              margin: 10px 0 3px 0;
              color: #00b7ff;
              font-size: 18px;
              font-weight: 600;
            }

            .box .job {
              margin: 10px 0 3px 0;
              color: black;
              font-size: 14px;
              font-weight: 550;
            }

            .btns {
              margin-top: 20px;
              margin-bottom: 5px;
              display: flex;
              justify-content: space-between;
              width: 100%;
            }

            .btns button {
              background: #00b7ff;
              width: 100%;
              padding: 9px 0px;
              outline: none;
              border: 2px solid #00b7ff;
              border-radius: 5px;
              cursor: pointer;
              font-size: 18px;
              font-weight: 400;
              color: #00b7ff;
              transition: all 0.3s linear;
            }

            .btns button {
              background: none;
              margin-left: 5px;
            }

            .btns button:hover {
              background: #00b7ff;
              color: #fff;
            }

            .btns button:hover {
              color: #fff;
            }

            .box {
              transition: 1s;
            }

            .box:hover {
              transform: translateY(-15px);
            }

            @media (max-width:1045px) {
              .container .box {
                width: calc(50% - 10px);
                margin-bottom: 20px;
              }
            }

            .projectoverview {
              margin: 0 auto;
              border-radius: 18px;
              background-color: white;
              padding: 25px 25px 25px 25px;
              width: 40%;
              height: fit-content;
            }

            @media (max-width:710px) {
              .container .box {
                width: 100%;
              }

              .projectoverview {
                width: 80%
              }
            }

            .whydonatepic {
              border-radius: 50%
            }

            /* Create four equal columns that floats next to each other */
            .column2 {
              float: left;
              width: 25%;
              padding: 10px;
            }

            .column3 {
              float: left;
              width: 48%;
              padding: 5px;
              vertical-align: middle !important;
            }

            /* Clear floats after the columns */
            .row2:after {
              content: "";
              display: table;
              clear: both;
            }

            /* Responsive layout - makes the four columns stack on top of each other instead of next to each other */
            @media screen and (max-width: 1000px) {
              .column2 {
                width: 100%;
              }
            }