.Sub--btn{
    color: azure;
    border: 2px azure;

}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }

  .first_header{
    background-color: rgb(245, 245, 245); 
    height: 75px;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
 
  }
  
  .navbar-brand {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    font-family:  "Serif Pro",Georgia,Times,serif;
  }
  
  .navbar-nav {
    display: flex;
    align-items: center;
  }
  
  .menu {
    display: flex;
    list-style: none;
    font-family: 'Unbounded', sans-serif;
    font-weight: 0;
  }
  
  .nav-item {
    margin: 0 1rem;
  }
  
  .nav-item a {
    color: #333;
    font-size: 0.8rem;
    text-decoration: none;
    padding: 10px;
  }
  
  .nav-item a:hover {
    color: #06d68d;
  }
  
  button{
    padding: 8px 16px;
    font-size: 0.8rem;
    margin-left: 20px;
    background-color: #52ca96;
    color: #ffffff;
    font-weight: bold;
    border: #89fbaf ;
    border-radius: 100px;
    letter-spacing: 4px;
    overflow: hidden;
    transition: 0.5s;
    cursor: pointer;
  }
  
  button:hover{
      background: #89fbaf;
      color: #484040;
      box-shadow: 0 0 1px #89fbaf,
                  0 0 2px #89fbaf,
                  0 0 3px #89fbaf,
                  0 0 4px #89fbaf;
  }



  /* Styles for the dropdown menu */
  .dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .dropdown-menu a {
    display: block;
    padding: 8px;
    background-color: #f2f2f2;
    color: #333;
    text-decoration: none;
  }

  /* Styles for the dropdown menu when the menu button is clicked */
  .dropdown-menu--open {
    display: block;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
  }


  .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-item {
    margin-right: 16px;
    font-size: 1%;
  }

  .nav-item:last-child {
    margin-right: 0;
  }

  /* Styles for the dropdown menu */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    background-color: #f2f2f2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }

  .dropdown-menu a {
    display: block;
    padding: 8px;
    background-color: #f2f2f2;
    color: #333;
    text-decoration: none;
  }

  /* Styles for the dropdown menu when the menu button is clicked */
  .dropdown-menu--open {
    display: block;
  }

  .why_text{
    width: 40%; 
    margin-left: 30%;
  }

  .form_item{
    padding: 20px;
  }

  /* Media query for when the screen width is less than 768px */
  @media screen and (max-width: 767px) {
    button{
      margin-left: 0px;
    }

    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }

    .navbar-nav{
      position: absolute;
      flex-direction: column;
      justify-content: start;
      border: 1px solid #333;
      border-top: none;
      border-left: none;
      top: 75px;
      left: -100%;
      width: 30%;
      height: fit-content;
      max-height: 420px;
      background-color: rgba(255, 255, 255, 0.993);
      transition: all 0.7s;
      padding: 20px;
    }

    .navbar-title{
      display: flex;
    }

    .menu-btn {
      display: block;
      padding-right: 30px;
      cursor: pointer;
    }

    .menu{
      text-align: center;
      display: block;
      padding-bottom: 30px;
    }

    .navbar-nav.responsive {
      left: 0%;
    }

    .nav-item {
      margin: 8px 0;
    }

    .nav-item:last-child {
      margin-bottom: 0;
    }

  }

  @media screen and (max-width: 767px) {
    .navbar-nav.responsive {
      left: 0%;
    }
    
  }

  @media screen and (max-width: 546px) {
    .why_text{
      width: 80%;
      margin: 10% 10%;
    }
  }