/* 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;
  }
  /*landing*/
  
  h1 {
    font-size: 45px;
    line-height: 55px;
    margin: 15px 0;
    color: #0047AB;

  }
  
  p {
    line-height: 24px;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 6%;
    color:#0047AB;
  }
 
  
  .content-section-container {
    padding: 20px 15px;
    
  }
  
  .text-centered {
    text-align: center;
  }
  .content-section-container img {
    width: 100%;
  }
    .hero-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: row-reverse;
      margin-top: -1%;
      
    }
    .hero-section img {
      width: 40%;
    
    
    }
    .hero-section img:hover {
      transform: scale(1.06);
    }
    .hero-text {
      width: 45%;
      text-align: left;
    }
   .btn-primary{
    border: 2px solid #0047AB;
    padding: 6px 25px;
    border-radius: 30px;
    margin-left: 30px;
   
   }
   .btn-primary:hover {
    background: #0047AB;
    color: #eefafc;
    font-weight: 500;
    transition: 0.1s;
  }
  /*landing end*/
 
  
  
  
  