.heading>span,
.team-expert span,
.performance-count,
.performance-count h2 {
    color: #0090d9;
}

/* Background Color */

.batton,
.discount-offer:before,
.pricing-plans-data:before,
.pricing-plans-data.two i,
.client-reviews i,
.location:before,
.get-a-quote:before,
.swal-modal:before {
    background-color: #0090d9;
}

.btn-sec {
    background-color: var(--mbr-primary);
}


.info-box {
  flex: 1 1 0; /* Flexbox shorthand for flexibility */
  background: white;
  padding: 10px;
  border-right: 1px solid #22376bf7;
  text-align: center; /* Align content in the center */
  margin-bottom: 10px; /* Add some spacing between boxes */
  width: 33%;
  float: left;
}

.info-box:last-child {
  border-right: none; /* Remove border from the last box */
}

.info-box h6 {
  font-size: large;
  margin-top: 0; /* Remove default margin */
}

.info-box p {
  font-size: 2.5em;
  color: #000;
  margin-bottom: 0; /* Remove default margin */
  display: inline; /* Ensure "LPA" stays on the same line */
}
@media only screen and (max-width: 600px) {
    /* CSS rules for screens less than or equal to 600px wide */
    .container {
        flex-direction: column; /* Stack elements vertically */
    }
    .info-box {
        width: 100%; /* Full width for small screens */
        border-right: none; /* Remove border */
        margin-bottom: 10px; /* Add some spacing between boxes */
    }
}
