/* sec-7 */
.sec-7 {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 6;
  background-color: #f5efe6;
  border-radius: 0px 0px 40px 40px;
  margin-bottom: -40px;
  padding-top: 40px;
  box-shadow: 2px 0px 10px -6px #000;
}

.sec-7-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.125rem 2rem;
  display: flex;
  flex-direction: column;
}

.sec-7-container .title {
  font-size: 2rem;
  text-align: center;
  color: #000000;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sec-7-container .sub-title {
  font-size: 1rem;
  text-align: center;
  margin: 0rem auto 2rem auto;
  font-weight: 300;
  max-width: 280px;
}

.sec-7-container .card-container {
  width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  position: relative;
  animation-duration: 1s;
  animation-fill-mode: both;
  padding: 2rem;
  gap: 2rem;
}

.sec-7-container .card-container .profile-pic {
  width: 200px;
  height: 200px;
  min-width: 200px;
  object-fit: cover;
  border-radius: 50%;
}

.sec-7-container .card-container .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.sec-7-container .card-container .card-content h2 {
  margin: 0;
  font-size: 2.2rem;
  color: #000;
}

.sec-7-container .card-container .card-content p {
  margin-top: 1rem;
  color: #666;
  font-size: 0.8rem;
  line-height: 1.4rem;
  font-style: italic;
}

.sec-7-container .card-container .card-content p svg {
  width: 0.6rem;
  height: 0.6rem;
  margin-bottom: 4px;
}

.sec-7-container .star-container {
  margin-top: 1rem;
  display: flex;
  gap: 0.4rem;
}

.sec-7-container .star-container svg {
  width: 1rem;
  height: 1rem;
  stroke: #666;
  fill: #666;
}

/* Slide Animations */
@keyframes Sec7SlideInNext {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes Sec7SlideInPrev {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sec-7-container .card-container.next {
  animation-name: Sec7SlideInNext;
}

.sec-7-container .card-container.prev {
  animation-name: Sec7SlideInPrev;
}

/* Arrows */
.sec-7-container .arrows {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.sec-7-container .arrow-btn {
  background-color: #ffffff;
  color: #000000;
  border: none;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 1px 1px 1px 0px #7c7c7c;
}

.sec-7-container .arrow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 2px 2px 2px 0px #7c7c7c;
}

.sec-7-container .arrow-btn svg {
  margin: auto;
}

@media (max-width: 800px) {
  .sec-7-container .card-container.next {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .sec-7-container .card-container .card-content h2 {
    text-align: center;
  }

  .sec-7-container .star-container {
    justify-content: center;
  }
}
