.trek-pakages {
  background: url(/assests/Card/card\ bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  h3 {
    font: 700 50px/28px "Yatra One";
    font-size: Clamp(50px, 2vw, 20px);
    color: black;
    text-transform: capitalize;
    text-align: center;
    line-height: 1;
    padding-bottom: 27px;
    border-bottom: 2px solid #82bc23;
    position: relative;
  }

  h3::after {
    content: "";
    width: 382px;
    height: 5px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    margin: auto;
    background: #6c9005;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
  }

  .box {
    box-shadow: 6px 4px 8px 0px rgba(0, 0, 0, 0.24);
    border-radius: 0px 0px 5px 5px;
    /* background: url(/assests/Card/package-bg.jpg); */
    backdrop-filter: blur(20px);

    &:hover img {
      overflow: hidden;
      transform: scale(1.05);
    }

    h4 {
      margin: 10px 0px;
    }

    i {
      padding: 15px;
      font-size: 20px;
    }

    .btn {
      transition: all ease-in-out;
      box-shadow: 1px 1px 3px black;

      &:hover {
        background: transparent;
        color: rgb(0, 0, 0);
      }

      &:active {
        background-color: transparent;
        transform: translatey(3px);
        box-shadow: none;
      }
    }

    img {
      transition: all 0.5s ease-in-out;
    }
  }
  button,button a {
    background-color: #6c9005;
    color: antiquewhite;
    border: none;
    padding: 5px 36px;
    font-size: 18px;
    letter-spacing: 1px;
    border-radius: 5px;
  }
}

.customizedPackage {
 
  h3 {
    font: 700 70px/28px "Yatra One";
    font-size: Clamp(30px, 2vw, 20px);
    color: black;
    text-transform: capitalize;
    text-align: center;
    line-height: 1;
    padding-bottom: 27px;
    border-bottom: 2px solid #82bc23;
    position: relative;
  }

  h3::after {
    content: "";
    width: 300px;
    height: 5px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    margin: auto;
    background: #6c9005;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
  }
  .form-holder{
    width: fit-content;
    background-color: #ffffff;
    backdrop-filter: blur(2px);
    border-radius: 5px;
    padding: 30px;
  }
  form {
    text-align: center;
    input {
      background-color: transparent;
      padding: 5px 10px;
      margin: 5px;
      border-radius: 5px;
    }
    ::placeholder {
      color: rgb(0, 0, 0);
    }
    input[type="submit"] {
      transition: all ease-in-out;
      box-shadow: 1px 1px 3px black;

      &:hover {
        background: transparent;
        color: rgb(0, 0, 0);
      }

      &:active {
        background-color: transparent;
        transform: translatey(3px);
        box-shadow: none;
      }
    }
  }
}
.popup-container {
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease-in-out;
  transform: scale(1.3);
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease-in-out;
  transform: scale(1.5);

  &:target {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
}
