/*-------Default css --------*/

:root {
	--primary-color: #007bff;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #28a745;
}
body{
    font-family: 'Avenir Next';
    font-weight: 400;
}
section {
	position: relative;
}

h1, h2, h3, h4, h5, h6 {
	margin-bottom: 0;
	padding-bottom: 0;
}

h2 {
    font-family: 'Avenir Next';

	font-weight: 500;
}

h3 {
    font-family: 'Avenir Next';

	font-weight: normal;
}

a {
	color: #000;
	text-decoration: none;
	transition: all 0.5s;
	font-weight: normal;
}

p {
    font-family: 'Avenir Next';

	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: #444444;
	text-align:justify;
}

a:hover,
a:focus {
	text-decoration: none;
}

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

.sp{
    padding: 100px 0 0;
}

.main_title h2 {
    font-size: 48px;
    line-height: 58px;
    font-family: 'Avenir Next';

    font-weight: 600;
    color: #000;
}
img{
    width:100%;
}
.cta-button {
    display: inline-block;
    padding: 12px 48px;
    margin: 0 auto;
    background: #6244BA;
    color: #fff;
    text-align: center;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(240, 236, 233, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(252, 248, 246, 0.4);
    background-color: #000;
}

ul.navbar-nav.ms-auto li a.cta-button{
    color: #fff;
}

.banner_content h1 {
    font-size: 56px;
    line-height: 66px;
    margin-bottom: 20px;
    font-weight: 800;
}
.main-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-20%);
    padding: 0 95px;
}
.banner_content{
    width: 85%;
}
.banner-image {
    height: 85%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 22px;
    right: 0;
    transform: translateY(-30%);
    max-width: 50%;
}
.banner-image img {
    width: 100%;
    height: 100%;
}
.banner_content p {
    width: 75%;
}

.banner_content {
    width: 80%;
}

/*  book Section Css */

section.hero-section.sp {
    padding: 100px;
    padding-bottom: 0;
}
section.why_wrapper.sp {
    padding: 100px;
}
section.faqs_wrapper.sp {
    padding-bottom: 100px;
}
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-content .badge {
    background: #6244BA;
    padding: 10px 24px;
}

.badge {
    display: inline-block;
    background-color: rgba(249, 115, 22, 0.1);
    color: #6244BA;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    line-height: 58px;
    font-family: 'Avenir Next';
    font-weight: 600;
    color: #000;
    width: 80%;
    margin-bottom: 24px;
}

.hero-title span {
    color: #6244BA;
}

.hero-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 550px;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #334155;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(74, 222, 128, 0.2);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-options {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #6244BA;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

.phone-icon {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.form-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, #6244BA, #84bfff);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0f172a;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #6244BA;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.phone-input-wrapper {
    display: flex;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 8px 0 0 8px;
}

.flag-icon {
    width: 24px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3E%3Cpath fill='%23f93' d='M0 0h900v200H0z'/%3E%3Cpath fill='%23fff' d='M0 200h900v200H0z'/%3E%3Cpath fill='%23128807' d='M0 400h900v200H0z'/%3E%3Ccircle fill='%23008' cx='450' cy='300' r='60'/%3E%3Ccircle fill='%23fff' cx='450' cy='300' r='55'/%3E%3Ccircle fill='%23008' cx='450' cy='300' r='18'/%3E%3Cpath fill='%23008' d='M450 245v110m-55-55h110'/%3E%3C/svg%3E");
}

.phone-input {
    flex: 1;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #6244BA;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.8s ease-in-out;
}

.btn-submit:hover {
    background-color: #000;
    transition: all 0.8s ease-in-out;
}

.trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #64748b;
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: #64748b;
}

/* Decorative elements */
.decoration {
    position: absolute;
    opacity: 0.1;
    z-index: -1;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #6244BA;
    top: -100px;
    right: -50px;
}

.decoration-2 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #3b82f6;
    bottom: -60px;
    left: -30px;
}
/*  book Section Css end */


