/* import common styles  */
@import url("./common.css");

.section-container {
  text-align: center;
}

.section-label {
  font-size: 1rem;
  color: var(--pmk-green);
  font-weight: 600;
  position: relative;
}

.section-label::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  height: 1.5px;
  width: 22px;
  background-color: var(--pmk-blue-dark);
  border-radius: 2px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 12px;
  color: var(--pmk-blue-dark);
}

.section-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--pmk-green);
  margin-top: 10px;
}

.section-description {
  width: 88%;
  margin: 18px auto 0;
  line-height: 1.5;
}

/* .section-label,
.section-title,
.section-subtitle,
.section-description {
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.visible-section-head .section-label,
.visible-section-head .section-title,
.visible-section-head .section-subtitle,
.visible-section-head .section-description {
  opacity: 1;
  visibility: visible;
}
.visible-section-head .section-title {
  transition-delay: 0.3s;
}
.visible-section-head .section-subtitle {
  transition-delay: 0.5s;
}
.visible-section-head .section-description {
  transition-delay: 0.7s;
} */

.section-label,
.section-title,
.section-subtitle,
.section-description {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.visible-section-head .section-label,
.visible-section-head .section-title,
.visible-section-head .section-subtitle,
.visible-section-head .section-description {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.visible-section-head .section-label {
  transition-delay: 0.1s;
}

.visible-section-head .section-title {
  transition-delay: 0.25s;
}

.visible-section-head .section-subtitle {
  transition-delay: 0.4s;
}

.visible-section-head .section-description {
  transition-delay: 0.55s;
}

/* responsive styles:: small devices  */
@media (max-width: 767.98px) {
  .section-label {
    font-size: 0.875rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .section-description {
    width: 100%;
  }
}

/* responsive styles:: medium devices  */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-label {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .section-description {
    width: 100%;
  }
}

/* responsive styles:: large devices  */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* responsive styles:: extra large devices  */
@media (min-width: 1200px) and (max-width: 1399.98px) {
}

/* responsive styles:: extra extra large devices  */
@media (min-width: 1400px) {
}
