* {
  scrollbar-width: none;
}
::-webkit-scrollbar {
  display: none; /* Hide the scrollbar */
}

body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  zoom: 1;
  -webkit-user-zoom: fixed;
  width: 100%;
  background-color: #007179;
}

container {
  color: #0c340c;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  line-height: 1.4rem;
  height: max-content;
  display: flex;
  flex-direction: column;
}

p,
span {
  font-family: "Chivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.9rem;
  font-style: normal;
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-radius: 25% 40% 20% 20%; /* Creates a curved top border */
  margin-top: -4rem; /* Adjust margin to position the curve within the top section */
}

.wave-divider {
  height: 0rem;
  width: 100%;
  background-color: transparent;
  position: relative;
}

/* Create the wave effect */
.wave-divider::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: 0;
  width: 100%;
  height: 7rem;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 7"%3E%3Cpath d="M0,3.5 C25,0 75,7 100,3.5 L100,7 L0,7 Z" fill="%23000000"/%3E%3C/svg%3E')
    no-repeat;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 7"%3E%3Cpath d="M0,3.5 C20,1 50,6 80,2.5 C90,1 100,5 100,3.5 L100,7 L0,7 Z" fill="%23f1f1ef"/%3E%3C/svg%3E')
    no-repeat;

  background-size: cover;
}
.services-divider::before {
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 7"%3E%3Cpath d="M0,3.5 C20,1 50,6 80,2.5 C90,1 100,5 100,3.5 L100,7 L0,7 Z" fill="%23007179"/%3E%3C/svg%3E')
    no-repeat;
  background-size: cover;
}

.about-me-divider::before {
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 7"%3E%3Cpath d="M0,3.5 C20,1 50,6 80,2.5 C90,1 100,5 100,3.5 L100,7 L0,7 Z" fill="%23007179"/%3E%3C/svg%3E')
    no-repeat;
  background-size: cover;
}

.fitness-journey-divider::before {
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 7"%3E%3Cpath d="M0,3.5 C20,1 50,6 80,2.5 C90,1 100,5 100,3.5 L100,7 L0,7 Z" fill="%23f1f1ef"/%3E%3C/svg%3E')
    no-repeat;
  background-size: cover;
}
.membership-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 7"%3E%3Cpath d="M0,3.5 C20,1 50,6 80,2.5 C90,1 100,5 100,3.5 L100,7 L0,7 Z" fill="%23cef2ce"/%3E%3C/svg%3E')
    no-repeat;
  background-size: cover;
}

.book-divider::before {
  top: 0;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 7"%3E%3Cpath d="M0,3.5 C20,6.5 50,0.5 80,6 C90,6.5 100,2 100,3.5 L100,0 L0,0 Z" fill="%23007179"/%3E%3C/svg%3E')
    no-repeat;
  background-size: cover;
}

.testimonial-divider::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: 0;
  width: 100%;
  height: 7rem;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 7"%3E%3Cpath d="M0,3.5 C20,1 50,6 80,2.5 C90,1 100,5 100,3.5 L100,7 L0,7 Z" fill="%23f1f1ef"/%3E%3C/svg%3E')
    no-repeat;
  background-size: cover;
}

.footer-divider::before {
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 7"%3E%3Cpath d="M0,3.5 C20,1 50,6 80,2.5 C90,1 100,5 100,3.5 L100,7 L0,7 Z" fill="%23007179"/%3E%3C/svg%3E')
    no-repeat;
  background-size: cover;
}

.testimonial-header {
  color: #0c340c;
}

.logo-nav-section {
  height: 10 vh;
  background-color: rgba(0, 113, 121, 0.9);
  color: #fff;
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 25rem;
  padding-top: 0.5rem;
  position: fixed;
  z-index: 500;
}

.logo-container {
  display: flex;
  width: 15vw;
  align-items: center;
}

.logo {
  width: 11vw;
}

.logo:hover {
  cursor: pointer;
}

.nav-container {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.2rem;
  height: fit-content;
}

.nav-item:hover {
  color: #0c340c;
  cursor: pointer;
}

.nav-item-book {
  background-color: rgba(176, 161, 40, 1);
  padding: 0.8rem;
  border-radius: 10px;
}
.nav-item-book:hover {
  background-color: rgba(214, 191, 107, 1);
  color: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.6);
  transform: scale(1.05);
}

.mobile-menu-div,
.hamburger-div {
  display: none;
}