/*emi section  */
.logo {
    width: 240px;
    margin-bottom: 20px;
}

.headline {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subheadline {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 30px;
}

.price {
    color: #6244BA;
    font-weight: 700;
}

.description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    color: #555;
}
section.hero-section.sp a.btn.btn-primary{
    background-color: #6244BA ;
    box-shadow: none;
}
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    /* flex-wrap: wrap; */
    margin-bottom: 50px;
}
.emi-main .main_title {
    text-align: center;
    margin-bottom: 56px;
}
.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 20px;
    width: 33%;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}


.why_image {
    border-radius: 24px;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f4f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: #6244BA;
}
.feature-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-content p {
    font-size: 14px;
    color: #666;
}
/* section.emi-wrapper.sp {
    background: #eeeeee8a;
} */
/* emi section css end */
section.recovery_wrapper.sp {
    padding-bottom: 0;
}

section.recovery_wrapper.sp {
    position: relative;
}
section.recovery_wrapper.sp .recovery_main {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    /* transform: translateX(20%); */
    padding: 0px 100px;
}
.recovery-content {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.recovery-content .main_title {
    margin-bottom: 24px;
}
.recovery-image {
    width: 90%;
    margin-right: auto;
}

section.recovery_wrapper.mateched_wrapper.sp .container-fluid .row {
    flex-direction: row-reverse;
}
section.recovery_wrapper.mateched_wrapper.sp {
    position: relative;
    padding: 0;
}

section.recovery_wrapper.mateched_wrapper.sp .recovery-content {
    width: 100%;
    align-items: flex-start;
  
}

.button-wrapper {
    margin-top: 28px;
}

.main_title {
    margin-bottom: 48px;
}
section.why_wrapper.sp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/images/background.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    filter: hue-rotate(220deg);
    z-index: -1;
}
/* section.why_wrapper.sp{
background-image: url(/images/background.jpg);
background-size: 100%;
background-repeat: no-repeat;
} */
section.why_wrapper.sp {
height: 80vh;
position: relative;
}
.why_content {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.why_content ul li {
    margin-bottom: 61px;
    position: relative;
}
.why_content h3 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 16px;
}
.why_content ul {
    padding-left: 100px;
}
/* .why_content ul li:before {
    content: '';
    position: absolute;
    width: 75px;
    height: 75px;
    background: #eee;
    left: -100px;
    border-radius: 12px;
    top: 10px;
    counter-increment: item;
    content: counter(item);
} */
.why_content ul {
    counter-reset: item; /* Reset the counter at the start of the list */
    position: relative;
}


.why_content ul li {
    position: relative;
    list-style: none;
    padding-left: 28px;
}

.why_content ul li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    width: 90px;
    height: 90px;
    background: #eeeeeef5;
    left: -100px;
    top: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #6244BA;
}
section.action_wrapper.sp .main_title {
    text-align: center;
}
.video_wrapper {
    width: 55%;
    margin: 0 auto;
    margin-bottom: 49px;
    border-radius: 24px;
    overflow: hidden;
}

div#v-pills-tabContent {
    position: relative;
}
.treat_content_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 45vh;
    margin-left: -45px;
}
.treat_content {
    width: 55%;
    height: max-content;
    background: #f8f8f8;
    padding: 40px;
    border-radius: 18px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform: translateY(34px);
}
.treat_img {
    width: 75%;
    position: relative;
    margin-left: auto;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}
