* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.card {
  padding: 10px 70px;
}
.nav-1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  position: sticky;
  top: 0;

}
.img-1 {
  width: 100px;
}
.btn {
  background-color: white;
  color: black;
  font-size: 13px;
  /* border: 1px solid lightgray; */
  border: none;
  padding: 16px 30px;
  border-radius: 30px;
  cursor: pointer;
  /* width: 100%; */
}
.btn:hover {
  background-color: lightgray;
  /* width: 50%; */
}
.nav-2 {
  width: 700px;
  border: 1px solid lightgray;
  margin: 10px auto;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  padding: 12px 30px;
}
.line {
  border-bottom: 1px solid lightgray;
}
.nav-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top:0px;
  background-color: white;
}
.nav-img {
  width: 20px;
  height: 20px;
}
.nav{
  border-right: 1px solid lightgray;
}
.nav-no-brdr{
border: none;
}
.ctn {
  font-size: 12px;
}
.inpt{
  border: none;
  font-size: 13px;
}
.hotel-cards {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hotel-card {
  width: 330px;
  border: 1px solid lightgray;
  padding: 10px;
}
.hotel-img {
  width: 100%;
  height: 200px;
}
.help {
  color: white;
  background-color: black;
  position: fixed;
  bottom: 30px;
  right: 50px;
  font-size: 15px;
  border-radius: 30px;
  padding: 10px 20px;
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.img-card {
  position: relative;
}
.heart {
  position: absolute;
  top: 15px;
  right: 15px;
  border: 1px solid black;
  background-color: lightgray;
  padding: 1px 3px;
  border-radius: 5px;
}