/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* hide the honeypot visually but keep it in the DOM */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
}

.flex_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.services_header {
  display: flex;
  justify-content: center; /* center children along main axis */
  flex-direction: column;
  align-items: center; /* center children along cross axis */
  gap: 1rem; /* uniform space between svg & h3 */
  padding-top: 15px;

  h3 {
    margin-bottom: 10px;
  }
}

.services_container {
  flex: 0 1 calc((100% - 2rem) / 2);
  padding: 20px;
  border: 2px solid #abb0b8;
  border-radius: 15px;
  margin-bottom: 50px;

  ul {
    padding: 20px;
  }

  li {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

/* On smaller screens, stack them full-width */
@media (max-width: 600px) {
  .services_container {
    flex: 0 1 100%;
  }
}

.services_icon {
  padding-right: 20px;
  width: 40px;
  height: 40px;
}
