.debug {
	border-top: 1px solid red;
	width: 100%;
	opacity: 0;
}


/* Html
-------------------------------------------------- */
html,
body {
	font-size: 1rem; /* =16px */
	line-height: 1.5rem; /* =24px */
	font-family: "Onest", serif;
	scroll-behavior: smooth;
	margin: 0;
	background: #F8F2F4;
	position: relative;
}

::selection {
  background: #cd0067;
}
::-moz-selection {
  background: #cd0067;
}


/* Typography
-------------------------------------------------- */

h1 {
	font-size: 5rem;
	font-size: clamp(5rem, 4rem + 1.6666666666666667vw, 6rem);
	line-height: 1.125;
	padding: 0;
	font-weight: 600;
	letter-spacing: -6px;
	font-family: "Onest", serif;
}

h2 {
	font-size: 3rem;
	font-size: clamp(3rem, 2rem + 1.6666666666666667vw, 4rem);
	line-height: 1.15;
	color: #222;
	font-weight: bold;
	font-family: "Onest", serif;
}

h3 {
	font-size: 4.5rem;
	font-size: clamp(4.5rem, 3rem + 2.5vw, 6rem);
	line-height: 1;
	padding-bottom: 3rem;
	font-weight: bold;
	letter-spacing: -4px;
	color: #383637;
	font-family: "Onest", serif;
}

h3 small {
	font-size: clamp(1.5rem, 0rem + 2.5vw, 3rem);
	letter-spacing: -2px;
	font-family: "Onest", serif;
}

h4 {
	font-size: 1.5rem;
	font-size: clamp(1.5rem, 0rem + 2.5vw, 3rem);
	line-height: 1.25;
	padding: 1rem 0;
	color: #222;
	letter-spacing: -2px;
	font-family: "Onest", serif;
}

strong, b {
	font-weight: 600;
}

em, i {
	font-style: italic;
}

p {
	font-size: 1rem;
	font-size: clamp(1rem, 0.5rem + 0.8333333333333334vw, 1.5rem);
	line-height: 1.5;
	color: #111;
	font-weight: 400;
}

ul {
	font-size: 1em;
	line-height: 1.5;
	padding: 1rem 0;
}

li {
	position: relative;
	padding-left: 1rem;
	padding-bottom: 1rem;
	color: #333;
}


/* Layout
-------------------------------------------------- */

.mobileOnly {
	display: none !important;
}

.desktopOnly {
	display: block !important;
}

.container {
	padding: 0 8vw;
	width: 100%;
}

.btn {
	position: relative;
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	background: #FA569D;
	color: #000;
	padding: 1.5rem 3rem;
	transition: .5s;
	border-radius: 100px;
	-webkit-box-shadow: 0 2px 4px 2px #FFBDDA;
	box-shadow: 0 2px 4px 2px #FFBDDA;
	color: #fff;
	font-size: clamp(1rem, 1.5vw, 2rem);
}

.btn:hover {
	background: #ff0873;
	-webkit-box-shadow: 0 4px 4px 2px #FFBDDA;
	box-shadow: 0 4px 4px 2px #FFBDDA;
}

header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 4;
	padding: 1rem 2rem;
	overflow: hidden;
	text-align: center;
}

.logo {
	max-width: 150px;
	position: relative;
	z-index: 5;
	transition: .5s;
}

.blur {
	background: #fff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 120%;
	display: none;
}

header.fixed {
	border-bottom: 1px solid #f1dee6;
}

header.fixed .blur {
	display: block;
}

header .btn {
	font-size: 1rem;
	padding: 12px 24px;
	position: absolute;
	right: 2rem;
	top: 1rem;
	box-shadow: none;
	z-index: 5;
	display: none;
}

header.fixed .btn {
	display: block;
}

header.fixed .logo {
	max-width: 100px;
}

#hero {
	background-image: url('../images/hero.jpg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: right top;
	min-height: 80vh;
	display: flex;
	align-items: center;
	background-color: #fff;
	padding: 8rem 0 6rem 0;
}

#hero .container {
}

