.up{
    display:flex;
    gap:4rem;
}

.down{
    display:flex;
    gap:4rem;
}

.packagecard {
    gap:2rem;
    margin-left: -1rem;
    margin-right: -1rem;
    display: flex;
    align-items: stretch;
    margin-bottom: 2rem;
    width: auto;
    background-color: white;
    padding: 1.5rem;
    border-radius:15px;
  }

  /*
  .packagecard .left{
    width:50%;
  }
  */

  .header {
    display: flex;
    flex-direction: column;
  }
  
  .title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: black;
}
  
  .lists {
    margin-bottom: 1.5rem;
    flex: 1 1 0%;
    color: rgba(156, 163, 175, 1);
  }
  
  .lists .list {
    margin-bottom: 0.5rem;
    display: flex;
    margin-left: 0.5rem
  }
  
  .lists .list svg {
    height: 1.5rem;
    width: 1.5rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
    color: #5f3816;
  }
  
  .action {
    border: none;
    outline: none;
    display: inline-block;
    border-radius: 0.25rem;
    background-color: rgba(167, 139, 250, 1);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(17, 24, 39, 1);
  }

  /* for header*/

a{
  text-decoration: none;
}
ul{
  list-style: none;
}
.imgimg{
background-color: transparent;
}
header{
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 0px 0px 50px 50px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 1px 10px, rgba(0, 0, 0, 0.23) 0px 1px 10px;
  z-index: 99;
  position: relative;
  backdrop-filter: blur(14px);
  
}
.logo{
  display: flex;
  align-items: center;
}
.logo img{
  width: 100px;
  margin-right: 10px;
}
.header__logo {
  color: #000000ee;
  font-weight: 600;
}
.nav__list{
  display: flex;
  align-items: center;
  
}
.nav__item{
  margin: 0 8px;
}
.nav__link{
padding: 10px;
color: #5f3816;
font-size: 1.3rem;
font-weight: 500;
border-radius: 5px;
display: block;
transition: 0.5s;
}
.nav__list:hover .nav__link{
  filter: blur(2px);
}
.nav__list .nav__link:hover{
  filter: blur(0px);
}

.header__toggle,
.header__close{
  display: none;
}
@media screen and (max-width: 768px) {
body{
  overflow-x: hidden;
}
.hydrated{
  overflow-x: hidden
}
  header{
      
      justify-content: space-between;
      padding: 5px 28px;
     
  }
  .imgimg{
    background-color: transparent;
  }
  .logo a{
      font-size: 0.9rem;
  }
  .logo img{
      width: 100px;
  }
  .header__toggle{
      display: inline;
      color: black;
      font-size: 24px;
      border-radius: 10px;
      transition: 0.5s;
  }
  .header__toggle:hover{
    background-color: #d3d7ed;
    color: #00093c;
    transform: scale(1.5);
    
  }
  .header__close{
      position: absolute;
      right: 24px;
      display: block;
      font-size: 24px;
      border-radius: 10px;
      transition: 0.5s;

  }
  .header__close:hover{
    background-color: #d3d7ed;
    color: #00093c;
    transform: scale(1.5);
  }
  .nav{
    position: fixed;
    top: 0;
    right: -100%;
    background: whitesmoke;
    color: black;
    width: 40%;
    height: auto;
    padding: 24px 0;
    z-index: 100;
    transition: 0.5s;
    border-radius: 0 0 0 50px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  }
  .nav__list{
      gap:0px;
      display: flex;
      flex-direction: column;
      color: black;
  }
  .nav__item{
      margin: 1rem;
  }
  .nav__link{
    transition: 0.5s;
  }
  .show{
      right: 0;
  }
  .nav__list:hover .nav__link{
    filter: blur(0px);
}
.nav__link:hover{
    filter: blur(0px);  
   
    transform: translateY(-10px);
 } 
    
}
  



/* header ends here */
