/* sec-8 */
.sec-8 {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #ffffff;
  padding-top: 40px;
}

.sec-8-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  gap: 3rem;
}

.sec-8-container .title {
  font-size: 2rem;
  color: #000000;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sec-8-container .sub-title {
  font-size: 1rem;
  font-weight: 300;
  max-width: 415px;
  margin-bottom: 3rem;
  line-height: 1.5rem;
}

.sec-8-container .left {
  width: 50%;
  border-right: 1px solid #bdbdbd;
}

.sec-8-container .right {
  width: 50%;
}

.sec-8-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 3rem;
}

.sec-8-container ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: #373737;
  font-size: 0.9rem;
  gap: 0.5rem;
}

.sec-8-container ul li svg {
  width: 1rem;
  height: 1rem;
}

.sec-8-container .left .explore {
  background-color: #000;
  color: #fff;
  border: 1px solid #000000;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.sec-8-container .left .explore:hover {
  transform: translateY(-3px);
}

.sec-8-container .right .sell {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.sec-8-container .right .sell:hover {
  transform: translateY(-3px);
}

@media (max-width: 800px) {
  .sec-8-container {
    flex-direction: column;
  }

  .sec-8-container .sub-title {
    margin: auto;
    margin-bottom: 2rem;
  }

  .sec-8-container .left {
    width: 100%;
    border-right: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .sec-8-container .right {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .sec-8-container .left .explore {
    width: 100%;
  }

  .sec-8-container .right .sell {
    width: 100%;
  }
}