.freeGrid {
	display: grid;
	grid-template-columns: 31.33% 31.33% 31.33%;
	grid-gap: 2%;
	margin-top: 1rem;
	margin-bottom: .5rem;
	max-width: 720px;
}

.freeGrid li {
	background: #F8F8F8;
	border-radius: 40px;
	text-align: center;
	padding: 2rem 1rem;
	position: relative;
}

.freeGrid li:before {
	content: 'FREE';
	background: #FA569D;
	border-radius: 40px;
	color: #fff;
	padding: .5rem 1rem;
	font-weight: bold;
	position: absolute;
	top: -.5rem;
	right: -.5rem;
}

.freeGrid li strong {
	color: #FA569D;
}

.freeGrid li p {
	padding-top: 1rem;
	line-height: 1.25;
}

.freeGrid img {
	max-width: 48px;
}

#hero .wrap {
}

#hero h1 {
	color: #383637;
}

#hero h4 {
	color: #F35C9E;
	padding: 0 0 2rem 0;
}

#why {
	background: linear-gradient(to bottom,  rgba(255,224,219,1) 0%,rgba(248,242,244,0) 100%);
	padding: 8rem 0 0 0;
}

#why h3 {
	text-align: center;
}

#why img {
	border-radius: 40px;
}

#why p {
	padding: 0 4vw;
}

#why .img02 {
	margin-top: 6vw;
}

#how h3 {
	text-align: center;
	padding-top: 6vw;
}

#how .points {
	margin: 4rem 0;
}

#how .points img {
	border-radius: 40px;
}

#how .points h4 {
	font-weight: bold;
	letter-spacing: -1px;
	color: #FA569D;
	line-height: 1;
}

.bigP p {
	font-size: 1.5rem;
	font-size: clamp(1.5rem, 1rem + 0.8333333333333334vw, 2rem);
}

#real h3 {
	text-align: center;
	padding-bottom: 1rem;
}

#real .heading p {
	text-align: center;
	padding-bottom: 3rem;
}

.quotes > div {
	position: relative;
}

.q01 {
	border-radius: 40px;
}

.stars {
	max-width: 140px;
	margin: 0 auto;
}

.quotes video {
	border-radius: 40px;
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.quotes .label {
	position: absolute;
	bottom: 2.5rem;
	text-align: center;
	color: #fff;
	font-size: 1rem;
	width: calc(100% - 1rem);
	font-weight: bold;
}

.quotes .label .stars {
	max-width: 140px;
}

.quotes .wrap {
	border-radius: 40px;
	background: #efdee4;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.quote {
	padding-bottom: 1rem;
}

.quotes .wrap p {
	font-size: 1rem;
  display: block;
  width: 100%;
}

.quotes .wrap .avatar {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	font-weight: bold;
}

.quotes .wrap .avatar img {
	border-radius: 50%;
	max-width: 72px;
	margin-right: 1rem;
}

.quotes .wrap .quote {
	max-width: 42px;
}

.quotes .wrap .avatar p {
	font-weight: bold;
	font-size: .9rem;
}

.quotes .wrap .avatar img.stars {
	border-radius: 0;
	margin: 0;
	max-width: 140px;
}

.q04 video {
	border-radius: 40px;
}


.muteButton {
	position: absolute;
	width: 48px;
	height: 48px;
	top: 1rem;
	right: 1.5rem;
	background-image: url('../images/mute-off.svg');
	background-position: center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	cursor: pointer;
	z-index: 2;
}

.muteButton.active {
	background-image: url('../images/mute-on.svg');
}

.playButton {
	position: absolute;
	width: 92px;
	height: 92px;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	background-image: url('../images/play.svg');
	background-position: center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	cursor: pointer;
	z-index: 2;
	display: none;
}

.pauseButton {
	position: absolute;
	width: 48px;
	height: 48px;
	bottom: 2rem;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-image: url('../images/pause.svg');
	background-position: center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	cursor: pointer;
	z-index: 2;
}

.videoItem.active .playButton {
}

.videoItem.active .muteButton {
	display: none;
}

.videoItem {
	cursor: pointer;
	position: relative;
}

.rating {
	border-radius: 60px;
	background: #ea639d;
	color: #fff;
	text-align: center;
	padding: 1.5rem .5rem;
	font-size: 1.125rem;
}

.rating img {
	margin-left: 1rem;
	max-width: 120px;
}

#location {
	padding: 10% 0;
}

