/*!
Theme Name: Mood Theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mood-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Mood Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*//*!
Theme Name: Mood Theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mood-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Mood Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--font-size--70: 70px;
	--font-size--60: 60px;
	--font-size--45: 45px;
	--font-size--36: 36px;
	--font-size--30: 30px;
	--font-size--24: 24px;
	--font-size--22: 22px;
	--font-size--20: 20px;
	--font-size--18: 18px;
	--font-size--16: 16px;
	--primary-color: #017aaa;
	--secondary-color: #343433;
	--body-color: #000;
	--bg-white: #FFF;
	/* 	--jost:"Jost", serif; */
	--Helvetica-Inserat-Roman: 'Helvetica-Inserat-Roman', sans-serif;
	--Helvetica-Bold-Condensed: 'Helvetica-Bold-Condensed', sans-serif;
	--Helvetica-Rounded-Bold: 'Helvetica-Rounded-Bold', sans-serif;
	--Helvetica-Light-Condensed: 'Helvetica-Light-Condensed', sans-serif;
}

* {
	box-sizing: border-box;
}

body,
html {
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	/* 	font-family: "Jost", serif; */
	font-family: 'Helvetica', sans-serif;
	color: #000000;
	font-size: var(--font-size--16);
	font-weight: 400;
	line-height: 1.5;
	overflow-x: hidden;
	letter-spacing: 0.5px;
	position: relative;
}
@font-face {
	font-family: 'Helvetica';
	src: url("https://moodandmindclinic.com/wp-content/themes/mood-theme/fonts/Helvetica.otf") format("opentype");
}
/* @font-face {
	font-family: 'Helvetica-Light-Condensed';
	src: url("https://moodandmindclinic.com/wp-content/themes/mood-theme/fonts/Helvetica-Light-Condensed.otf") format("opentype");
}

@font-face {
	font-family: 'Helvetica-Rounded-Bold';
	src: url("https://moodandmindclinic.com/wp-content/themes/mood-theme/fonts/Helvetica-Rounded-Bold.otf") format("opentype");
}


@font-face {
	font-family: 'Helvetica-Bold-Condensed';
	src: url("https://moodandmindclinic.com/wp-content/themes/mood-theme/fonts/Helvetica-Bold-Condensed.otf") format("opentype");
}

@font-face {
	font-family: 'Helvetica-Inserat-Roman';
	src: url("https://moodandmindclinic.com/wp-content/themes/mood-theme/fonts/Helvetica-Inserat-Roman.otf") format("opentype");
} */

a {
	text-decoration: none;
	color: var(--body-color);
	transition: 0.5s all;
}

a:hover {
	color: var(--primary-color);
}

ol,
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	/* 	font-family: "Jost", serif; */
/* 	font-family: var(--Helvetica-Rounded-Bold); */
	margin: 0;
	line-height: 1.2;
	font-weight: 400;
	letter-spacing: 0;
}

.main-heading {
	font-size: var(--font-size--60);
	margin-bottom: 5px;
	text-transform: capitalize;
	font-weight: 600;
}

.big-heading {
	font-size: var(--font-size--45);
	margin-bottom: 5px;
	text-transform: capitalize;
}

.heading {
	font-size: var(--font-size--36);
	margin-bottom: 5px;
	text-transform: capitalize;
}

.small-heading {
	font-size: var(--font-size--24);
	margin-bottom: 15px;
	text-transform: capitalize;
}



.button {
	display: inline-block;
	position: relative;
	/* 	font-family: "Jost", serif; */
/* 	font-family: var(--Helvetica-Bold-Condensed); */
	font-size: var(--font-size--18);
	line-height: 1;
	font-weight: 700;
	text-align: center;
	text-transform: capitalize;
	outline: none;
	border-radius: 10px;
	padding: 16px 26px;
	background-color: var(--primary-color);
	color: var(--bg-white);
	cursor: pointer;
	transition: all 0.5s ease-in-out;
	border: 1px solid transparent;
	z-index: 0;
	overflow: hidden;
	min-width: 190px;
}

.button i {
	margin-left: 10px;
}

.button:hover {
	color: var(--primary-color);
	background-color: var(--bg-white);
	border: 1px solid var(--primary-color);
}

.button.white {
	background-color: var(--bg-white);
	color: var(--body-color);
	position: relative;
}

