body {
  background-color: #f8fefb;
}

p {
  line-height: 1.5;
}

.nav {
  padding: 12px 32px;
}

.nav-container {
  max-width: 1200px;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 24px;
}

.button {
  background-color: #16a55a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.button:hover {
  background-color: #09793e;
}

.button_lg {
  font-size: 18px;
}

.button_white {
  background-color: #fff;
  color: #09793e;
}

.button_white:hover {
  color: #fff;
}

/*----------------------------------------------------------*
   |                                                          |
   |                   HERO SECTION                           |
   |                                                          |
   *----------------------------------------------------------*/

.section_hero {
  display: flex;
  max-width: 1100px;
  align-items: center;
  margin: 0 auto;
}

.section_hero_left {
  padding: 0 16px;
  width: 50%;
}

.section_hero_left h1 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}

.section_hero_right {
  width: 50%;
}

.section_hero_right img {
  max-width: 100%;
}

.section_hero_left p {
  font-size: clamp(1.25rem, 1.071rem + 0.476vw, 1.5rem);
  margin: 16px 0 16px 0;
}

@media (max-width: 800px) {
  .section_hero {
    flex-wrap: wrap;
    padding: 48px 0;
  }

  .section_hero_left {
    padding: 0 32px;
    width: 100%;
  }

  .section_hero_right {
    width: 100%;
    padding: 0 48px;
  }
}

/*----------------------------------------------------------*
   |                                                          |
   |                   SOCIAL PROOF SECTION                   |
   |                                                          |
   *----------------------------------------------------------*/

.section_socialProof {
  display: flex;
  justify-content: center;
  padding: 48px 0;
  text-align: center;
}

.section_socialProof_container {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.section_socialProof_container h3 {
  font-size: clamp(1.5rem, 1.295rem + 0.909vw, 1.75rem);
}

.circleImage {
  border-radius: 100px;
  margin: 0 24px;
  width: 64px;
  height: 64px;
}

.carousel-card {
  display: inline-block;
  align-items: center;
  margin: 0 12px;
}

.carousel-card h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.carousel-card img {
  margin-right: 12px;
}

.carousel {
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
  position: relative;
}

.carousel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #f8fefb);
  content: '';
  z-index: 2;
}

.carousel::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #f8fefb);
  content: '';
  z-index: 2;
}

.carousel:hover .carousel-slide {
  animation-play-state: paused;
  cursor: pointer;
}

.carousel-slide {
  display: inline-block;
  animation: slide 35s linear infinite;
}

.carousel-slide a {
  text-decoration: none;
  color: #111;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Duplicate the carousel content for seamless scrolling */
.carousel::after {
  content: '';
  display: flex;
}

.carousel::after {
  content: '';
  display: flex;
}

/*----------------------------------------------------------*
   |                                                          |
   |                   FEATURE SECTION                        |
   |                                                          |
   *----------------------------------------------------------*/

.section_feature {
  padding-top: 80px;
}

.whyPlanwellText {
  text-align: center;
  margin-bottom: 24px;
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2rem);
  font-weight: 900;
  padding: 0 32px;
}

.feature {
  display: flex;
  max-width: 1100px;
  align-items: center;
  margin: 0 auto 80px auto;
  padding: 0 32px;
}

.feature_text {
  width: 50%;
  padding: 0 16px;
}

.feature_text h2 {
  font-size: clamp(1.5rem, 0.75rem + 3vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.15;
}

.feature_text p {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
}

.feature_image {
  width: 50%;
  padding: 0 16px;
}

.feature_image img {
  max-width: 100%;
}

@media (max-width: 800px) {
  .feature_image {
    width: 100%;
    padding: 0;
  }

  .feature_text {
    width: 100%;
    padding: 0;
    margin-bottom: 24px;
  }

  .feature {
    flex-wrap: wrap;
    padding: clamp(2rem, 0.364rem + 7.273vw, 4rem);
    margin: 0 auto 0 auto;
  }

  .whyPlanwellText {
    margin-bottom: 0px;
  }
}

/*----------------------------------------------------------*
   |                                                          |
   |                   TESTIMONIAL SECTION                    |
   |                                                          |
   *----------------------------------------------------------*/

.section_testimonials {
  padding: 48px 0;
}

.testimonial_card_top {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.testimonial_card_top img {
  border-radius: 100px;
  margin-right: 8px;
}

.testimonial_card_top h3 {
  font-size: 24px;
}

.testimonial_card_top p {
  font-size: 18px;
}

.testimonial_div {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.testimonial_card {
  background-color: #fff;
  padding: 24px;
  margin: 0 12px;
  -webkit-box-shadow: 0px 5px 26px 0px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 5px 26px 0px rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  width: 33.33%;
}

.testimonial_card_image {
  width: 64px;
  height: 64px;
}

.testimonail_text {
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .testimonial_card {
    width: 100%;
    margin: 0 0 24px 0;
    box-sizing: border-box;
  }

  .testimonial_div {
    display: block;
    padding: 0 clamp(2rem, 0.364rem + 7.273vw, 4rem);
  }
}

/*----------------------------------------------------------*
   |                                                          |
   |                   FAQ SECTION                            |
   |                                                          |
   *----------------------------------------------------------*/

.section_faq {
  padding: 32px;
}

.faq-container {
  max-width: 720px;
  margin: 0 auto;
}

.faq {
  padding: 24px;
  cursor: pointer;
  -webkit-box-shadow: 0px 5px 26px 0px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 5px 26px 0px rgba(0, 0, 0, 0.14);
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 24px;
}

.faq-question {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.5;
  color: #333;
}

.section_cta {
  background-color: #16a55a;
  padding: 80px 32px;
}

.section_cta div {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section_cta h2 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.15;
}

.faq-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.rotate {
  transform: scaleY(-1);
}

/*----------------------------------------------------------*
   |                                                          |
   |                   MODAL SECTION                          |
   |                                                          |
   *----------------------------------------------------------*/

.modal {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #16a55a;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
}

.modal_container {
  width: 100%;
  height: 100%;
  position: relative;
}

.modal_text {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
  position: static;
}

.modal_form {
  max-width: 640px;
  margin: 0 auto;
  padding: 0px 32px;
  position: static;
}

.modal_text h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
}

.modal_text p {
  font-size: 20px;
  color: #fff;
}

.modalCloseIcon {
  font-size: 24px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 20px;
}

@media (max-width: 800px) {
  .marginMobileBottom24px {
    margin-bottom: 24px;
  }
}

.dogs {
  width: 100%;
  height: 480px;
}

#pathName {
  color: #16a55a;
  font-size: 24px;
  font-weight: 800;
}
