@charset "UTF-8";

:root {
	/*SECTIONS*/
	--default-section-margin: 100px;
	--default-section-mega-margin: 160px;
	/*----------*/
	/*COLORS*/
	--white: #ffffff;
	--black: #000000;
	--fuchsia: #C326BF;
	--purple: #482682;
	--sky-blue: #EEFAF6;
	--light-green-blue: #DEF5ED;
	--blue-green: #F3FBF9;
	--mint: #B5D6CB;
	/*-----------*/
	/*TYPOGRAPHY*/
	--primary-font: "Be Vietnam Pro", Arial, sans-serif;
	--secondary-font: "Syne", Arial, sans-serif;
	/*------------*/
	/*CONTAINERS*/
	--container-max-width: 1800px;
	--container-max-width-narrow: 1440px;
	--container-max-width-narrower: 1050px;

	--container-offset: 60px;
	--container-width: calc(100% - var(--container-offset) * 2);
	--container-width-narrow: 85%;
	--container-width-narrower: 55%;
	/*------------*/
	/*Break Points*/
	--breakpoint-tablet-landscape: 1100px;
	--breakpoint-tablet-portrait: 810px;
	--breakpoint-mobile: 600px;
}

/*----------DEFAULT------------*/
html {
	scroll-behavior: smooth;
	font-size: 24px;
}