.button.white:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--primary-color);
	width: 0;
	height: 100%;
	transition: width 0.5s ease-in-out, left 0.5s ease-in-out;
	z-index: -1;
}

.button.white:hover:before {
	width: 100%;
	left: 0;
}

.button.white:not(:hover):before {
	left: unset;
	/* Moves the background off to the right after hover */
	right: 0;
	width: 0;
	/* Resets the width to 0 for the next hover */
}

.button.white:hover {
	color: var(--bg-white);
}

img {
	max-width: 100%;
	display: block;
	height: auto;
}

.wrapper {
	width: 89.58%;
	margin: 0 auto;
	position: relative;
}

.wrapper.small {
	width: 85.41666666666667%;
}

section {
	padding: 120px 0;
	position: relative;
	overflow:hidden;
}


section.small-padding {
	padding: 70px 0;
}

section.pt-0 {
	padding-top: 0 !important;
}

section.pb-0 {
	padding-bottom: 0 !important;
}

section.p-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

p {
	margin: 0 0 30px 0;
}

p:last-child {
	margin: 0;
}

input,
textarea,
select {
	/* 	font-family: "Jost", serif; */
/* 	font-family: var(--Helvetica-Roman); */
	font-size: var(--font-size--16);
	font-weight: 400;
	color: var(
	--body-color);
	line-height: 1.8;
	appearance: auto;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	width: 100%;
	padding: 20px 25px;
	border-radius: 15px;
	border: 1px solid var(
	--body-color);
	background: rgb(255 255 255 / 70%);
}

select {
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 24 24" style="enable-background:new 0 0 512 512" xml:space="preserve" class="hovered-paths"><g><path d="M12 16a1 1 0 0 1-.71-.29l-6-6a1 1 0 0 1 1.42-1.42l5.29 5.3 5.29-5.29a1 1 0 0 1 1.41 1.41l-6 6a1 1 0 0 1-.7.29z" data-name="16" fill="%23000000" opacity="1" data-original="%23000000" class="hovered-path"></path></g></svg>');
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: center right 18px;
}

textarea {
	max-height: 150px;
}


.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: var(--primary-color);
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	/* 	position: relative; */
	position: absolute;
	top: 50%;
	right: 0;
}


input.wpcf7-submit {
	width: 100%;
	margin-top: 20px;
	border-radius: 999px;
	text-align: center;
	padding: 20px 30px;
}


input.wpcf7-submit {
	width: auto;
	margin-top: 20px;
}

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

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

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

.heading-group {
	margin-bottom: 30px;
}

.intro-description {
	margin-bottom: 30px;
}

.d-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

a.scrolltotop {
	background: #13658a;
	border: 1px solid #13658a;
	bottom: 10px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	height: 50px;
	position: fixed;
	right: 20px;
	text-align: center;
	width: 50px;
	transition: 0.5s all;
	z-index: 99;
	/* color: #13658a; */
}

a.whatsapp-link {
	background: #25d366;
	/* border-radius: 50%; */
	bottom: 70px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	position: fixed;
	right: 20px;
	text-align: center;
	width: 50px;
	z-index: 99;
	transition: 0.5s all;
	font-size: 30px;
	border: 1px solid transparent;
}

a.whatsapp-link:hover {
	color: #25d366;
	background: #fff;
	border: 1px solid #25d366;
}

a.scrolltotop:hover {
	background: #fff;
	color: #13658a;
}

.mb-0 {
	margin-bottom: 0 !important;
}

/* HEADER */
.contact-detail>div:not(:last-child) {
	margin-right: 30px;
}

ul.social-media li:not(:last-child) {
	margin-right: 18px;
}

ul.menu {
	display: flex;
	align-items: center;
}

ul.menu li:not(:last-child) {
	margin-right: 25px;
}

.site-branding img {
	max-width: 200px;
}

.site-branding {
	width: fit-content;
}

.header-bottom {
	padding: 10px 0;
}

.header-top {
	padding: 20px 0 15px;
	background: var(--primary-color);
	color: var(--bg-white);
}

ul.menu li a {
	font-size: var(--font-size--16);
	text-transform: uppercase;
	font-weight: 600;
}

.header-top a {
	color: var(--bg-white);
	transition: 0.5s all;
	display: flex;
	align-items: center;
}

.header-top a:hover {
	color: var(--secondary-color);
}

.contact-detail div i {
	margin-right: 5px;
}

