/* 
---------------------------------------------
pricing
--------------------------------------------- 
*/
.pricing-item {
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 30px 0px 40px 0px;
}

.pricing-item.active .pricing-header {
  position: relative;
}

.pricing-item.active .pricing-header .pricing-title {
  color: #1e1e1e;
}

.pricing-item.active .pricing-body .price-wrapper .currency {
  color: #fff;
}

.pricing-item.active .pricing-body .price-wrapper .price {
  color: #fff;
}

.pricing-item.active .pricing-body .price-wrapper .period {
  color: #fff;
}

.pricing-item .pricing-header {
  text-align: center;
  display: block;
  position: relative;
  padding-bottom: 10px;
}

.pricing-item .pricing-header .pricing-title {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.25px;
  color: #1e1e1e;
  width: 180px;
  height: 40px;
  line-height: 40px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.pricing-item .pricing-body {
  margin-bottom: 5px;
}

.pricing-item .pricing-body .price-wrapper {
  text-align: center;
  padding-top: 20px;
  /* padding-bottom: 13px; */
  padding-bottom: 20px;
  /* background-color: #8261ee; */
  background-color: #f1c111;
  width: 80%;
  margin: auto;
  margin-bottom: 5px;
  margin-top: 5px;
  border-radius: 20px;
}

.pricing-item.active .pricing-body .price-wrapper {
  /* background-color: #ff589e; */
  /* background-color: #ff6f00; */
  background-color: #057a8d;
}

.pricing-item .pricing-body .price-wrapper .currency {
  height: 47px;
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  position: relative;
  top: -1px;
}

.pricing-item .pricing-body .price-wrapper .price {
  font-weight: 500;
  font-size: 28px;
  color: #fff;
}

.pricing-item .pricing-body .price-wrapper .period {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  display: block;
  letter-spacing: 0.88px;
}

.pricing-item .pricing-body .list li {
  text-align: center;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 13px;
  color: #7a7a7a;
  letter-spacing: 0.25px;
  text-decoration: line-through;
}

.pricing-item .pricing-body .list li.active {
  color: #7a7a7a;
  text-decoration: none;
}

/* .pricing-item .pricing-footer {
  text-align: center;
  margin-top: 50px;
} */


/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

/*
--------------------------------------
call to action
--------------------------------------
*/
.demo-options {
    display: flex; /* Use Flexbox to arrange cards horizontally */
    flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
    justify-content: center; /* Center cards horizontally */
    gap: 20px; /* Spacing between cards */
}

.demo-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 200px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.demo-card i {
    font-size: 3em; /* Size of the icons */
    margin-bottom: 10px;
    color: #007bff; /* Example icon color - you can customize */
}

.demo-card h3 {
    margin-bottom: 10px;
    color: #333;
    min-height: 144px;
}

.demo-card p {
    color: #777;
    font-size: 0.9em; /* Slightly smaller description text */
    margin-bottom: 20px;
}

.request-button, .coming-soon-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 1em;
}

.request-button {
    background-color: #057a8d;
}

.request-button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

.coming-soon-button {
    background-color: #ccc; /* Grayed out for "Coming Soon" */
    cursor: not-allowed; /* Change cursor to indicate not clickable */
}

/*
--------------------------------------
Footer
--------------------------------------
*/
.site-footer img {
    width: 20px;
    height: 20px;
}


/*
--------------------------------------
Facebook button
--------------------------------------
*/
.facebook-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1877f2;
  color: white;
  font-family: sans-serif;
  font-size: 1rem;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
  /* position: absolute; */
  /* left: 50%; */
  /* top: 50%; */
  /* transform: translate(-50%, -50%); */
  /* margin-top: 20px; */
}

.facebook-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: white;
}