.hero-section {
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("../img/hero-horizontal.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  height: 70vh;
  padding-top: 12rem;
  padding-bottom: 15rem;
  justify-content: center;
  color: #eeeeee;
  flex-wrap: wrap;
}

.hero-section-content-container {
  max-width: 75vw;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  gap: 3rem;
}

.hero-title-container {
  display: flex;
  align-content: center;
  justify-content: center;
}
.hero-title {
  font-family: "Lobster Two", sans-serif;
  font-size: 6rem;
  line-height: 2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.hero-subtext-container {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 85vw;
}

.hero-subtext {
  font-size: 2rem;
  line-height: 4rem;
}

/* background: (
  circle,
  rgba(240, 214, 138, 1) 0%,
  rgba(214, 191, 107, 1) 50%,
  rgba(176, 161, 40, 1) 100%
);
*/

.page-button {
  padding: 0.7rem 1.5rem;
  background-color: rgba(176, 161, 40, 1);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.3rem;
  border-radius: 10px;
}

.page-button:hover {
  background-color: rgba(214, 191, 107, 1);
  cursor: pointer;
  transform: scale(1.01);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.6);
}

.hero-cta-button {
  font-size: 1.8rem;
  padding: 1rem 2rem;
}

.hero-buttons-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  margin-left: auto;
  margin-right: auto;
}

.section-titles {
  font-size: 2.5rem;
  font-family: "Gabriela", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.4rem;
}

.benefits-section {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-color: #baedba;
}

.benefits-header-container {
  margin-left: auto;
  margin-right: auto;
}

.benefits-section-content-container {
  display: flex;
  height: fit-content;
  flex-direction: column;
  max-width: 75vw;
  align-items: center;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  gap: 6rem;
  margin-top: 4rem;
}

.benefits-container {
  display: none;
  gap: 2rem;
  height: fit-content;
  align-items: center;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0; /* Invisible by default */
  transform: translateY(50px); /* Start slightly off-screen */
}

.benefits-active {
  display: flex; /* Make the active div visible */
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Slide into place */
}

.bcol1,
.bcol3 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 6rem;
  width: 16vw;
}

.benefits-img {
  max-width: 30vw;
  border-radius: 5rem;
}

.benefit-item {
  background-color: #cef2ce;
  color: #eeeeee;
  color: #0c340c;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  border-radius: 1rem;
  min-height: 15rem;
  height: fit-content;
}

.benefit-header {
  font-size: 1.4rem;
  line-height: 1.7rem;
  font-weight: bold;
}

/* Services */

.services-section {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #007179;
  color: #fff;
}

.services-section-content-container {
  display: flex;
  flex-direction: column;
  max-width: 80vw;
  align-items: center;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  gap: 6rem;
}

.services-container {
  display: flex;
  gap: 3vw;
}

.service {
  display: flex;
  flex-direction: column;
  width: 30vw;
  max-width: 30vw;
  align-items: center;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 8rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
  border: 4px solid rgba(214, 191, 107, 1);
  gap: 2rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 1);
  border-top-left-radius: 15vw; /* Half the width */
  border-top-right-radius: 15vw; /* Half the width */
}

.service-header-text {
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: underline;
}

span p,
span a,
.membership-info-text {
  font-size: 1.2rem;
  line-height: 2.2rem;
}

.service-benefit-text:hover {
  cursor: pointer;
}

.service-benefit-text a {
  font-size: 0.9rem;
}

.service-benefit-text {
  font-size: 0.9rem;
}

.fitness-journey-section {
  background-color: #f1f1ef;
  display: flex;
  flex-direction: column;
  gap: 3rem;

  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/mobility-background.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 10rem;
  padding-bottom: 15rem;
  justify-content: center;
  color: #eeeeee;
  flex-wrap: wrap;
}

.fitness-journey-section-content-container {
  display: flex;
  flex-direction: column;
  max-width: 85vw;
  align-items: center;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  gap: 4rem;
}

.fitness-journey-subheader-container {
  max-width: 70vw;
}

.fitness-journey-subheader {
  font-size: 1.1rem;
  line-height: 2rem;
}

.fitness-journey-steps-container {
  max-width: 90vw;
  height: max-content;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.fitness-journey-steps {
  background-color: rgb(0, 113, 121, 0.25);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 30vw;
  max-width: 30vw;
  border: 4px solid rgba(214, 191, 107, 1);
  gap: 2rem;
  border-top-left-radius: 15vw;
  border-top-right-radius: 15vw;
  margin-left: auto;
  margin-right: auto;
  padding-top: 8rem;
  padding-bottom: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 1);
}

.fitness-journey-step-header-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fitness-journey-step-header {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 2rem;
  text-decoration: underline;
}

.fitness-journey-step-details {
  line-height: 2.2rem;
  font-size: 1.15rem;
}

.about-me-section {
  background-color: #007179;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 10rem;
}

