/* Typo Import */
@font-face {
    font-family: 'Paralucent';
    src: url('../fonts/Paralucent-Medium.woff2') format('woff2'),
        url('../fonts/Paralucent-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paralucent', sans-serif;
    src: url('../fonts/Paralucent-Heavy.woff2') format('woff2'),
        url('../fonts/Paralucent-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: bold;
    font-display: swap;
}




/*Common css*/
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --pink: #b57db7;
	--dark-pink: #660066;
    --grey: #dfecf1;
	--dark-grey: #515151;
    --light-blue: #3bc3f1;
	--blue: #2584ba;
	--violet: #4a2d78;
	--white:#fff;
	--black:#000;
	--normal:500;
    --bold:900;
    --transition: 0.5s all ease-in-out;
	--primary-font: 'Paralucent', sans-serif;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: var(--light-black);
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    margin: 0;
    font-size: 1rem;
    font-weight: var(--normal);
    line-height: 1.5;
    color: var(--dark-grey);
    font-style: normal;
    /*overflow-x: clip;*/
}

img {
    max-width: 100%;
    width: 100%;
}

a {
    color: var(--dark-blue);
    text-decoration: none;
    background-color: transparent;
	transition: var(--transition);
}

a:hover {
	color: var(--dark-blue);
    text-underline-offset: .2em;
	transition: var(--transition);
}

h1,
h2,
h3{
    font-weight: var(--bold);
}

h4 {
    font-weight: var(--bold);
}

h1 {
	font-size: 3.4vw;
	line-height: 1em;
}

h2 {
	font-size: 2.9rem;
	line-height: 1em;
}

h3 {
	font-size: 1.9rem;
	line-height: 1em;
}

h4 {
    font-size: 1.3rem;
}


/* Font Classes */

.font-weight-normal{
	font-weight: var(--normal);
}
.font-weight-bold{
	font-weight: var(--bold);
}


/* Color Classes */
.white-text {
    color: var(--white) !important;
}
.white-bg {
    background-color: var(--white);
}
.pink-bg {
    background-color: var(--pink);
}
.pink-text {
    color: var(--pink);
}
.dark-pink-bg {
    background-color: var(--dark-pink);
}
.dark-pink-text {
    color: var(--dark-pink);
}
.grey-bg {
    background-color: var(--grey);
}
.grey-text {
	color: var(--grey);
}
.light-blue-bg{
	background-color: var(--light-blue);
}
.light-blue-text{
	color: var(--light-blue);
}
.violet-text{
	color: var(--violet);
}
.violet-bg{
	background-color: var(--violet);
}
.blue-text{
	color: var(--blue);
}
.blue-bg{
	background-color: var(--blue);
}




/* Buttons */
.button {
	color: var(--white);
	text-decoration: none;
	padding: 0.8em 1.2em;
	line-height: 1em;
	transition: var(--transition);
	font-size: 1rem;
	margin-top: 1em;
	background-color: var(--blue);
	border: 2px solid transparent;
	border-radius: 40px;
	display: inline-block;
}
.button:hover{
	color: var(--blue);
	border: 2px solid var(--blue);
	background-color: var(--white);
}
.button-outline {
	border: 2px solid var(--white);
	background-color: transparent;
}
.button.button-outline.pink-bg:hover {
	color: var(--pink);
	border: 2px solid var(--pink);
}

/* Presets Classes */
.container {
    max-width: 1300px;
}

.p-top {
    padding-top: 6em;
}
.p-bottom {
    padding-bottom: 6em;
}

/* Common Blocks */


/*Header CSS*/
/* Logo */
.custom-logo {
	width: auto;
	height: auto;
	position: relative;
	bottom: 0em;
	max-width: 200px;
}
/* Header */
.header-style {
	padding: 0em 0em;
	position: relative;
	width: 100%;
	margin: 0px auto;
	z-index: 1;
	background-color: var(--white);
}
.header-style .top-bar {
	position: relative;
}
.header-style .top-bar::before {
	content: '';
	position: relative;
	width: 50%;
	display: block;
	background-color: var(--light-blue);
	height: 1rem;
}
.header-style .top-bar::after {
	content: '';
	position: absolute;
	width: 50%;
	right: 0rem;
	display: block;
	background-color: var(--pink);
	height: 1rem;
	top: 0;
}
.header-style .navbar {
	padding: 5em 0em 1em 0em;
	flex-wrap: wrap;
	justify-content: space-between;
}
.header-style .navbar #navbar-list {
	flex: 0 1 100%;
	justify-content: space-between;
}
.header-style .navbar #navbar-list ul {
	padding: 0em;
	display: flex;
	margin: 0em;
	list-style-type: none;
	justify-content: center;
	align-items: center;
}
.header-style .navbar #navbar-list ul li {
	width: auto;
	max-width: 150px;
}
.header-style .navbar #navbar-list .main_menu_container {
	width: 100%;
}
.navbar-brand {
	position: absolute;
	margin: 0em;
	padding: 0em;
	left: 50%;
	transform: translateX(-50%);
}
.custom-logo-link {
	position: relative;
}
.logo-right {
	margin-right: 12em;
}
.menu_ul li a {
	font-size: 1.1rem;
	font-weight: var(--normal);
	transition: 0.3s all ease-in-out;
	padding: 0.6em 1em;
	display: block;
	text-align: center;
	color: var(--pink);
}

