.success {
  color: seagreen;
}
.danger {
  color: red;
  font-weight: 700;
}

.header-nav {
  background-color: #7d9f78;
  align-items: center;
  justify-content: center;
  height: 40px;
  display: flex;
  width: 100%;
}

.nav-bar {
  border-bottom: 2px solid #eee;
  height: 80px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.left-icon i,
.right-icon i {
  font-size: 24px;
  margin-left: 20px;
  cursor: pointer;
}

.nav-item .unlist {
  display: flex;
  text-decoration: none;
  list-style-type: none;
}
.nav-item .unlist li {
  margin: 8px 16px;
  cursor: pointer;
}
.container-box {
  display: flex;
  gap: 15px;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}
.div1 {
  grid-area: 1 / 1 / 2 / 2;
}
.div2 {
  grid-area: 1 / 2 / 2 / 3;
}
.div3 {
  grid-area: 2 / 1 / 3 / 2;
}
.div4 {
  grid-area: 2 / 2 / 3 / 3;
}
.div5 {
  grid-area: 3 / 1 / 4 / 2;
}
.div6 {
  grid-area: 3 / 2 / 4 / 3;
}
.div7 {
  grid-area: 4 / 1 / 5 / 2;
}

.content-left {
  width: 50%;
}
.content-right {
  width: 50%;
}
.content-right .box-view {
  background-color: rgb(255, 248, 239);
  color: #242833;
}
.price {
  font-size: 24px;
  font-weight: 700;
  color: red;
}

form {
  border: 2px solid #242833;
}
/* .unlist-form {
  font-size: 14px;
} */

footer {
  color: #fff;
  padding: 8px;
  width: 100%;
  height: 100%;
  background-color: #7d9f78;
  text-align: center;
}
footer p {
  margin-bottom: 10px;
}
footer .text-small {
  font-size: 12px;
  font-style: italic;
}
.slider {
  display: none;
}
.image-center_1 img {
  width: 100%;
}
.form-text span {
  color: red;
}
@-webkit-keyframes bounce {
  0% {
    transform: scale(1, 1) translate(0px, 0px);
  }

  30% {
    transform: scale(1, 0.8) translate(0px, 10px);
  }

  75% {
    transform: scale(1, 1.1) translate(0px, -25px);
  }

  100% {
    transform: scale(1, 1) translate(0px, 0px);
  }
}

.button-box {
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
  width: 150px;
  padding: 20px;
  background: tomato;
  -webkit-animation: bounce 1s infinite;
}

@media screen and (max-width: 768px) {
  .content-left {
    width: 100%;
  }
  .content-right {
    width: 100%;
  }
  .header-nav {
    display: none;
  }
  .nav-item {
    display: none;
  }
  .container-box {
    flex-direction: column;
    width: 100%;
  }
  .image-grid {
    display: none;
  }
  .image-center_1 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .image-center_1 {
    display: none;
  }
  .slider {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}