.about-me-section-content-container {
  display: flex;
  flex-direction: column;
  max-width: 75vw;
  align-items: center;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  gap: 6rem;
}

.about-me-container {
  display: flex;
  gap: 3rem;
}

.about-me-img {
  margin-top: 5rem;
  width: 26vw;
  border-radius: 3rem;
  border: 3px solid rgba(214, 191, 107, 1);
}

.about-me-description-container {
  width: 35vw;
  padding: 1rem;
  /*color: #5c3b77;*/
  text-justify: distribute;
}

.about-me-description p {
  font-size: 1.2rem;
  line-height: 2.2rem;
}

.book-section {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: center;
  padding-top: 16rem;
  padding-bottom: 20rem;
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5),
      rgba(255, 255, 255, 0.9)
    ),
    url(../img/pexels-yankrukov-5793898.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.book-section-content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  background-color: #007179;
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 2rem;
  border-radius: 15px;
  border: 3px solid rgba(214, 191, 107, 1);
}

.book-header-container {
  max-width: 75vw;
  margin-left: auto;
  margin-right: auto;
}

.book-header {
  line-height: 1.4rem;
}

.book-container {
  display: flex;
  width: max-content;
  max-width: 75vw;
  margin-left: auto;
  margin-right: auto;
  gap: 1rem;
  margin-top: 4rem;
  padding-left: 3rem;
  padding-right: 1rem;
}
/*
  CONTACT US FORM STYLES
*/

.errorMessages {
  font-size: 0.9rem;
  color: rgb(246, 255, 0);
}
.contact-form-title {
  background-color: #f1f1ef;
}

.form-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: bold; /* or other desired styles */
}

.contact-us-section {
  background-color: #f1f1ef;
}

.contact-middle {
  /* background-size: cover;
  background-repeat: no-repeat;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)
    ),
    url(../img/Contact-Section-Images/cottage-back-new.jpg);*/

  color: #1d3d34;
  background-color: #f1f1ef;
  display: flex;
  height: 90vh;
  padding-top: 5rem;
  justify-content: center;
}

.contact-form-div {
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  justify-self: center;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  background-color: #f1f1ef;
  width: 35vw;
  margin-left: 2rem;
  margin-top: -3rem;
  margin-right: 2rem;
  border: 1px solid #1d3d34;
  background: radial-gradient(
    circle,
    rgba(241, 241, 239, 1) 0%,
    rgba(233, 234, 216, 1) 100%
  );
}

.contact-us-title {
  background-color: #f1f1ef;
}

.contact-form-div:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

form {
  display: flex;
  flex-direction: column;
  width: max-content;
  max-width: 75vw;
  margin: 0 auto;
}

.sub-2 {
  display: flex;
  padding-right: 3rem;
}

.sub-3 {
  display: flex;
  gap: 2.1rem;
}

.sub-4 {
  display: flex;
  gap: 3rem;
}

.contact-left {
  width: 40%;
}

.contact-right {
  width: 40%;
}

label {
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
}

input,
select {
  padding: 1rem;
  border: 1px solid black;
  border-radius: 4px;
  margin-bottom: 1rem;
  width: fit-content;
  font-size: 1.1rem;
}

input:hover,
select:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#name,
#email {
  width: 85%;
}

#contact {
  width: 75%;
}

.form-button {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.04rem;
  line-height: 1.4rem;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.sub-2-2 {
  margin-top: 1rem;
}
.form-note {
  font-size: 1rem;
  line-height: 1rem;
}

.testimonial-section {
  background-color: #f1f1ef;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 10rem;
}

.testimonial-section-content-container {
  display: flex;
  flex-direction: column;
  max-width: 75vw;
  align-items: center;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  gap: 4rem;
}

.testimonial-container {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  background-color: #007179;
  color: #fff;
  padding-top: 3rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 3rem;
  border: 3px solid rgba(214, 191, 107, 1);
  display: none;
  width: 40rem;
  height: max-content;
  gap: 0;
}

.testimonial-active {
  display: flex;
}

.testimonial-progress {
  display: block;
  width: 25vw;
  margin-left: auto;
  margin-right: auto;
  background-color: #ddd;
}

.testimonial-bar {
  display: block;
  width: 5%;
  height: 5px;
  background-color: #007179;
  text-align: center;
  line-height: 5px;
  color: #007179;
}

.testimonial-disabled {
  display: none;
}

.testimonial-description-container {
  height: 15rem;
}

.testimonial-description {
  font-size: 1.2rem;
  line-height: 2rem;
  font-style: italic;
}

.testimonial-name {
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #baedba;
}

.contact-section-content-container {
  display: flex;
  flex-direction: column;
  max-width: 75vw;
  align-items: center;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  gap: 6rem;
}

.contact-items-main-container {
  display: flex;
  gap: 20rem;
}

.contact-items-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.membership-section {
  background-color: #007179;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: center;
}

.membership-section-content-container {
  display: flex;
  flex-direction: column;
  width: 71vw;
  align-items: center;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  gap: 3rem;
  padding: 2rem;
  border: 4px solid rgba(214, 191, 107, 1);
  border-radius: 20px;
}

.membership-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  width: 75vw;
}

