.vertical-line {
    border-left: 1px solid #ccc;
    height: 30px; /* Adjust height as needed */
    margin-top: 5px; /* Adjust margin-top as needed */
}
.banner{
    background-image: url("bg.webp");
    background-attachment: fixed;
    box-shadow: inset 0 0 0 2000px #1c1c1c7a;
    text-align: center;
    padding: 160px 15px;
}
.search-bar {
    position: relative;
  }
  .search-input {
    padding-right: 40px; /* Space for the magnifying glass icon */
  }
  @media (max-width: 576px) {
    .search-icon {
      right: 5px;
    }
  }
  .city-circle {
      width: 150px; /* Diameter of the circle */
      height: 150px;
      border-radius: 50%; /* Make it circular */
      background-color: #fff; /* Circle background color */
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 20px; /* Adjust margin as needed */
      transition: 1s;
    }
    .city-circle img {
      max-width: 80%; 
      max-height: 80%;
    }
    .city-circle:hover {
      box-shadow: 0px 0px 80px #007bff;
      transition: 1s;
    }
    .main {
      padding-top: 70px;
      padding-bottom: 20px;
      text-align: center;
      
    }
    @media (max-width: 768px) {
      .city-circle {
        width: 200px;
        height: 200px;
      }
    }
    @media (max-width: 576px) {
      .city-circle {
        width: 100px;
        height: 100px;
      }
      .city-circle img {
        max-width: 60%; /* Adjust icon size */
        max-height: 60%; /* Adjust icon size */
      }
    }
    #foot1{
      padding-left: 110px;
    }
    .foot {
      background-color: rgb(54, 54, 54);
      padding: 10px;
    }
    #footrow {
      padding: 30px;
    }
    .footer-link {
      color: white;
      text-align: center;
    }
    .main{
      background-color: black;
    }