/*
===============================================
	MAIN.CSS
	--------
	- This CSS file is same for all pages.
===============================================
*/


/* Extra Padding Section CSS */

body .extra-padding .page-section-content{
	padding: 0 80px;
}

/* Inn Section CSS */

body .monticello-inn-section{
	position: relative;
}

body .monticello-inn-section:after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
}

body .monticello-inn-section.section-loaded:after{
	background: url('../../../../../wp-content/uploads/2022/04/img-2-1.jpg.webp') center/cover no-repeat;
}


body .monticello-inn-section .inn-row .col-2{
	padding-left: 40px;
}

body .monticello-inn-section .monticello-inn-links .main-sub-heading h2{
	margin-bottom: 0px;
}

body .monticello-inn-section .monticello-inn-links .main-sub-heading h2 a{
	position: relative;
	display: inline-block;
	color: #FFFFFF;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-top: 20px;
}

body .monticello-inn-section .monticello-inn-links .main-sub-heading h2 a span:before{
	bottom: -20px;
}

body .monticello-inn-section .monticello-inn-links .main-sub-heading h2 a:hover{
	color: #FBDCA7;
}

.location-logo .mk-image-inner img {
    width: 80% !important;
}

/* Santuary Slider CSS */

body .santuary-experience-section{
	overflow: hidden;
}

body .santuary-experience-section .col-1{
	padding-right: 60px;
}

body .santuary-experience-section .santuary-experience-slider{
	position: relative;
	display: block;
	width: 155%;
	height: auto;
	overflow: hidden;
}

body .santuary-experience-slider .slides-container{
	position: relative;
	width: 60%;
	height: 420px;
}

body .santuary-experience-slider .slides-container .slide{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-110%);
}