#location .items::-webkit-scrollbar {
  width: 12px;
}
 
#location .items::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
}
 
#location .items::-webkit-scrollbar-thumb {
	background-color: #000;
	border-radius: 10px;
}

#location h4 {
	padding: 0 0 2rem 0;
	font-weight: bold;
}

#location h5 {
	font-weight: bold;
	font-size: 1.25rem;
	color: #bf2966;
}

#location .items .oneCol {
	display: grid;
	grid-template-columns: 50% 50%;
}

#location .items ul {
	display: grid;
	grid-template-columns: 50% 50%;
}

#location .items .oneCol ul {
	display: block;
}

#location .items li {
	padding: 0 0 2rem 0;
}

#location .items li h4 {
	font-size: 1.5rem;
	padding: 0;
	letter-spacing: -1px;
}

#location .items li p {
	font-size: .875rem;
}

#location .items li p a {
	color: #000;
	text-decoration: none;
	border-bottom: 1.5px solid #bf2966;
}

#location .items li p a:hover {
	color: #bf2966;
}

#location .row .wrap {
	background: #fff;
	border-radius: 40px;
	padding: 3rem 2rem 3rem 3rem;
	height: 100%;
}

#location .row a {
	color: #FA569D;
}

#location .map .wrap {
	padding: 0;
	font-size: 0;
	line-height: 1;
}

#location .map iframe {
	border-radius: 40px;
}

#calendar {
}

#calendar h3 {
	text-align: center;
	padding-bottom: 0;
}

#booknow {
	position: relative;
	top: -120px;
}

#calendar h4 {
	text-align: center;
	color: #FA569D;
	font-weight: bold;
	padding-bottom: 3rem;
}

#calendar .freeGrid li {
	padding: 2rem .5rem;
}

#calendar .freeGrid li p {
	font-size: 1rem;
}

#calendar .wrap {
	background: #F1E1E5;
	padding: 3rem;
	border-radius: 40px;
}

.calendly {
	background: #fff;
	border-radius: 40px;
}

.calendly iframe {
	border-radius: 40px;
}

.calendly-inline-widget {
	border-radius: 40px;
	height: 100%;
}

footer p {
	text-align: center;
	color: #AC959F;
	padding: 4rem 0;
}

p small {
	font-size: 1rem;
}

.anim1 {
	position: relative;
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	background: #F8F2F4;
	z-index: 2;
}

.line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	background-image: url('../images/line01.svg');
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto 100%;
	z-index: 1;
}

.line1 {
	background-image: url('../images/line01.svg');
}

#hero, #why, #how, .anim2 .container, #real, #location, #calendar {
	z-index: 3;
	position: relative;
}

.anim2 {
	position: relative;
	padding: 8% 0 16% 0;
}

.line2 {
	background-image: url('../images/line02.svg');
	background-size: 100% auto;
	background-position: 0% top;
}

.mask2 {
	left: auto;
	right: 0;
	display: none;
}

.anim3 {
	position: relative;
	padding-top: 10%;
}

.line3 {
	background-image: url('../images/line03.svg');
	background-size: auto 80%;
	background-position: right 0px;
}

.mask3 {
	display: none;
}

.anim3 {
	overflow: hidden;
}

#gradient {
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(#F8F2F4 0%, #F1B8D5E5 100%);
	display: none;
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: 40px;
}

.maplibregl-popup {
	padding: 1rem;
	max-width: none !important;
}

.maplibregl-popup-content {
	padding: 1rem;
}

.maplibregl-popup-content p {
	font-size: 1rem;
}

