
/* header*/
* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    
  }
  body{
    background-color: #f0f8ff;
  }
  
  .hero {
    width: 100%;
    min-height: 100vh;
    background: #eefafc;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    color: #0047AB;
    background: url(wave.png);
    background-position: bottom;
    background-size: 100% 30%;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
   
  }
  nav {
    display: flex;
    align-items: center;
    padding: 8px 0;
  }
  .ncb {
    font-size: 3em;
    color: #0047AB;
    font-weight: 800;
    font-size: 50px;
  }
  .logo {
    width: 150px;
  }
  nav ul {
    flex: 1;
    text-align: right;
  }
  nav ul li {
    display: inline-block;
    list-style: none;
    margin: 0 15px;
    
  }
  a {
    text-decoration: none;
    color:#0047AB;
  }
  a:hover{
    background-color: #0047AB;
    color: #eefafc;
  }
  .btn {
    border: 2px solid #0047AB;
    padding: 6px 25px;
    border-radius: 30px;
    margin-left: 30px;
  }
  nav .btn:hover {
    background: #0047AB;
    color: #eefafc;
    font-weight: 500;
    transition: 0.1s;
  }
  
 /*donate*/
 .row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10%;
    justify-content: space-between;
  }
  
  .col-1 {
    flex-basis: 40%;
    min-width: 30px;
    margin-bottom: 80px;
    position:relative;
    margin-top: -3%;
  }
  

  .col-2 {
    flex-basis: 55%;
    min-width: 300px;
    margin-bottom: 30px;
  }
  .col-1 img {
    width: 80%;
  }
  .col-1 img:hover {
    transform: scale(1.1);
  }
 
  .col-2 p {
    margin: 10px 0 50px;
    max-width: 580px;
  }
  .col-2 .btn {
    margin-left: 0;
    margin-right: 30px;
    background-color: #f0f8ff;
    color: #0047AB;
    font-weight: 500;
  }
  .col-2 .btn:hover {
    background: #0047AB;
    transition: 0.2s;
    color:#f0f8ff;
  }
  
  
  
  