.section-spacing {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .section-spacing {
    padding: 72px 0;
  }
}

@media (max-width: 767px) {
  .section-spacing {
    padding: 56px 0;
  }
}

/* Section */
.section-title {
  font-size: clamp(1rem, 6vw, 2rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 10;
  color: #111111;
}

.section-subtitle {
  font-size: clamp(1rem, 3vw, 1.4rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 14px 0px;
  color: #1d1d1d;
}

.section-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b4b4b;
}

.section-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {

  .section-title {
    letter-spacing: -1px;
  }

  .section-content {
    font-size: 16px;
  }

}

/* Buttonsd  */
.section-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;

  margin-top: 40px;
}

.section-btn {
  min-height: 58px;
  padding: 14px 28px;

  border-radius: 12px;

  font-size: 16px;
  font-weight: 700;

  transition: all .25s ease;
}

.section-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 767px) {

  .section-buttons {
    flex-direction: column;
  }

  .section-btn {
    width: 100%;
  }

}

/* Image  */

.section-image {
  width: 100%;
  height: auto;

  border-radius: 20px;

  object-fit: cover;
}

/* Others  */

.bg-light-gray {
  background: #f7f7f7;
}

.bg-dark-green {
  background: #0A2E2A;
  color: #ffffff;
}

.text-white .section-title,
.text-white .section-subtitle,
.text-white .section-content {
  color: #ffffff;
}