.tabs_wrapper {
    width: 100%;
    height: 100%;
    margin-top: 70px;
}
.tabs_wrapper button.nav-link {
    font-family: Avenir Next;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #000;
    padding: 10px 29px;
    text-align: left;
}
.tabs_wrapper button.nav-link.active:before {
    content: '';
    position: absolute;
    top: 9px;
    left: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #6244BA;
    background-image: url(/images/arrow-white.png);
    background-repeat: no-repeat;
    background-position-x: 12px;
    background-position-y: 8px;
}
.tabs_wrapper button.nav-link.active {
    background: #f8f8f8;
    color: #6244BA;
    /* font-family: Avenir Next; */
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    position: relative;
    padding-left: 61px;
}
/* .treat_content{
    position: relative;
} */
.treat_content ul li {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    position: relative;
    margin-bottom: 8px;
}
.treat_content ul li {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    position: relative;
    margin-bottom: 12px;
    padding-left: 11px;
}
.treat_content ul li:before {
    content: '';
    position: absolute;
    top: 1px;
    left: -37px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: #6244BA;
    background-image: url(images/arrow-white.png);
    background-repeat: no-repeat;
    background-position-x: 10px;
    background-position-y: 6px;
}
.treat_content .button-wrapper a {
    margin-right: auto;
    margin-left: unset;
}

.about_content p:first-of-type:before {
    content: '';
    position: absolute;
    top: -25px;
    left: -5px;
    background-image: url(https://bisque-falcon-392266.hostingersite.com/phsyio/images/quote.png);
    background-repeat: no-repeat;
    /* background-position-x: 10px; */
    /* background-position-y: 6px; */
    background-size: 100%;
    width: 65px;
    height: 65px;
    margin-bottom: 27px;
}
.about_image {
    width: 60%;
    position: relative;
    margin-right: auto;
    border-radius: 24px;
    overflow: hidden;
}
.about_content p:first-of-type{
    padding-top: 48px;
}
.about_content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    color: #000;
    position: relative;
    padding-top: 0;
    margin-bottom: 18px;
    text-align: left;
}

a.read_more {
    display: none;
}
section.emi-wrapper.sp {
    padding-bottom: 100px;
}
section.recover_main_wrapper.sp {
    padding-bottom: 100px;
}
.about_content {
    box-shadow: 2px 2px 12px 0px #cfbfbf78;
    position: absolute;
    width: 42%;
    background: #fff;
    padding: 48px 42px;
    border-radius: 27px;
    top: 36%;
    right: 0;
    transform: translateX(-22%);
}
a.read_more {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    text-decoration: none;
}
a.read_more {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    text-decoration: none;
    transition: all 0.8s ease-in-out;
}
a.read_more:hover{
    color: #6244BA;
    transition: all 0.8s ease-in-out;
}
a.read_more:hover::after{
    transition: all 0.8s ease-in-out;
    width: 100%;
}
a.read_more:hover::before{
    transition: all 0.8s ease-in-out;
    right: -50px;
}
a.read_more:before {
    content: '';
    position: absolute;
    top: -5px;
    right: -43px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: #6244BA;
    background-image: url(images/arrow-white.png);
    background-repeat: no-repeat;
    background-position-x: 10px;
    background-position-y: 6px;
    transition: all 0.8s ease-in-out;
}
a.read_more::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6244BA;
    transition: all 0.8s ease-in-out;
}
section.about_doctor_wrapper.sp .main_title {
    text-align: center;
}
section.faqs_wrapper.sp .main_title {
    text-align: center;
}

section.faqs_wrapper.sp div#accordionExample {
    width: 75%;
    margin: 0 auto;
}
.accordion.faqs-wrap .accordion-item {
    border: 1px solid transparent;
    border-bottom: 1px solid #c3c3c3;
}

.accordion.faqs-wrap button.accordion-button {
    background-color: transparent;
    border-radius: none;
    /* border-bottom: 1px solid #C3C3C3; */
    box-shadow: none;
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    padding: 28px 0;
}
.accordion-body {
    padding: 24px 0 32px;
}
.accordion-body p {
    margin-bottom: 0;
}
.faqs_main .col-md-4 {
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.faq-image {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer.footer-wrapper.sp {
    background: #1D1D1D;
    color: #fff;
}
.footer_flex h3 {
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    text-transform: capitalize;
    margin-bottom: 18px;
}
.footer_flex ul {
    padding-left: 0;
}
.footer_flex ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 42px;
    margin-bottom: 12px;
}
footer.footer-wrapper.sp .col-md-6 .footer_flex ul {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
}
footer.footer-wrapper.sp .col-md-6 .footer_flex ul li {
    width: 50%;
}
footer.footer-wrapper.sp .footer_flex ul li a{
    color: #fff;
    text-decoration: none;
}
.social_flex ul {
    justify-content: space-between;
    display: flex;
    margin-top: 22px;
}

.copyright_main p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}
.copyright-wrapper {
    background: #1d1d1d;
    padding: 38px;
    border-top: 1px solid #777777;
}

