*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: serif !important;
  }
  .header{
    background: url(img/background-1.jpg);
    background-size: cover;
   padding-bottom: 5%;
  }
  .navbar{
    border-radius: 50px;
    background: yellow;
  }
  .nav-item{
    border-radius: 30px;
  }
  .form1{
    border-radius: 30px;
  }
  span{
    color: rgb(255, 208, 0);
  }
  .footer-mob {
      display: none;
  }
  @media only screen and (max-width: 768px) {
    body{
      padding-bottom: 4rem;
    }
    .mob-hide-nav{
      display: block;
    }
    .header{
      height: unset !important;
    }
    .download-section{
      text-align: center;
    }
    .footer-mob {
      display: block;
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      background-color: yellow;
      text-align: center;
      border-radius: 1rem;
    }
  }






