@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
.highlight-main-color {
  color: #04a64a;
}

.rounded-img {
  border-radius: 8px;
}

.italic {
  font-style: italic;
}

body {
  background: linear-gradient(145deg, #000000, #0e0e0e, #1a1a1a, #2a2a2a, #3b3b3b);
  background-size: cover;
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
}
body .logo-lighter {
  font-weight: 200;
  font-style: italic;
}
body .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  background-color: #036a2f;
}
@media screen and (max-width: 700px) {
  body .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
body .logo img {
  width: 20%;
  height: 20%;
  max-height: 10em;
  max-width: 10em;
}
@media screen and (max-width: 700px) {
  body .logo img {
    width: 96px;
    height: 96px;
  }
}
body .logo .header-title {
  text-align: center;
  font-size: 2.75em;
  color: white;
  font-weight: bolder;
  line-height: 1em;
}
body .header {
  padding: 32px;
  padding-top: 40px;
  padding-bottom: 56px;
  background-image: url("/img/gym.jpg");
  background-position: center;
  background-size: cover;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .header .text-area .title {
  color: white;
  font-size: 2em;
  font-weight: bolder;
  text-shadow: #000000 1px 0 10px;
  line-height: 1.2em;
}
body .header .text-area .subtitle {
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  text-shadow: #000000 1px 0 10px;
}
body .header .text-area .button {
  background-color: #04a64a;
  color: white;
  padding: 15px 30px;
  font-size: 1.5em;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
body .header .text-area .button:hover {
  background-color: #038d3a;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
body .header .text-area .button:active {
  background-color: #026e2d;
  transform: translateY(0);
}
body .header .text-area .button:focus {
  outline: none;
}
@media screen and (min-width: 728px) {
  body .header {
    min-height: 30em;
    display: flex;
    align-items: center;
  }
}
body .text-breaker {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 2em;
  padding: 12px 16px;
}
@media screen and (max-width: 900px) {
  body .text-breaker {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (min-width: 901px) {
  body .text-breaker {
    padding: 32px 48px;
  }
}
body .text-breaker .right-img {
  max-width: 20em;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s;
}
body .text-breaker .left-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
body .text-breaker .left-text .title {
  text-align: start;
  font-size: 2em;
  color: #04a64a;
  font-weight: bolder;
  line-height: 1em;
}
body .text-breaker .left-text .content {
  font-size: 1em;
  color: white;
  padding-top: 1em;
}
body .content-section {
  margin-top: 1.2em;
}
body .content-section .card-area {
  gap: 0.3em;
}
body .content-section .card-area .card {
  height: 400px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}
body .content-section .card-area .card .card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s;
}
body .content-section .card-area .card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  line-height: 1em;
}
body .content-section .card-area .card .overlay .icon {
  font-size: 3em;
}
body .content-section .card-area .card .overlay .title {
  font-size: 2em;
  font-weight: bolder;
  line-height: 1.2em;
  text-align: center;
  width: 75%;
}
body .content-section .card-area .card .overlay .subtitle {
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  margin-top: -2em;
}
@media (min-width: 728px) {
  body .content-section .card-area {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1em;
  }
  body .content-section .card-area .card {
    flex: 1;
    margin: 0 10px;
    max-width: calc(33.33% - 20px);
  }
  body .content-section .card-area .card-image {
    transition: transform 0.5s;
  }
  body .content-section .card-area:hover .card-image {
    transform: scale(1.1);
  }
  body .content-section .card-area .overlay {
    padding: 20px;
  }
  body .content-section .card-area .overlay .subtitle {
    opacity: 0;
    transition: opacity 0.5s;
  }
  body .content-section .card-area .overlay:hover .subtitle {
    opacity: 1;
  }
}
body .content-section .review-area {
  background-color: #121111;
  padding: 20px;
  padding-top: 48px;
  padding-bottom: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body .content-section .review-area .review-area-title {
  text-align: center;
  font-size: 3.5rem;
  color: #04a64a;
  font-weight: bolder;
}
body .content-section .review-area .reviews-list-wrapper {
  padding-top: 12px;
  padding-bottom: 24px;
}
body .content-section .review-area .reviews-list-wrapper .reviews-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 1100px) {
  body .content-section .review-area .reviews-list-wrapper .reviews-list {
    grid-template-columns: 1fr;
  }
}
body .content-section .review-area .reviews-list-wrapper .reviews-list .review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 450px;
  height: auto;
  padding: 20px;
  background: linear-gradient(145deg, #000000, #0e0e0e, #1a1a1a, #2a2a2a, #3b3b3b);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin: 10px 0px;
}
body .content-section .review-area .reviews-list-wrapper .reviews-list .review-card .review-header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #ffffff;
  font-weight: bold;
}
body .content-section .review-area .reviews-list-wrapper .reviews-list .review-card .review-header .name-group {
  display: flex;
  align-items: center;
}
body .content-section .review-area .reviews-list-wrapper .reviews-list .review-card .review-header .name-group .initials {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-right: 12px;
  border-radius: 50%;
  background: #d56a6a;
}
body .content-section .review-area .reviews-list-wrapper .reviews-list .review-card .review-header .rating i {
  color: #f3d779;
}
body .content-section .review-area .reviews-list-wrapper .reviews-list .review-card .review-description {
  color: #ffffff;
  font-weight: 400;
  padding: 12px 45px;
}
body .content-section .review-area .reviews-list-wrapper .reviews-list .review-card .review-details {
  display: flex;
  justify-content: space-between;
  margin: 0px 45px;
  align-items: center;
  color: #8c8aa7;
}
body .content-section .area-googlemap {
  width: 100%;
}
body .footer-area {
  min-height: auto;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  padding: 60px;
}
body .footer-area .footer-social {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: white;
}
body .footer-area .footer-social .footer-social-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 12px;
}
body .footer-area .footer-social .footer-social-via {
  font-size: 1em;
  margin-top: -8px;
  margin-bottom: 10px;
}
body .footer-area .footer-copyright {
  color: white;
  margin-top: 10px;
}

a {
  color: #04a64a;
  text-decoration: none;
}

a.open-map-link {
  padding: 32px;
  width: 100vw;
  height: 32px;
  font-size: 16px;
  text-align: center;
}

#gmap {
  width: 100%;
  height: 512px;
}/*# sourceMappingURL=app.css.map */