.policy-main ul li {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 18px;
    color: #444444;
}

.policy-main ul {
    list-style: disc;
    padding-left: 34px;
    margin-bottom: 24px;
}
.policy-main p {
    margin-bottom: 24px;
}
.policy-main h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 18px;
}



 /* Custom styles */
 a.navbar-brand {
    width: 200px;
    /* height: 90px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 21px; */
}
 .sticky-top {
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
nav.navbar.navbar-expand-lg.sticky-top.navbar-light.scrolled {
    position: sticky;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 57px 100px;
    height: 80px;
}

nav.navbar.navbar-expand-lg.sticky-top.navbar-light {
    position: absolute;
    background: transparent !important;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: none;
    padding: 24px 100px;
}
/* Header styles */
.navbar-brand img {
    height: 40px;
    transition: all 0.3s ease;
}

/* Custom navbar styling */
.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

/* When scrolled, make the header more compact */
.navbar.scrolled {
    padding-top: 8px;
    padding-bottom: 8px;
}

.navbar.scrolled .navbar-brand img {
    height: 35px;
}

/* Demo content */
.content {
    height: 2000px;
    padding-top: 70px;
}

/* Active link */
body .navbar-brand img {
    height: 80px;
    transition: all 0.3s ease;
}
.navbar-nav .nav-link.active {
    color: #0d6efd;
    font-weight: 500;
}
/* Active link */
.navbar-nav .nav-link.active {
    color: #6244BA;
    font-weight: 500;
}
ul.navbar-nav.ms-auto li a.active{
    color: #6244BA;
}
ul.navbar-nav.ms-auto li a:hover{
    color: #6244BA;
    transition: all 0.8s ease;
}
ul.navbar-nav.ms-auto li a {
    font-size: 18px;
    line-height: 28px;
    color: #506380;
    margin-right: 34px;
}
ul.navbar-nav.ms-auto li:last-child a{
    margin-right: 0;
}
ul.navbar-nav.ms-auto {
    justify-content: center;
    align-items: center;
}
ul.navbar-nav.ms-auto li .button-wrapper {
    margin-top: 0;
}
a.navbar-brand {
    width: 200px;
    /* height: 90px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 21px; */
}
body .navbar.scrolled .navbar-brand img {
    height: 57px;
}


.pointers_wrapper ul li img {
    width: 70px;
    height: 70px;
    filter: hue-rotate(220deg);
}

section.recovery_wrapper.mateched_wrapper.sp img {
    filter: hue-rotate(220deg);
}

.pointers_wrapper ul li {
    width: 45%;
    display: flex
;
    justify-content: left;
    align-items: center;
    margin-bottom: 33px;
    margin-right: 32px;
}
.pointers_wrapper ul {
    display: flex
;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 0;
    margin-top: 48px;
}
.reviews {
    width: 180px;
    height: auto;
    margin: -20px 0 0 10px;
}

body .owl-carousel .owl-nav .owl-prev {
    top: -50%;
    left: -60px;
    transform: translate(0px, -80px);
    position: absolute;
}

body .owl-carousel .owl-nav .owl-next {
    transform: translate(0px, -80px);
    position: absolute;
}

section.clinic_wrapper.sp .pointers_wrapper ul {
    flex-wrap: unset;
}
section.clinic_wrapper.sp .pointers_wrapper li {
    width: 33%;
}
section.clinic_wrapper.sp .main_title h2 {
    text-align: center;
}
section.clinic_wrapper.sp .capabilities-owl {
    margin-bottom: 48px;
}
section.clinic_wrapper.sp {
    background-size: cover;
    background-repeat: no-repeat;
}

.feedback-wrap h3 {
    font-size: 20px;
    line-height: 30px;
}

.feedback-wrap {
    padding: 65px 40px;
    border: 1px solid #6244BA;
    margin: 10px;
    position: relative;
    border-radius: 25px;
}
.testimonail_main {
    text-align: center;
}

.testimonail_main p{
    text-align: center;
}
.tetimonail-slider {
    margin-top: 48px;
}
.tetimonail-slider .owl-item:nth-child(odd) {
    margin-top: 56px;
}
.tetimonail-slider .feedback-wrap p:before {
    content: '';
    position: absolute;
    top: 25px;
    left: 30px;
    background-image: url(https://bisque-falcon-392266.hostingersite.com/phsyio/images/quote.png);
    background-repeat: no-repeat;
    /* background-position-x: 10px; */
    /* background-position-y: 6px; */
    background-size: 100%;
    width: 65px;
    height: 65px;
    margin-bottom: 27px;
    filter: hue-rotate(46deg);
}

.feedback-wrap p {
    margin-top: 30px;
}
section.recover_main_wrapper.sp ul li {
    /* margin-bottom: 28px; */
    background: #6244ba;
    padding: 24px;
    /* margin-right: 25px; */
    color: #fff;
    text-align: center;
}

section.recover_main_wrapper.sp ul {
    display: grid
;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
section.recover_main_wrapper.sp .button-wrapper {
    margin-top: 48px;
    text-align: center;
}
section.recover_main_wrapper.sp .main_title h2{
    text-align: center;
}
section.emi-wrapper.sp .button-wrapper {
    text-align: center;
}
.pointers-img img {
    width: 100%;
    padding: 15px;
}
.copyright_main p a {
    color: #fff;
    text-decoration: none;
}
.copyright_main {
    display: flex
;
    justify-content: space-between;
    align-items: center;
}
.pointers-img {
    background: #eee;
    border-radius: 13px;
    filter: hue-rotate(124deg);
    margin-right: 18px;
}
footer.footer-wrapper.sp {
    display: none;
}
body .hsfc-Step__Content {
    padding: 0 !important;
    padding-bottom: 10px !important;
}
.recovery-image img {
    filter: none !important;
}

.breadrumb_main_wrapper ul li a {
    text-decoration: none;
    color: #fff;
}
.breadrumb_main_wrapper {
    background: #6244ba;
    padding: 24px 0;
    color: #fff;
}
.breadrumb_main_wrapper ul li {
    position: relative;
    margin-right: 32px;
}
.breadrumb_main_wrapper ul {
    display: flex;
    justify-content: left;
    padding: 0;
}
nav.navbar.navbar-expand-lg.internal-header.sticky-top.navbar-light {
    position: inherit;
    background: #ffff !important;
    box-shadow: 2px 2px 1px 0px #eee;
}
.breadrumb_main_wrapper ul li:before {
    content: '\f054';
    position: absolute;
    right: -20px;
    top: 0;
    font-weight: 700;
    font-family: 'Font Awesome 5 Free';
}
.breadrumb_main_wrapper ul li:last-child:before{
    display: none;
}
section.policy_wrapper_main.sp {
    padding-bottom: 80px;
}

a.button_main:hover {
    transition: all 0.8s ease;
    background: #fff;
}
a.button_main:last-child {
    border-right: 1px solid transparent;
}
.button_strip_wrapper {
    position: fixed;
    background: #6244ba;
    width: 100%;
    padding: 16px 0;
    bottom: 0;
    z-index: 9999999;
    display: flex
;
    justify-content: flex-start;
    display: none;
}
a.button_main {
    background: #6244ba;
    padding: 16px 26px;
    color: #fff;
    text-decoration: none;
    margin: 0;
    /* transition: auto; */
    font-size: 14px;
    border-right: 1px solid #eee;
}