.header-style .menu_ul li.current_page_item a {
	color: var(--dark-pink);
}

.header-style .menu_ul li a:hover {
    transition: var(--transition);
	color: var(--dark-pink);
}
.menu_ul li.menu-item-highlighted a {
	color: var(--dark-pink);
}

/*Footer CSS*/
.footer-top {
	padding: 1em 0em 1em;
}
#menu-footer-menu {
	padding: 0em 0em 0em 0em;
	display: flex;
	gap: 2em;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0em;
}
#menu-footer-menu li {
	list-style-type: none;
}
.footer-menu .menu_ul li a {
	padding: 0em;
	color: var(--white);
	font-size: 1.5em;
	background-color: transparent;
	border: 0px;
}
.footer-menu .menu_ul li.current_page_item a {
	color: var(--pink);
}

.footer-menu .menu_ul li a:hover{
	color: var(--pink);
}
.footer-logo {
	text-align: center;
}
.footer-logo img {
	max-width: 100%;
	width: 140px;
}


/* Home Page */
/* intro */
.intro {
	background-image: url('../../../../wp-content/uploads/2023/08/intro-bg.jpg');
	background-position: center right;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 4em 0em 0em 0em;
	overflow: clip;
	height: 500px;
}
.intro-content {
	text-align: center;
}
.intro-content h1 {
	text-align: center;
	text-transform: uppercase;
	color: var(--white);
	font-weight: var(--bold);
	font-size: 3.6rem;
	line-height: 0.9em;
	padding-top: 6rem;
}
.intro .play-button {
	position: absolute;
	width: 110px;
	right: 1rem;
	top: 0rem;
}
.efficacy-research .efficacy-research-img img{
	width: 70% !important;
}
.efficacy-research-img::after {
	content: '';
	position: absolute;
	/*border: 30px solid var(--blue);*/
	width: 30vw;
	height: 30vw;
	left: 50%;
	border-radius: 50%;
	transform: translateX(-50%);
	z-index: -1;
	opacity: .3;
}
.dietary-lifestyle .fit-girl {
	position: absolute;
	width: 40%;
	left: 50%;
	bottom: -0.1px;
	transform: translateX(-50%);
}
.our-team-caption {
	width: 70%;
	margin: 0px auto;
}
.team-member img {
	border-radius: 50%;
	border: 15px solid var(--grey);
	margin-bottom: 1em;
	transform: var(--transition);
}
.team-member img:hover{
	border: 10px solid var(--grey);
	transform: var(--transition);
}
.team-member h6 {
	color: #a2a2a2;
}
.functional-medicine {
	background-color: #dfecf1;
	text-align: center;
}
.client-patients-item {
	position: relative;
	overflow: hidden;
	border-radius: 25px;
	margin-bottom: 2em;
}
.client-patients-item .appointment-btn {
	position: absolute;
	top: 50%;
	width: 90%;
	height: 90%;
	background-color: #00000087;
	left: 50%;
	transform: translateX(-50%) translateY(-250%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	transition: var(--transition);
	justify-content: center;
}
.client-patients-item:hover .appointment-btn {
	transition: var(--transition);
	transform: translateX(-50%) translateY(-50%);
}
.client-patients-item h4 {
	transition: var(--transition);
	transform: translateY(0%);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.client-patients-item:hover h4 {
	transition: var(--transition);
	transform: translateY(100%);
}
.testimonials .google-yelp-logo {
	width: 300px;
	margin-bottom: 4em;
}
.testimonials .testimonial-item .symbol {
	width: 20%;
	margin-bottom: 1em;
}
.testimonials .testimonial-item .client-img {
	border-radius: 50%;
	width: 30%;
}
.testimonials .testimonial-item h4 {
	color: #bbb;
	font-weight: var(--normal);
	margin-top: 0.5em;
}
.testimonial-item {
	padding: 2em 2em;
	-webkit-box-shadow: 0px 0px 46px 4px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 46px 4px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 46px 4px rgba(0,0,0,0.2);
}
.location {
	background-color: #cfe6de;
	position: relative;
	bottom: -1em;
	z-index: -1;
}
.location-details-container {
	padding: 0em 5vw;
}
.location-details h5 {
	padding-left: 2.5rem;
}
.location-details a {
	color: var(--dark-grey);
	position: relative;
}
.location-details h5 i {
	position: absolute;
	left: -2.3rem;
	background-color: var(--pink);
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
	border-radius: 50%;
	font-size: 1rem;
	color: #fff;
}
.map {
	width: 100%;
	margin: 0em !important;
	padding: 0em !important;
}

/* About US */
.our-aboutus{
	position: relative;
}
.our-aboutus-content p {
	padding: 0.5em 45% 0.5em 1em;
}
.our-aboutus-content .fit-girl {
	position: absolute;
	width: 24%;
	bottom: 0;
	right: 6em;
}
.our-aboutus-content p.with-bg {
	background-color: #dde6f0;
}

/* Laser */
.sub-header.laser-sub-header {
	background-size: 100%;
	background-repeat: no-repeat;
}
.laser-machine {
	padding: 3em 0em;
	overflow: hidden;
}
.laser-machine::before {
	position: absolute;
	content: '';
	width: 350px;
	height: 350px;
	border-radius: 50%;
	border: 2.4em solid #c6e7e0;
	top: 1em;
	right: -4em;
	z-index: 0;
}
.laser-machine img {
	position: relative;
	z-index: 1;
}
.extensive-laser-img {
	width: 90%;
}
.extensive-laser {
	position: relative;
}
.extensive-laser-content::before {
	content: '';
	position: absolute;
	right: 0;
	background-color: var(--light-blue);
	width: 70%;
	height: 60%;
	z-index: -1;
	top: 50%;
	transform: translateY(-50%);
}
.reason-item {
	padding-left: 7em;
	position: relative;
	padding-bottom: 1em;
}
.reason-item img {
	position: absolute;
	left: 0;
	width: 90px;
}

/* FUNCTIONAL MEDICINE */
.functional-medicine-sub-header {
	padding: 5em 0em 19em;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}
.functional-medicine-details p {
	padding: 1em 1em 1em 1em;
	margin: 0em;
}
.functional-medicine-details .with-bg{
	position: relative;
}
.functional-medicine-details .with-bg::before {
	background-color: #dde6f0;
	position: absolute;
	content: '';
	width: 210%;
	height: 100%;
	z-index: -1;
	left: 0;
	top: 0;
}
.functional-medicine-details-img {
	width: 70%;
}
.extensive-laser.functional-medicine-emphasis .extensive-laser-content::before{
	left: 0;
	right: auto;
}

/* WEIGHT LOSS */
.weight-loss-sub-header {
	overflow: hidden;
}
.weight-loss-sub-header .slick-next::before,.weight-loss-sub-header .slick-prev::before {
	font-size: 39px;
}
.weight-loss-sub-header .slick-next {
	right: 30px;
}
.weight-loss-sub-header .slick-prev {
	left: 30px;
	z-index: 1;
}

#video-popup-container {
  display: none;
  position: fixed;
  z-index: 996;
  width: 60%;
  left: 50%;
  margin-left: -30%;
  top: 20%;
  background-color: #fff;
}

#video-popup-close {
  cursor: pointer;
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: 998;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  text-align: center;
  font-size: 12px;
  background-color: #000;
  line-height: 25px;
  color: #fff;
}

