.home-page {
  min-height: 100vh;
  width: 100%;
  text-align: center;
}
.home-page .main-view {
  width: 100%;
  display: flex;
  position: relative;
  background-image: url("../../images/homeTitleBg.jpg");
  background-position: center;
  -webkit-box-shadow: 8px 8px 41px -14px rgb(163, 163, 188);
  -moz-box-shadow: 8px 8px 41px -14px rgb(163, 163, 188);
  box-shadow: 8px 8px 41px -14px rgb(163, 163, 188);
  height: max(55vh, 800px);
}
.home-page .main-view > div, .home-page .main-view img {
  z-index: 2;
}
.home-page .main-view:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  z-index: 1;
}
@media (max-height: 900px) {
  .home-page .main-view {
    height: 90vh;
  }
}
@media screen and (max-width: 540px) {
  .home-page .main-view {
    padding: 0 5px !important;
  }
}
@media (max-width: 1920px) {
  .home-page .main-view {
    padding: 0 50px 0 150px;
  }
  .home-page .main-view .main-title {
    margin-left: 0 !important;
  }
  .home-page .main-view img {
    margin: 0 !important;
  }
}
@media (max-width: 1410px) {
  .home-page .main-view {
    padding: 0 15px;
  }
  .home-page .main-view .main-title {
    padding-bottom: 50px;
  }
  .home-page .main-view img {
    display: none;
  }
}
.home-page .main-view .main-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-grow: 2;
  padding-bottom: 5vw;
  margin: auto 0 auto 10vw;
  color: #1a1a1a;
  z-index: 20;
}
.home-page .main-view .main-title h1 {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.35rem;
  margin: 0;
  color: #B72CB8;
}
.home-page .main-view .main-title .subtitle {
  font-size: 2rem;
  opacity: 0.75;
  color: #82348a;
  font-weight: 400;
  font-style: italic;
  margin: -0.2vw 0 15px 0;
  max-width: 35em;
}
.home-page .main-view .main-title p:last-of-type {
  font-size: 1.2rem;
  opacity: 0.75;
  font-weight: 400;
  font-style: italic;
  margin: 0;
  text-align: center;
  max-width: 35em;
}
.home-page .main-view .main-title .action-buttons {
  margin-top: 100px;
  padding: 0 10px;
  display: flex;
  gap: 50px;
}
@media (max-width: 1560px) {
  .home-page .main-view .main-title .action-buttons {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
  }
}
.home-page .main-view .main-title .action-buttons button {
  padding: 15px 20px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 400px) {
  .home-page .main-view .main-title .action-buttons button:nth-child(2) {
    width: 95%;
    padding: 15px 0 !important;
  }
}
.home-page .main-view .main-title .action-buttons button:first-of-type {
  border: 2px solid #B72CB8;
  background: transparent;
  color: #B72CB8;
  transition: all 0.15s ease-in;
}
.home-page .main-view .main-title .action-buttons button:first-of-type:hover {
  color: white;
  background: #B72CB8;
  transition: all 0.15s ease-in;
}
.home-page .main-view .main-title .action-buttons button:last-of-type {
  animation: easeIn;
  animation-duration: 0.8s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  transform: scale(0);
  transition: all 0.15s ease-out;
  background: #e82cc7;
}
.home-page .main-view .main-title .action-buttons button:last-of-type:hover {
  scale: 1.1;
  transition: all 0.15s ease;
}
.home-page .main-view img {
  height: 100%;
  width: auto;
  margin-right: 10vw;
}
.home-page .intro-offer {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding: min(100px, 10vw) 10px 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #251730;
  color: #f1f1f1;
  margin-top: 25px;
}
.home-page .intro-offer .wave {
  position: absolute;
  top: -200px;
  left: -1vw;
  width: 102vw;
  height: 200px;
  background-image: url("../../svg/wave-dark.svg");
  z-index: 10;
  background-position: bottom;
  background-size: cover;
}
.home-page .intro-offer h2 {
  z-index: 2;
  margin: 0 0 50px 0;
}
.home-page .intro-offer .title-annotation {
  font-size: 1rem;
  font-style: italic;
}
.home-page .intro-offer .tiles-wrapper {
  margin: clamp(50px, 3vw, 75px) auto;
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 75px;
}
@media (max-width: 2450px) {
  .home-page .intro-offer .tiles-wrapper {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 700px) {
  .home-page .intro-offer .tiles-wrapper {
    gap: 2vw 4vw;
  }
}
.home-page .intro-offer .tiles-wrapper .tile {
  width: clamp(200px, 12vw, 250px);
  height: 100%;
  aspect-ratio: 1;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  transition: all 0.1s ease;
}
.home-page .intro-offer .tiles-wrapper .tile:hover {
  scale: 1.03;
  transition: all 0.1s ease;
  background: rgba(255, 255, 255, 0.3);
}
.home-page .intro-offer .tiles-wrapper .tile:hover .tile-icon {
  background: white;
  transition: all 0.1s ease;
}
.home-page .intro-offer .tiles-wrapper .tile .tile-icon {
  padding: 15px;
  border-radius: 50px;
  height: 80px;
  width: 80px;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1920px) {
  .home-page .intro-offer .tiles-wrapper .tile .tile-icon {
    height: 65px;
    width: 65px;
  }
}
.home-page .intro-offer .tiles-wrapper .tile .tile-icon img {
  height: 100%;
  width: 100%;
}
.home-page .intro-offer .tiles-wrapper .tile .tile-title {
  text-align: center;
  width: 100%;
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 15px;
}
.home-page .intro-offer .tiles-wrapper .tile .description {
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  text-align: center;
}
.home-page .intro-offer .tiles-wrapper .tile .tile-title, .home-page .intro-offer .tiles-wrapper .tile .description {
  cursor: default;
}
.home-page .intro-offer button {
  padding: 18px 60px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 500;
  background: #e82cc7;
  border-radius: 5px;
  -webkit-box-shadow: 8px 8px 25px -8px rgb(66, 68, 90);
  -moz-box-shadow: 8px 8px 25px -8px rgb(66, 68, 90);
  box-shadow: 8px 8px 25px -8px rgb(66, 68, 90);
  transition: all 0.15s ease-in;
}
.home-page .intro-offer button:hover {
  scale: 1.1;
  transition: all 0.15s ease;
}
.home-page .clubs-offer {
  background: #251730;
  padding: 0 25px 11vw 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f1f1f1;
}
@media screen and (max-width: 1000px) {
  .home-page .clubs-offer {
    padding-bottom: 20vw !important;
  }
}
@media screen and (max-width: 600px) {
  .home-page .clubs-offer {
    padding-bottom: 25vw !important;
  }
}
.home-page .clubs-offer h2 {
  z-index: 2;
  margin: 0 0 0 0;
}
.home-page .clubs-offer h2:after {
  display: none;
}
.home-page .clubs-offer .offer-items {
  padding: min(100px, 10vw) 0 100px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5vw;
}
.home-page .clubs-offer .offer-items .item {
  width: min(400px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  border-radius: 25px;
  cursor: pointer;
  color: #f1f1f1;
  transition: all 0.1s ease;
}
.home-page .clubs-offer .offer-items .item:hover {
  transition: all 0.1s ease;
  scale: 1.015;
}
.home-page .clubs-offer .offer-items .item:hover:after {
  backdrop-filter: blur(0);
  transition: all 0.1s ease;
  background: rgba(0, 0, 0, 0.1);
}
.home-page .clubs-offer .offer-items .item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}
.home-page .clubs-offer .offer-items .item:after {
  transition: all 0.1s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.home-page .clubs-offer .offer-items .item .offer-tile-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 5px 15px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 500;
  -webkit-box-shadow: 0 0 52px 0 rgb(0, 0, 0);
  -moz-box-shadow: 0 0 52px 0 rgb(0, 0, 0);
  box-shadow: 0 0 52px 0 rgb(0, 0, 0);
  white-space: nowrap;
}
.home-page .result-showcase {
  width: 100%;
  position: relative;
}
.home-page .result-showcase .wave {
  position: absolute;
  top: -100px;
  left: -1vw;
  width: 102vw;
  height: 200px;
  background-image: url("../../svg/wave-layered2.svg");
  background-position: center;
  background-size: cover;
}
.home-page .result-showcase .wave.inverted {
  bottom: 0;
  top: initial;
  scale: -1;
}
.home-page .result-showcase .inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f3f3f3;
  padding: 7vw 0 125px 0;
  margin-top: -100px;
  gap: 50px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .home-page .result-showcase .inner .section-title {
    margin-bottom: 25px !important;
  }
}
.home-page .result-showcase .inner .gallery-wrapper {
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2vw;
  box-sizing: border-box;
  place-items: center;
  justify-content: center;
  padding: 0 50px;
}
@media screen and (max-width: 1800px) {
  .home-page .result-showcase .inner .gallery-wrapper {
    gap: 2vw !important;
    padding: 0 5px;
  }
}
.home-page .result-showcase .inner .gallery-wrapper #gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  place-items: center;
}
@media screen and (max-width: 1700px) {
  .home-page .result-showcase .inner .gallery-wrapper #gallery {
    grid-template-columns: 1fr;
  }
}
.home-page .result-showcase .inner .gallery-wrapper .controls {
  height: clamp(45px, 2vw, 100%);
  width: clamp(45px, 2vw, 100%);
  margin: 0 auto;
  padding: 7px;
  border-radius: 50px;
  background: #201038;
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media screen and (max-width: 650px) {
  .home-page .result-showcase .inner .gallery-wrapper .controls {
    height: 42px;
    width: 42px;
  }
}
.home-page .result-showcase .inner .gallery-wrapper .controls:hover {
  scale: 1.03;
  opacity: 0.7;
  transition: all 0.1s ease;
}
.home-page .result-showcase .inner .gallery-wrapper .controls img {
  filter: invert(1);
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-drag: none;
}
.home-page .result-showcase .inner .gallery-wrapper .showcase-item {
  display: grid;
  grid-template-columns: minmax(300px, 500px) minmax(200px, 350px);
  height: min(50vh, 400px);
  gap: 30px;
  opacity: 1;
  animation: fadeIn 0.6s ease forwards;
  backdrop-filter: blur(5px);
  -webkit-box-shadow: 8px 8px 30px -10px rgb(38, 39, 51);
  -moz-box-shadow: 8px 8px 30px -10px rgb(38, 39, 51);
  box-shadow: 8px 8px 30px -10px rgb(38, 39, 51);
  border-radius: 15px;
  box-sizing: border-box;
  text-align: left !important;
}
@media screen and (max-width: 990px) {
  .home-page .result-showcase .inner .gallery-wrapper .showcase-item {
    grid-template-columns: minmax(200px, 500px);
    grid-template-rows: 1fr;
    height: auto;
    place-items: center;
    gap: 10px;
  }
  .home-page .result-showcase .inner .gallery-wrapper .showcase-item .description {
    padding: 20px !important;
  }
}
.home-page .result-showcase .inner .gallery-wrapper .showcase-item.enter {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}
.home-page .result-showcase .inner .gallery-wrapper .showcase-item .images-wrapper {
  display: flex;
  justify-content: center;
  gap: 5px;
  height: 100%;
  border-radius: 15px;
  -webkit-box-shadow: 13px 0 38px -17px rgb(52, 53, 64);
  -moz-box-shadow: 13px 0 38px -17px rgb(52, 53, 64);
  box-shadow: 13px 0 38px -17px rgb(52, 53, 64);
}
.home-page .result-showcase .inner .gallery-wrapper .showcase-item .images-wrapper .image {
  height: 100%;
  width: 50%;
  overflow: hidden;
}
.home-page .result-showcase .inner .gallery-wrapper .showcase-item .images-wrapper .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.home-page .result-showcase .inner .gallery-wrapper .showcase-item .images-wrapper .image.before {
  border-radius: 10px 0 0 10px;
}
.home-page .result-showcase .inner .gallery-wrapper .showcase-item .images-wrapper .image.after {
  border-radius: 0 15px 15px 0;
}
.home-page .result-showcase .inner .gallery-wrapper .showcase-item .description {
  max-width: 650px;
  padding: 20px 20px 20px 0;
}
.home-page .result-showcase .inner .gallery-wrapper .showcase-item .description .description-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #b959ba;
}
.home-page .result-showcase .inner .gallery-wrapper .showcase-item .description p:last-of-type {
  white-space: wrap;
  font-style: italic;
  line-height: 1.5em;
  font-size: 1rem;
}
.home-page .reviews {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: max(3vw, 75px) 0 max(4vw, 100px) 0;
  background: #f3f3f3;
  position: relative;
  gap: 50px;
  -webkit-box-shadow: 8px 8px 41px -14px rgb(163, 163, 188);
  -moz-box-shadow: 8px 8px 41px -14px rgb(163, 163, 188);
  box-shadow: 8px 8px 41px -14px rgb(163, 163, 188);
}
.home-page .reviews h2 {
  margin: 0;
}
.home-page .reviews .reviews-list {
  max-width: 100%;
  padding: 0 25px;
  margin: 25px auto 0 auto;
  gap: 15px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1100px) {
  .home-page .reviews .reviews-list {
    padding: 0 5px;
  }
  .home-page .reviews .reviews-list .review-column {
    width: fit-content;
  }
}
@media screen and (max-width: 900px) {
  .home-page .reviews .reviews-list {
    flex-direction: column;
  }
}
.home-page .reviews .reviews-list .review-column {
  width: min(400px, 100%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.home-page .reviews .reviews-list .review-column .review {
  border-radius: 20px;
  background: rgba(37, 23, 48, 0.95);
  padding: 20px;
  color: #f1f1f1;
  height: fit-content;
  text-align: left !important;
}
.home-page .reviews .reviews-list .review-column .review .review-information {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 5px 20px;
  width: fit-content;
  border-radius: 10px 10px 0 0;
}
.home-page .reviews .reviews-list .review-column .review .review-information .username {
  display: flex;
  font-size: 1.1rem;
  font-weight: 500;
  align-items: center;
  gap: 10px;
}
.home-page .reviews .reviews-list .review-column .review .review-information .username .img-wrapper {
  width: 42px;
  height: 42px;
  padding: 3px;
  border-radius: 50px;
  border: 3px solid #f1f1f1;
}
.home-page .reviews .reviews-list .review-column .review .review-information .username .img-wrapper img {
  height: 100%;
  filter: invert(1);
}
.home-page .reviews .reviews-list .review-column .review .review-information .stars {
  width: fit-content;
  color: #ffcc00;
  font-size: 1.4rem;
  border-radius: 25px;
  background: rgba(241, 241, 241, 0.1);
  padding: 3px 10px;
  line-height: 1;
  vertical-align: center;
  display: flex;
  align-items: center;
  gap: 2px;
}
.home-page .reviews .reviews-list .review-column .review .review-information .stars img {
  height: 20px;
  width: 20px;
}
.home-page .reviews .reviews-list .review-column .review .description {
  line-height: 1.5em;
  padding: 5px 15px 5px 15px;
  color: #f1f1f1;
  font-style: italic;
  text-align: left;
}
.home-page .reviews .reviews-list .review-column .review .reference {
  font-size: 0.9rem;
  font-style: italic;
  color: #e82cc7;
}
.home-page .location {
  display: flex;
  width: min(1500px, 100%);
  margin: 0 auto;
  background: #f3f3f3;
}
@media screen and (max-width: 1200px) {
  .home-page .location .contact-form {
    width: 45% !important;
  }
}
@media screen and (max-width: 900px) {
  .home-page .location {
    flex-direction: column;
    width: 100%;
  }
  .home-page .location .map {
    width: 100% !important;
    height: 400px;
    order: 2;
  }
  .home-page .location .contact-form {
    width: min(100%, 600px) !important;
  }
}
.home-page .location .map {
  width: 50%;
}
.home-page .location .map iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.home-page .location .contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 35%;
  margin: 0 auto;
}
.home-page .location .contact-form h2 {
  margin-bottom: 25px;
}

@keyframes easeIn {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=home.css.map */