.maplibregl-popup-content h4 {
	font-size: 1.5rem;
	padding: 0 0 .5rem 0;
	font-weight: bold;
	color: #bf2966;
	letter-spacing: normal;
}

.maplibregl-popup-close-button {
	font-size: 2rem;
	right: .5rem;
	top: .25rem;
}

#calendar .formWrap .wrap {
	background: #ea629d;
}

.flex-wrap-container {
	display: grid;
	grid-template-columns: calc(50% - 1rem) calc(50% - 1rem);
	grid-gap: 1rem 2rem;
}

.infusion-field-label-container label {
	color: #fff;
	font-size: .9rem;
	padding-bottom: 1rem;
}

.infusion-field-div-container {
	margin-bottom: .5rem;
}

.infusion-field-input-container {
	width: 100%;
}

.infusion-field-container {
	width: 100%;
}

.infusion-field-input-container input,
.infusion-field-input-container textarea {
	border-radius: 40px;
	font-size: 1rem;
	padding: .75rem .5rem;
	border: none;
	width: 100%;
	font-family: "Onest", serif;
	text-indent: .5rem;
}

.infusion-field-input-container textarea {
	resize: none;
	border-radius: 20px;
	margin-top: .5rem;
	text-indent: .5rem;
}

.locationsFields {
	margin: 1rem 0 2rem 0;
}

.locationsFields .options-container {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-gap: 0;
	margin-top: .25rem;
	border-radius: 20px;
	border: 1px solid rgba(0,0,0,.25);
}

.locationsFields .options-container .infusion-option {
	-webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
}

.locationsFields .options-container .infusion-option input {
	width: auto;
}

.locationsFields .options-container .infusion-option label {
	display: block;
	cursor: pointer;
	transition: .5s;
	color: #fff;
	padding: 1rem;
	font-weight: 600;
	text-indent: 30px;
}

.locationsFields .options-container .infusion-option label:hover {
}

.locationsFields .options-container > span label {
	border-radius: none;
	background: rgba(0,0,0,.15);
	border-right: 1px solid rgba(0,0,0,.25);
	border-bottom: 1px solid rgba(0,0,0,.25);
}

.locationsFields .options-container > span:nth-child(1) label {
	border-radius: none;
	border-top-left-radius: 20px;
	background: rgba(0,0,0,.15);
	border-right: 1px solid rgba(0,0,0,.25);
	border-bottom: 1px solid rgba(0,0,0,.25);
}

.locationsFields .options-container > span:nth-child(2) label {
	border-radius: none;
	border-top-right-radius: 20px;
	background: rgba(0,0,0,.15);
	border-bottom: 1px solid rgba(0,0,0,.25);
}

.locationsFields .options-container > span:nth-child(3) label {
	border-radius: none;
	border-bottom-left-radius: 20px;
	background: rgba(0,0,0,.15);
	border-right: 1px solid rgba(0,0,0,.25);
}

.locationsFields .options-container > span:nth-child(4) label {
	border-radius: none;
	border-bottom-right-radius: 20px;
	background: rgba(0,0,0,.15);
	border-right: 1px solid rgba(0,0,0,.25);
}

.locationsFields .options-container .infusion-option input:checked ~ label {
	background: rgba(0,0,0,.5);
}

.infusion-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 16px;
  width: 16px;
  border-radius: 100px;
  background: rgba(0, 0, 0, .25);
}

.infusion-option:hover input ~ .checkmark {
  background-image: url('../images/check.svg');
}

.infusion-option input:checked ~ .checkmark {
  background-image: url('../images/check.svg');
}

.infusion-option:after {
  content: "";
  position: absolute;
  display: none;
}

.infusion-option input:checked ~ .checkmark:after {
  display: block;
}

.infusion-option .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.infusion-submit button {
	background: #fff;
	font-weight: bold;
	border-radius: 40px;
	border: none;
	padding: 1rem 2rem;
	cursor: pointer;
	font-size: 1.25rem;
	font-family: "Onest", serif;
	transition: .5s;
}

.infusion-submit button:hover {
	box-shadow: 0 2px 4px 0 rgba(0,0,0,.5);
}