.current_page_item a {
	color: var(--primary-color);
	border-bottom: 1px solid var(--primary-color);
}

ul.social-media {
	display: inline-flex;
}


/* TOGGLE */
.toggle {
    position: relative;
    top: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    pointer-events: all;
    z-index: 100;
    border: 2px solid var(--primary-color);
}


.bar:first-child {
   transform: translateY(-3px);
}
.bar:last-child {
   transform: translateY(3px);
}

.bar {
   position: absolute;
   width: 20px;
   height: 3px;
   background:var(--primary-color);
   will-change: transform;
   border-radius: 2px;
   z-index:100;
   transition: transform 1s cubic-bezier(.75,0,.25,1);
}

.bar.animate.bar:first-child {
    transform: rotate(-45deg) translate(0,0);
    width: 24px;
   transition: transform 0.5s cubic-bezier(.75,0,.25,1);
	background: var(--primary-color);
	
}
.bar.animate.bar:last-child {
    transform: rotate(45deg) translate(0,0);
    transition: transform 0.5s cubic-bezier(.75,0,.25,1);
    width: 24px;
    background: var(--primary-color);
}

/* BANNER */
.hero-banner-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
}

span.img-overlay {
	background: rgb(255, 255, 255);
	background: linear-gradient(90deg, rgb(213 231 236 / 100%) 0, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0;
}

.right-part span.img-overlay {
	background: rgb(255, 255, 255);
	background: linear-gradient(-90deg, rgb(213 231 236 / 80%) 100%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0;
}

.hero-banner-content {
	width: 55%;
}

.title {
	font-size: var(--font-size--70);
	font-weight: 700;
	color: var(--secondary-color);
	line-height: 1.2;
}

.hero-banner-content .heading {
	font-size: var(--font-size--24);
	color: var(--secondary-color);
	margin-bottom: 20px;
}

.hero-banner-wrap {
	padding: 300px 0 250px;
	width: 100%;
}

.hero-banner-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.banner-btn {
	overflow: hidden;
	line-height: 1;
}

/* FOOTER */
.footer-block,
.footer-bottom-block {
	width: 33.33%;
	padding: 0 10px;
	margin: 10px 0;
}

.contact-detail div p {
	display: flex;
	align-items: center;
}

.contact-info a {
	display: flex;
}

.contact-heading {
	margin-bottom: 30px;
	color: var(--primary-color);
	font-weight: 700;
}

.contact-info div:not(:last-child) {
	margin-bottom: 30px;
}

.contact-info {
	margin-bottom: 30px;
}

.call {
	font-size: var(--font-size--36);
	/* text-align: center; */
}

.footer-block:nth-child(2)>div {
	padding: 50px;
	background: var(--primary-color);
	color: var(--bg-white);
	background-position: center center;
	background-repeat: no-repeat;
	background-blend-mode: color;
/* 	background-size: 50%; */
}

.timing-inner:not(:last-child) {
	margin-bottom: 30px;
}

.day {
	font-size: var(--font-size--16);
	font-weight: 600;
}

.contact-info div p {
	display: flex;
}

.contact-info i {
	margin-right: 10px;
	margin-top: 5px;
}

/* .footer-block ul li:not(:last-child) {
margin-bottom: 30px;
} */

.footer-block ul.menu li {
	width: 50%;
	padding: 0 10px;
	margin: 10px 0;
}

.footer-block ul {
	display: inline-flex;
	flex-wrap: wrap;
	margin: -10px;
}

.footer-block>div {
	padding: 30px;
}

.call i {
	margin-right: 10px;
}

.footer-top {
	padding: 0 0 100px 0;
}

.footer-bottom-row {
	padding: 30px 0;
	background: var(--primary-color);
}

.footer-wrap .site-branding img {
	filter: invert(1) contrast(1) drop-shadow(2px 2px 2px black);
}

.footer-wrap,
.footer-wrap a {
	color: var(--bg-white);
}

.site-footer {
	padding: 100px 0 30px 0;
}

.footer-bottom-block .site-branding {
	margin: 0 auto;
}

.copyright {
	text-align: right;
	font-size: var(--font-size--16);
}

/* CTA */
.left-part {
	width: 50%;
	background: var(--primary-color);
}

.right-part {
	width: 50%;
	position: relative;
}

.cta-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.cta-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.grid-row {
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}

.grid-col {
	width: 100%;
	padding: 0 10px;
	margin: 10px 0;
}

.grid-col:nth-child(-n+2) {
	width: 50%;
}

.right-part>div {
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	align-items: center;
}

.left-part>div {
	padding: 60px;
	color: var(--bg-white);
}

.cta-row {
	align-items: normal;
}

/* TESTIMONIAL */
.client-name {
	font-size: var(--font-size--22);
	margin-top: 10px;
}

/* .client-list {
display: flex;
} */

.client-list .slick-list {
	height: 100%;
	display: flex;
}

.client-list .slick-track {
	height: auto;
	display: flex;
}

.client-list .slick-slide {
	height: 100%;
}

.client-list .slick-slider>div {
	height: 100%;
}

.client-list .client-block>div {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto;
	text-align: center;
}

.client-list .client-block {
	height: 100%;
	padding: 0 15px;
}

.client-review {
	margin-bottom: 30px;
}

.client-detail {
	margin-top: auto;
}

.client-list .slick-slide>div {
	height: 100%;
}

.client-image {
	width: 50px;
	height: 50px;
	margin: 0 auto;
}

.client-image img {
	width: 100%;
	height: 100%;
	border-radius: 100px;
}


/* .slick-prev {
left: 65px;
z-index: 1;
}

.slick-next {
right: 65px;
} */

.slick-prev:before {
	content: "\f104";
	font-family: 'FontAwesome';
	background: transparent;
	border-radius: 0;
	opacity: 1;
	transition: 0.5s all;
}

.slick-next:before {
	content: "\f105";
	font-family: 'FontAwesome';
	background: transparent;
	border-radius: 0;
	opacity: 1;
	transition: 0.5s all;
}

.slick-arrow:hover:before {
	color: var(--secondary-color);
}

.cta-row .right-part .small-heading {
	font-size: var(--font-size--20);
	font-weight: 500;
	margin-bottom: 5px;
}

.cta-row .heading {
	font-weight: 600;
	color: var(--primary-color);
	font-size: var(--font-size--60);
}

/* ABOUT US */
.image-part {
	width: 50%;
	padding: 50px;
	position: relative;
	overflow: hidden;
}

.about-content {
	width: 50%;
	padding: 50px;
}

.image {
	position: relative;
	padding-top: 100%;
	overflow: hidden;
}

.image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	/* border-radius: 0 100px; */
}

.image-part .image img {
	border-radius: 0 100px;
}

.image-part:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 90%;
	height: 90%;
	background: var(--primary-color);
	z-index: -1;
	border-radius: 0 100px;
}