#video-popup-iframe-container {
  position: absolute;
  z-index: 997;
  width: 100%;
  padding-bottom: 56.25%;
  border: 2px solid #000;
  border-radius: 2px;
  background-color: #000;
}

#video-popup-iframe {
  z-index: 999;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
}

#video-popup-overlay {
  display: none;
  position: fixed;
  z-index: 995;
  top: 0;
  background-color: #000;
  opacity: 0.8;
  width: 100%;
  height: 100%;
}

#video-popup-close:hover {
  color: #3bc3f1;
}

.vpop:hover img {
  cursor: pointer !important;
}

/*Responsive code*/
@media only screen and (min-width:1600px) and (max-width:1920px) {
}

@media only screen and (max-width:1400px) {
}

@media only screen and (min-width:1024px) and (max-width:1200px) {}

@media only screen and (max-width:1000px) {}

@media only screen and (min-width: 768px) and (max-width: 1023px) {

}

@media only screen and (max-width:1023px) {

    /* Typography */
    h2 {
        font-size: 2.3rem;
    }

    h1 {
		font-size: 2.5rem;
	}

    /* Presets */
    .p-top {
        padding-top: 2em;
    }

    .p-bottom {
        padding-bottom: 4em;
    }

    /*Header*/
	.header-style {
		padding: 1em 0em 0em;
		z-index: 2;
		overflow: visible;
	}
    .navbar-toggler {
		border: 0px;
		flex: 0 1 12%;
		padding-right: 0;
		padding-top: 0.4em;
		margin-right: 0.5em;
	}
    .navbar-toggler:focus,
    .navbar-toggler-icon:focus {
        outline: none !important;
        box-shadow: none;
    }
	.menu_ul li a {
		font-size: 1.5rem;
	}
	#menu-footer-menu li {
		padding-bottom: 0.5em;
	}
	.header-style .navbar {
		padding: 4em 0em 1em 0em;
		flex-wrap: nowrap;
		justify-content: right;
	}
	.navbar-brand {
		z-index: 2;
	}
	.custom-logo {
		max-width: 170px;
	}
	.header-style .navbar #navbar-list {
		position: absolute;
		top: 7rem;
		background-color: var(--white);
		left: 0em;
		width: 100%;
		padding-top: 3rem;
	}
	.header-style .navbar #navbar-list ul {
		flex-wrap: wrap;
		flex-direction: column;
		padding: 0em;
	}
	.logo-right {
		margin-right: 0em;
	}
	.menu_ul li a {
		font-size: 1.2rem;
	}
	.header-style .navbar #navbar-list ul li {
		width: auto;
		max-width: 100%;
	}



	/* Footer */
	.footer-top {
		padding: 1em 0em 1em;
	}
	#menu-footer-menu {
		gap: 1em;
		justify-content: left;
		margin-bottom: 0em;
	}
	.footer-menu .menu_ul li a {
		font-size: 1.1rem;
	}

	/* HOME */
	.intro {
		background-image: none;
		padding: 0em 0em 0em 0em;
		background-color: var(--blue);
		height: auto;
	}
	.intro .col-lg-5.position-relative {
		position: unset !important;
	}
	.intro .play-button {
		transform: none;
		bottom: 10em;
		left: 100%;
	}
	.intro .fit-girl {
		width: 80%;
		padding-top: 3em;
	}

	/* Laser */
	.laser-machine::before {
		width: 250px;
		height: 250px;
	}
	.extensive-laser-content::before {
		height: 100%;
		top: 48%;
	}

	/* Functional Medicine */
	.functional-medicine-details-img {
		width: 100%;
	}
	.functional-medicine-details .with-bg::before {
		width: 100%;
	}



}

