.single-feature {
  background-image: url("../img/awesome-feature.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 700px;
  margin-top: 20px;
}

.icon-text {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px; /* Optional for rounded corners */
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.icon-text:hover {
  color: #0056b3; /* Change hover color */
  border-color: #0056b3; /* Change border color on hover */
}

.icon-text i {
  margin-right: 8px; /* Space between icon and text */
}

.review-btn {
  bottom: 90px !important;
  font-weight: bold;
}

@media (max-width: 800px) {
  .single-feature {
    background-size: auto 100%;
    min-height: 500px; /* Adjust the height as needed */
    padding: 10px;
  }
}

@media (max-width: 700px) {
  .single-feature {
    background-size: auto 100%;
    min-height: 450px; /* Adjust the height as needed */
    padding: 10px;
  }
}

@media (max-width: 625px) {
  .single-feature {
    background-size: auto 100%;
    min-height: 400px; /* Adjust the height as needed */
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    margin: 5px 0 !important;
  }
  .navbar-brand img {
    width: 55% !important;
  }
  .single-feature {
    background-size: auto 100%;
    min-height: 350px; /* Adjust the height as needed */
    padding: 10px;
  }
  .process-wrapp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* Ensures that text is also centered */
    height: 100%; /* Adjust as needed */
  }
  .process-icon-wrap {
    display: flex; /* Use flexbox to center content */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    border-radius: 50%; /* Circular border */
    height: 90px;
    width: 90px;
    line-height: 90px; /* This might not be needed with flexbox */
    border: 1px solid #fff; /* Solid white border */
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px; /* Adjust as needed for spacing */
  }
  /* Add this to ensure all text inside .process-wrapp is centered */
  .process-wrapp p {
    text-align: center;
  }
}

@media (max-width: 475px) {
  .single-feature {
    background-size: auto 100%;
    min-height: 300px; /* Adjust the height as needed */
    padding: 5px;
  }
  .view-results {
    top: 75% !important;
  }
}

@media (max-width: 375px) {
  .single-feature {
    background-size: auto 100%; /* Fit the width, adjust height */
    min-height: 250px; /* Adjust the height as needed */
    padding: 0px;
  }
  .view-results {
    top: 72.5% !important;
  }
} /*# sourceMappingURL=custom.css.map */

/* new css */
.view-results {
  position: absolute;
  top: 82.5%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
}