:target:before {
	content: "";
	display: block;
	height: 80px;
	margin: -80px 0 0;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
body {
	margin: 0;
	font-size: 0.6rem;
	font-family: var(--primary-font), serif;
	font-weight: 400;
	color: #4f4f4f;
	background-color: #ffffff;
	/* --- overflow-x: hidden; --- */
}

textarea, input[type=text], button, input[type=submit] {
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	/* Add the standard property 'appearance' */
	border-radius: 0;
}

.gfield--type-submit input[type=submit] {
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 200 !important;
    line-height: normal !important;
}

a, a:focus, a:active {
	outline: 0 none !important;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container {
	max-width: var(--container-max-width);
	margin-left: auto;
	margin-right: auto;
	width: var(--container-width);
	position: relative;
}

.container.container-grow {
	max-width: none;
}

.container.narrow {
	max-width: var(--container-max-width-narrow);
	width: var(--container-width-narrow);
}

.container.narrower {
	max-width: var(--container-max-width-narrower);
	width: var(--container-width-narrower);
}

.tablet_portrait, .tablet_landscape, .mobile {
	display: none;
}

.desktop {
	display: block;
}

.sticky {
	position: sticky;
	z-index: 999;
	top: 0;
}

.flex {
	display: flex;
}

.flex.row {
	flex-direction: row;
}

.flex.align-center {
	align-items: center;
}

.flex.justify-center {
	justify-content: center;
}

.flex.justify-between {
	justify-content: space-between;
}

.flex.justify-around {
	justify-content: space-around;
}

.flex.align-end {
	align-items: flex-end;
}

.flex.align-start {
	align-items: flex-start;
}

.flex-grow {
	flex-grow: 1;
}

.flex.reverse-row {
	flex-direction: row-reverse;
}

.flex.gap-5 {
	gap: 0.5rem;
}

.flex.gap-10 {
	gap: .7rem;
}

.flex.gap-20 {
	gap: 1rem;
}

.flex.gap-large {
	gap: 10dvw;
}

.flex.column {
	flex-direction: column;
}

.text-left {
	text-align: left;
}

.text-justify {
	text-align: justify;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.aligncenter {
    margin-left: auto;
    margin-right: auto;
	display: block;
}

.section, section {
	margin: var(--default-section-margin) 0;
}

.section.no-bottom, section.no-bottom, .no-bottom {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.section.mega, section.mega {
	margin: var(--default-section-mega-margin) 0;
}

.section.mega-top, section.mega-top {
	margin-top: var(--default-section-mega-margin);
}

.section.mega-bottom, section.mega-bottom {
	margin-bottom: var(--default-section-mega-margin);
}

.section.no-top, section.no-top, .no-top {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.top-margin {
	margin-top: var(--default-section-margin);
}

.bottom-margin {
	margin-bottom: var(--default-section-margin);
}

section.margin_to_padded, .margin_to_padded {
	margin: 0 !important;
	padding: var(--default-section-margin) 0;
}

section.margin_to_padded.mega, .margin_to_padded.mega {
	padding: var(--default-section-mega-margin) 0;
}

.section.margin_to_padded.mega-top, section.margin_to_padded.mega-top {
	padding-top: var(--default-section-mega-margin);
}

.section.margin_to_padded.mega-bottom, section.margin_to_padded.mega-bottom {
	padding-bottom: var(--default-section-mega-margin);
}

.cover-image-container{
	position: relative;
	overflow: hidden;
}

.cover-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

/* ---- buttons ---- */

/* --- solid button ---- */
.button-container {
	margin: 0.84rem 0;
}

.bigbutton {
	margin-right: 0.42em;
}
.bigbutton:last-child {
	margin-right: 0;
}

.flex.column .bigbutton {
	margin-right: 0;
}

.bigbutton.solid, .bigbutton.outline {
	--fill-color: var(--black);
	--foreground-color: var(--white);

	position: relative;
	border-radius: 40px;
	background-color: var(--fill-color);
	border: 1px solid var(--fill-color);
	color: var(--foreground-color);
	font-family: var(--primary-font), sans-serif;
	font-weight: 300;
	padding: .6em 1.5em;
	font-size: .9rem;
	/* text-transform: uppercase; */
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	display: inline-block;
}

.text-button {
	--foreground-color: inherit;
	--foreground-hover-color: inherit;
	position: relative;
	font-size: 0.9rem;
	font-weight: 400;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	color: var(--foreground-color);
	text-decoration: underline;
	text-decoration-color: transparent;
}

.text-button:hover {
	text-decoration-color: var(--foreground-hover-color);
	color: var(--foreground-hover-color);
}

.text-button.purple {
	--foreground-color: var(--purple);
	--foreground-hover-color: var(--fuchsia);
}


.bigbutton.solid.arrow, .text-button.arrow {
	padding-right: 2.76em;
	position: relative;
}

.bigbutton.solid.arrow::after, .text-button.arrow::after {
	/*font-family: 'Font Awesome 5 Free', sans-serif;
	font-weight: 600;
	content: "\f178";*/
    
        font-family: 'Material Icons';
  content: "east";
  -webkit-font-feature-settings: 'east';
    
    display: inline-block;
    width: 20px;
    height: 20px;
    
	position: absolute;
	right: 25px;
	top: 50%;
	line-height: 0;

	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.text-button.arrow::after {
	top: 55%;
	right: 9%;
}

.text-button.purple.arrow::after {
	color: var(--foreground-hover-color);
}

.bigbutton.solid.arrow:hover::after, .bigbutton.solid.arrow:active::after {
	right: 4%;
}

.text-button.arrow:hover::after, .text-button.arrow:active::after {
	right: 5%;
}

.text-button.purple.arrow:hover::after, .text-button.purple.arrow:active::after {
	color: var(--foreground-color);
}

.bigbutton.solid.mini, .bigbutton.outline.mini{
	letter-spacing: 0.1em;
	font-weight: 400;
	border-radius: 50px;
	padding: .5em 1.17em;
	font-size: 0.5rem;
    text-transform: uppercase;
}

.bigbutton.solid.mini.menu-item, .bigbutton.outline.mini.menu-item {
	padding: 0;
    border: 0;
}

.bigbutton.solid.mini.menu-item a, .bigbutton.outline.mini.menu-item a{
	padding: .5em 1.17em;
   border: 1px solid var(--fill-color);
    border-radius: 50px;
}



.text-button.mini {
	font-size: 0.6rem;
}

.bigbutton.solid:hover {
	--fill-color: color-mix(in srgb, var(--black) ,var(--white) 30%);
	text-decoration: none;
}

.bigbutton.outline {
	--fill-color: var(--black);
	--foreground-color: var(--fill-color);
	background-color: transparent;
}

.bigbutton.outline:hover {
	--fill-color: var(--fuchsia);
	text-decoration: none;
}

.bigbutton.solid.purple {
	--fill-color: var(--purple);
	--foreground-color: var(--white);
}

.bigbutton.solid.purple.menu-item {
    padding: 0;
}

.bigbutton.solid.purple.menu-item a {
    padding: .5em 1.17em !important;
	background-color: var(--purple);
	--foreground-color: var(--white);
    
            -webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.bigbutton.solid.purple.menu-item a:hover {
	background-color:var(--fuchsia);
}

.bigbutton.outline.purple {
	--fill-color: var(--purple);
}

.bigbutton.outline.white{
	--fill-color: var(--white);
}

.bigbutton.outline.white:hover{
	--fill-color: var(--fuchsia);
}

.bigbutton.solid.purple:hover, .bigbutton.outline.purple:hover {
	--fill-color: var(--fuchsia);
}

.bigbutton.solid.fuchsia {
	--fill-color: var(--fuchsia);
	--foreground-color: var(--white);
}

.bigbutton.solid.fuchsia:hover {
	--fill-color: color-mix(in srgb, var(--fuchsia) ,var(--white) 15%);
}

.bigbutton.solid.mini.fuchsia:hover {
	--fill-color: var(--light-green-blue);
	--foreground-color: var(--purple);
}


/* ---- end buttons ----- */

h1 {
	font-family: var(--secondary-font), sans-serif;
	font-weight: 500;
	font-size: 2.1rem;
	line-height: 1.2em;
	margin: 0;
}

h2 {
	font-family: var(--secondary-font), sans-serif;
	font-weight: 400;
	font-size: 2.5rem;
	margin-top: 0;
	line-height: 1em;
}

h3 {
	font-family: var(--primary-font), sans-serif;
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.33em;
	margin-top: 0;
	margin-bottom: 0;
}

h4 {
	font-family: var(--secondary-font), sans-serif;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.67em;
	margin-top: 0;
	margin-bottom: 1em;
}

h5 {
	font-family: var(--primary-font), sans-serif;
	font-weight: 500;
	font-size: 1.04rem;
	margin: 0;
	line-height: 1.2em;
}

h6 {
	font-family: var(--secondary-font), sans-serif;
	font-weight: 200;
	font-size: 1rem;
	margin-top: 0;
	line-height: 2.5em;
}

p {
	font-family: var(--primary-font), sans-serif;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.375em;
	margin: 1.5em 0;
}

.transition {
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

/*---------END DEFAULT-----------*/

/*PAGE HEADER*/

.page-header .infinite-scroll {
	position: relative;
	background-color: var(--fuchsia);
	width: 100%;
	padding-top: 3.5em;
	font-size: 0.58rem;
	display: block;
}

.page-header .marquee {
	padding: 1em 0;
	color: var(--white);
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
	width: 100%;
	right: 0;
	top: 0;
	font-size: 0.58rem;
}

.page-header .marquee span {
	opacity: 0;
	text-transform: uppercase;
	display: inline-block;
	margin-inline: 0;
	padding-inline: 0;
	animation: marquee 80s linear infinite;
    animation-delay: -15s;
    letter-spacing: 1.2px;
}

.page-header .marquee .splitter {
    padding: 0 10px;
    display: inline-block;    
}

.page-header .marquee2{
	background-color: transparent;
}

.page-header .marquee2 span {
	animation-delay: 25s;
}

.header-menu {
	background-color: var(--white);
	-webkit-box-shadow: 0 7px 7px -6px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 7px 7px -6px rgba(0,0,0,0.3);
	box-shadow: 0 7px 7px -6px rgba(0,0,0,0.3);
}

.header-menu .menu-container {
	padding: .8rem 0;
	color: var(--fuchsia);
}

.header-menu .menu-container .logo {
	position: absolute;
	left: calc(50% - 60px);
	top: calc(50% - 25px);
	line-height: 0;
}

.header-menu .menu-container .header-acts ul.menu {
	display: flex;
	gap: 10px;
}

.header-menu .menu-container .header-acts ul.menu a:hover {
	text-decoration: none;
}

.header-menu .menu-container .main-menu ul.menu, .modal-drawer .drawer-content .drawer-header ul.menu {
	display: flex;
	font-size: .5rem;
	align-content: center;
	list-style: none;
	gap: 1rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--purple);
	padding: 0;
	margin: 0;
}

.header-menu .menu-container .main-menu ul.menu .menu-item.drawer-toggle::after, .modal-drawer .drawer-content .drawer-header ul.menu .menu-item.drawer-toggle::after {
	color: var(--fuchsia);
	content: '+';
	margin-left: .4em;
}

.modal-drawer .drawer-content .drawer-header ul.menu .menu-item.drawer-toggle.active::after {
	content: '-';
}




@keyframes marquee {
	0% {
		opacity: 1;
		transform: translate(100%, 0);
	}
	100% {
		opacity: 1;
		transform: translate(-100%, 0);
	}
}
/*--------------------------------------------*/

/* --- slick dots ---- */

.slick-dotted.slick-slider {
	margin-bottom: 0;
}

.slick-lines .slick-dots
{
	--slick-lines-color: var(--purple);
	--slick-lines-color-hover: var(--fuchsia);
	--slick-lines-color-active: var(--slick-lines-color-hover);
	--slick-lines-width: 5%;
	--slick-lines-height: 2px;
	--slick-lines-alignment: left;
	--slick-lines-bottom: -12.5%;

	position: absolute;
	bottom: var(--slick-lines-bottom);
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	z-index: 200;
	list-style: none;

	text-align: var(--slick-lines-alignment);
}

.slick-lines.slick-lines-center .slick-dots
{
	--slick-lines-alignment: center;
}

.slick-lines.slick-lines-dark .slick-dots
{
	--slick-lines-color: var(--white);
	--slick-lines-color-hover: var(--fuchsia);
}

.slick-lines.slick-lines-light .slick-dots
{
	--slick-lines-color: var(--mint);
	--slick-lines-color-hover: var(--purple);
}

.slick-lines .slick-dots li
{
	position: relative;

	display: inline-block;

	width: var(--slick-lines-width);

	height: 2px;
	margin: 0 10px;
	padding: 0;

	cursor: pointer;
}
.slick-lines .slick-dots li button
{
	font-size: 0;
	line-height: 0;

	display: block;

	width: 100%;
	height: 2px;
	padding: 10px;

	cursor: pointer;

	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
	border-top: var(--slick-lines-height) solid var(--slick-lines-color);

	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}


.slick-lines .slick-dots li button:hover
{
	outline: none;
	border-top-color: var(--slick-lines-color-hover);
}
.slick-lines .slick-dots li button:hover:before,
.slick-lines .slick-dots li button:focus:before
{
	opacity: 1;
}
.slick-lines .slick-dots li button:before
{

	font-size: 8px;
	line-height: 8px;

	position: absolute;
	top: 0;
	left: 0;

	width:8px;
	height: 8px;

	text-align: center;

	opacity: 1;
	color: transparent !important;
	border: 2px solid rgba(255,255,255, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-lines .slick-dots li.slick-active button
{
	opacity: 1;
	border-top: 2px solid var(--slick-lines-color-active);
}

/* --- end slick dots */


/*HERO SLIDER*/

.hero-slider-section .hero-slider-container {
	position: relative;
	min-height: 75dvh;
	width: 100%;
	display: flex;

	background-color: var(--black);
}

.hero-slider-section .hero-slider-container .hero-slider {
	width: 100%;
	flex: 1;
}

.hero-slider-section .hero-slider-container .hero-slider .slick-list {
	height: 100%;
}

.hero-slider-section .hero-slider-container .hero-slider .slick-list .slick-track {
	height: 100%;
}

.hero-slider-section .hero-slider-container .hero-slider .hero-slide, .slide {
	width: 100%;
	height: 100%;
	position: relative;
	align-content: center;
}

.hero-slider-section .hero-slider-container .hero-slider .hero-slide .slide-image, .slide .slide-image {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-image: 1 fill linear-gradient(90deg, rgba(72,38,130,0.9) 10%, rgba(0,212,255,0) 70%);
}

.hero-slider-section .hero-slider-container .hero-slider .hero-slide .slide-content, .slide .slide-content {
	z-index: 1;
	position: relative;
	color: var(--white);
	margin: 10% var(--container-offset);
}

.hero-slider-section .hero-slider-container .hero-slider .hero-slide .slide-content .slide-text, .slide .slide-content .slide-text {
	max-width: 30%;
	margin-bottom: 3rem;
}

.hero-slider-section .hero-slider-container .hero-slider .hero-slide .slide-content .slide-text h3, .slide .slide-content .slide-text h3 {
	font-family: var(--secondary-font), sans-serif;
	font-weight: 500;
	font-size: 3.75rem;
	line-height: 1.12em;
	margin-top: 0;
	margin-bottom: .15em;
}

.hero-slider-section .hero-slider-container .hero-slider .hero-slide .slide-content .slide-text p, .slide .slide-content .slide-text p {
	font-size: 0.84rem;
	font-weight: 300;
	line-height: 1.3em;
	font-family: var(--primary-font), sans-serif;
}

.hero-slider-section .hero-slider-container .hero-slider .slick-dots {
	bottom: 10%;
	text-align: left;
	left: var(--container-offset);
	width: auto;
}

.hero-slider-section .hero-slider-container .hero-slider .slick-dots li , .hero-slider-section .hero-slider-container .hero-slider .slick-dots li button {
	width: fit-content;
	height: fit-content;
}

.hero-slider-section .hero-slider-container .hero-slider .slick-dots li {
	margin: 0 0.22rem;
}

.hero-slider-section .hero-slider-container .hero-slider .slick-dots li button {
	padding: 0.21rem;
}


.hero-slider-section .hero-slider-container .hero-slider .slick-dots li button::before {
	opacity: 1;
	font-size: 0.42rem;
	background-color: transparent;
	content: '';
	width: 1em;
	height: 1em;
	border-radius: 50%;
	line-height: 0;
	border: 1px solid var(--fuchsia);

	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.hero-slider-section .hero-slider-container .hero-slider .slick-dots li.slick-active button::before {
	opacity: 1;
	background-color: var(--fuchsia);
}

/*------------*/

/*MAKE TIME FOR YOU SECTION */

.make-time-section {
	background-color: var(--white);
	color: var(--fuchsia);
	position: relative;
}

.make-time-section img {
	width: 45%;
}

.make-time-section img.arrow {
	margin: -15% 0;
}

/*--------------------------*/


/*EXPLORE OUR FACILITIES SECTION*/

.explore-facilities-section, .what-we-offer-section {
	background-color: var(--purple);
}

.explore-facilities-section .facility-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.92rem;
}

.explore-facilities-section .facility-card-grid .facility-card, .what-we-offer-section .what-we-offer-card-grid .what-we-offer-card {
	background-color: var(--black);
	border-radius: 20px;
	color: var(--white);
	overflow: hidden;

	transition: .2s ease-in-out all;
}

.explore-facilities-section .facility-card-grid .facility-card{
	padding-top: 75%;
}

.explore-facilities-section .facility-card-grid .facility-card .cover-image, .what-we-offer-section .what-we-offer-card-grid .what-we-offer-card .cover-image {
	border-image: 1 fill linear-gradient(180deg, rgba(195,38,191,0.6880953064819677) 0%, rgba(0,212,255,0) 50%);
	transition-duration: .3s;
}

.explore-facilities-section .facility-card-grid .facility-card:hover .cover-image {
	scale: 1.1;
}

.explore-facilities-section .facility-card-grid .facility-card h3, .what-we-offer-section .what-we-offer-card-grid .what-we-offer-card h3 {
	position: absolute;
	top: 0.572em;
	left: 0.572em;
	font-size: 1.17rem;
	font-weight: 400;
}

.explore-facilities-section .facility-card-grid .facility-card .facility-card-icon {
	position: absolute;
	bottom: 0.572em;
	right: 0.572em;
	font-size: 1.17rem;
	width: 60px;
	height: auto;
}

.explore-facilities-section .facility-card-grid .facility-card .bigbutton {
	position: absolute;
	bottom: -3.5em;
	left: 2.75em;
	transition-duration: .4s;
}

.explore-facilities-section .facility-card-grid .facility-card:hover .bigbutton {
	bottom: 3.5em;
}

.explore-facilities-section .explore-facilities-text {
	color: var(--white);
}

.explore-facilities-section .explore-facilities-text h3 {
	font-family: var(--secondary-font), sans-serif;
	font-weight: 400;
	font-size: 2.083rem;
	line-height: 1.2em;
}

.explore-facilities-section .explore-facilities-text p {
	max-width: 70%;
	font-weight: 300;
	font-size:  0.84rem;
	line-height: 1.25em;
}


/*CTA CARDS SECTION*/

.cta-cards-section h4{
	color: var(--purple);
	text-align: center;
}

.cta-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	gap: 1.875rem;
}

.cta-cards-grid .cta-card {
	padding: 15% var(--container-offset);
	border-radius: 25px;
	background-color: var(--sky-blue);
	align-content: center;
}

.cta-cards-grid .cta-card:hover {
	text-decoration: none;
}

.cta-cards-grid .cta-card.gradient .cover-image {
	border-image: 1 fill linear-gradient(90deg, rgba(72,38,130,1) 0%, rgba(0,212,255,0) 50%);
}

.cta-cards-grid .cta-card:hover .cover-image {
	transition: .3s ease-in-out all;
	scale: 1.1;
}

.cta-cards-grid .cta-card .cta-card-content {
	position: relative;
	color: var(--fuchsia);
	z-index: 1;
}

.cta-cards-grid .cta-card.gradient .cta-card-content {
	color: white;
}

.cta-cards-grid .cta-card .cta-card-content h3 {
	font-size: 1.16rem;
	max-width: 50%;
	line-height: 1.25em;
	margin-bottom: 0.93em;
}

/*-----------------*/


/*Why choose section*/

.why-choose-section {
	color: var(--fuchsia);
}

.why-choose-section h1, .membership-perks-section h1 {
	font-family: var(--primary-font), sans-serif;
	font-weight: 500;
}

.why-choose-section .why-choose-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 35px;
	padding-top: 2.42rem;
}

.why-choose-section .why-choose-grid .why-choose-item .item-icon{
	width: 60%;
}

.why-choose-section .why-choose-grid .why-choose-item .item-text{
	font-size: .75rem;
	line-height: 1.27em;
	color: var(--purple);
    font-weight: 500;
}

/*------------------*/

/*MemberShip Perks Section*/

.membership-perks-section {
	background-color: var(--sky-blue);
	color: var(--purple);
}


.membership-perks-section .membership-perks-card {
	margin-top: 3.4em;
	padding: 1.7rem 0;
	background-color: white;
	border-radius: 20px;
	display: block;
}

.membership-perks-section .membership-perks-card:hover {
	text-decoration: none;
	color: var(--fuchsia);
}

.membership-perks-section .membership-perks-card .perks {

	padding: 1.5rem 1rem;
  	width: calc(90% - 2rem);
	background-color: var(--purple);
	color: var(--white);
	margin: 1.7rem auto;
	border-radius: 20px;
}

.membership-perks-section .membership-perks-card:hover .perks {
	background-color: color-mix(in srgb, var(--purple) ,var(--white) 15%);
}

.membership-perks-section .membership-perks-card .perks .perk{
	font-size: 0.84rem;
	font-weight: 300;
    margin: 25px 0;
}

.membership-perks-section .membership-perks-card .perks .perk:first-child {
    margin-top: 0;
}

.membership-perks-section .membership-perks-card .perks .perk:last-child {
    margin-bottom: 0;
}

.membership-perks-section .membership-perks-card .perks .perk span.perk-value{
	font-size: 2.08rem;
	font-weight: 400;
    position: relative;
}

.membership-perks-section .membership-perks-card span.small-text {
    font-size: 12px;
    position: absolute;
    top: -10px;
}

.membership-perks-section .membership-perks-card .terms-conditions {
	font-size: 0.625rem;
	font-weight: 300;
}



/*------------------------*/

/*Shaping lifestyles section*/

.shaping-lifestyles-section .slide {
	height: auto;
	padding-top: 40%;
}

.shaping-lifestyles-section .slide .slide-content {
	top: 2.958rem;
}

.shaping-lifestyles-section .slide .slide-content .slide-text {
	width: 40%;
}


.shaping-lifestyles {
	background-size: cover;
	background-position: center center;
	border-image: 1 fill linear-gradient(90deg, rgba(72,38,130,1) 0%, rgba(0,212,255,0) 50%);
	color: var(--white);
}

.shaping-lifestyles h3 {
	font-family: var(--secondary-font), sans-serif;
	font-weight: 500;
	font-size: 3.65rem;
	line-height: 1em;
	margin-top: 0;
	margin-bottom: .15em;
    letter-spacing: -3px;
}

.shaping-lifestyles .slide-content {
	width: 30%;
	min-width: 250px;
}

.shaping-lifestyles .slide-content p {
	font-size: 0.84rem;
	font-weight: 300;
	line-height: 1.3em;
	font-family: var(--primary-font), sans-serif;
}

.shaping-lifestyles .slide-content p:last-of-type {
	margin-bottom: 3em;
}


/*--------------------------*/

/*News section*/

.news-section .news-offers-grid  {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.875rem;
}

.news-section .news-offers-grid .news h4  {
	font-size: 1.25rem;
	color: var(--fuchsia);
	font-family: var(--primary-font), serif;
	margin: 0;
	text-transform: capitalize;
}

.news-section .news-offers-grid .news .news-card {

	color: var(--purple);

}

.news-section .news-offers-grid .news .news-card:hover {
	color: var(--fuchsia);
	text-decoration: none;
}

.news-section .news-offers-grid .news .news-card .cover-image-container {
	padding-top: 60%;
	border-radius: 20px;
	margin: 1rem 0;
}

.news-section .news-offers-grid .news .news-card:hover .cover-image-container .cover-image {
	scale: 1.1;
}

.news-section .news-offers-grid .news .news-card h5 {
	font-size: 0.917rem;
}

.news-section .news-offers-grid .news .news-card h5::after {
	color: var(--fuchsia);
    font-family: "Font Awesome 5 Free"; 
   content: "\f178";
	font-weight:  600;
	margin-left: .3em;
    font-size: 0.90rem;
}

.news-section .news-offers-grid .news .news-card .bigbutton {
	margin-bottom: 0;
}

/*-------------*/

/*Opinions section*/

.opinions-section {
	background-color: var(--sky-blue);
	color: var(--purple);
}

.opinions-section h1 {
	font-family: var(--primary-font), sans-serif;
	font-weight: 500;
	margin-bottom: 1em;
}

.opinions-section .opinion-slider .opinion-slide  {
	min-height: 365px;
	border-radius: 25px;
	background-color: var(--white);
	padding: 1.1rem;
	margin-right: 78px;
	transition: .2s ease-in-out all;
}



.opinions-section .opinion-slider .opinion-slide.empty-slide  {
	background-color: transparent;
}

.opinions-section .opinion-slider.slick-initialized .opinion-slide.slick-slide {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.opinions-section .opinion-slider .opinion-slide .slide-content {
	height: 100%;
}

.opinions-section .opinion-slider .opinion-slide .slide-icon {
	font-size: 2.083rem;
	color: var(--fuchsia);
	font-family: "Spline Sans", sans-serif;
}

.opinions-section .opinion-slider .opinion-slide .slide-text {
	font-size: 0.733rem;
	line-height: 1.3em;
}

.opinions-section .opinion-slider .opinion-slide .card-footer .slide-author {
	font-size: .5rem;
	letter-spacing: 0.1em;
    text-transform: uppercase;
}

.opinions-section .opinion-slider .opinion-slide .card-footer .slide-avatar {
	font-size: 0.833rem;
	width: 2.75em;
	padding-top: 2.75em;
	border-radius: 50%;
}

/*------------------*/

/*Newsletter Section*/

.newsletter-form-section {
	color: var(--purple);
}

.newsletter-form-section .newsletter-form{
	color: var(--purple);
	width: 60%;
}

.newsletter-form-section .newsletter-form input[type='submit'] {
     min-height: 36px !important;
}
  

.newsletter-form-section.white {
	background-color: white;
}


/*EVERY PLACEHOLDER IS PURPLE SO THERE SHOULD NOT BE ANY PROBLEM WITH THIS*/

::placeholder {
	color: var(--purple) !important;
	opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
	color: var(--purple) !important;
}

/*---------------------------------------------------------------------------*/

.newsletter-form-section.white input, .newsletter-form-section.skyblue input, .form-section.margin_to_padded input, .form-section.light input, .form-section.margin_to_padded textarea, .form-section.light textarea {
	--gf-local-bg-color: var(--light-green-blue) !important;
	--gf-local-border-width: 0 !important;
	--gf-local-color: var(--purple) !important;
	--gf-local-font-family: var(--primary-font), sans-serif !important;
}

.form-section.margin_to_padded textarea {
	--gf-local-bg-color: var(--white) !important;
}

.form-section.margin_to_padded input[type='checkbox'], .form-section.light input[type='checkbox']{
	--gf-local-bg-color: var(--white) !important;
}

.form-section.light input[type='checkbox']{
	border: 1px solid var(--purple);
}

.form-section.light .gfield_description{
	color: var(--purple);
}

.form-section.light label, .form-section.light legend {
	--gf-local-color: var(--purple) !important;
}

.newsletter-form-section.white input[type="submit"], .newsletter-form-section.skyblue input[type="submit"], .form-section input[type='submit']{
	--gf-local-bg-color: var(--fuchsia) !important;
	--gf-local-border-width: 0 !important;
	--gf-local-color: var(--white) !important;
	--gf-local-radius: 2em !important;
}


.newsletter-form-section.skyblue {
	background-color: var(--sky-blue);
	margin: 0 !important;
	padding: var(--default-section-margin) 0;
}

.newsletter-form-section.skyblue input, .form-section.margin_to_padded input {

	--gf-local-bg-color: var(--white) !important;

}

.form-section.margin_to_padded input[type="submit"] {
    --gf-local-bg-color: var(--fuchsia) !important;
    font-family: var(--primary-font) !important;
    font-weight: normal !important;
    text-transform: uppercase !important;
    
    letter-spacing: 2px !important;
    font-weight: 200 !important;
    line-height: normal !important;
}

.form-section.margin_to_padded label, .form-section.margin_to_padded legend {
	--gf-local-color: var(--white) !important;
}

.form-section.margin_to_padded label a {
    text-decoration: underline;
}

.form-section.margin_to_padded label a:hover {
    text-decoration: none;
}

.form-section.margin_to_padded .gform-theme--framework .gform-field-label > .gfield_required {
    --gf-color-danger-rgb: 246, 200, 200 !important;
    --gf-color-danger: #F6C8C8 !important;
    --gf-ctrl-label-color-req: #F6C8C8 !important;
}

.form-section.margin_to_padded .gform-theme--framework .gfield_description {
  --gf-ctrl-desc-color: var(--fuchsia) !important;
}

.form-section .gform-theme--framework .gform_validation_errors {
    --gf-form-validation-bg-color: var(--gf-color-danger) !important;
    color: var(--white) !important;
}

.form-section .gform-theme--framework .gform_validation_errors .gform_submission_error {
    --gf-form-validation-heading-color: var(--white) !important;
}

.form-section .gform-theme--framework .gform_validation_errors .gform-icon {
    color: var(--white) !important;
    border-color: var(--white) !important;
}

.gform-theme--framework .dark .gfield_validation_message {
    color: #FD9494 !important;
}

.gform_confirmation_wrapper {
    background-color: #CCFFCC;
    color: #3A6F53;
    border: 1px solid #3A6F53;
    padding: 20px;
}
/*------------------*/


/*Page Footer*/

.page-footer .footer-section {
	background-color: var(--purple);
}

.page-footer .footer-section .footer-left .button-container {
	margin: 50px 0;
}

.page-footer .footer-section .footer-left .follow-us {
	color: var(--white);
}

.page-footer .footer-section .footer-left .follow-us .social-icons{
	margin-top: .6rem;
	line-height: 0;
}

.follow-us .social-icons .social-icon{
	display: inline-block;
	margin-inline: 0 10px;
}

.follow-us .social-icons .social-icon:hover img {
	filter: drop-shadow(0 0 5px var(--fuchsia));
}

.page-footer .footer-section .footer-left .legal-conditions {
	color: var(--white);
	font-size: 0.417rem;
	font-weight: 300;
}

.page-footer .footer-section .legal-conditions ul{
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	gap: 1rem;
}

.page-footer .footer-section .footer-right{
	color: var(--white);
	max-width: 70%;
}

.page-footer .footer-section .footer-right .opening-and-menus{
	border-bottom: 1px solid var(--white);
	padding-bottom: 1.833rem;
}

.page-footer .footer-section .footer-right .opening-and-menus h5{
	margin-bottom: 1.5em;
}

.page-footer .footer-section .footer-right .opening-and-menus :is(.opening-hours, .yue-menu, .facilities-menu){
	max-width: 33%;
}

.page-footer .footer-section .footer-right .opening-and-menus .opening-hours .hours{
	font-size: 0.5rem;
	font-weight: 300;
	line-height: 2em;
}

.page-footer .footer-section .footer-right .opening-and-menus ul{
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	list-style: none;
	font-weight: 400;
	font-size: .5rem;
}

.page-footer .footer-section .footer-right .opening-and-menus ul li{
	margin-bottom: 1.25em;
}

.page-footer .footer-section .footer-right .contact-us-part{
	margin-top: 2.5em;
	font-size: 0.5rem;
}

.page-footer .footer-section .footer-right .contact-us-part .contact-us{
	gap: 8rem;
}

.page-footer .footer-section .footer-right .contact-us-part .contact-us :is(.left, .right){
	max-width: 33%;
}

.page-footer .footer-section .footer-right .contact-us-part h5{
	margin-bottom: 1em;
}

.page-footer .footer-section .contact .title{
	font-weight: 400;
	text-transform: uppercase;
	line-height: 0.833em;
	margin-bottom: 0.833em;
}

.page-footer .footer-section .contact .content{
	font-weight: 200;
	line-height: 1.667em;
	margin-bottom: 2.5em;
}



/*------------*/


/*MODAL DRAWER*/


.modal-drawer {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	z-index: 999999;

}

.modal-drawer.open {
	left: 0;
}

.modal-drawer .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	background-color: color-mix(in srgb, var(--purple) ,transparent 80%);
}

.modal-drawer.open .overlay {
	display: block;
}

.modal-drawer .drawer-content {
	min-width: 30dvw;
	background-color: var(--sky-blue);
	color: var(--purple);
	position: absolute;
	bottom: 0;
	left: -10%;
	opacity: 0;
	height: 100%;
	padding: 1.5rem 2.5rem;
	overflow-y: auto;
	transition: .3s ease-out all;
}
.modal-drawer.open .drawer-content {
	left: 0;
	opacity: 1;
}

.modal-drawer .drawer-content .drawer-header {
	margin-bottom: 3.5rem;
}

.modal-drawer .drawer-content .drawer-menu{
	display: none;
}

.modal-drawer .drawer-content .drawer-menu ul.menu{
	list-style: none;
	padding-left: 0;
	font-size: 1rem;
	line-height: 2.3em;
	margin: 0;
}

.modal-drawer .drawer-content .drawer-menu ul.menu a{
	font-weight: 400;
}

.modal-drawer .drawer-content .drawer-menu ul.menu li.cta{
	color: var(--fuchsia);
	margin-top: 1em;
}

.modal-drawer .drawer-content .contact-us-part{
	margin-top: 3rem;
	font-size: 0.6rem;
}

.modal-drawer .drawer-content .contact-us-part h5{
	font-size: 0.9rem;
	margin-bottom: 1em;
}

.modal-drawer .drawer-content .contact-us-part .contact{
	margin-bottom: 2em;
}

.modal-drawer .drawer-content .contact-us-part .contact .title{
	margin-bottom: 1em;
}

.modal-drawer .drawer-content .contact-us-part .contact .content{
	font-weight: 300;
}

.modal-drawer .drawer-content .follow-us h5{
	font-size: 0.9rem;
}

.modal-drawer details > summary {
	font-weight: 400;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	list-style-type: none;
	user-select: none;
}

.modal-drawer details > summary::after {
	content: '+';
	margin-left: .3em;
	color: var(--fuchsia);
}

.modal-drawer details[open] > summary::after {
	content: '-';
}

.modal-drawer details > summary:hover {
	text-decoration: underline;

}

.modal-drawer details > ul.sub-menu {
	list-style: none;
	font-size: .7em;
	padding-left: 1em;
	text-transform: uppercase;
}

.modal-drawer details > ul.sub-menu a {
	font-weight: 300;
}

.modal-drawer .follow-us .social-icons{
	line-height: 0;
}

/*------------*/

/*-------MEDIA QUERIES---------*/

/*----------TABLET LANDSCAPE---------------*/
@media screen and (max-width: 1100px) {
	.desktop, .tablet_portrait, .tablet_landscape, .mobile {
		display: none;
	}

	.tablet_landscape {
		display: block;
	}

	/*THIS CLASSES ARE MEANT FOR BREAKING FLEX CONTAINERS*/
	.flex.flex-breaker-tablet-mobile{
		flex-direction: column;
	}
	/*---------------------------------------------------*/

	/*HEADER*/

	.header-menu .menu-container .logo {
		position: relative;
		top: unset;
		left: unset;
	}

	 .modal-drawer .mobile-menu-ctas ul.menu {
		display: flex;
		flex-direction: column;
		 align-items: flex-start;
		 padding: 0;
		 gap: 10px;
	}

	.modal-drawer .drawer-content {
		min-width: 50dvw;
		position: relative;
	}

	.modal-drawer .drawer-content .close-modal-btn {
		position: absolute;
		font-size: clamp(2rem, 5vw, 3rem);
		top: 1.8rem;
		right: 2.5rem;
		line-height: 0;
		font-weight: 200;
	}

	/*------*/

	/*EXPLORE FACILITIES*/
	.explore-facilities-section .explore-facilities-text p {
		max-width: 55%;
	}
	/*------------------*/


	/*CTA CARDS SECTION*/
	.cta-cards-grid .cta-card .cta-card-content h3 {
		max-width: 80%;
	}
	/*------------------*/

	/*FOOTER SECTION*/

	.page-footer .footer-section .footer-right {
		max-width: 60%;
	}

	/*--------------*/

	.modal-drawer .mobile-menu-ctas ul.menu {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		padding: 0;
		gap: 10px;
	}

	.newsletter-form-section .newsletter-form{
		width: 100%;
	}


}
/*-----------END TABLET LANDSCAPE---------------*/

/*----------TABLET PORTRAIT---------------*/

@media screen and (max-width: 820px) {
	.desktop, .tablet_portrait, .tablet_landscape, .mobile {
		display: none;
	}

	.tablet_portrait {
		display: block;
	}

	:root {
		--container-offset: 35px;
		--container-width-narrow: var(--container-width);
		--container-width-narrower: 80%;
	}

	.modal-drawer .drawer-content {
		min-width: 70dvw;
	}

	.slick-lines .slick-dots {
		--slick-lines-width: 10%;
		--slick-lines-bottom: -60px;
	}

	/*THIS CLASSES ARE MEANT FOR BREAKING FLEX CONTAINERS*/

	.flex.flex-breaker {
		flex-direction: column;
	}


	.flex.flex-breaker-reverse {
		flex-direction: column-reverse;
	}

	/*------------------------------------------*/

	.grid-to-slider-mobile {
		display: block !important;
	}

	/*MAKE TIME SECTION*/

	.make-time-section {
		overflow-inline: clip;
		overflow-x: clip;
	}

	.make-time-section img {
		width: 70%;
        padding: 10px 0;
	}

	.make-time-section img.arrow {
		margin: -30% -35% -30% 0;
		width: 50%;
	}


	/*-----------------*/

	/*TESTIMONIAL SECTION*/

	.opinions-section .opinion-slider .opinion-slide.empty-slide  {
		display: none !important
	}

	/*-------------------*/

	/*EXPLORE FACILITIES SECTION*/
    
    .explore-facilities-section .container {
        width: 100%;
    }

	.explore-facilities-section .facility-card-grid .facility-card {
        border-radius: 20px;
        background-color: transparent;
		padding-top: 0%;
        height: 300px;
        margin-right: 20px;
	}
    
    .explore-facilities-section .mobilespacer {

        position: relative;
        height: 100%;
    }
    
     .explore-facilities-section .mobilecontainer {
        margin-left: auto;
          margin-right: auto;
          width: var(--container-width);
    }

	.explore-facilities-section .slick-list {
		padding-left: 20px !important;
	} 

	.explore-facilities-section .facility-card-grid .facility-card:not(.slick-center) {
		opacity: 0.6;
	}

	.explore-facilities-section .explore-facilities-text {
		margin-top: 30%;
	}

	.explore-facilities-section .slick-lines .slick-dots {
		bottom: -65px;
	}
    
    .explore-facilities-section .facility-card-grid .facility-card .bigbutton {
        position: absolute;
        bottom: 1.2em;
        left: 1em;
    }

    .explore-facilities-section .facility-card-grid .facility-card:hover .bigbutton {
        bottom: 1.2em;
        left: 1em;
    }
    
    .explore-facilities-section .facility-card-grid .facility-card:hover .cover-image {
      scale: 1;
    }
    
    .explore-facilities-section .facility-card-grid .facility-card h3, .what-we-offer-section .what-we-offer-card-grid .what-we-offer-card h3 {
        left: 1em;
        top: 1em;
    }

	/*--------------------------*/

	/*CTA CARDS SECTION*/

	.cta-cards-section h4 {
		text-align: left;
	}

	.cta-cards-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.cta-cards-grid .cta-card {
		padding: 10% var(--container-offset);
	}

	.cta-cards-grid .cta-card .cta-card-content h3 {
		max-width: 40%;
	}
	/*------------------*/

	/*WHY CHOOSE SECTION*/

	.why-choose-section .why-choose-grid {
		grid-template-columns: repeat(3, 1fr);
	}
    
    .why-choose-section .why-choose-grid .why-choose-item .item-text{
        font-size: .90rem;
    }
    
    /* ---- membership perks ----- */
    
    .membership-perks-section .membership-perks-card .perks {
      padding: 1.2rem;
      width: calc(90% - 2.4rem);
    }
    
    /* --- shaping lifestyles--- -*/
    
    .shaping-lifestyles .slide-content {
      width: 100%;
    }

	/*--------------------*/

	/*NEWS LETTER FORM SECTION*/

	.newsletter-form-section h5 {
		margin-bottom: 1em;
	}

	/*------------------------*/

	/*PAGE FOOTER*/

	.page-footer .footer-section .footer-left {
		border-bottom: 1px solid var(--white);
		font-size: 18px;
		padding-bottom: 1.5em;
	}

	.page-footer .footer-section .footer-right {
		max-width: none;
		border-bottom: 1px solid var(--white);
	}

	.page-footer .footer-section .footer-right .opening-and-menus {
		gap: 0;
	}

	.page-footer .footer-section .footer-left .follow-us .social-icons .social-icon{
		width: 8%;
	}

	.page-footer .footer-section .footer-left .follow-us .social-icons .social-icon img {
		width: 100%;
	}

	.page-footer .footer-section .footer-right ul {
		list-style: none;
		padding: 0;
		margin: 1.5em 0;
		font-size: 18px;
		line-height: 3em;
	}

	.page-footer .footer-section .mobile-footer-menu  {
		font-size: 18px;
		color: var(--white);
		margin: 1.5em 0;
	}

	.page-footer .footer-section .legal-conditions {
		font-size: 12px;
		margin-top: 15%;
	}

	.page-footer .footer-section details{
		margin-bottom: 1em;
	}

	.page-footer .footer-section details summary::marker{
		content: '';
	}

	.page-footer .footer-section details summary::after{
		content: '+';
		margin-left: .3em;
	}

	.page-footer .footer-section details[open] summary::after{
		content: '-';
	}

	.page-footer .footer-section details .content{
		margin-top: 1.5em;
		font-size: 14px;
	}

	.page-footer .footer-section .contact .title{
		font-size: 14px;
	}

	.page-footer .footer-section .contact .content{
		font-size: 14px;
	}

	/*-----------*/

	/*MODAL DRAWER*/

	.modal-drawer .follow-us .social-icons{
		width: 100%;
        margin: 1em 0 3em 0;
	}

	.modal-drawer .follow-us .social-icons .social-icon{
		width: 10%;
	}

	.modal-drawer .follow-us .social-icons .social-icon img{
		width: 100%;
	}
    
    .mobile-menu-ctas .bigbutton.solid.purple {
        background-color: var(--fuchsia);
        border-color: var(--fuchsia);
    }

    .header-menu .menu-container .main-menu ul.menu, .modal-drawer .drawer-content .drawer-header ul.menu {
        font-size: .6rem;
    }
    
    .modal-drawer details > ul.sub-menu {
        font-size: .9em;
    }
    
    .modal-drawer .drawer-content .drawer-menu ul.menu{
        font-size: 1.2rem;
    }
    
	/*-----------------*/

}

/*-----------END TABLET PORTRAIT---------------*/

/*----------MOBILE---------------*/

@media screen and (max-width: 600px) {
	.desktop, .tablet_portrait, .tablet_landscape, .mobile {
		display: none;
	}

	.mobile {
		display: block;
	}
    
    h1 {
        font-size: 1.5rem;
    }

	html {
		font-size: 18px;
	}

	:root {
		--container-offset: 20px;
		--container-width-narrow: var(--container-width);
		--container-width-narrower: 90%;
		--default-section-margin: 72px;
	}
    
    .bigbutton.solid.mini, .bigbutton.outline.mini {
      letter-spacing: 0.1em;
      font-weight: 400;
      padding: .7em 1.17em;
      font-size: 0.7rem;
      text-transform: uppercase;
    }
    
    .slick-lines .slick-dots {
	--slick-lines-width: 3%;
        text-align: left;
        margin: 0 20px;
        width: calc(100% - 40px);
    }
    
    .slick-lines .slick-dots li {
    }

	/*MODAL DRAWER*/

	.header-menu .menu-container .main-menu ul.menu, .modal-drawer .drawer-content .drawer-header ul.menu {
        font-size: .5rem;
    }

	.modal-drawer .drawer-content {
		min-width: 0;
		padding-left: 1rem;
		padding-right: 1rem;
		width: calc(100% - (1rem * 2));
	}

	.modal-drawer .drawer-content .close-modal-btn {
		right: 1rem;
	}

	/*-----------------*/

	/*HERO SLIDER SECTION*/

	.hero-slider-section .hero-slider-container {
		min-height: 60dvh;
	}

	.hero-slider-section .hero-slider-container .hero-slider .slick-dots li button::before {
		font-size: 0.6rem;
	}

	.hero-slider-section .hero-slider-container .hero-slider .slick-dots li {
		margin: 0 2rem 0 0;
	}

	.hero-slider-section .hero-slider-container .hero-slider .hero-slide, .slide {
		align-content: end;
	}

	.hero-slider-section .hero-slider-container .hero-slider .hero-slide .slide-content {
		margin-bottom: 30%;
	}

	.hero-slider-section .hero-slider-container .hero-slider .hero-slide .slide-content .slide-text, .slide .slide-content .slide-text {
		max-width: 80%;
	}

	/*-------------------*/

	/*MAKE TIME FOR YOU SECTION*/

	.make-time-section {

		margin: 0;

	}

	.make-time-section img.arrow {
		margin: -6% -27% -6% 0;
	}

	/*-------------------------*/



	/*CTA CARDS SECTION*/

	.cta-cards-grid .cta-card .cta-card-content h3 {
		max-width: none;
	}

	/*-----------------*/

	/*WHY CHOOSE SECTION*/

	.why-choose-section .why-choose-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 15px;
	}

	.why-choose-section .why-choose-grid br{
		display: none;
	}

	.why-choose-section .why-choose-grid .why-choose-item .item-icon {
		display: none;
	}


	/*------------------*/


	/*NEWS SECTION*/

	.news-section .news-offers-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	/*------------*/

	/*SHAPING LIFESTYLES SECTION*/

	.shaping-lifestyles {
		background-size: cover;
		background-position: top center;
		background-color: var(--purple);
		background-repeat: no-repeat;
	}

	.shaping-lifestyles h3 {
		margin-bottom: 1.2em;
	}

	/*--------------------------*/

	/*OPINION SECTION*/

	.opinions-section .opinion-slider .opinion-slide {
		min-height: 300px;
        margin-right: 30px;
	}

	.opinions-section .opinion-slider .opinion-slide:not(.slick-center)  {
		opacity: 0.6;
	}
    
    .opinions-section .opinion-slider .slick-list {
        padding-left: 20px !important;
    }
    

	/*----------------*/

	/*PAGE FOOTER SECTION*/

	.page-footer .footer-section .legal-conditions {
		font-size: 10px;
	}



	/*-------------------*/


}

/*-----------END MOBILE---------------*/
/*---------END MEDIA QUERIES--------*/