.about-bg {
	position: absolute;
	right: 0;
	width: 15%;
	top: 0;
}

.about-bg img {
	width: 100%;
	height: 100%;
}

/* SERVICE */
.service-block {
	position: relative;
	padding: 20px;
	height: 100%;
	justify-content: center;
}

.service-block a {
	position: absolute;
	inset: 0;
}

.service-left {
	width: 65%;
	display: inline-flex;
	padding: 20px;
}

.number {
	margin-top: 5px;
	margin-right: 30px;
	color: transparent;
	-webkit-text-stroke: 2px var(--primary-color);
	font-size: var(--font-size--36);
	font-weight: 600;
}

.service-image {
	width: 250px;
	height: 250px;
}

.service-main:not(:last-child) {
	margin-bottom: 20px;
	border-bottom: 1px solid #000;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: 0.5s all;
}

.service,
.faq {
	background: rgb(1 122 170 / 10%);
}

.service-block:hover img {
	filter: drop-shadow(10px 10px 5px #00000026);
}

/* VIDEO GALLERY */
.gallery-main-block {
	width: 33.33%;
	margin: 10px 0;
	padding: 0 10px;
}

.gallery-inner {
	height: 100%;
	padding: 20px;
	border: 1px solid;
}

.gallery-box {
	margin-bottom: 20px;
}

iframe {
	width: 100%;
}

.gallery-wrap {
	align-items: normal;
	margin:-10px;
}

/* FAQ'S */
.accordian-part {
	padding: 30px;
	/* width: 70%; */
	margin: 0 auto;
	border-bottom: 1px solid #000;
}
.faq-list{
	width: 70%;
	margin: 0 auto;
}
.accordion-content {
	margin-top: 20px;
}

.accordion {
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: 0.5s all;
	font-size: var(--font-size--24);
	font-weight: 600;
}

.accordion i {
	margin-left: 20px;
	transition: 0.5s all;
}

.accordion.active i {
	transform: rotate(90deg);
}

.accordion-content ul li:not(:last-child) {
	margin-bottom: 10px;
}

.accordion-content ul {
	list-style: disc;
	padding-left: 20px;
}

/* BLOG */
.blog-block {
	width: 33.33%;
	padding: 0 10px;
	margin: 10px 0;
}

.blog-block>div {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.blog-wrap {
	margin: -10px;
	align-items: normal;
	justify-content: center;
}

.blog-content {
	padding: 30px 20px;
	background: var(--bg-white);
	margin-top: -100px;
	width: 90%;
	z-index: 1;
	position: relative;
	box-shadow: 0 2px 6px #080f340f;
}

.blog-img img {
	width: 100%;
	height: 100%;
}

/* KNOW US PAGE */
.page-banner-row {
	padding: 120px 0;
	background: rgb(1 122 170 / 10%);
}

.page-banner-row .heading {
	text-transform: uppercase;
}

.bread-crumb {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 10px;
	margin-top: 10px;
}

.bread-crumb i {
	margin: 0 10px;
}

.know-us-block:not(:last-child) {
	margin-bottom: 50px;
}

.know-us-block>div {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	height: 100%;
}

.know-us-image {
	width: 50%;
	padding: 20px;
}

.know-us-content {
	width: 50%;
	padding: 50px;
	padding-top: 100px;
}

.know-us-image .image {
	padding-top: 80%;
}

.know-us-block:nth-child(even)>div {
	flex-direction: row-reverse;
}

.know-us-row {
	position: relative;
}

.know-us-row:before {
	content: "";
	background: #017aaa;
	width: 400px;
	height: 350px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	z-index: -1;
}

.know-us-content .small-heading {
	font-size: var(--font-size--24);
}

.know-us-content .big-heading {
	color: var(--primary-color);
}

/* TEAM*/
/* .team-block {
width: 33.33%;
padding: 0 15px;
margin: 15px 0;
} */

/* .team-list {
margin: -15px;
align-items: normal;
} */

.doctor-name {
	font-size: var(--font-size--30);
	margin-bottom: 20px;
}

/* .team-block>div {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
position: relative;
padding: 15px;
box-shadow: 0px 0px 4px 1px rgb(1 122 170 / 10%);
} */

/* .team-content {
margin: 20px 0;
} */

.team-btn {
	margin-top: auto;
	line-height: 1;
	width: fit-content;
}

.doctor-detail {
	margin-bottom: 20px;
	justify-content: flex-start;
	/* flex-wrap: nowrap; */
}

.experience {
	padding: 10px;
	background: rgb(1 122 170 / 20%);
	margin-left: 50px;
}

.designation {
	font-size: var(--font-size--18);
}

/* section.team {
background: linear-gradient(rgb(1 122 170 / 10%), rgb(1 122 170 / 10%));
} */

.team-content p {
	color: var(--secondary-color);
}

.btn {
	/* position: absolute; */
	/* bottom: -65px; */
	/* left: 220px; */
	/* display: inline-block; */
	margin-left: 30px;
}
.btn i{
	margin-right:2px;
}
/* DOCTOR SINGLE PAGE */
.doctor-left {
	width: 30%;
	/* padding: 20px; */
}

.doctor-left>div {
	position: sticky;
	top: 20px;
	position: -webkit-sticky;
}

.doctor-right {
	width: 70%;
	padding: 0 20px;
}

.doctor-row {
	display: flex;
	flex-wrap: wrap;
}

.doctor-image {
	width: 80%;
	border: 1px solid #ccc;
	margin: 0 auto 30px auto;
}

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

section.doctor {
	overflow: unset;
}

.doctor-description p:before {
	content: " \f105";
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	margin-right:5px;
}
.doctor-description ul li:not(:last-child) {
    margin-bottom: 10px;
}
.doctor-description p {
	color: var(--secondary-color);
}

.dector-heading {
	color: #13658a;
}

.doctor-description {
	position: relative;
	padding-left: 15px;
}

.doctor-block:not(:last-child) {
	margin-bottom: 30px;
}

section.note {
	background: #004756;
	color: #fff;
	margin-top: 70px;
}

.note-heading {
	font-size: var(--font-size--30);
}

.note-row {
	width: 70%;
	margin: 0 auto;
}

.note-row .intro-description {
	position: relative;
	/* padding:0 15px; */
}

.note-row .intro-description:before {
	content: " \f10d";
	font-family: 'FontAwesome';
	position: absolute;
	left: -10px;
	top: -10px;
	margin-left: -5px;
}

/* .note-row .intro-description:after {
content: " \f10e";
font-family: 'FontAwesome';
position: absolute;
right: -10px;
bottom: -10px;
} */
/* MAITRI NEW PAGE */
.page-banner-content {
	width: 50%;
	margin: 0 auto;
}

.page-banner-image {
	width: 30%;
	border: 20px solid #ccc;
}

.page-banner-wrap {
	/* background: rgb(1 122 170 / 10%); */
	background: #fff;
}

.page-banner-content .heading-group {
	margin-bottom: 20px;
}

.page-banner-content .main-heading {
/* 	font-family: 'Helvetica-Light-Condensed'; */
	font-weight: 400;
	margin-bottom: 10px;
	line-height: 1;
}

.page-banner-content p {
	font-size: var(--font-size--22);
}

section.main-bg {
	position: absolute;
	inset: 0;
	background: rgb(1 122 170 / 10%);
	width: 100%;
	height: 100%;
}

/* main {
position: relative;
} */

.doctor-new-row {
	background: #fff;
	padding: 100px 0;
}

.dector-heading i {
	margin-right: 15px;
}

.doctor-new-wrap .doctor-block:not(:last-child) {
	margin-bottom: 50px;
}

.doctor-new-description p {
/* 	font-family: var(--Helvetica-Light-Condensed); */
	font-size: var(--font-size--24);
}

/* CONTACT PAGE */
.contact-left {
	width: 100%;
/* 	margin: 10px 0;
	padding: 0 10px; */
}

.contact-right {
	width: 50%;
	margin: 10px 0;
	padding: 0 10px;
}

.contact-page-row {
	align-items: normal;
/* 	margin: -10px; */
}

/* .contact-left iframe {
	height: 100%;
} */

/* SINGLE BLOG */
.blog-page-image {
	margin-bottom: 30px;
}

.blog-page-image .image {
	padding-top: 50%;
}

.blog-inner-image .image {
	padding-top: 50%;
}

.blog-top {
	margin-bottom: 30px;
}

.blog-inner-image {
	margin-bottom: 30px;
}

.single-blog-block:not(:last-child) {
	margin-bottom: 30px;
}

section.related-posts {
	background: rgb(1 122 170 / 10%);
}

.post-navigation {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px 0;
	border-top: 2px solid #f0f0f0;
	border-bottom: 2px solid #f0f0f0;
	margin-top: 30px;
}

.prev-post a:before {
	content: " \f104";
	font-family: 'FontAwesome';
	margin-right: 10px;
}

.next-post a:after {
	content: " \f105";
	font-family: 'FontAwesome';
	margin-left: 10px;
}

.blog-inner-image img {
	height: 100%;
	width:100%;
	object-fit: cover;
}

.single-blog-wrap {
	width: 70%;
	margin: 0 auto;
}

/* REVIEW PAGE */
.review-block {
	width: 50%;
	margin: 20px 0;
	padding: 0px 10px;
	/* display: flex; */
	/* flex-direction: column; */
	/* justify-content: space-between; */
}

.review-block>div {
	/* border: 1px solid; */
	height: 100%;
	/* padding: 25px; */
	background: #f0f0f1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 30px;
}

.review-row {
	align-items: normal;
	margin: -20px -10px;
}

.review-detail {
	display: flex;
	align-items: center;
	/* margin-bottom: 30px; */
	width: fit-content;
	background: #fff;
	padding: 30px;
	margin-top: auto;
	border-top-right-radius: 20px;
	position: relative;
	border-top-right-radius: 60px;
}

.review-detail .client-name {
	margin-top: 0;
	margin-left: 20px;
}

.review-image img {
	width: 100%;
	height: 100%;
}

.review {
	margin-bottom: 30px;
	padding: 30px;
}

.review-detail:before {
	content: "";
	position: absolute;
	top: -10px;
	left: 0px;
	border-bottom-left-radius: 10px;
	width: 100%;
	height: 20px;
	background: #f0f0f1;
	z-index: 0;
}

.review-detail:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: -1px;
	border-bottom-left-radius: 10px;
	width: 20px;
	height: 100%;
	background: #f0f0f1;
	z-index: 0;
}

.review i {
	font-size: var(--font-size--24);
	color: rgba(0, 0, 0, 0.2);
	margin-bottom: 20px;
}

/*  */
/* .animated-overlay {
overflow: hidden;
position: relative;
}

.aos-animate.animated-overlay.up:after {
transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotatex(0deg) rotatey(0deg) rotatez(0deg) skew(0deg, 0deg);
}

.aos-animate.animated-overlay.right:after {
transform: translate3d(101%, 0px, 0px) scale3d(1, 1, 1) rotatex(0deg) rotatey(0deg) rotatez(0deg) skew(0deg, 0deg);
transform-style: preserve-3d;
}

.aos-animate.animated-overlay:before {
opacity: 0;
}

.animated-overlay:before {
content: "";
position: absolute;
inset: 0;
z-index: 2;
height: 100%;
width: 100%;
background: #fff;
opacity: 1;
transition: 2s all;
-webkit-transition: 2s all;
-moz-transition: 2s all;
-ms-transition: 2s all;
-o-transition: 2s all;
transition-delay: 2s;
}

.animated-overlay:after {
content: "";
position: absolute;
inset: 0;
z-index: 2;
height: 100%;
background-color: #fff;
transform: translate(0, 100%);
transition: 2s all;
-webkit-transition: 2s all;
-moz-transition: 2s all;
-ms-transition: 2s all;
-o-transition: 1s all;
transform-style: preserve-3d;
transition-delay: 1s;
}

.animated-overlay.right:after {
transform: translate(-100%, 0);
}

span.animated-overlay {
position: absolute;
top:0;
left:0;
width: 100%;
height: 100%;
transition: transform 1s ease-in-out;
transform: translateX(-100%);
background: var(--primary-color);
}
.image:not(.in-view) span.animated-overlay {
left:unset;
right:0;
transform: translateX(100%);
} */
.image-part .image,
.image-part span.animated-overlay {
	border-radius: 0 100px;
}

span.animated-overlay {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	transition: transform 1s ease-in;
	transform: translateX(-100%);
	background: var(--primary-color);
}

.image:not(.in-view) span.animated-overlay {
	right: 100%;
	left: 0;
	transform: translateX(-100%);
	transition: transform 1s ease-out;
	
}
.image.in-view span.animated-overlay {
	transition: transform 1s ease-out;
	transform: translateX(0);
	
}
/* .image:not(.in-view) img{
	  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.image.in-view img {
  opacity: 1;
} */
/* GALLERY PAGE */
.gallery-row {
	column-count: 3;
	break-inside: avoid;
}

.image-box-wrap img {
	width: 100%;
    height: auto;
	transform: scale(1);
	transition: 0.5s all;
}

.gallery-block {
	break-inside: avoid;
	margin-bottom: 30px;
	overflow: hidden;
	padding: 10px;
	border: 4px solid;
}


/* OUR TEAM */
.team-block>div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/* 	padding: 30px; */
	background: linear-gradient(rgb(1 122 170 / 10%), rgb(1 122 170 / 10%));
	/* align-items: center; */
}

