* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
}

ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: white;
  text-align: center;
}
li {
  display: flex;
  align-items: center;

  gap: 10px;
}
a:hover {
  color: green;
}
::placeholder {
  opacity: 1;
}
input {
  outline: white;
  border: none;
  background-color: white;
  
}
.main-wrap {
  width: 1500px;
  max-width: 100%;
  margin: auto;
  height: 100vh;
  display: flex;
}
.main-left {
  width: 15%;
  background-color: #16a34a;
  display: flex;
  flex-direction: column;
  padding: 15px;
}
.main-left-list {
  margin-top: 100px;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 250px;
}
.quote {
  font-size: 10px;
  text-align: center;
  background-color: white;
  padding: 15px;
  border-radius: 20px;
  margin-bottom: 200px;
}
.main-right {
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}
.img-wrap {
  max-width: 100%;
  width: 208px;
  height: 61px;
}
.img-wrap img {
  width: 100%;
}
.asosiy {
  padding: 10px;
  background-color: #4fd17d;
  width: 100px;
  border-radius: 10px;
  transition: 1s all ease;
}
.asosiy:hover {
  background-color: #97e4b2;
  transform: scale(1.1);
}

#place {
  outline: none;
  border: none;
  display: flex;
  flex-grow: 1;
}
#place::-webkit-input-placeholder{
  opacity: 1;
  background-color: white;
  
}
.search-wrap {
  border: 1px solid gray;
  width: 530px;
  border-radius: 30px 30px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  padding: 0 0 0 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}
.src {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.btn1 {
  height: 100%;
  cursor: pointer;
  border: none;
  padding: 19px 40px;
  color: white;
  background-color: #34c358;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
body {
  height: 100vh;
  overflow: hidden; /* Prevents scroll, but may hide content */
}
.main-left,
.main-right {
  height: 100vh;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important; /* Заливка белым */
  -webkit-text-fill-color: #000 !important; /* Цвет текста */
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: #000 !important;
}
#map {
  width: 80%;
  height: 400px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.footer {
  box-shadow: 10000px 2px 1px rgba(0, 0, 0, 0.1);
  padding: 0 50px;
  border-top: 1px solid gray;
  margin: 0 auto 24px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  bottom: 0;
  margin-top: 150px;

  height: 340px;
  width: 100%;
}
.footer-col {
  display: flex;
  flex-direction: column;

  gap: 10px;
}
.footer-col.icons {
  gap: 20px;
}

.footer-col .footer-title {
  font-weight: 600;
  margin-bottom: 6px;
}
.footer-col .footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  text-decoration: none;
}
.footer-col .footer-link svg {
  width: 18px;
  height: 18px;
  color: #1aaf5d;
}
