
/* 

This Css is Card Container Number One
*/

.cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
      /* height: 1052px; */


  /* IMPORTANT */
  align-items: start;   /* content nusar height */
}

.profile-card {
    background-color: #fafafa;
  background: #fafafa;
  border: 1px solid #fafafa;
  text-align: center;
  padding-bottom: 25px;

  /* KEY LINES */
  height: auto;
  min-height: auto;     
  max-height: none;
}



.card-title {
  background: #1f66ad;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  padding: 12px 0;
  margin: 20px auto 10px;
  width: 80%;
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%);
}

.card-line {
  width: 100%;
  height: 2px;
  background: #1f66ad;
  /* margin: 20px auto;
   */
  margin-top: 50px;
  margin-bottom: 10px;
}

.profile-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
      line-height: 24px;

}

.profile-card ul li {
  color: #919595;
  font-size: 14px;
  margin: 12px 0;
}

.profile-card ul li::before {
  content: "✓";
  color: #919595;
  margin-right: 8px;
}

.profile-card .price {
  /* font-weight: 600; */
  color: #919595;
}

/* Tablet */
@media (max-width: 992px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}










.choose-packages {
  padding: 35px 10px;
  text-align: center;
  background: #ffffff;
}

.choose-packages h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222;
  margin-bottom: 12px;
padding-top: 20px;
}

.choose-packages p {
  font-size: 18px;
  font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
  color: rgb(153, 153, 153);
  max-width: 900px;
  margin: 0 auto 20px;
  padding-top: 20px;
  line-height: 34px;
  font-weight: 400;
}

/* line image */
.divider-img {
  max-width: 120px;   /* image size control */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* responsive */
@media (max-width: 768px) {
  .choose-packages h2 {
    font-size: 26px;
  }

  .choose-packages p {
    font-size: 16px;
  }

  .divider-img {
    max-width: 90px;
  }
}


.choose-packages{
    font-size: 28px;
    color: rgb(51, 51, 51);
    font-weight: 700;
    
    /* margin-top: 20px; */
}


.page-banner {
  background-image: url("assets/images/emotionheader-1.jpg");
  background-size: cover;
  background-position: center;
  height: 150px;
  position: relative;
}

/* dark overlay */
.banner-overlay {
  /* background: rgba(0, 0, 0, 0.6); */
  height: 95px;
  
}

.banner-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;   
}

/* left title */
.banner-content h1 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 500;
  margin: 0;
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
}

.breadcrumb i {
  color: #ffffff;
}

.breadcrumb .slash {
  color: #6cc04a; /* green slash */
}

.breadcrumb .active {
  color: #6cc04a;
}

/* responsive */
@media (max-width: 768px) {
  .page-banner {
    height: 120px;
  }

  .banner-content h1 {
    font-size: 20px;
  }

  .breadcrumb {
    font-size: 13px;
  }
}