.team-block:not(:last-child) {
	margin-bottom: 50px;
}

.team-image {
	width: 30%;
}

.team-right {
	/* height: 100%; */
	position: relative;
	/* padding-top: 100px; */
	width: 60%;
	margin: 0 auto;
	padding: 30px 0;
}

.team-list .team-block:nth-child(even)>div {
	flex-direction: row-reverse;
	background: #13658a;
	color: #fff;
}

.team-list .team-block:nth-child(even) div p {
	color: #fff;
}

.team-content {
	margin-bottom: 30px;
	position: relative;
}
.team-list .team-block:nth-child(even)>div .team-right {
    /* padding-left: 200px; */
    /* text-align: right; */
    /* width: 50%; */
    /* margin: 0 auto; */
}

.team-list .team-block:nth-child(even)>div .doctor-detail {
    /* justify-content: end; */
}
.doctor-description ul {
    list-style: disc;
    padding-left: 10px;
}
.deal-block > div {
	height: 100%;
	border: 1px solid;
	padding: 20px;
}

.deal-block {
    width: 50%;
    padding: 0 10px;
    margin: 10px 0;
}
.deal-list {
    display: flex;
    flex-wrap: wrap;
	margin:-10px;
}

.deal-title {
    /* padding: 20px; */
    margin-bottom: 20px;
}