body .santuary-experience-slider .slides-container .slide.active{
	transform: translateX(0%);
	transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body .santuary-experience-slider .slides-container .slide.next{
	transform: translateX(110%);
	transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body .santuary-experience-slider .slides-container .slide.prev{
	transform: translateX(-110%);
	transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body .santuary-experience-slider .slides-container .slide.nextwait{
	transform: translateX(220%);
	transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body .santuary-experience-slider .slides-container .slide.nextwait1{
	transform: translateX(220%);
}

body .santuary-experience-slider .slides-navigation{
	display: flex;
	width: 60%;
	justify-content: center;
	margin-top: 30px;
}

body .santuary-experience-slider .slides-navigation .nav-cta{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	border: 2px solid #FBDCA7;
	border-radius: 50%;
	cursor: pointer;
	margin-right: 30px;
	transform: rotate(180deg);
}

body .santuary-experience-slider .slides-navigation .nav-cta.nav-next{
	background: #FBDCA7;
	transform: rotate(0deg);
}

body .santuary-experience-slider .slides-navigation .nav-cta:hover{
	background: #203A3B;
	border-color: #203A3B;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body .santuary-experience-slider .slides-navigation .nav-cta:hover svg path{
	stroke: #FFFFFF;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Custom Popup CSS */

body .custom-popup {
	position: fixed;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99999;
    background: rgba(32,58,59,0.85);
	pointer-events: none;
	opacity: 0;
	transition: all 0.3s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body .custom-popup.active{
	pointer-events: auto;
	opacity: 1;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body .custom-popup .custom-popup-inner{
	position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-width: 480px;
    background: #FFFFFF;
    padding: 30px;
    text-align: left;
	pointer-events: none;
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body .custom-popup.active .custom-popup-inner{
	pointer-events: auto;
	opacity: 1;
	transition: all 0.3s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body .custom-popup .popup-close{
	position: absolute;
    top: -18px;
    right: -20px;
    display: block;
    height: 40px;
    width: 40px;
    cursor: pointer;
    z-index: 9;
    background: #e6e6e6;
    border-radius: 50%;
}

body .custom-popup .popup-close:before,
body .custom-popup .popup-close:after{
	position: absolute;
	content: '';
	top: 50%;left: 50%;
	height: 3px;
	width: 45%;
	background-color: #203A3B;
	transform: translate(-50%, -50%) rotate(45deg);
}
	
body .custom-popup .popup-close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

body .custom-popup form .gform_footer input{
    font-size: 16px;
	font-family: "gordita-font", sans-serif;
    color: #000000 !important;
    background-color: #FDEED3 !important;
    font-weight: 500;
    min-height: 50px !important;
    width: 100%;
    margin: 0px;
    border-radius: 25px;
    z-index: 2;
	text-transform: initial;
	letter-spacing: 0px;
	margin-bottom: 0px !important;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body .custom-popup form .gform_footer input:hover{
    color: #FFFFFF !important;
    background-color: #CF8C55 !important;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body .custom-popup form .custom-form-field.no-title .gfield_label{
    display: none;
}

body .custom-popup form .gform_fields {
    width: 100%;
}

body .custom-popup form .gform_fields .custom-form-field label,
body .custom-popup form .gform_fields .custom-form-field legend{
	font-family: "gordita-font", sans-serif;
	font-size: 15px;
	font-weight: 500;
    color: #000000;
}

body .custom-popup form .gform_fields .custom-form-field input,
body .custom-popup form .gform_fields .custom-form-field select{
    font-family: "gordita-font", sans-serif;
    font-size: 15px;
    color: #000000;
    padding: 8px 12px;
	border: 1px solid #e6e6e6;
	border-color: #e6e6e6;
}

body .custom-popup form .gform_fields .custom-form-field select{
	margin-bottom: 4px;
}

body .custom-popup form .gform_fields .custom-form-field input::placeholder,
body .custom-popup form .gform_fields .custom-form-field select::placeholder{
	font-family: "gordita-font", sans-serif;
    font-size: 15px;
	font-weight: 400;
    color: #000000;
}

body #mk-theme-container .custom-popup form .gfield_error [aria-invalid=true]{
    border: 1px solid #e6e6e6;
}

body .custom-popup .gform_wrapper form .gfield_required{
    display: none;
}

body .custom-popup form .gform_fields .custom-form-field .gchoice label{
	margin-left: 10px;
}

body #mk-theme-container .custom-popup .gform_confirmation_wrapper .gform_confirmation_message{
	font-size: 22px;
	line-height: 170%;
	margin-top: 20px;
	margin-bottom: 30px;
}

/* Tour facility Sliders CSS */

body #mk-theme-container .tour-facility-slider-section,
body #mk-theme-container .tour-facility-slider-section .vc_column-inner {
    position: relative;
    padding: 0;
}

body #mk-theme-container .tour-facility-slider-section .wpb_raw_code {
    margin-bottom: 0;
}

body .hlc-tour-facility-slider {
    position: relative;
    display: block;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    padding-top: 0px;
    margin-bottom: 60px;
}

body #recreation.hlc-tour-facility-slider{
	margin-bottom: 0px;
}

body .hlc-tour-facility-slider .slider-name{
    height: 70px;
}

body .hlc-tour-facility-slider .slider-name p {
    padding-bottom: 10px;
}

body .hlc-tour-facility-slider .slides-container {
    position: relative;
    display: block;
    height: calc(100% - 100px);
    width: 100%;
}

body .hlc-tour-facility-slider .slide-icons-container {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

body .hlc-tour-facility-slider .slides-container .slide {
    position: absolute;
    left: -150%;
    top: 50%;
    -webkit-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale1);
    height: 100%;
    width: 65%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0px;
    overflow: hidden;
    -webkit-box-shadow: 0 3px 60px rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #ededed;
}

body .hlc-tour-facility-slider .slides-container .slide.first {
    left: 0%;
    -webkit-transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
    -o-transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
    transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
}

body .hlc-tour-facility-slider .slides-container .slide.next {
    left: 75%;
    -webkit-transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
    -o-transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
    transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
}

body .hlc-tour-facility-slider .slides-container .slide.prev {
    left: -75%;
    -webkit-transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
    -o-transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
    transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
}

body .hlc-tour-facility-slider .slides-container .slide.prevwait {
    left: -75%;
    -webkit-transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
    -o-transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
    transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
}

body .hlc-tour-facility-slider .slides-container .slide.nextwait {
    left: 150%;
    -webkit-transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
    -o-transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
    transition: 0.5s cubic-bezier(0.19, 0.5, 0.46, 0.88);
}

body .hlc-tour-facility-slider .slides-container .slide.remove-transition {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

body .hlc-tour-facility-slider .slide-nav-container .slide-nav {
    position: absolute;
    top: 60%;
    left: 6%;
    width: 75px;
    height: 75px;
    background: #fff;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    -webkit-box-shadow: 0 3px 60px rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 60px rgba(0, 0, 0, 0.08);
}

body .hlc-tour-facility-slider .slide-nav-container .slide-nav.nav-right {
    background: #FBDCA7;
    left: auto;
    right: 21%;
}

body .hlc-tour-facility-slider .slide-nav-container .slide-nav.nav-left {
    display: none;
}

body .hlc-tour-facility-slider .slide-nav-container .slide-nav svg {
    position: absolute;
    left: 50%;
    top: 50%;
    fill: #2b2b2b;
    height: 20px;
    width: 20px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

body .hlc-tour-facility-slider .slide-nav-container .slide-nav.nav-right svg {
    fill: #000000;
}

body .hlc-tour-facility-slider .slide-nav-container .slide-nav.nav-right:hover{
	background: #203A3B;
}

body .hlc-tour-facility-slider .slide-nav-container .slide-nav.nav-right:hover svg path{
	stroke: #FFFFFF;
}

/* Tour-facility-slider-section  CSS*/

body .tour-facility-slider-section {
    position: relative;
}

body .tour-facility-slider-section .col-1 {
    position: relative;
    width: 30%;
    padding: 0 60px;
}

body .tour-facility-slider-section .col-1.fixed {
    position: fixed;
    top: 155px;
}

body .tour-facility-slider-section .col-2 {
    float: right;
    width: 70%;
}

body .tour-facility-slider-section .col-1.navigation-col a {
    color: #E1E1E1;
    border: none;
}

body .tour-facility-slider-section .col-1.navigation-col h2 a:hover,
body .tour-facility-slider-section .col-1.navigation-col h2 a.active {
    color: #000000;
}

/* Donate CSS */

body.donate-page .donate-form-col{
	box-shadow: 0px 2px 20px rgba(0,0,0,0.09);
	background: #FFFFFF;
	padding: 40px;
}

body.donate-page .donate-form-col form .gform_footer input{
    font-size: 16px;
	font-family: "gordita-font", sans-serif;
    color: #FFFFFF !important;
    background-color: #CF8C55 !important;
    font-weight: 500;
    min-height: 50px !important;
    width: auto;
    margin: 0px;
    border-radius: 25px;
    z-index: 2;
	text-transform: uppercase;
	letter-spacing: 0px;
	margin-bottom: 0px !important;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	min-width: 250px;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 10px;
}

body.donate-page .donate-form-col form .gform_footer input:hover{
    color: #FFFFFF !important;
    background-color: #203A3B !important;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.donate-page .donate-form-col form .custom-form-field.no-title .gfield_label{
    display: none;
}

body.donate-page .donate-form-col form .gform_fields {
	display: flex;
    width: 100%;
	flex-wrap: wrap;
	margin-top: 20px;
	margin-bottom: 20px;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field{
	width: calc(50% - 10px);
	margin-bottom: 10px;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field.full-width{
	width: 100%;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field.full-width input{
	width: 100%;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field.full-width.address-custom-field{
	/* display: flex; */
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field.final-amount-field{
    display: none !important;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field.full-width.address-custom-field span{
	width: calc(50% - 10px);
	display: inline-block;
	margin-bottom: 10px;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field.full-width.address-custom-field span label{
	margin-top: 10px;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field.full-width.address-custom-field span:nth-child(even){
	margin-left: 17px;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field .ginput_container_radio .gfield_radio{
	display: flex;
	width: 100%;
	margin-bottom: 10px;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field.full-width.address-custom-field select{
	font-weight: 500;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field .ginput_container_radio .gfield_radio .gchoice{
	display: flex;
	align-items: center;
	width: 50%;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field label,
body.donate-page .donate-form-col form .gform_fields .custom-form-field legend{
	display: block;
	font-family: "gordita-font", sans-serif;
	font-size: 16px;
	font-weight: 500;
    color: #000000;
	margin-bottom: 10px;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field .gchoice label{
	margin-bottom: 0px;
	margin-left: 5px;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field input,
body.donate-page .donate-form-col form .gform_fields .custom-form-field select,
body.donate-page .donate-form-col form .gform_fields .custom-form-field textarea{
    font-family: "gordita-font", sans-serif;
    font-size: 16px;
    color: #000000;
    padding: 8px 12px;
	border: 1px solid #e6e6e6;
	border-color: #e6e6e6;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field select,
body.donate-page .donate-form-col form .gform_fields .custom-form-field textarea{
	margin-bottom: 4px;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field textarea{
	height: 120px;
}

body.donate-page .donate-form-col form .gform_fields .custom-form-field input::placeholder,
body.donate-page .donate-form-col form .gform_fields .custom-form-field select::placeholder,
body.donate-page .donate-form-col form .gform_fields .custom-form-field textarea::placeholder{
	font-family: "gordita-font", sans-serif;
    font-size: 15px;
	font-weight: 400;
    color: #000000;
}

body.donate-page  #mk-theme-container .donate-form-col .gfield_error [aria-invalid=true]{
    border: 1px solid #e6e6e6;
}

body.donate-page .donate-form-col .gform_wrapper form .gfield_required{
    display: none;
}

body.donate-page  #mk-theme-container .donate-form-col .gform_confirmation_wrapper .gform_confirmation_message{
	font-size: 22px;
	line-height: 170%;
	margin-top: 20px;
	margin-bottom: 30px;
    text-align: center;
}

/* Success Stories CSS */

body .stories-section .story-review {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 420px;
    margin: 0px auto;
    background: #fff;
    -webkit-box-shadow: 0 3px 60px rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 0px;
}

body .stories-section .story-review iframe {
    width: 100%;
    height: 190px;
}

body .stories-section .story-review .story-author h2 {
    margin-bottom: 5px;
    margin-top: 15px;
    padding: 0 15px;
    text-align: center;
}

body .stories-section .story-review .story-desc p {
    padding: 0 40px;
    margin-bottom: 40px;
    text-align: center;
}

/* Our Patients Slider CSS */

body.patient-slider .our-patients-section{
	position: relative;
}

.test-author.para-text img {
    max-width: 85px;
}

body.patient-slider .our-patients-section .main-heading h1{
	position: relative;
	display: inline-block;
	margin-top: 40px;
}

body.patient-slider .our-patients-section .main-heading h1:before{
	position: absolute;
	content: "";
	top: -48px;
	left: -54px;
	width: 86px;
	height: 86px;
	background: url('../../../../../wp-content/uploads/2022/03/quotes.svg') center/cover no-repeat;
	z-index: -1;
}

body.patient-slider .our-patients-slider{
	position: relative;
	display: block;
	width: 100%;
	height: 460px;
	padding: 0%;
}

body.patient-slider .our-patients-slider	.slides-container{
	position: relative;
	display: block;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

body.patient-slider .our-patients-slider	.slides-container .slide{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 10px;
	left: 50%;
	width: 50%;
	height: calc(100% - 20px);
	padding: 0 40px;
	padding-bottom: 15px;
	transform: translateX(-200%);
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	opacity: 0.2;
	border: 1px solid #203a3b57;
	background: #FFFFFF;
}

body.patient-slider .our-patients-slider	.slides-container .slide.active{
	transform: translateX(-50%);
	opacity: 1;
	transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
	border: none;
}

body.patient-slider .our-patients-slider	.slides-container .slide.next{
	transform: translateX(60%);
	transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.patient-slider .our-patients-slider	.slides-container .slide.nextwait{
	transform: translateX(100%);
	transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.patient-slider .our-patients-slider	.slides-container .slide.nextwait1{
	transform: translateX(200%);
}

body.patient-slider .our-patients-slider	.slides-container .slide.prev{
	transform: translateX(-160%);
	transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.patient-slider .our-patients-slider	.slides-container .slide.prevwait{
	transform: translateX(-220%);
}

body.patient-slider .our-patients-slider	.slides-container .test-text p{
	text-align: center;
}

body.patient-slider .our-patients-slider	.slides-container .test-author{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 24px;
}

body.patient-slider .our-patients-slider	.slides-container .test-author p{
	margin-left: 15px;
	margin-bottom: 0px;
}

body.patient-slider #mk-theme-container .our-patients-section .call-cta{
	margin-top: -75px;
}

body.patient-slider #mk-theme-container .our-patients-section .vc_col-sm-12{
	padding: 0px;
}

body.patient-slider .our-patients-slider	.slides-navigation .nav-cta{
	position: absolute;
	top: calc(50% - 40px);
	left: calc(50% - 25vw - 35px);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	border: 2px solid #FBDCA7;
	border-radius: 50%;
	cursor: pointer;
	margin-right: 30px;
	transform: rotate(180deg);
}

body.patient-slider .our-patients-slider	.slides-navigation .nav-cta.nav-next{
	left: calc(50% + 25vw - 35px);
	background: #FBDCA7;
	transform: rotate(0deg);
}

body.patient-slider .our-patients-slider	.slides-navigation .nav-cta:hover{
	background: #203A3B;
	border-color: #203A3B;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.patient-slider .our-patients-slider	.slides-navigation .nav-cta:hover svg path{
	stroke: #FFFFFF;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.brayden-page .brayden-row .brayden-col{
	background: rgba(255,255,255,0.87);
	padding: 30px;
}

body.brayden-page .brayden-row .brayden-col h2{
	margin-bottom: 0px;
}

body .staff-member{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	padding-right: 20px;
}

body .staff-member .staff-image img{
	min-width: 200px;
	margin-right: 25px;
	border-radius: 50%;
}

body .staff-member .staff-description h2{
	margin-bottom: 10px;
}

body .staff-member .staff-description .small-text p{
	font-weight: 500 !important;
}

/* Download EBook CSS */

body.ebook-page .ebook-first-fold-section .background-layer{
	width: 50%;
	left: 50%;
}

body.ebook-page .ebook-first-fold-section .mega-main-heading h1{
	position: relative;
	font-size: 54px;
	max-width: 380px;
}

body.ebook-page .ebook-first-fold-section .mega-main-heading h1:before{
	position: absolute;
	content: '';
	bottom: 10px;
	right: -60px;
	width: 150px;
	height: 25px;
	background: url('.././../../../../wp-content/uploads/2024/01/2.svg') center/contain no-repeat;
	z-index: -1;
}

body.ebook-page.thanks-ebook #download-book .sub-heading{
	position: relative;
}

body.ebook-page.thanks-ebook #download-book .sub-heading:before{
	position: absolute;
	content: '';
	bottom: 60px;
	right: -60px;
	width: 150px;
	height: 25px;
	background: url('.././../../../../wp-content/uploads/2024/01/2.svg') center/contain no-repeat;
	transform: rotateX(180deg);
	z-index: -1;
}

body.ebook-page .ebook-first-fold-section .form-col{
	background: #FFFFFF;
	padding: 40px 20px;
	box-shadow: 0px 12px 68px #00000029;
}

body.ebook-page .ebook-first-fold-section .form-col .gform-field-label{
	display: none;
}

body.ebook-page .ebook-first-fold-section .form-col .custom-form-field input{
	font-family: "gordita-font", sans-serif;
	font-size: 16px;
	padding: 12px;
	color: #203A3B;
	border-color: #707070;
}

body.ebook-page .ebook-first-fold-section .form-col .custom-form-field input::placeholder{
	font-size: 16px;
	color: #203A3B;
}

body.ebook-page #mk-theme-container .ebook-first-fold-section .gform_wrapper .gfield_error [aria-invalid=true]{
	border: 1px solid #707070;
}

body.ebook-page .ebook-first-fold-section .form-col .gform_footer input{
	width: 100%;
	margin-top: 20px;
	display: inline-block;
	outline: 0;
	text-shadow: none;
	box-shadow: none;
	font-size: 14px;
	font-weight: 500;
	padding: 20px 30px;
	letter-spacing: 1px;
	background-color: #cf8c55 !important;
	color: #fff!important;
	box-shadow: 0 2px 10px rgba(0,0,0,.28);
	line-height: 100%;
	min-width: 240px;
	text-align: center;
	border-radius: 50px;
}

body.ebook-page .ebook-first-fold-section .form-col .gform_footer input:hover{
	background-color: #203a3b!important;
	color: #fff!important
}

body.ebook-page .ebook-first-fold-section .list-icon-text ul li{
	position: relative;
	list-style: none;
	margin-left: 25px;
}

body.ebook-page .ebook-first-fold-section .list-icon-text ul li:before{
	position: absolute;
	content: '';
	top: 9px;
	left: -25px;
	width: 15px;
	height: 15px;
	background: url(../../../../../wp-content/uploads/2024/01/3.svg) center/contain no-repeat;
}

body.ebook-page .testimonial-row .testimonial-col .vc_column-inner > .wpb_wrapper{
	background: #FFFFFF;
	padding: 40px 25px;
}

body.ebook-page .testimonial-row .stars-raw-html{
	display: flex;
	align-items: center;
	justify-content: center;
}

body.ebook-page .testimonial-row .stars-raw-html .stars-container{
	display: flex;
	margin-bottom: 25px;
}

body.ebook-page .testimonial-row .stars-raw-html .star-item{
	width: 15px;
	height: 15px;
	background: url('../../../../../wp-content/uploads/2024/01/5.svg') center/contain no-repeat;
	margin: 0 2px;
}

body.ebook-page .testimonial-row .testimonial-col .testimonial-desc{
	min-height: 300px;
}

body.ebook-page .footer-signup-section{
	display: none;
}

body.ebook-page .whats-in-section .mega-main-heading h2{
	font-family: "gordita-font", sans-serif;
	font-weight: 500;
	margin-bottom: 10px;
}

body.ebook-page .whats-in-section .mega-main-heading:before {
    position: absolute;
    content: '';
    bottom: 10px;
    left: 0;
    width: 110px;
    height: 15px;
    background: url('../../../../../wp-content/uploads/2024/01/4.svg') top center/contain no-repeat;
    z-index: -1
}

body.ebook-page .whats-in-section .white-text strong{
	color: #FFFFFF !important;
}

body.ebook-page .author-section .main-sub-heading h2{
	font-family: "gordita-font", sans-serif;
}

body.ebook-page .whats-in-section:before {
    position: absolute;
    content: '';
    bottom: 40px;
    left: 0;
    width: 45vw;
    height: 20vw;
    background: url(../../../../../wp-content/uploads/2023/01/graphic.svg) top center/contain no-repeat;
    transform: rotateY(180deg);
    z-index: 1
}

body.ebook-page .author-section:before {
    position: absolute;
    content: '';
    top: 20px;
    right: 20px;
    width: 45vw;
    height: 26vw;
    background: url(../../../../../wp-content/uploads/2022/03/symbol2.svg) top center/contain no-repeat;
    z-index: 1
}

body.ebook-page .chapter-box-row .box-col .vc_column-inner > .wpb_wrapper{
	background: #FDEED3;
	padding: 40px 25px;
	margin-bottom: 20px;
}

body.ebook-page .chapter-box-row .box-col .box-icon img{
	margin-bottom: 10px;
}

/*Updated on ebook-page*/

body.ebook-page .flip-box-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  justify-content: center;
}

body.ebook-page .flip-box {
  background-color: transparent;
  width: 30%;
  height: 450px;
  margin-right: 40px;
  margin-bottom: 20px;
  position: relative;
}

body.ebook-page .flip-box-inner:after {
    content: 'CHAPTER1';
    height: 410px;
    width: 35px;
    background: #FBDCA7;
    color: #000;
    position: absolute;
    transform: rotate(180deg);
    top: 20px;
    left: -18px;
    text-orientation: sideways-right;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    letter-spacing: 10px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.ebook-page .flip-box:nth-child(2) .flip-box-inner:after {
	content: 'CHAPTER2';	
}

body.ebook-page .flip-box:nth-child(3) .flip-box-inner:after {
	content: 'CHAPTER3';	
}

body.ebook-page .flip-box:nth-child(4) .flip-box-inner:after {
	content: 'CHAPTER4';	
}

body.ebook-page .flip-box:nth-child(5) .flip-box-inner:after {
	content: 'CHAPTER5';	
}

body.ebook-page .flip-box:nth-child(6) .flip-box-inner:after {
	content: 'CHAPTER6';	
}

body.ebook-page .flip-box:nth-child(7) .flip-box-inner:after {
	content: 'CHAPTER7';	
}

body.ebook-page .flip-box:nth-child(8) .flip-box-inner:after {
	content: 'CHAPTER8';	
}

body.ebook-page .flip-box:nth-child(9) .flip-box-inner:after {
	content: 'CHAPTER9';	
}

body.ebook-page .flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform .8s;
  transform-style: preserve-3d;
}

body.ebook-page .flip-box-inner p.quote-text {
	font-weight: 500;
    position: relative;
    padding-left: 20px;
}

body.ebook-page .flip-box-inner p.quote-text:before {
	content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background: #999;
    top: 0;
    left: 0;
}

body.ebook-page .flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

body.ebook-page .flip-box:hover .flip-box-inner:after {
	transform: rotateX(180deg);
    background: #FDEED3;
    left: auto;
    right: -18px;
    transition: transform .7s;
}

body.ebook-page .flip-box-front,
body.ebook-page .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

body.ebook-page .flip-box-front.para-text p,
body.ebook-page .flip-box-back.para-text p {
	line-height: 165%;
}

body.ebook-page .flip-box-front {
    background-color: #FDEED3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px 0 40px;
}

body.ebook-page .flip-box-front p strong {
	font-size: 20px;
}

body.ebook-page .flip-box-front p,
body.ebook-page .flip-box-back p {
	text-align: left;
}

body.ebook-page .flip-box-back {
    background-color: #FBDCA7;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    padding: 0 15px 0 40px;
}

body.ebook-page .author-section .box-image .mk-image-inner {
	overflow: visible;
}

body.ebook-page .author-section .box-image .mk-image-inner:before {
    position: absolute;
    content: '';
    top: -30px;
    left: -30px;
    height: 100%;
    width: 100%;
    background: #cf8c55;
    z-index: -1;
}

/* New Admissions CSS */

body.new-admissions .first-fold-section{
	position: relative;
}

body.new-admissions .first-fold-section:before {
	position: absolute;
	content: '';
	top: 80px;
	left: 35%;
	height: 13vw;
	width: 22vw;
	background: url('../../../../../wp-content/uploads/2022/03/symbol2.svg') bottom right/contain no-repeat;
}

body.new-admissions.difference-page .first-fold-section:before {
	top: 20px;
	left: 25%;
}

body.new-admissions .steps-section .step-image img{
	border-radius: 50%;
	margin-bottom: 0px;
	height: 130px;
	width: 130px;
	object-fit: cover;
}

body.new-admissions #mk-theme-container .steps-section .step-no-text h2 strong{
	color: #cf8c55
}

body.new-admissions #mk-theme-container .steps-section .step-no-text h2{
	position: relative;
	background: #FFFFFF;
	padding: 10px 10px;
	margin-top: -10px;
	z-index: 2;
}

body.new-admissions #mk-theme-container .steps-section .step-no-text h2:before{
	position: absolute;
	content: '';
	top: 50px;
	left: 50%;
	width: 10px;
	height: 400px;
	border-left: 2px dashed #cf8c55;
	transform: translateX(-50%);
	background: #FFFFFF;
	z-index: 1;
}

body.new-admissions #mk-theme-container .steps-section .last-step .step-no-text h2:before{
	display: none;
}

body.new-admissions .steps-section .step-text p{
	display: flex;
	align-items: flex-start;
}

body.new-admissions .steps-section .step-text img{
	width: 60px;
	min-width: 60px;
	height: 50px;
	object-fit: contain;
}

body.new-admissions .steps-section .step-text strong{
	display: block;
	font-weight: 400 !important;
	margin-left: 15px;
}

body.new-admissions .circle-image img{
	border-radius: 50%;
	object-fit: cover;
}

body.new-admissions .image-text-section .image-text-row{
	position: relative;
	padding: 60px 40px;
}

body.new-admissions .image-text-section .image-text-row:before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 82%;
	height: 100%;
	border: 2px solid #cf8c55;
	z-index: -1;
}

body.new-admissions .image-text-section.left-image .image-text-row:before{
	left: 18%;
}

body.new-admissions .image-text-section.section-1 .image-elem,
body.new-admissions .image-text-section.section-2 .image-elem{
	margin-top: -120px;
}

body.new-admissions .image-text-section.section-1 .image-elem img,
body.new-admissions .image-text-section.section-2 .image-elem img{
	height: 300px;
	width: 300px;
}

body.new-admissions .image-text-section.section-3 .image-elem img{
	height: 260px;
	width: 260px;
}

body.new-admissions .image-text-section.section-4 .image-text-row{
	width: 85%;
	left: 50%;
	transform: translateX(-50%);
}

body.new-admissions .steps-section,
body.new-admissions .image-text-section.section-2{
	position: relative;
}

body.new-admissions .steps-section:before {
    position: absolute;
    content: '';
    bottom: 100px;
    left: 0;
    width: 95vw;
    height: 42vw;
    background: url(../../../../../wp-content/uploads/2023/01/graphic.svg) top center/contain no-repeat;
    transform: rotateY(180deg);
    z-index: -1;
	opacity: 0.5;
}

body.new-admissions .image-text-section.section-2{
	overflow: visible !important;
}

body.new-admissions .image-text-section.section-2:before {
	position: absolute;
	content: '';
	top: -10vw;
	right: 2%;
	height: 13vw;
	width: 22vw;
	background: url('../../../../../wp-content/uploads/2022/03/symbol2.svg') bottom right/contain no-repeat;
}

body.new-admissions .image-text-section.section-2{
	background: transparent linear-gradient(180deg, #FFFFFF 0%, #FCFAF5 100%) 0% 0% no-repeat padding-box;
}

body.new-admissions .image-text-section.section-3:before {
    position: absolute;
    content: '';
    bottom: 40px;
    right: 0;
    width: 52vw;
    height: 23vw;
    background: url(../../../../../wp-content/uploads/2023/01/graphic.svg) top center/contain no-repeat;
    z-index: 1
}

body.new-admissions .image-text-section.section-4:before {
	position: absolute;
	content: '';
	top: 120px;
	right: 15%;
	height: 13vw;
	width: 22vw;
	background: url('../../../../../wp-content/uploads/2022/03/symbol2.svg') bottom right/contain no-repeat;
	opacity: 0.6;
}

body.new-admissions .first-fold-section .box-image .mk-image-inner{
	position: relative;
	overflow: visible;
	margin-right: 30px;
	margin-top: 40px;
}

body.new-admissions .first-fold-section .box-image .mk-image-inner:before{
	position: absolute;
	content: '';
	top: -30px;
	left: 30px;
	height: 100%;
	width: 100%;
	background: #cf8c55;
}

body.new-admissions .first-fold-section .box-image .mk-image-inner img{
	position: relative;
	z-index: 2;
}

body.difference-page .difference-box-section .difference-row .col{
	padding: 20px;
	display: flex;
	min-height: 200px;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.03);
	background: #FFF;
}

body.difference-page .difference-box-section .difference-row.row-1 .col.col-1,
body.difference-page .difference-box-section .difference-row.row-1 .col.col-3,
body.difference-page .difference-box-section .difference-row.row-2 .col.col-2{
	background: #FDEED3;
}

body.difference-page .new-background-4:before {
	position: absolute;
	content: '';
	bottom: 40px;
	left: 0;
	width: 45vw;
	height: 20vw;
	background: url(../../../../../wp-content/uploads/2023/01/graphic.svg) top center/contain no-repeat;
	transform: rotateY(180deg);
	z-index: 1;
}

body.thankyou-fb #theme-page .theme-page-wrapper{
	margin-bottom: 0px;
}

body.thankyou-fb .footer-signup-section{
	display: none;
}

body.thankyou-fb #theme-page .theme-page-wrapper .theme-content{
	padding-bottom: 0px;
}

body.thankyou-fb .ebook-section .list-icon ul li{
	position: relative;
	list-style: none;
	margin-left: 25px;
}

body.thankyou-fb .ebook-section .list-icon ul li:before{
	position: absolute;
	content: '';
	top: 9px;
	left: -25px;
	width: 15px;
	height: 15px;
	background: url(../../../../../wp-content/uploads/2024/01/3.svg) center/contain no-repeat;
}

body.thankyou-fb .ebook-section .ebook-heading h1{
	position: relative;
	display: inline-block;
}

body.thankyou-fb .ebook-section .ebook-heading h1:before{
	position: absolute;
	content: '';
	bottom: 30px;
	right: -155px;
	width: 150px;
	height: 30px;
	background: url(../../../../../wp-content/uploads/2024/04/icon1-2.svg) center/contain no-repeat;
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
	body.ebook-page .flip-box {
		width: 45%;
	}
}

/* Smaller Screen Desktops */
@media only screen and (max-width: 1280px) {
    
}

/* Mid Large Screen Desktops */
@media only screen and (min-width: 1440px) {
    
}

/* Large Screen Desktops */
@media only screen and (min-width: 1920px) {

}



/* iPads (portrait and landscape) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) {

	/* Image Grid Section CSS */

	body .image-grid-section .image-grid-row .col{
		padding: 10px;
	}

    /* Our Patients Slider CSS */

	body.patient-slider .our-patients-slider{
		height: 460px;
	}

	body.ebook-page.thanks-ebook #download-book .sub-heading:before{
		display: none;
	}
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {

}

/* iPads (portrait) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {

	/* Monticello Section CSS */

	body .monticello-inn-section .inn-row .col-2{
		padding-left: 15px;
	}

	body .tour-facility-slider-section .col-1 {
        display: none;
    }
    body .tour-facility-slider-section .col-2 {
        width: 100%;
        padding-left: 40px;
    }
    body .hlc-tour-facility-slider {
        height: 40vh;
    }

    /* Our Patients Slider CSS */

	body.patient-slider .our-patients-slider{
		height: 460px;
	}

	body.patient-slider .our-patients-slider .slides-container .slide{
		width: 80%;
	}

	body.patient-slider .our-patients-slider	.slides-navigation .nav-cta{
		left: calc(50% - 40vw - 35px);
	}

	body.patient-slider .our-patients-slider	.slides-navigation .nav-cta.nav-next{
		left: calc(50% + 40vw - 35px);
	}

	body.ebook-page .flip-box {
		width: 45%;
	}
}

/* Mobile Devices */
@media only screen and (max-width: 765px) {

	body .flex-align-center{
		display: block;
	}

	/* Monticello Section CSS */

	body .monticello-inn-section .inn-row .col-2{
		padding-left: 0px;
	}

	body .monticello-inn-section:after{
		height: 220px;
		width: 100%;
	}

	body .monticello-inn-section .inn-row .col-1{
		padding-right: 0px;
		padding-top: 200px;
	}

	/* Sanctuary Experience CSS */

	body .santuary-experience-section .col-1{
		padding-right: 0px;
		padding-bottom: 60px;
	}

	body .santuary-experience-slider .slides-container{
		height: 320px;
	}

	/* Extra Padding Section CSS */

	body .extra-padding .page-section-content{
		padding: 0 0px;
	}

	/* Custom Popup CSS */

	body .custom-popup .custom-popup-inner{
		padding: 30px 20px;
		width: calc(100% - 50px);
	}

	body #mk-theme-container .custom-popup .gform_confirmation_wrapper .gform_confirmation_message{
		font-size: 18px;
		margin-top: 10px;
		margin-bottom: 15px;
	}

	body .tour-facility-slider-section .col-1 {
        display: none;
    }
    body .tour-facility-slider-section .col-2 {
        width: 100%;
        padding-left: 15px;
    }
    body .hlc-tour-facility-slider {
        height: 300px;
    }

	body.donate-page .donate-form-col form .gform_fields .custom-form-field.full-width.address-custom-field span{
		width: 100%;
	}
	
	
	body.donate-page .donate-form-col form .gform_fields .custom-form-field.full-width.address-custom-field span:nth-child(even){
		margin-left: 0px;
	}

	body .stories-section .story-review .story-desc p {
	    padding: 0 30px;
	}

    /* Our Patients Slider CSS */

	body.patient-slider .our-patients-section .main-heading h1:before{
		width: 55px;
		height: 55px;
		left: -5px;
		top: -40px;
	}

	body.patient-slider .our-patients-slider{
		height: 640px;
	}

	body.patient-slider .our-patients-slider .slides-container .slide{
		width: 80%;
	}

	body.patient-slider .our-patients-slider	.slides-navigation .nav-cta{
		left: calc(50% - 40vw - 35px);
	}

	body.patient-slider .our-patients-slider	.slides-navigation .nav-cta.nav-next{
		left: calc(50% + 40vw - 35px);
	}

	body.brayden-page .brayden-section .background-layer{
		background-position: top center !important;
		background-size: contain !important;
		
	}

	body.brayden-page .brayden-section{
		padding-top: 80px !important;
		background: #f7f7f7 !important
	}

	body.brayden-page .brayden-row .brayden-col{
		padding: 30px;
	}

	body .staff-member{
		padding-right: 0px;
	}


	body .staff-member .staff-image img{
		min-width: 125px;
		max-width: 125px;
	}

	/* Download EBook CSS */

	body.ebook-page .ebook-first-fold-section .background-layer{
		width: 100%;
		left: 0%;
		height: 260px;
	}

	body.ebook-page .ebook-first-fold-section{
		padding-top: 220px !important;
	}

	body.ebook-page.thanks-page .ebook-first-fold-section.desktop-version .background-layer{
		display: none;
	}

	body.ebook-page.thanks-page .ebook-first-fold-section.desktop-version{
		padding-top: 0px !important;
	}

	body.ebook-page .ebook-first-fold-section .mega-main-heading h1{
		font-size: 44px;
	}

	body.ebook-page .ebook-first-fold-section .mega-main-heading h1:before{
		display: none;
	}

	body.ebook-page .ebook-first-fold-section .form-col{
		margin-top: 40px;
	}

	body.ebook-page .whats-in-section:before{
		width: 90vw;
		height: 40vw;
	}

	body.ebook-page .whats-in-section .mega-main-heading:before{
		width: 80px;
	}

	body.ebook-page .testimonial-row .testimonial-col .vc_column-inner > .wpb_wrapper{
		margin-bottom: 20px;
	}

	body.ebook-page .author-section:before{
		width: 90vw;
		height: 52vw;
	}

	/* New Admissions CSS */
	
	body.new-admissions .first-fold-section:before {
		top: 60px;
		left: 35%;
		height: 40vw;
		width: 62vw;
	}

	body.new-admissions .image-text-section.section-2:before {
		top: -22vw;
		right: 2%;
		height: 40vw;
		width: 62vw;
	}

	body.new-admissions .image-text-section.section-3:before {
	    bottom: 0px;
	    right: 0;
	    width: 85vw;
	    height: 35vw;
	}
	
	body.new-admissions .image-text-section.section-4:before {
		top: 50%;
		right: 5%;
		height: 40vw;
		width: 62vw;
	}

	body.new-admissions #mk-theme-container .steps-section .step-no-text h2:before{
		display: none;
	}

	body.new-admissions .image-text-section .image-text-row{
		padding: 30px 25px;
	}

	body.new-admissions .image-text-section .image-text-row:before{
		width: 100%;
	}

	body.new-admissions .image-text-section.left-image .image-text-row:before{
		left: 0px;
	}

	body.new-admissions .image-text-section.section-1 .image-elem img, body.new-admissions .image-text-section.section-2 .image-elem img{
		width: 240px;
		height: 240px;
	}

	body.new-admissions .image-text-section.section-1 .image-elem, body.new-admissions .image-text-section.section-2 .image-elem{
		margin-top: 0px;
	}

	body.new-admissions .image-text-section.right-image .image-text-row .image-elem img{
		margin-top: 30px;
	}

	body.new-admissions .image-text-section.left-image .image-text-row .image-elem img{
		margin-bottom: 30px;
	}

	body.new-admissions #mk-theme-container .steps-section .step-no-text h2{
		margin-top: 0px;
	}

	body.new-admissions .image-text-section.section-4 .image-text-row{
		width: 100%;
	}

	body.ebook-page .author-section .box-image .mk-image-inner img {
		max-width: 300px;
	}

	body.ebook-page .flip-box {
		width: 80%;
		height: 430px;
	}

	body.ebook-page .flip-box-inner:after {
	    height: 390px;
	    top: 20px;
   	}

	body.difference-page .new-background-4:before {
		width: 90vw;
		height: 40vw;
	}

	body.thankyou-fb .ebook-section .ebook-heading h1:before{
		display: none;
	}

	body.ebook-page.thanks-ebook #download-book .sub-heading:before{
		display: none;
	}
}