.membership-button {
  align-self: center;
  width: fit-content;
}

.membership-header {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3rem;
  text-decoration: underline;
}
.footer {
  background-color: #007179;
  color: #fff;
  display: flex;
  margin: 0;
  padding-top: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f1f1ef;
}

.footer-section-content-container {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  gap: 3rem;
}

.footer-information {
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 20rem;
}

.footer_logo {
  height: 4rem;
  max-width: 20rem;
  cursor: pointer;
}

.footer-logo-img {
  display: flex;
  height: auto;
  max-width: 150px;
  max-height: 170px;
  margin-bottom: 2rem;
}

.footer-company-name {
  font-size: 32px;
  font-weight: 800;
}

.footer-company-slogan {
  display: flex;
  width: 85%;
  line-height: 1.5em;
}

.pic {
  width: 50rem;
  height: 35rem;
}

.footer_sitelink_logo_container {
  display: flex;
  flex-direction: column;
  margin-left: 2rem;
}

.footer_logo_container {
  margin-top: -0.5rem;
}

.footer_sitelink_container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer_sitelink_container span a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #fff;
}

.prices {
  font-weight: bold;
}
.mktPrice {
  font-weight: 400;
  font-size: 1rem;
}
.prices-striked {
  text-decoration: line-through;
  font-size: 1.1rem;
}

.address-contact-information {
  display: flex;
  margin-top: 6rem;
  flex-direction: column;
  gap: 1.5rem;
}

.address-contact-details {
  display: flex;
  gap: 1rem;
}

.address-contact-details-icon {
  display: flex;
  align-self: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.address-contact-details-text {
  display: flex;
  flex-direction: column;
  width: 25rem;
}

.address-contact-details-header {
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.address-contact-details-description {
  font-size: 1.1rem;
  line-height: 2rem;
  font-weight: 400;
  display: flex;
  color: #fff;
  text-decoration: none;
  align-self: flex-start;
  padding: 0;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  margin-top: 6rem;
}

.footer-socials-container {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.footer-socials-title {
  font-size: 1.4rem;
}
.fa {
  padding: 0.5rem;
  font-size: 1px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 0.2rem 0.2rem;
}

.fa:hover {
  opacity: 0.5;
}

.fa-facebook {
  background: white;
  color: #3b5998;
}

.fa-twitter {
  background: white;
  color: #55acee;
}

.fa-youtube {
  background: white;
  color: #bb0000;
}

.fa-instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background: -webkit-radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.fa-telegram {
  background: #24a1de;
  color: white;
}

.fa-whatsapp {
  background: #25d366;
  color: white;
}

.whatsapp-easy {
  position: fixed;
  bottom: 45px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000; /* Ensures it appears above most elements */
  animation: bounce 3s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.whatsapp-easy:hover {
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transform: scale(1.1); /* Zoom in slightly when hovered */
}

.offer-footer {
  background-color: #007179;
  background-color: rgba(176, 161, 40, 1);
  color: #fff;
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  z-index: 500;
  position: fixed;
  bottom: 0;
  gap: 10px;
  padding: 5px;
}

.offer-footer-link:hover {
  cursor: pointer;
}

.offer-footer-text {
  font-weight: bold;
  font-size: 1.4rem;
}
.offer-footer-link span {
  font-weight: bold;
  color: #fdf497;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: underline;
}

copyright {
  display: flex;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #007179;
  font-size: 0.8rem;
  font-weight: 500;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  color: #f1f1ef;
}

copyright span {
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.2rem;
  padding-bottom: 0.4rem;
  font-size: 0.8rem;
  color: #eeeeee;
}

/*
??????

*/

.review-text {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #444;
}

.review-name {
  font-weight: bold;
  color: #222;
}

.stars {
  color: #f4b400;
  font-size: 0.9rem;
}

.google-tag {
  text-align: center;
  font-size: 1.05rem;
  font-weight: bold;
  color: black;
}

.google-tag a {
  color: #1a73e8;
  text-decoration: none;
}

.google-tag a:hover {
  text-decoration: underline;
}