.deal-title .heading {
    margin-bottom: 0;
}
.footer-top-row{
	margin:-10px;
}
.footer-wrap {
    margin: -10px;
}

/* 30-04-2025 */
.problem-title .intro-description {
    margin-bottom: 0;	
    margin-top: 10px;
}
.problem-title p{
    margin-bottom:10px;
    position: relative;
    padding-left: 15px;
}

.problem-title li h5 {
    font-size: var(--font-size--18);
    position: relative;
}

.problem-title li:not(:last-child) {
    margin-bottom: 20px;
}

.problem-title li > div {
    position: relative;
    padding-left: 20px;
}

.problem-title li > div:before {
    content: "\f105";
    font-family: 'FontAwesome';
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 0;
}

.problem-heading {
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
    display: inline-block;
    padding-right: 15px;
    padding-bottom: 5px;
    font-size: var(--font-size--20);
}

.problem-title p:before {
    content: "\f111";
    font-family: 'FontAwesome';
    margin-right: 10px;
    font-weight: 900;
    font-size: 5px;
    position: absolute;
    top: 0;
    margin-top: 7px;
    left: 0;
}
.wa__btn_popup .wa__btn_popup_icon {
    border-radius: 0;
	height:50px;
	width:50px;
	box-shadow:none;
}
/* 01-05-2025 */
.deal  .wrapper {
    /* width: 100%; */
    /* max-width: 100%; */
}

