.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-sec {
  margin-top: 48px;
}
.hero-content {
  display: flex;
  flex-direction: column;
}
.hero-content__welcome {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  color: var(--grey);
}
.hero-content__title {
  font-size: 48px;
  width: 550px;
  text-transform: uppercase;
}
.hero-search {
  display: flex;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0px 0px 12px rgba(45, 45, 45, 0.25);
  width: 540px;
  height: 45px;
  border-radius: 8px;
  margin-top: 24px;
  position: relative;
}
.hero-search__btn {
  width: 45px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-search__btn img {
  width: 13px;
  height: 13px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-search__input {
  height: 100%;
  width: calc(100% - 45px);
}
.hero-search.active {
  border-radius: 8px 8px 0px 0px;
}
.hero-search.active .hero-search__list {
  display: flex;
}
.hero-search__list {
  display: none;
  position: absolute;
  flex-direction: column;
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-radius: 0px 0px 8px 8px;
  box-shadow: 0px 12px 12px rgba(45, 45, 45, 0.25);
  max-height: 240px;
  overflow-y: scroll;
}
.hero-search__list-item {
  padding: 9px 24px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  width: 540px;
  margin-top: 16px;
}
.hero-tags__item {
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 14px;
  background: #f2f3f7;
  margin-right: 15px;
  margin-bottom: 16px;
  cursor: pointer;
}

.why-list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.why-list__item {
  display: flex;
  flex-direction: column;
  width: 244px;
}
.why-list__item-img {
  width: 40px;
  height: 40px;
}
.why-list__item-title {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 500;
  margin-top: 24px;
}
.why-list__item-description {
  font-size: 16px;
  font-weight: 400;
  margin-top: 16px;
  color: var(--grey);
}

.hero-search__list .empty {
  padding: 15px 30px;
}

@media (max-width: 1280px) {
  .hero-tags {
    width: 380px;
  }
  .hero-search {
    width: 380px;
  }
  .hero-content__title {
    width: 380px;
  }
  .why-list__item {
    width: calc(25% - 18px);
  }
  .why-list__item-title {
    font-size: 20px;
  }
}
@media (max-width: 980px) {
  .hero__img {
    max-width: 45%;
  }
  .hero-search {
    width: 100%;
  }
  .hero-tags {
    width: 100%;
  }
  .hero-content__welcome {
    font-size: 20px;
  }
  .hero-content__title {
    width: 100%;
    font-size: 36px;
  }
  .hero-content {
    width: 50%;
  }
  .hero-tags__item {
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .hero-search__input {
    font-size: 12px;
  }
}
@media (max-width: 980px) {
  .why-list {
    flex-wrap: wrap;
  }
  .why-list__item {
    width: calc(50% - 10px);
    margin-bottom: 22px;
  }
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: center;
  }
  .hero-content {
    width: 100%;
  }
  .hero__img {
    max-width: 75%;
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .hero-search {
    margin-top: 22px;
  }
  .hero-search {
    height: 38px;
  }
  .hero-search__btn {
    width: 32px;
  }
  .hero-content__welcome {
    font-size: 14px;
  }
  .hero-content__title {
    font-size: 28px;
  }
  .why-list__item {
    width: 247px;
    margin-bottom: 24px;
  }
  .why-list__item-img {
    width: 30px;
    height: 30px;
  }
  .why-list__item-title {
    margin-top: 8px;
    font-size: 18px;
  }
  .why-list__item-description {
    margin-top: 12px;
    font-size: 14px;
  }
  .hero-search__list-item {
    font-size: 12px;
    padding: 7px 18px;
  }
}/*# sourceMappingURL=home.css.map */