@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    font-size: 16px;
    font-weight: 500;
}
p{
    font-size: 16px;
}
/* Set dropdown-menu to display none by default */
.dropdown-menu {
    display: none;
  }
  
  /* Show dropdown-menu on hover */
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .button{
    background-color: black;
    color: white;
    padding: 10px 50px 10px;
    border: none;
    border-radius: 16px;
    text-decoration: none;
  }
  .button:hover{
    background-color: white;
    color: black;
    padding: 10px 50px 10px;
  }
  ion-icon{
    color: white;
    font-size: 1.5em;
  }
  .footer-text{
    text-align: center;
    line-height: normal;
    letter-spacing:.1rem;
    font-size: 2em;
  }
  .nav-item .nav-link{
    text-decoration: none; /* Remove the default underline */
  position: relative;    /* Needed to position the pseudo-element */
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  }
  .nav-item .nav-link:hover{
    text-decoration: none; 
  }
  .nav-item .nav-link::after{
    content: '';                        /* Required for pseudo-elements */
    position: absolute;                 /* Position the underline absolutely */
    left: 0;                            /* Start the underline from the left */
    bottom: -2px;                       /* Adjust the distance from the text */
    width: 100%;                        /* Set the width of the underline */
    height: 2px;                        /* Set the thickness of the underline */
    background-color: #000;             /* Choose your desired underline color */
    opacity: 0;                         /* Make the underline invisible by default */
    transition: opacity 0.3s ease;   
  }
  .nav-item .nav-link:hover::after{
    opacity: 1;
  }
  .search {
    position: relative;
    width: 60px;
    height: 40px;
    background: transparent;
    transition: 0.5s;
    /* box-shadow: 2px 2px 10px rgb(0, 0, 0); */
    display: flex;
    overflow: hidden;
    cursor: pointer;
  }
  .search.active {
    width: 360px;
  }
  .search .icon {
    position: absolute;
    color: #000000;
    top: 0;
    left: 0;
    width: 60px;
    height: 40px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .search .input {
    position: relative;
    width: 300px;
    height: 40px;
    left: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-style: none;
    text-decoration: underline;
    background: lightgray;
    border-radius: 16px;
    padding: 0.5em 0.5em 0.5em;
  }
  .search .input input {
    border: 1px solid black;
    text-align: justify;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: rgb(239, 239, 239);
    border-radius: 16px;
    /* outline: rgb(0, 0, 0); */
    font-size: 18px;
  }
  .clear {
    position: absolute;
 top:90%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    right: 15px;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .clear::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 15px;
    background: #0a0a0a;
    transform: rotate(45deg);
  }
  .clear::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 15px;
    background: #000000;
    transform: rotate(315deg);
  }
  .img-1 {
    max-width: 100%;
    height: 2em;
  }
  .card{
    border: 0;
  }