.deal-row {
    align-items: normal;
}

.deal-image {
    width: 45%;
    max-width: 100%;
}

.deal-image img {
    max-width: 113%;
    width: 113%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.deal-detail {
    width: 55%;
    padding: 50px;
    /* background: #e5f1f6; */
}
.service-offer-image {
    width: 50%;
    overflow: visible;
}

.service-offer-detail {
    width: 45%;
    background: #fff;
    padding: 30px;
    border: 1px solid #ccc;
    box-shadow: 5px 5px 5px 0 #ccc;
}

.service-offer-row {
    flex-wrap: nowrap;
    /* align-items: normal; */
    justify-content: center;
}

.service-offer-image img {
    width: 50vw;
    max-width: unset;
}
.service-offer-image .image {
    overflow: visible;
    z-index: -1;
}
section.deal {
    background: #e5f1f6;
}
.mb-10{
	margin-bottom:10px;
}
.approach-row {
    align-items: normal;
    margin: -20px;
}

.approach-block {
    width: 50%;
    padding: 0 20px;
    margin: 20px 0;
}

.approach-block >div {
    height: 100%;
    padding: 30px;
    background: rgb(255 255 255 / 70%);
    box-shadow: 0 0 5px 0 #ccc;
}

.approach-content .heading {
    color: #017aaa;
    margin-bottom: 20px;
}
.approach{
 /* The image used */
 background-image: url("https://moodandmindclinic.com/wp-content/uploads/2025/03/know-us-left.jpeg");
  /* Create the parallax scrolling effect */
 background-attachment: fixed;
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 background-blend-mode: overlay;
 background-color: rgb(255 255 255 / 70%);
}
.approach-wrap {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}

.approach-bg img {
    /* position: absolute; */
    /* width: 100%; */
    /* inset: 0; */
    /* height: 100%; */
}

.approach-list ul li:not(:last-child) {
    margin-bottom: 10px;
}

.approach-list ul {
    list-style: circle;
    padding-left: 20px;
}
ul.wp-block-list {
    list-style: circle;
    padding-left: 20px;
}
.blog-top .intro-description ul , .single-blog-block ul,.single-blog ul {
    list-style: disc;
    padding-left: 20px;
}
.blog-top .intro-description ul > li:not(:last-child), .single-blog-block ul > li:not(:last-child),.single-blog ul > li:not(last-child) {
	margin-bottom:20px;
}
.blog-top .intro-description ul >li ul > li:not(:last-child), .single-blog-block ul > li ul > li:not(:last-child){
	margin-bottom:10px;
}
/* 404 */
.error-right {
    width: fit-content;
    margin: 0 auto;
}
 