body {
  width: auto;
  padding: 0;
  margin: 0;
}

* {
  scrollbar-color: #0b1010 #3a3a39;
  scrollbar-width: 2px;
  scroll-behavior: smooth;
}

#home-banner {
  height: calc(100vh - 70px);
  background-image: url("../img/home-img/home-banner-kyiv.webp");
  background-position: center top;
  background-size: cover;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  box-sizing: border-box;
  padding-right: 100px;
}

#home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

#social-icons {
  width: 60px;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 20px;
}

#social-icons a {
  text-decoration: none;
  color: white;
  font-size: 30px;
  margin: 5px;
  transition: transform 300ms;
  cursor: pointer;
}

#social-icons a:hover {
  transform: scale(1.1);
}

.vertical-line {
  width: 2px;
  background-color: white;
  flex: 1;
  margin-bottom: 10px;
}

#home-banner-text-block {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  color: white;
  z-index: 2;
  padding-left: 80px;
  gap: 30px;
  margin: 0;
}
#home-banner-text-block h1 {
  font-size: 65px;
  line-height: 80px;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin: 0;
}

#home-banner-text-block p {
  width: 70%;
  margin: 0;
}

#home-banner-text-block button {
  background: transparent;
  padding: 10px 20px 10px 20px;
  cursor: pointer;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  border-style: solid;
  border-width: 2px;
  border-color: white;
}

#home-banner-text-block button:hover {
  background: rgba(255, 255, 255, 0.1);
}

#search-results {
  z-index: 2;
  width: 40%;
  height: 80%;
  overflow-x: hidden;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  padding: 10px 20px;
  gap: 20px;
}

.travel-card {
  flex-shrink: 0;
  min-height: 200px;
  background-color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 25px;
}

.travel-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.travel-card h1,
.travel-card p {
  padding: 0px 10px;
  box-sizing: border-box;
}
