@import url("https://fonts.googleapis.com/css2?family=Baskervville&family=Nunito+Sans:wght@400;700&display=swap");
@font-face {
  font-family: "Avenir Light";
  src: url("../assets/fonts/avenir-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

.services__header {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-top: 80px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #f8f6f4;
}
.services__header h1 {
  font-family: Baskervville, serif;
  font-size: 80px;
  line-height: 1.3;
  font-weight: 400;
  color: #725a58;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 0;
}
.services__header .header-divider {
  width: 200px;
  height: 1px;
  background-color: #725a58;
  margin-top: 24px;
  margin-bottom: 24px;
  border: none;
}
.services__header p {
  font-family: "Avenir Light", "Nunito Sans", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  color: #000000;
  max-width: 356px;
  margin: 0 auto;
  word-break: keep-all;
}

.services__main {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #fae9e7;
  padding: 120px 0;
}

.services__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 0 40px;
}

.service-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}
.service-item__image {
  flex: 0 0 320px;
  width: 320px;
  height: 380px;
  overflow: hidden;
}
.service-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
}
.service-item__content h3 {
  font-family: Baskervville, serif;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 400;
  color: #725a58;
  margin-top: 0;
  margin-bottom: 4px;
}
.service-item__content .service-item__info {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.service-item__content .service-item__info span {
  font-family: "Avenir Light", "Nunito Sans", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 300;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-item__content .service-item__info span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.service-item__content .service-item__info span.price::before {
  background-image: url("../assets/icons/services/clock-hour-d.svg");
}
.service-item__content .service-item__info span.duration::before {
  background-image: url("../assets/icons/services/clock-hour.svg");
}
.service-item__content .service-item__sub-desc {
  font-family: Baskervville, serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  color: #000000;
  margin-top: 24px;
  margin-bottom: 6px;
}
.service-item__content p {
  font-family: "Avenir Light", "Nunito Sans", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 300;
  color: #000000;
  margin-bottom: 20px;
  width: 664px;
  max-width: 100%;
  word-break: keep-all;
  white-space: normal;
}
.service-item__content button {
  width: 171px;
  height: 62px;
  padding: 0;
  border: 1px solid #5e4a49;
  background: transparent;
  font-family: Baskervville, serif;
  font-size: 20px;
  line-height: 1.5;
  color: #5e4a49;
  cursor: pointer;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.service-item__content button:hover {
  background-color: #b99692;
  color: #fff;
  border-color: #b99692;
}
.service-item .message-box {
  position: absolute;
  right: -25px;
  top: 40px;
  width: 50px;
  height: 50px;
  background-color: #b99692;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.service-item .message-box img {
  width: 24px;
  height: auto;
}

.mobile-br {
  display: none;
}

.party-chat-widget {
  position: fixed;
  bottom: 50px;
  right: 0;
  margin-bottom: 48px;
  width: 48px;
  z-index: 2;
}
.party-chat-widget .chat-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.party-chat-widget .chat-trigger img {
  width: 48px;
  height: 48px;
}
.party-chat-widget .chat-trigger:hover {
  opacity: 0.9;
}
.party-chat-widget .chat-trigger.hidden img {
  opacity: 0;
  pointer-events: none;
}
.party-chat-widget .chat-options {
  display: none;
  flex-direction: column;
}
.party-chat-widget .chat-options.is-open {
  display: flex;
}
.party-chat-widget .chat-options .option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.party-chat-widget .chat-options .option-btn img {
  width: 48px;
  height: 48px;
}
.party-chat-widget .chat-options .option-btn:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .services {
    overflow-x: hidden;
    width: 100%;
  }
  .services__header {
    width: 100% !important;
    position: static !important;
    margin: 0 !important;
    left: auto !important;
    right: auto !important;
    padding: 48px 20px 40px !important;
    background-color: #f8f6f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box !important;
  }
  .services__header h1 {
    font-size: 32px;
    letter-spacing: 0.1em;
    margin: 0;
  }
  .services__header .header-divider {
    width: 120px;
    margin: 16px auto;
  }
  .services__header p {
    font-size: 16px;
    max-width: 327px;
    margin: 0 auto;
    line-height: 1.5;
  }
  .services__main {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #fae9e7;
    overflow: hidden;
  }
  .services__container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
  }
  .service-item {
    display: flex;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  .service-item .message-box {
    display: none !important;
  }
  .service-item__image {
    width: 100% !important;
    aspect-ratio: 390/391 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .service-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .service-item__content {
    width: 100% !important;
    padding: 24px 20px 32px !important;
    box-sizing: border-box;
  }
  .service-item__content h3 {
    font-size: 32px;
    margin-bottom: 0px;
  }
  .service-item__content .service-item__info {
    display: flex;
    flex-direction: column !important;
    gap: 8px;
    margin-bottom: 24px;
  }
  .service-item__content .service-item__info span {
    font-size: 16px;
    justify-content: flex-start;
  }
  .service-item__content .service-item__sub-desc {
    font-size: 24px;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 0px;
    max-width: none !important;
    word-break: keep-all;
  }
  .service-item__content .service-item__sub-desc .mobile-br {
    display: block !important;
  }
  .service-item__content p {
    font-family: "Avenir Light", "Nunito Sans", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin-top: 16px;
    margin-bottom: 24px !important;
    max-width: 322px !important;
    word-break: keep-all;
  }
  .service-item__content p br {
    display: none !important;
  }
  .service-item__content button {
    width: 100% !important;
    height: 62px;
  }
}/*# sourceMappingURL=services.css.map */