*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  background-color: #f0f0f0;
}
body {
  color: #999999;
    font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
/*
  padding: 1rem;
*/
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga" on;
}
.cards img {
	height: auto;
	max-width: 100%
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cardbtn {
  background-color: #fff;
  border: 1px solid;
  padding: 0.5rem;
}

.cardbtn a, a:hover{
	color: #000;
}


.cardbtn:hover{
	background-color: #99cc99;
transition: .07s;
}


.btn--block {
  display: block;
  width: 100%;
	border-radius: 10px;
}

.cards__item {
  width: 50%;
  display: flex;
  padding: 1rem;
}

@media (min-width: 990px) {
  .cards__item {
    width: 25%;
  }
}

.ctaschedule {
	width: 100%;
	flex: 1 1 auto;
	justify-content: center;
	
}

.card {
  background-color: white;
  border-radius: 0.55rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
}
.card__image {
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.55rem;
  border-top-right-radius: 0.55rem;
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
}
.card__title {
  color: #000;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-weight: 400;
font-size: 20px;
	line-height: 30px;
}
.card__text {
  flex: 1 1 auto;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-size: 1.8rem;
	font-weight: 300;
  line-height: 30px;
	color: #000;
  margin-bottom: 1.25rem;
}
.floating-button-container {
  position: fixed; /* Makes the container fixed relative to the viewport */
  bottom: 75px; /* Adjust as needed for desired position */
  right: 20px; /* Adjust as needed for desired position */
  z-index: 1000; /* Ensures the button is above other elements */
}

.floating-button {
  opacity: 0.8;
  background-color: #2EA349; /* Example background color */
  color: #000;
  font-size: 15px;
  font-weight: bold;
  padding: 10px 15px; /* Adjust padding as needed */
  border: none;
  cursor: pointer;
  border-radius: 5px; /* Optional: for rounded corners */
}

/* Optional: Add hover effect */
.floating-button:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .floating-button-container {
    bottom: 30px;
    right: 10px;
  }

  .floating-button {
    width: 100%;
    font-size: 15px;
    padding: 10px;
    border-radius: 5px;
  }
}