@media only screen and (max-width:767px) {


    /* Footer */
    #menu-footer-menu {
        gap: 1em;
        flex-direction: column;
        text-align: center;
    }
	.footer-top {
		text-align: center;
		padding: 5em 0em 1em;
	}
	.footer-logo {
		margin-bottom: 1rem;
		margin-top: 2rem;
	}
	.footer-top .custom-logo {
		max-width: 200px;
	}


	/* HOME */
	.intro .play-button {
		position: absolute;
		width: 110px;
		right: auto;
		top: auto;
		transform: translateX(-50%);
		z-index: 1;
		bottom: -5em;
		left: 50%;
	}
	.intro .row {
		flex-direction: column-reverse;
	}
	.efficacy-research {
		text-align: center;
	}
	.dietary-lifestyle .fit-girl {
		display: none;
	}
	.efficacy-research-img::after {
		width: 60vw;
		height: 60vw;
		left: 50%;
		transform: translateX(-50%);
		top: 1em;
	}
	.dietary-lifestyle-content {
		text-align: center;
	}
	.our-team-caption {
		width: 100%;
	}
	.team-member img {
		width: 50% !important;
	}
	.team-member {
		margin-bottom: 2em;
	}
	.testimonial-item {
		margin-bottom: 2em;
	}
	.location {
		bottom: 0em;
		z-index: 0;
		padding: 3em 0em;
	}


	/* About US */
	.our-aboutus-content p {
		padding: 1em;
	}
	.our-aboutus p {
		padding: 0em 1em;
	}
	.our-aboutus-content .fit-girl {
		position: relative;
		width: 100%;
		bottom: 0;
		right: 0;
	}
	.our-aboutus {
		padding-bottom: 0em;
	}

	/* Laser */
	.sub-header.laser-sub-header {
		background-color: var(--blue);
		padding-top: 3em;
		background-size: cover;
		background-position-x: -250px;
	}
	.laser-efficacy {
		text-align: center;
	}
	.extensive-laser-content {
		background-color: var(--light-blue);
		padding: 6em 1em 1em;
	}
	.extensive-laser-content::before {
		display: none;
	}
	.extensive-laser-img {
		width: 90%;
		margin-bottom: -5em;
		position: relative;
	}
	.reason-item {
		padding-left: 0em;
		padding-bottom: 2em;
		text-align: center;
	}
	.reason-item img {
		position: relative;
		left: 0;
		width: 150px;
		padding-bottom: 1em;
	}

	/* Functional Medicine */
	.functional-medicine-sub-header {
		padding: 7em 0em 12em;
		background-size: cover;
		background-position: 20% center;
		background-repeat: no-repeat;
	}
	.functional-medicine-details .with-bg::before {
		width: 100%;
	}
	.extensive-laser.functional-medicine-emphasis .extensive-laser-img {
		margin-bottom: 0em;
		margin-top: -5em;
	}
	.extensive-laser.functional-medicine-emphasis .extensive-laser-content {
		padding-top: 2em;
		padding-bottom: 5em;
	}

}

@media (min-width: 320px) and (max-width: 415px) {
	#video-popup-container {
		width: 90%;
		left: 0;
		margin-left: 5%;
	}
}
	
	.aboutbase {
		background-color:var(--light-blue);
		padding-top:4rem;
		padding-bottom:4rem;
		text-align:center;
		color:white;
	}
	
	.aboutbase p{
		margin-top:2rem;
	}