@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

:root {
    --primary-font: "Abhaya Libre", serif;
    --secondry-font: "Open Sans", sans-serif;
    --primary-color: #d60039;
    --secondary-color: #ff4b7b;
}

body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 5px;
    background: #fff;
}

body::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

a {
    text-decoration: none;
    color: #000;
    display: block;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

/* header section style start */

.topheader {
    background: var(--secondary-color);
    padding: 10px 0px;
}

.topheader .topheaderbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topheader .topheaderbox .topheaderleft {}

.topheader .topheaderbox .topheaderleft ul {
    display: flex;
    gap: 15px;
}

.topheader .topheaderbox .topheaderleft ul li {
    color: #fff;
}

.topheader .topheaderbox .topheaderright {}

.topheader .topheaderbox .topheaderright .social-list {}

.topheader .topheaderbox .topheaderright .social-list li {}

.topheader .topheaderbox .topheaderright .social-list li a {
    background: var(--primary-color);
}

/* header section style end */

/* social list style start */

.social-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-list li {}

.social-list li a {
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease;
    color: #fff;
}

.social-list li a.facebook {
    background: #0866ff;
}

.social-list li a.instagram {
    background: #fe0b84;
}

.social-list li a.twitter {
    background: #000000;
}

.social-list li a.linkedin {
    background: #0077b5;
}

.social-list li a.youtube {
    background: #ff0000;
}

.social-list li a i {}

.social-list li a:hover {
    transform: translateY(-5px);
}

/* social list style end */

/* mainheader style start */

.mainheader {
    padding: 10px 0px;
    box-shadow: 6px 1px 7px rgb(0 0 0 / 22%);
}

.mainheader .headerbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mainheader .headerbox .headerlogo {width: 200px;}

.mainheader .headerbox .headerlogo a {}

.mainheader .headerbox .headerlogo a img {
    width: 100%;
}

.mainheader .headerbox .headermenu {}

.mainheader .headerbox .headermenu ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

.mainheader .headerbox .headermenu ul li {
    position: relative;
}

.mainheader .headerbox .headermenu ul li a {
    border-radius: 5px;
    font-size: 15px;
    border-bottom: 1px solid transparent;
    font-weight: 500;
    padding: 10px 5px;
    transition: all .3s ease;
}

.mainheader .headerbox .headermenu ul li a:hover {
    color: var(--secondary-color);
}

.mainheader .headerbox .headermenu ul li .dropmenu {
    position: absolute;
    min-width: 200px;
    width: max-content;
    box-shadow: 1px 1px 23px 1px rgba(0, 0, 0, 0.17);
    background: #fff;
    border-radius: 0px;
    top: 200%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 9;
}

.mainheader .headerbox .headermenu ul li .dropmenu ul {
    display: block;
}

.mainheader .headerbox .headermenu ul li .dropmenu ul li {}

.mainheader .headerbox .headermenu ul li .dropmenu ul li a {
    color: #212529;
    font-weight: 400;
    border-bottom: 1px solid #eee;
    border-radius: unset;
}

.mainheader .headerbox .headermenu ul li .dropmenu ul li.dropdown2 {
    position: relative;
}

.mainheader .headerbox .headermenu ul li .dropmenu ul li.dropdown2 .subdropmenu {position: absolute;min-width: 200px;width: max-content;box-shadow: 1px 1px 23px 1px rgba(0, 0, 0, 0.17);background: #fff;border-radius: 0px;left: 100%;top: 0;opacity: 0;visibility: hidden;transition: all .3s ease;}
.mainheader .headerbox .headermenu ul li .dropmenu ul li.dropdown2:hover .subdropmenu {
    opacity: 1;
    visibility: visible;
}
.mainheader .headerbox .headermenu ul li .dropmenu ul .dropdown2 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mainheader .headerbox .headermenu ul li .dropmenu ul li a:hover {
    background: var(--secondary-color);
    color: #fff;
}

.mainheader .headerbox .headermenu ul li .dropmenu ul li:last-child a {
    border: unset;
}

.mainheader .headerbox .headermenu ul li:hover .dropmenu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.mainheader .headerbox .headerright {}

.mainheader .headerbox .headerright .btnlink {
    background: var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    color: #fff;
    transition: all .3s ease;
}

.mainheader .headerbox .headerright .btnlink:hover {
    background: var(--secondary-color);
}

/* mainheader style end */

/* mobile btn style start */
.mobilemenubtn {
    display: none;
}


.mobilemenubtn .mob-menu-open {
    position: relative;
    z-index: 9;
    top: 0;
    padding: 6px 5px 4px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /* float: right; */
    right: 20px;
    right: 0;
}

.mobilemenubtn .mob-menu-open span.bar {
    background: #000000;
    height: 4px;
    width: 30px;
    display: block;
    margin-bottom: 7px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* mobile btn style end */

/* banenr section style start */

.bannerimg img {
    width: 100%;
}

/* banenr section style end */

/* bannerinnersection style start */

.bannerinnersection {}

.bannerinnersection .bannerouterbox {
    /* border-radius: 10px; */
    /* overflow: hidden; */
    /* position: relative; */
    /* margin-top: -80px; */
    /* padding: 40px 0; */
}

.bannerinnersection .bannerinnerbox {
    position: relative;
    margin-top: -80px;
    background: var(--primary-color);
    display: flex;
    padding: 40px;
    gap: .5rem;
    align-items: center;
}

.bannerinnersection .bannerinnerbox:nth-child(even) {
    background: var(--secondary-color);
}

.bannerinnersection .bannerinnerbox:nth-child(1) {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.bannerinnersection .bannerinnerbox:last-child {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.bannerinnersection .bannerinnerbox .bannerinner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.bannerinnersection .bannerinnerbox .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.5rem;
    aspect-ratio: 1 / 1;
    width: 4rem;
    height: 4rem;
    background: var(--secondary-color);
    border-radius: 50%;
}

.bannerinnersection .bannerinnerbox:nth-child(even) .icon {
    background: var(--primary-color);
}

.bannerinnersection .bannerinnerbox .icon i {
    color: #fff;
}

.bannerinnersection .bannerinnerbox .title {}

.bannerinnersection .bannerinnerbox .title h3 {
    color: #fff;
    font-family: var(--primary-font);
}

/* bannerinnersection style end */

/* heading style start */

.headingbox {
    text-align: center;
}

.headingbox h5 {
    color: var(--primary-color);
    font-size: 18px;
    font-family: var(--secondry-font);
    font-weight: 500;
    margin-bottom: 15px;
}

.headingbox h2 {
    font-size: 48px;
    font-weight: 600;
    font-family: var(--primary-font);
    margin-bottom: 5px;
}

/* heading style end */

/* about section style start */

.aboutsection {
    padding: 80px 0px 50px;
}

.aboutsection .aboutimg {
    position: relative;
}

.aboutsection .aboutimg:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 85%;
    border: 2px solid var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
}

.aboutsection .aboutimg img {
    width: 93%;
    position: relative;
}

.aboutsection .aboutbox {}

.aboutsection .aboutbox .headingbox {
    text-align: left;
}

.aboutsection .aboutbox .headingbox h5 {}

.aboutsection .aboutbox .headingbox h2 {
    font-size: 28px;
}

.aboutsection .aboutbox .aboutdescription {}

.aboutsection .aboutbox .aboutdescription p {
    color: #373737;
    margin-bottom: 15px;
    font-weight: 400;
    text-align: justify;
    font-family: var(--secondry-font);
}

.aboutsection .aboutbox .aboutdescription ul {
    margin-bottom: 25px;
}

.aboutsection .aboutbox .aboutdescription ul li {
    color: #373737;
    margin-bottom: 10px;
    font-weight: 400;
    text-align: justify;
    font-family: var(--secondry-font);
    margin-right: 10px;
}

.aboutsection .aboutbox .aboutdescription ul li:before {
    content: '\f0a9';
    font-family: 'FontAwesome';
    color: var(--secondary-color);
    padding-right: 5px;
}

.aboutsection .aboutbox .aboutdescription ul li i {
    color: var(--secondary-color);
}

.aboutsection .aboutbox .aboutdescription a {
    padding: 10px 30px;
    background: var(--primary-color);
    color: #fff;
    width: max-content;
    border-radius: 5px;
    transition: all .3s ease;
}

.aboutsection .aboutbox .aboutdescription a:hover {
    background: var(--secondary-color);
}

.aboutsection .aboutbox .aboutdescription .visionmissionbox {
    display: flex;
    gap: 20px;
    margin: 0 0 20px;
}

.aboutsection .aboutbox .aboutdescription .visionmissionbox .visionbox {
    width: 40%;
    background: #ffeff3;
    padding: 20px;
    border-radius: 10px;
}

.aboutsection .aboutbox .aboutdescription .visionmissionbox .visionbox h3 {
    margin: 0 0 10px;
    font-size: 28px;
    font-family: var(--primary-font);
    font-weight: 700;
    text-transform: capitalize;
}

.aboutsection .aboutbox .aboutdescription .visionmissionbox .visionbox p {}

.aboutsection .aboutbox .aboutdescription .visionmissionbox .missionbox {
    width: 60%;
    background: #ffeff3;
    padding: 20px;
    border-radius: 10px;
}

.aboutsection .aboutbox .aboutdescription .visionmissionbox .missionbox h3 {
    margin: 0 0 10px;
    font-size: 28px;
    font-family: var(--primary-font);
    font-weight: 700;
    text-transform: capitalize;
}

.aboutsection .aboutbox .aboutdescription .visionmissionbox .missionbox ul {}

.aboutsection .aboutbox .aboutdescription .visionmissionbox .missionbox ul li {}

.aboutsection .aboutbox .aboutdescription .trearmentsbox {
    display: flex;
    gap: 20px;
}

.aboutsection .aboutbox .aboutdescription .trearmentsbox .treatmentbox {width: 40%;background: #ffeff3;padding: 20px;border-radius: 10px;}

.aboutsection .aboutbox .aboutdescription .trearmentsbox .treatmentbox h3 {margin: 0 0 10px;font-size: 28px;font-family: var(--primary-font);font-weight: 700;text-transform: capitalize;}

.aboutsection .aboutbox .aboutdescription .trearmentsbox .treatmentbox p {}

.aboutsection .aboutbox .aboutdescription .trearmentsbox .treatmentbox ul {}

.aboutsection .aboutbox .aboutdescription .trearmentsbox .treatmentbox ul li {}

.aboutsection .aboutbox .advancedtechnology {
    margin: 20px 0;
}

.aboutsection .aboutbox .aboutdescription .whychoosebox {
    width: 60%;
    background: #ffeff3;
    padding: 20px;
    border-radius: 10px;
}

.aboutsection .aboutbox .aboutdescription .whychoosebox h3 {
    margin: 0 0 10px;
    font-size: 28px;
    font-family: var(--primary-font);
    font-weight: 700;
    text-transform: capitalize;
}

.aboutsection .aboutbox .aboutdescription .whychoosebox ul {}

.aboutsection .aboutbox .aboutdescription .whychoosebox ul li {}
.aboutsection h3 {margin: 0 0 10px;font-size: 28px;font-family: var(--primary-font);font-weight: 700;text-transform: capitalize;}
.aboutsection .team-box {
    margin: 0px;
    background: #ffeff3;
    padding: 20px;
}
.aboutsection .team-box .team-img {
    text-align: center;
    position: relative;
}
.aboutsection .team-box .team-img img {
    width: 80%;
    position: relative;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all linear 0.3s;
    height: 260px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto 0;
}

.aboutsection .team-box .team-img .plus-btn {
    position: absolute;
    width: 100%;
    text-align: right;
    z-index: 1;
    bottom: 0;
    right: 70px;
}


.aboutsection .team-box .team-img .plus-btn i {
    background: var(--primary-color);
    float: right;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    color: #fff;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.aboutsection .team-box .team-img .plus-btn a i:hover {
    background: var(--secondary-color);
}

.aboutsection .team-box .team-name {
    text-align: center;
    padding: 10px 0px 0px;
}

.aboutsection .team-box .team-name h4 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.aboutsection .team-box .team-name h5 {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
}

.aboutsection p {
    color: #373737;
    margin-bottom: 15px;
    font-weight: 400;
    text-align: justify;
    font-family: var(--secondry-font);
}

/* about section style start */

/* service section style start */

.servicesection {
    padding: 50px 0;
    border-top: 1px solid #ededed;
    overflow: hidden;
}

.servicesection .headingbox {}

.servicesection .headingbox h5 {}

.servicesection .headingbox h2 {}

.servicesection .servicebox {
    padding: 15px 10px;
}

.servicesection .servicebox .serviceinnerbox {
    background: #ffffff;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    border-radius: 10px;
    border: 1px solid #ebebeb;
    padding: 15px;
}

.servicesection .servicebox .serviceinnerbox .serviceimg {}

.servicesection .servicebox .serviceinnerbox .serviceimg a {}

.servicesection .servicebox .serviceinnerbox .serviceimg a img {
    height: 200px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.servicesection .servicebox .serviceinnerbox .serviceinfo {
    text-align: center;
    padding: 10px 0;
}

.servicesection .servicebox .serviceinnerbox .serviceinfo h3 {
    font-weight: 500;
    font-family: var(--primary-font);
    font-size: 24px;
    margin: 0 0 10px;
}

.servicesection .servicebox .serviceinnerbox .serviceinfo h3 a {
    font-family: var(--primary-font);
    font-weight: 700;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.servicesection .servicebox .serviceinnerbox .serviceinfo p {
    color: #a1a1a1;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: var(--secondry-font);
}

.servicesection .servicebox .serviceinnerbox .serviceinfo a.viewmorelink {
    color: #c93d80;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--secondry-font);
}

/* service section style end */

/* counters section style start */

.countersection {
    padding: 50px 0;
    background: #ff628c;
}

.countersection .countersbox {}

.countersection .countersbox .countersinnerbox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 4px 0rem 12rem 2px rgb(255 122 157);
    border: 0;
    padding: 20px 10px;
    border-bottom: 3px solid #ff215c;
    border-radius: 10px;
    background: #ffffff;
}

.countersection .countersbox .countersinnerbox h3 {
    color: var(--secondary-color);
    font-size: 42px;
    font-family: var(--primary-font);
    font-weight: 700;
}

.countersection .countersbox .countersinnerbox p {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--primary-font);
}

/* counters section style end */

/* testimonial section style start */

.testimonialsection {
    background-size: cover !important;
    background-attachment: fixed !important;
    background-blend-mode: multiply;
    padding: 50px 0;
}

.testimonialsection .headingbox {
    text-align: center;
    margin: 0 0 20px;
}

.testimonialsection .headingbox h2 span.line {
    background: #fff;
}

.testimonialsection .headingbox h2:after {
    background: #fff;
}

.testimonialsection .headingbox h2 {
    color: #000000;
}

.testimonialsection .testimonialbox {
    padding: 0 20px 0;
}

.testimonialsection .testimonialbox .testimonial-content {
    padding: 50px;
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid #f0f0f0;
    position: relative;
    min-height: 300px;
}

.testimonialsection .testimonialbox .testimonial-content .testimonial-icon {
    width: 50px;
    height: 45px;
    background: var(--primary-color);
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}

.testimonialsection .testimonialbox .testimonial-content .testimonial-icon:before {
    content: "";
    border-bottom: 16px solid var(--primary-color);
    border-left: 18px solid #fff0;
    position: absolute;
    top: -16px;
    left: 1px;
}

.testimonialsection .testimonialbox .testimonial-content .testimonial-icon i {}

.testimonialsection .testimonialbox .testimonial-content:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 22px;
    transform: rotate(45deg);
}

.testimonialsection .testimonialbox .testimonial-content p {
    font-size: 16px;
    color: #3e3e3e;
    margin: 0;
    font-family: var(--secondry-font);
    font-weight: 400;
}

.testimonialsection .testimonialbox .post {
    display: block;
    font-size: 21px;
    color: #fff;
    font-weight: 600;
}

.testimonialsection .testimonialvideobox {
    height: 100%;
    padding: 0 10px;
}

.testimonialsection .testimonialvideobox .testimonialvideo {
    height: 100%;
}

.testimonialsection .testimonialvideo iframe {
    width: 100%;
    height: 400px;
    min-width: unset!important;
}

/* testimonial section style end */

/* advanced section style start */

.advancedsection {
    position: relative;
    background-size: cover!important;
    background-position: center!important;
    padding: 70px 0;
}

.advancedsection img {
    width: 100%;
}

.videosection {
}

.videosection .video {}

.videosection .video iframe {
    width: 100%;
    height: 500px!important;
    min-width: unset!important;
}

.advancedsection .advancedsectioncontent {
}

.advancedsection .advancedsectioncontent h2 {
    font-size: 32px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.advancedsection .advancedsectioncontent ul {
    padding-left: 0;
    list-style: none;
}

.advancedsection .advancedsectioncontent ul li {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
    font-weight: 600;
}

.advancedsection .advancedsectioncontent ul li a {
    font-size: 16px;
    font-family: var(--secondry-font);
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
    transition: all .3s ease;
}

.advancedsection .advancedsectioncontent ul li a:hover {
    color: var(--secondary-color);
}

.advancedsection .advancedsectioncontent .know-more-treatment {
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    width: fit-content;
    border-radius: 5px;
    align-items: center;
    margin-top: 20px;
    padding: 10px 26px;
    margin-bottom: 10px;
    font-family: var(--secondry-font);
    text-transform: capitalize;
    font-weight: 600;
    transition: all .3s ease;
}

.advancedsection .advancedsectioncontent .know-more-treatment:hover {
    background: var(--secondary-color);
}


/* advanced section style end */

/* blogs and faq section style start */

.blogsection {
    position: relative;
    padding: 50px 0px;
}

.blogsection .blogsectionbox {
    border-right: 1px solid #e8e8e8;
    padding-right: 20px;
}

.blogsection .blogsectionbox .blogshead {
    margin: 0 0 20px;
}

.blogsection .blogsectionbox .blogshead h2.maintitle {
    position: relative;
    font-size: 48px;
    font-weight: 600;
    font-family: var(--primary-font);
}

.blogsection .blogsectionbox .blogsouterbox {}

.blogsection .blogsectionbox .blogsouterbox .blogsbox {
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #e4e4e4;
    padding: 5px;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogsimg {
    position: relative;
    overflow: hidden;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogsimg a {}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogsimg a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogsimg a .blogsimginner {
    position: absolute;
    right: 0;
    top: 0px;
    /* transform: rotate(45deg); */
    transition: 200ms ease-in-out;
    background: var(--primary-color);
    padding: 5px 15px;
    text-align: center;
}
.blog-details .blog-detailsbox .service-details-box p a {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    color: var(--secondary-color);
}
.blogsection .blogsectionbox .blogsouterbox .blogsbox:hover .blogsimg a .blogsimginner {
    transform: rotate(0deg);
    right: 0;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogsimg a .blogsimginner .date {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent .blogstitle {
    font-size: 22px;
    font-family: var(--primary-font);
    font-weight: 700;
    color: #000;
    text-align: center;
    line-height: normal;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent .blogstitle a {
    transition: all .3s ease;
    font-family: var(--primary-font);
    line-height: normal;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent .blogstitle a:hover {
    color: var(--secondary-color);
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent .blogsdescription {
    text-align: justify;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent a.viewmore {
    border-radius: 5px;
    color: var(--primary-color);
    transition: all .3s ease;
    text-align: center;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent a.viewmore i {
    transition: all .3s ease;
}

.blogsection .blogsectionbox .blogsouterbox .blogsbox .blogscontent a.viewmore:hover i {
    padding-left: 5px;
}

.blog-details .blog-detailsbox .service-details-box h2 {
    margin: 20px 0 10px;
    font-size: 32px;
    font-family: var(--primary-font);
    font-weight: 700;
}

/* blogs and faq section style end */

/* faqs section style start */

.faqsection {
    padding: 50px 0;
    background: #ffedf2;
}

.faqsection .faqsectionbox {}

.faqsection .faqsectionbox .faqshead {
    margin: 0 0 20px;
}

.faqsection .faqsectionbox .faqshead .maintitle {
    position: relative;
    font-size: 39px;
    font-weight: 600;
    font-family: var(--primary-font);
}

.faqsection .faqsectionbox .faqsouterbox {}

.faqsection .faqsectionbox .faqsouterbox .faqsbox {
    background: transparent;
    border-radius: 0 0 0 0;
    border: none;
    position: relative;
}

.faqsection .faqsectionbox .faqsouterbox .faqsbox:before {
    content: '';
    height: 100%;
    left: 14px;
    position: absolute;
    top: 15px;
    width: 1px;
    z-index: 0;
    border: 1px dashed #cccccc;
}

.faqsection .faqsectionbox .faqsouterbox .faqsbox:last-child:before {
    border: unset;
}

.faqsection .faqsectionbox .faqsouterbox .faqsbox .faqsheadtitle {
    color: #333;
    background-color: transparent;
    border-color: #ddd;
    padding-bottom: 15px;
}

.faqsection .faqsectionbox .faqsouterbox .faqsbox .faqsheadtitle h3 {
    font-size: 16px;
    position: relative;
    font-family: var(--secondry-font);
    font-weight: 400;
}

.faqsection .faqsectionbox .faqsouterbox .faqsbox .faqsheadtitle h3 a {
    color: #111111;
    display: block;
    padding: 10px 15px;
    padding-left: 40px;
    font-weight: 600;
    transition: all .3s ease;
}

.faqsection .faqsectionbox .faqsouterbox .faqsbox .faqsheadtitle h3 a.collapsed {
    font-weight: 400;
}

.faqsection .faqsectionbox .faqsouterbox .faqsbox .faqsheadtitle h3 a:before {
    content: "\f068";
    font-family: fontawesome;
    font-size: 10px;
    left: 0;
    padding: 3px 10px;
    position: absolute;
    border-radius: 5px;
    font-size: 12px;
    padding: 6px 10px;
    top: 5px;
    background: var(--secondary-color);
    color: #fff;
}

.faqsection .faqsectionbox .faqsouterbox .faqsbox .faqsheadtitle h3 a.collapsed:before {
    content: "\f067";
}

.faqsection .faqsectionbox .faqsouterbox .faqsbox .faqscontent {
    padding-left: 40px;
    margin-bottom: 10px;
}

.faqsection .faqsectionbox .faqsouterbox .faqsbox .faqscontent p {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--secondry-font);
    margin: 0 0 10px;
}

.faqsection .faqsectionbox .faqsouterbox .faqsbox .faqscontent ul {
    margin-left: 20px;
    list-style: disc;
}

.faqsection .faqsectionbox .faqsouterbox .faqsbox .faqscontent ul li {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--secondry-font);
}

/* faqs section style end */

/* homeappointment section style start */

.homeappointment {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: white;
    position: relative;
}

.homeappointment:before {
    content: '';
    background: #ff4b7b6e;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
}

.homeappointment .homeappointmentbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    padding-bottom: 0px;
    padding-top: 20px;
    gap: 10px;
    position: relative;
    z-index: 9;
}

.homeappointment .homeappointmentbox h4 {
    font-family: var(--secondry-font);
    font-weight: 400;
    color: #000;
}

.homeappointment .homeappointmentbox h2 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 36px;
    color: #000;
}

.homeappointment .homeappointmentbox .appointmentbtn {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    width: max-content;
    transition: all .3s ease;
}

.homeappointment .homeappointmentbox .appointmentbtn:hover {
    background: var(--secondary-color);
}

.appointmentpopupform .appointmentformbox form .formboxx::-webkit-scrollbar {
    width: 5px;
    background: #fff;
}

.appointmentpopupform .appointmentformbox form .formboxx::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

/* homeappointment section style end */

/* footer section style start */

.footersection {
    padding: 50px 0;
    background: #872c58;
}

.footersection .footerbox {
    margin: 0 0 40px;
}

.footersection .footerbox .footerlogo {}

.footersection .footerbox .footerlogo a {}

.footersection .footerbox .footerlogo a img {}

.footersection .footerbox h3 {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--primary-font);
    color: #fff;
    text-transform: capitalize;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footersection .footerbox h3 i {
    display: none;
    font-size: 16px;
}

.footersection .footerbox ul {
    margin-left: 0px;
}

.footersection .footerbox ul li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footersection .footerbox ul.footertreatments {
    display: flex;
    flex-wrap: wrap;
}

.footersection .footerbox ul.footertreatments li {
    width: 50%;
}
.footersection .footerbox ul li:before {
    content: '';
    font-family: 'FontAwesome';
    color: #cd5a91;
}

.footersection .footerbox ul li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--secondry-font);
    text-transform: capitalize;
    transition: all .3s ease;
    padding: 5px 0px;
}

.footersection .footerbox ul li a:hover {
    padding-left: 5px;
}

.footersection .footerbox .social li a:hover {
    padding-left: 0;
}

.footersection .footerbox ul.address {
    margin: 0 0 20px;
}

.footersection .footerbox ul.address li {}

.footersection .footerbox ul.address li:before {
    content: unset;
}

.footersection .footerbox ul.address li a {}

.footersection .footerbox ul.address li a i {
    padding-right: 6px;
}

.footersection .footerbox .social {
    margin: 10px 0 0;
    display: flex;
    gap: 10px;
}

.footersection .footerbox .social li {}

.footersection .footerbox .social li:before {
    content: unset;
}

.footersection .footerbox .social li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease;
    background: #cd5a91;
}

.footersection .footerbox .social li a i {}

.copyrightsection {
    padding: 15px 0 15px;
    border-top: 1px solid #cd5a91;
    border-bottom: 1px solid #cd5a91;
}

.copyrightsection p {
    text-align: center;
    color: #ededed;
    font-family: var(--secondary-font);
    font-weight: 400;
    text-transform: capitalize;
}

.copyrightsection p a {
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
}

/* footer section style end */

/* team section style start */

.team-section {
    padding: 50px 0px;
    overflow: hidden;
}

.team-section .headingbox {
    margin: 0 0 20px;
}

.team-section .team-box {
    margin: 20px;
}

.team-section .team-box .team-img {}

.team-section .team-box .team-img img {
    width: 100%;
    position: relative;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all linear 0.3s;
    height: 280px;
    object-fit: cover;
    object-position: center;
}

.team-section .team-box .team-img .plus-btn {
    float: left;
    width: 100%;
    text-align: right;
    margin-top: -70px;
    position: relative;
    z-index: 1;
}


.team-section .team-box .team-img .plus-btn i {
    background: var(--primary-color);
    float: right;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    color: #fff;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.team-section .team-box .team-img .plus-btn a i:hover {
    background: var(--secondary-color);
}

.team-section .team-box .team-name {
    text-align: center;
    padding: 10px 0px 0px;
}

.team-section .team-box .team-name h4 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-section .team-box .team-name h5 {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
}

/* team section style end */

/* breadcrumb section style start */

.breadcrumb-box {
    padding: 100px 0 100px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}

.breadcrumb-box:before {
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #000;
    opacity: 0.5;
    transition: all .3s ease;
}

.breadcrumb-box .breadcrumbbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 0;
}

.breadcrumb-box .breadcrumbbox h3 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 36px;
    font-family: var(--primary-font);
    font-weight: 600;
}

.breadcrumb-box .breadcrumbbox ul {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 40%;
    flex-wrap: wrap;
    justify-content: end;
}

.breadcrumb-box .breadcrumbbox ul li {
    font-weight: 600;
    font-family: var(--secondary-font);
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: capitalize;
    display: flex;
    align-items: self-start;
    gap: 10px;
}

.breadcrumb-box .breadcrumbbox ul li a {
    color: #f3f3f3;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-box .breadcrumbbox ul li a i {
    font-size: 14px;
}

/* breadcrumb section style end */

/* philosophy section style start */

.philosophysection {
    padding: 50px 0;
    border: 1px solid #eee;
}

.philosophysection .headingbox {
    margin: 0 0 30px;
}

.philosophysection .philosophybox {
    padding: 20px 20px 30px;
    border: 1px solid #eee;
    background: #ffecf1;
}

.philosophysection .philosophybox .icon {
    background: var(--secondary-color);
    width: 100px;
    height: 100px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.philosophysection .philosophybox .icon svg {
    width: 60px;
    fill: #fff;
}

.philosophysection .philosophybox .icon svg path {}

.philosophysection .philosophybox .contentbox {
    text-align: center;
}

.philosophysection .philosophybox .contentbox h3 {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--primary-font);
    margin: 10px 0 10px;
}

.philosophysection .philosophybox .contentbox p {
    font-size: 16px;
    font-family: var(--secondry-font);
    font-weight: 400;
}

/* philosophy section style end */

/* service details section style start */

.service-details {
    padding: 50px 0px;
}

.service-details .service-heading {}

.service-details .service-heading h3 {}

.service-details .service-heading h3:before,
.service-details .service-heading h3:after {}

.service-details .service-heading h3:before {}

.service-details .service-heading h3:after {}

.service-details .service-details-box {}

.service-details .service-details-box p {
    margin: 0 0 10px;
    color: #373737;
    font-weight: 400;
    text-align: justify;
    font-family: var(--secondry-font);
    font-size: 16px;
}

.service-details .service-details-box p a {
    display: inline;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
}

.service-details .service-details-box h1 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    font-size: 1.8rem;
    display: inline-block;
    background: var(--primary-color);
    padding: 5px 20px;
    border-radius: 2px;
    color: #fff !important;
}

.service-details .service-details-box h1:before {
    content: "";
    height: 100%;
    border-left: 3px solid var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: -30px;
}

.service-details .service-details-box h1:after {
    content: "";
    height: 100%;
    border-left: 3px solid var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 30px;
}

.service-details .service-details-box ul {

    margin: 0 20px;

    list-style: disc;
}

.service-details .service-details-box ul li {
    margin: 0 0 10px;
    color: #373737;
    font-weight: 400;
    text-align: justify;
    font-family: var(--secondry-font);
    font-size: 16px;
}

.service-details .service-detail-box {}

.service-details .service-details-box .description {}

.service-details .service-details-box .description h4 {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--primary-font);
    color: var(--primary-color);
    margin: 0 0 10px;
    line-height: normal;
}


.service-details .service-details-box img {
    width: 100%;
    border-radius: 10px;
    margin: 0 0 10px;
}


.service-details .service-sidebar {
    border-radius: 30px;
}

.service-details .service-sidebar .service-sidebar-box {}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content {
    border-radius: 30px;
    padding: 10px 0 20px;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul {
    position: relative;
    background: #fff2f5;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li {
    position: relative;
    border: 1px solid #dedede;
    z-index: 9;
    border-bottom: 0;
    background: #ffc6d5;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul h2.accordion-header {
    background: #e2faef;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item {
    position: relative;
    border: 1px solid #dedede;
    z-index: 9;
    border-bottom: 0;
    background: #e2faef;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-button.collapsed,.accordion-button:not(.collapsed) {
    background: #ffc6d5;
    color: #000;
    box-shadow: unset;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item ul {
    margin: 0;
    padding: 10px 0px;
    background: var(--secondary-color);
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item ul li {
    border: unset;
    margin: 0px 5px;
    transition: all .3s ease;
    background: unset;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item ul li a {
    color: #fff;
    padding: 5px 25px;
    padding-left: 35px;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item ul li a:before {
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item ul li:before {
    content: unset;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item ul li:hover, .service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item ul li.active {
    background: #fff;
}
.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item ul li {}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item ul li a:after {
    content: unset;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item ul li:hover a, .service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item ul li.active a {
    color: #000;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item ul li:hover a:before, .service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul .accordion-item ul li.active a:before {
    color: #000;
}
.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #222222;
    line-height: 30px;
    padding: 10px 25px;
    display: block;
    padding-left: 38px;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary-color);
    content: "";
    opacity: 0;
    visibility: hidden;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li:hover:before,
.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li.active:before {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li:hover a,
.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li.active a {
    color: #fff;
}

.service-sidebar-box .service-sidebar-content ul li a:before {
    position: absolute;
    left: 20px;
    top: 10px;
    font-size: 12px;
    line-height: 30px;
    color: #222222;
    font-weight: 900;
    content: "\f0da";
    font-family: 'FontAwesome';
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-sidebar-box .service-sidebar-content ul li:hover a:before,
.service-sidebar-box .service-sidebar-content ul li.active a:before {
    color: #fff;
}

.service-sidebar-box .service-sidebar-content ul li a:after {
    position: absolute;
    left: -1px;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: var(--secondary-color);
    z-index: -1;
    transition: transform 0.4s ease,
    -webkit-transform 0.4s ease;
    transform: scale(0, 1);
    transform-origin: right top;
}

.service-sidebar-box .service-sidebar-content ul li:hover a:after,
.service-sidebar-box .service-sidebar-content ul li.active a:after {
    transform-origin: left bottom;
    transform: scale(1, 1);
}

.service-details .service-sidebar .service-sidebar-box .service-sidebar-content ul li:last-child {
    border-bottom: 1px solid #dedede;
}

.contactsidebar {
    background-size: cover;
    background-position: center;
    padding: 25px;
    position: relative;
    border-radius: 10px;
}

.contactsidebar:before {
    content: '';
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    background-color: var(--secondary-color);
    opacity: 0.6;
    transition: all .3s ease;
}

.contactsidebar .contactsidebarbox {
    position: relative;
    padding: 30px;
}

.contactsidebar .contactsidebarbox h4 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    text-align: center;
}

.contactsidebar .contactsidebarbox p {
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    font-family: var(--primary-font);
}

.contactsidebar .contactsidebarbox .contactbtn {
    color: #fff;
    background: var(--primary-color);
    padding: 10px 30px;
    text-align: center;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

/* service details section style end */

/* contact section style start */

.contactsection {
    padding: 50px 0;
}

.contactsection .contactleftbox {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contactsection .contactleftbox .contacthead {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contactsection .contactleftbox .contacthead h5 {
    color: var(--secondary-color);
    font-family: var(--secondry-font);
    font-size: 18px;
    font-weight: 500;
}

.contactsection .contactleftbox .contacthead h2 {
    font-size: 38px;
    font-family: var(--primary-font);
    font-weight: 800;
    line-height: normal !important;
}

.contactsection .contactleftbox .contacthead p {
    color: #212529;
    font-weight: 500;
    font-family: var(--secondry-font);
}

.contactsection .contactleftbox .contactmiddle {
    padding: 20px 0px;
}

.contactsection .contactleftbox .contactmiddle h4 {
    font-weight: 700;
    font-size: 18px;
    font-family: var(--primary-font);
    padding-bottom: 10px;
}

.contactsection .contactleftbox .contactmiddle .contactmiddlebox {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 10px 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.contactsection .contactleftbox .contactmiddle .contactmiddlebox span {
    gap: 5px;
}

.contactsection .contactleftbox .contactmiddle .contactmiddlebox span i {
    font-weight: 400;
    color: var(--secondary-color);
}

.contactsection .contactleftbox .contactlower {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contactsection .contactleftbox .contactlower .contactlowerbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contactsection .contactleftbox .contactlower .contactlowerbox .contactlowericon {
    background: var(--secondary-color);
    border-radius: 5px;
    padding: 10px;
}

.contactsection .contactleftbox .contactlower .contactlowerbox .contactlowericon i {
    font-size: 32px;
    color: #fff;
}

.contactsection .contactleftbox .contactlower .contactlowerbox .contactlowerdetails {
    display: flex;
    flex-direction: column;
}

.contactsection .contactleftbox .contactlower .contactlowerbox .contactlowerdetails h6 {
    color: #aaaaaa;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 18px;
}

.contactsection .contactleftbox .contactlower .contactlowerbox .contactlowerdetails span {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--primary-font);
}

.contactsection .contactrightbox {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
}

.contactsection .contactrightbox .contactrightheading {
    margin: 0 0 20px;
}

.contactsection .contactrightbox .contactrightheading h5 {
    font-family: var(--secondry-font);
    font-size: 18px;
    color: #fff;
}

.contactsection .contactrightbox .contactrightheading h2 {
    font-size: 36px;
    font-family: var(--primary-font);
    font-weight: 700;
    color: #fff;
}

.contactsection .contactrightbox .contactform {}

.contactsection .contactrightbox .contactform form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contactsection .contactrightbox .contactform form .contactinputbox {
    margin-bottom: 1rem;
}

.contactsection .contactrightbox .contactform form .contactinputbox input[type=text],
.contactsection .contactrightbox .contactform form .contactinputbox textarea {
    padding: 10px 12px;
    width: 100%;
    color: #000;
    font-weight: 400;
    font-family: var(--secondary-font);
    font-size: 16px;
    outline: unset;
    border: unset;
    border-radius: 5px;
}

.contactsection .contactrightbox .contactform form .contactsubmitbtn {
    text-align: center;
}

.contactsection .contactrightbox .contactform form .contactsubmitbtn button[type="submit"] {
    width: 100%;
    padding: 5px 40px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--primary-font);
    font-size: 18px;
    width: max-content;
}

/* contact section style end */

/* appointment popup style start */

.appointmentpopupform {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff4b7b57;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 9;
}

.appointmentpopupform.show {
    opacity: 1;
    visibility: visible;
}

.appointmentpopupform .appointmentform {
    width: 70%;
    background: #ffffff;
    padding: 20px 30px 30px;
    border-radius: 10px;
}

.appointmentpopupform .appointmentformbox {
    position: relative;
}

.appointmentpopupform .appointmentformbox .headingbox {
    margin: 0 0 20px;
}

.appointmentpopupform .appointmentformbox .headingbox h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin: 0;
    line-height: normal;
}

.appointmentpopupform .appointmentformbox .closebtn {
    position: absolute;
    top: -10px;
    right: 0px;
}

.appointmentpopupform .appointmentformbox .closebtn a {}

.appointmentpopupform .appointmentformbox .closebtn a i {
    font-size: 18px;
}

.appointmentpopupform .appointmentformbox form {}

.appointmentpopupform .appointmentformbox form .contactinputbox {
    margin-bottom: 1rem;
}

.appointmentpopupform .appointmentformbox form .contactinputbox input[type=text],
.appointmentpopupform .appointmentformbox form .contactinputbox input[type=email],
.appointmentpopupform .appointmentformbox form .contactinputbox input[type=date],
.appointmentpopupform .appointmentformbox form .contactinputbox textarea,
.appointmentpopupform .appointmentformbox form .contactinputbox select {
    padding: 10px 12px;
    width: 100%;
    color: #000000;
    font-weight: 400;
    font-family: var(--secondry-font);
    font-size: 16px;
    outline: unset;
    border: unset;
    border-radius: 5px;
    background: #ffd9e3;
    border: 1px solid #ffabc1;
    box-shadow: unset;
}

.appointmentpopupform .appointmentformbox form .contactinputbox input::placeholder,
.appointmentpopupform .appointmentformbox form .contactinputbox textarea::placeholder {
    color: #000;
}

.appointmentpopupform .appointmentformbox form .contactsubmitbtn {}

.appointmentpopupform .appointmentformbox form .contactsubmitbtn button[type="submit"] {
    width: 100%;
    padding: 10px 40px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--primary-font);
    font-size: 18px;
    line-height: normal;
}

/* appointment popup style end */

/* team details style start */

.teamdetails {
    padding: 50px 0px;
}

.teamdetails .teamimg {}

.teamdetails .teamimg img {
    width: 100%;
}

.teamdetails .teamcontent {}

.teamdetails .teamcontent h3 {
    font-size: 30px;
    font-weight: 600;
    font-family: var(--primary-font);
    color: var(--primary-color);
}

.teamdetails .teamcontent h5 {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--primary-font);
    color: #626262;
}

.teamdetails .teamcontent .teamfulldetails {
    margin: 20px 0px;
}

.teamdetails .teamcontent .teamfulldetails p {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--primary-font);
    margin-bottom: 5px;
}

/* team details style end */

/* video section style start */

.video-section {
    padding: 50px 0;
}

.video-section .video {}

.video-section .video iframe {
    width: 100%;
    height: 500px!important;
    min-width: unset!important;
}

/* video section style end */

/* awards section style start */

.awardsection {
    padding: 50px 0px;
    border-bottom: 1px solid #eee;
}

.awardsection .awardsectionbox.headingbox {
    background: var(--primary-color);
    padding: 40px 20px 75px;
}

.awardsection .awardbox {
    background-color: #fff;
    padding: 40px 20px;
    box-shadow: 0px 0px 8px rgba(57, 57, 57, .23);
    border-radius: 0px 0px 0px 0px;
}

.awardsection .awardbox .awardinfo {
    text-align: center;
}

.awardsection .awardbox .awardinfo img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    margin-bottom: 20px;
}

.awardsection .awardbox .awardinfo h2 {
    color: #292732;
    font-size: 22px;
    font-family: var(--primary-font);
    margin-bottom: 0px;
    font-weight: 600;
}

.awardsection .awardbox .awardinfo p {
    color: #292732;
    font-size: 18px;
    font-family: var(--primary-font);
    margin-bottom: 10px;
    font-weight: 500;
}

.awardsection .awardbox .awardinfo h6 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 0px;
    font-weight: 600;
}
/* awards section style start */
/* blogs page style start */

.blogsection.blogspage {
    background: #fff;
}

.blogsection.blogspage .blogs-row .blogsbox .blogsinner h3 {
    font-size: 18px;
    font-weight: 600;
}

.blogsection .blogs-row .blogsbox .blogsinner p {}

.blogsection.blogspage .blogs-row .blogsbox .blogsinner {
    padding: 20px 10px;
}

.blogsection.blogspage .blogs-row .blogsbox {
    margin: 15px 0;
}

.blog-details {
    padding: 50px 0px;
}

.blog-details .blog-detailsbox {}

.blog-details .blog-detailsbox .blog-image {
    text-align: center;
    margin: 0 0 20px;
}

.blog-details .blog-detailsbox .blog-image img {
    width: 70%;
    border-radius: 15px;
    height: 400px;
    object-fit: contain;
}

.blog-details .blog-detailsbox .service-details-box {}

.blog-details .blog-detailsbox .service-details-box p {
    color: #373737;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 10px;
    text-align: justify;
    font-family: var(--secondry-font);
}
.blog-details .blog-detailsbox .service-details-box ul {
    margin: 0 20px;
    list-style: disc;
}
.blog-details .blog-detailsbox .service-details-box ul li {
    margin: 0 0 10px;
    color: #373737;
    font-weight: 400;
    text-align: justify;
    font-family: var(--secondry-font);
    font-size: 16px;
}
.blog-details .blog-detailsbox .service-details-box h3{
    font-size: 22px;
    font-weight: 800;
    font-family: var(--primary-font);
    color: var(--primary-color);
    margin: 0 0 10px;
    line-height: normal;
}
.blogs-sidebox {
    box-shadow: 0px 0px 50px 3px rgba(232,232,232,0.7);
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #ffb9cc;
}

.blogs-sidebox h4 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin: 0 0 10px;
    text-align: center;
}

.blogs-sidebox .blogs-boxx {
    background: #d6003978;
    padding: 10px;
    border-radius: 10px;
}

.blogs-sidebox .blogs-boxx a {
    display: flex;
    gap: 0px;
    flex-direction: column;
}

.blogs-sidebox .blogs-boxx a .blogs-img {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blogs-sidebox .blogs-boxx a .blogs-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.blogs-sidebox .blogs-boxx a .blogs-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blogs-sidebox .blogs-boxx a h5 {
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    color: #fff;
}
.blogs-sidebox .blogs-boxx a:hover .blogs-info h5 {
    color: var(--primary-color);
}

.blogs-sidebox .blogs-boxx a .blogs-info p {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.blog-details .blog-detailsbox .service-details-box h1 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
    position: relative;
    font-size: 1.8rem;
    display: inline-block;
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 2px;
    color: #fff !important;
}
.blog-details .blog-detailsbox .service-details-box h1:before {
    content: "";
    height: 100%;
    border-left: 3px solid var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: -30px;
}
.blog-details .blog-detailsbox .service-details-box h1:after {
    content: "";
    height: 100%;
    border-left: 3px solid var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 30px;
    right: -10px;
}

/* blogs page style end */

/* mobilesidenav style start */

.mobilesidenav {
    position: fixed;
    top: 0px;
    left: -100%;
    padding-bottom: 15px;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99;
    overflow: auto;
    -webkit-box-shadow: 0 0 35px -10px rgba(0, 0, 0, 25%);
    box-shadow: 0 0 35px -10px rgba(0, 0, 0, 25%);
    background-repeat: no-repeat;
    transition: all .3s ease;
}

.mobilesidenav.show {
    left: 0;
}

.mobilesidenav .mobilesidev {}

.mobilesidenav .mobilesidev .mobilesidehead {
    background: #ffe6ed;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 10px 10px;
}

.mobilesidenav .mobilesidev .mobilesidehead .mobilesidelogo {
    width: 80%;
}

.mobilesidenav .mobilesidev .mobilesidehead .mobilesidelogo img {
    width: 100%;
}

.mobilesidenav .mobilesidev .mobilesidehead .close-btn {padding-right: 0px;}

.mobilesidenav .mobilesidev .mobilesidehead .close-btn i {
    font-size: 22px;
}

.mobilesidenav .mobilesidev .mobilemenu {}

.mobilesidenav .mobilesidev .mobilemenu ul {display: flex;flex-direction: column;padding-left: 0;margin-bottom: 0;list-style: none;margin: 0px 0px;margin-right: 0px;}

.mobilesidenav .mobilesidev .mobilemenu ul li {
}
.mobilesidenav .mobilesidev .mobilemenu ul li.mobiledropdown {
    position: relative;
}

.mobilesidenav .mobilesidev .mobilemenu ul li .moibledropmenu {background: #ffdbe5;padding: 0px 0px;}
.mobilesidenav .mobilesidev .mobilemenu ul li .moibledropmenu ul {margin: 0;}

.mobilesidenav .mobilesidev .mobilemenu ul li .moibledropmenu ul li {

}

.mobilesidenav .mobilesidev .mobilemenu ul li .moibledropmenu ul li a {text-transform: capitalize;padding: 10px 30px;}

.mobilesidenav .mobilesidev .mobilemenu ul li a {
    font-size: 16px;
    border-bottom: 1px solid #efefef;
    padding: 10px 15px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--secondry-font);
}
.mobilesidenav .mobilesidev .mobilemenu ul li a:hover {
    color: #000;
}
.mobilesidenav .mobilesidev .mobilemenu .mobilebtns {
    padding: 0px 10px;
}

.mobilesidenav .mobilesidev .mobilemenu .mobilebtns ul {
    margin-bottom: 0;
}

.mobilesidenav .mobilesidev .mobilemenu .mobilebtns ul li {
    margin: 5px 0;
}

.mobilesidenav .mobilesidev .mobilemenu .mobilebtns ul li a {
    background: var(--primary-color);
    color: #fff;
    font-family: var(--primary-font);
    text-transform: uppercase;
    padding: 12px 25px;
    display: block;
    border-radius: 5px;
    font-size: 16px;
    transition: all .3s ease;
    text-align: center;
}
.mobilesidenav .mobilesidev .mobilemenu .mobilebtns ul li a:hover {
    background: var(--secondary-color);
}

.mobilesidenav .mobilesidev .mobilemenu ul li .moibledropmenu ul li .mobilesubmenu {
    background: var(--secondary-color);
}

.mobilesidenav .mobilesidev .mobilemenu ul li .moibledropmenu ul li .mobilesubmenu ul li a {
    color: #fff;
    padding: 10px 50px;
}

/* mobilesidenav style end */

.phoneicon {
    width: 50px;
    height: 50px;
    display: inline-block;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9;
    background: #2196F3;
    border-radius: 50%;
    text-align: center;
    padding-top: 6px;
    font-size: 26px;
    color: #fff;

}
.whatsappicon {
    width: 50px;
    height: 50px;
    display: inline-block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
}
.whatsappicon img {
    width: 100%;
}

/* gallery section style start */

.gallerysection {
    margin: 20px 0;
}

.gallerysection a {
    margin: 0 0 20px;
    position: relative;
    overflow: hidden;
}

.gallerysection a .gallerybox {}

.gallerysection a .gallerybox .galleryimg {}

.gallerysection a .gallerybox .galleryimg img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.gallerysection a .gallerybox .overlay-box {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0, 0);
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0,0);
    -ms-transform: scale(0,0);
    -o-transform: scale(0,0);
    transition: all 500ms ease;
}

.gallerysection a .gallerybox .overlay-box .fancybox {}

.gallerysection a .gallerybox .overlay-box .fancybox i {
    color: var(--primary-color);
    font-size: 16px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    background: #fff;
    border-radius: 50%;
}

.gallerysection a:hover .gallerybox .overlay-box {
    background: #ff4b7b7a;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    -o-transform: scale(1,1);
    transition: all 500ms ease;
}

/* gallery section style start */
    .modal-content.success { background-color: #d4edda; border-left: 5px solid #28a745; }
    .modal-content.error { background-color: #f8d7da; border-left: 5px solid #dc3545; }
    .btn-success { background-color: #28a745; color: white; }
    .btn-danger { background-color: #dc3545; color: white; }
    .spinner { display: none; text-align: center; font-size: 18px; font-weight: bold; }
    
    
    .contactsection .contactrightbox .locationmap {}

.contactsection .contactrightbox .locationmap iframe {
    width: 100%;
    height: 450px;
}

.branchsection.contactsection .contactrightbox {
    background: transparent;
    padding: 10px;
}

.branchsection.contactsection .contactrightbox .contactrightheading h5 {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-weight: 600;
}

.contactsection .contactleftbox .contactlower .contactlowerbox .branchsocialmedia {
    margin: 5px 0 0;
}

.contactsection .contactleftbox .contactlower .contactlowerbox .branchsocialmedia h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--primary-font);
    text-transform: capitalize;
    margin: 0 0 5px;
}

.contactsection .contactleftbox .contactlower .contactlowerbox .branchsocialmedia .sociallink {}

.contactsection .contactleftbox .contactlower .contactlowerbox .branchsocialmedia .sociallink ul {
    display: flex;
    gap: 10px;
}

.contactsection .contactleftbox .contactlower .contactlowerbox .branchsocialmedia .sociallink ul li {}

.contactsection .contactleftbox .contactlower .contactlowerbox .branchsocialmedia .sociallink ul li a {
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactsection .contactleftbox .contactlower .contactlowerbox .branchsocialmedia .sociallink ul li a i {}

.branchsection.contactsection {
    background: #fff3f6;
}

.branchabout {
    padding: 50px 0 20px;
}

.branchabout .branchimage {
    text-align: center;
    margin: 0 0 20px;
}

.branchabout .branchimage img {
    width: 60%;
    height: 350px;
    object-fit: contain;
}

.branchabout .branchaboutbox {
}

.branchabout .branchaboutbox h3 {
    background: var(--primary-color);
    color: #fff;
    width: max-content;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 0 auto 15px;
    text-align: center;
}

.branchabout .branchaboutbox p {
    margin: 10px 0 10px;
}

.branchabout .hd2 {
    font-size: 35px;
    text-align: center;
    font-family: var(--secondry-font);
}

.branchabout .line {
    border-left: 2px solid var(--primary-color);
    padding: 20px 0 20px 4vw;
    min-height: 100px;
}

.branchabout .line .desc {}

.branchabout .line .desc p {text-align: justify;font-size: 16px;margin: 0 0 10px;}

.breadcrumbbranch {
    background: #ffe0e8;
    padding: 50px 0;
}

.breadcrumbbranch .breadcrumbbranchbox {}

.breadcrumbbranch .breadcrumbbranchbox .breadcrumbbranchinfo {
    padding: 40px;
    background: #b61e42;
    border-radius: 12px;
    width: 80%;
}

.breadcrumbbranch .breadcrumbbranchbox .breadcrumbbranchinfo h3 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
}

.breadcrumbbranch .breadcrumbbranchbox .breadcrumbbranchimage {}

.breadcrumbbranch .breadcrumbbranchbox .breadcrumbbranchimage img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}
.discount-wrapper {
  /* background: rgba(255,255,255,0.9); */
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 3rem;
  /* box-shadow: 0 40px 80px rgba(236, 72, 153, 0.25); */
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4rem;
  margin: 30px 0;
}

/* Left Content */
.discount-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #be123c;
}

.discount-sub {
  color: #6b7280;
  font-size: 1.1rem;
  margin: 1rem 0 2rem;
}

/* Feature List */
.discount-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.discount-features div {
  background: #ffe4ec;
  padding: .75rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  color: #9f1239;
}

/* Spin Button */
.spin-btn {
  background: linear-gradient(to right,#ec4899,#be123c);
  color: white;
  border: none;
  padding: 18px 52px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(236,72,153,.35);
  animation: pulse 2s infinite;
}

.spin-btn:hover {
  transform: scale(1.04);
}

/* Pulse Glow */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(236,72,153,.6); }
  70% { box-shadow: 0 0 0 28px rgba(236,72,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,72,153,0); }
}

/* RIGHT SIDE WHEEL */

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

.pointer {
  width: 0;
  height: 0;
  margin: auto;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 34px solid #be123c;
}

.wheel-wrap {
  filter: drop-shadow(0 30px 50px rgba(236,72,153,.4));
}

/* Wheel */
.wheel {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 14px solid white;
  overflow: hidden;
  position: relative;
  transition: transform 5s cubic-bezier(.15,.7,.15,1);
}

/* Slice Base */
.slice {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 50%;
  left: 50%;
  transform-origin: 0% 0%;
  clip-path: polygon(0 0,100% 0,0 100%);
}

/* Five hospital themed colors */
.slice.one   { background: linear-gradient(135deg,#fb7185,#ec4899); }
.slice.two   { background: linear-gradient(135deg,#f472b6,#db2777); }
.slice.three { background: linear-gradient(135deg,#f43f5e,#be123c); }
.slice.four  { background: linear-gradient(135deg,#ec4899,#9f1239); }
.slice.five  { background: linear-gradient(135deg,#f87171,#b91c1c); }

/* Result Text */
.spin-result {
  margin-top: 1.5rem;
  font-size: 1.7rem;
  font-weight: 800;
  color: #be123c;
}

/* Responsive */
@media(max-width:768px){
  .wheel {
    width: 300px;
    height: 300px;
  }

  .discount-title {
    font-size: 2.2rem;
  }
}