* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
body {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.container {
  max-width: 786px;
  width: 100%;
  margin: 0 auto;
}
.container img {
  max-width: 100%;
  display: block;
}
.buy-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  max-width: 90%;
  width: 100%;
  margin: 0px auto;
  padding: 40px 0;
}
.button-marketplace {
  display: flex;
  background-color: #b0d899;
  border-radius: 10px;
  padding: 8px 15px;
}
.bg-gray {
  background-color: #f6f8f5;
}
.text-2xl {
  font-size: 20px;
}
.text-bold {
  font-weight: 500;
}
.benefit-block {
  background-image: url("../img/bg-1.png");
  background-size: cover;
  padding: 30px 0px;
  position: relative;
  height: 430px;
}
.benefit-block .cat-1 {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.benefit-block .cat-2 {
  position: absolute;
  bottom: -8px;
  right: 0px;
}
.button-map {
  text-decoration: none;
  background-color: #b0d898;
  padding: 8px 30px;
  border-radius: 10px;
  color: #222222;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.carousel-item {
  flex: 0 0 auto;
  width: 150px;
  margin-right: 20px;
  text-align: center;
}

.carousel-item img {
  width: 100%;
  border-radius: 10px;
}

.carousel-item p {
  font-size: 14px;
  margin-top: 8px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.location {
  background-image: url("../img/cattery-3.jpg");
  background-size: cover;
  height: 460px;
  position: relative;
}
.location .button-map {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.button-addfriend {
  background-color: #499636;
  color: #ffffff;
  display: inline-block;
  padding: 8px 30px;
  margin: 60px auto 0;
  border-radius: 10px;
  text-decoration: none;
}
