@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #800080;
    --secondary: #dda11a;
    --tertiary: #24544b;
    --white: #fff;
    --black: #000;
}


body {
    margin: 0;
    padding: 0 !important;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    overflow: inherit !important;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
    background: none;
    border: solid 1px #e5e5e5;
    color: #444;
    font-size: 15px;
    line-height: normal;
    margin: 0 0 13px;
    padding: 10px 20px;
    width: 100%;
    outline: 0;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    background: var(--white);
}
input[type="submit"] {
    background: var(--primary);
    text-transform: uppercase;
    border: none;
    padding: 11px 25px;
    font-size: 14px;
    border: 0;
    letter-spacing: 0.8px;
    cursor: pointer;
    outline: none;
    font-weight: 500;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    color: var(--white);
    width: 100%;
}
input[type="submit"]:hover {
  background: var(--secondary);
  color: var(--white);
  transition: 0.8s;
}
textarea {
  height: 100px;
  margin-bottom: 5px;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px 0;
	font-family: "Poppins", sans-serif;
    color: var(--black);
    font-weight: 500;
    text-transform: inherit;
    line-height: normal;
}
h1 {
  font-size:28px
}
h2 {
  font-size:24px
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size:18px
}
h6 {
  font-size:16px
}
p {
    padding: 0;
    margin: 0 0 10px 0;
    font-family: "Poppins", sans-serif;
    color: #464d58;
    font-size: 15.5px;
    line-height: 30px;
    font-weight: 400;
}
ul, li, a{
  list-style-type: none;
    font-family: "Poppins", sans-serif;
    color: #4d5765;
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
}
a:hover {
  transition:0.8s;
  text-decoration:none;
}
.heading, .leftheading {
    margin-bottom: 30px;
    font-size: 42px;
    position: relative;
    text-align: center;
    width: fit-content;
    letter-spacing: .5px;
    line-height: 45px;
    font-weight: 500;
    text-transform: capitalize;
}
.heading {
    display: block;
    margin: 0 auto 30px;
}
.heading:after {
    position: absolute;
    content: '';
    bottom: -25px;
    left: 50%;
    height: 2px;
    width: 90px;
    background: var(--primary);
    transform: translate(-50%,-50%);
}
.heading:before {
    position: absolute;
    content: '';
    bottom: -34px;
    left: 50%;
    height: 2px;
    width: 60px;
    background: var(--primary);
    transform: translate(-50%,-50%);
}
.leftheading {
    text-align: start;
    position: relative;
    font-size: 33px;
    margin-bottom: 10px;
}
.subheading {
    display: block;
    text-transform: capitalize;
    color: var(--primary);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
}
.heading .subheading {
    width: fit-content;
    margin: auto;
    position: relative;
}
.heading .subheading:before, 
.heading .subheading:after {
    left: 50%;
    transform: translateX(-26px);
}
.heading .subheading:after {
    transform: translateX(-18px);
}
.zoomeffect {
    overflow: hidden;
    position: relative;
}
.zoomeffect img {
  transition: transform 0.8s ease-in-out;
}
.zoomeffect:hover img {
  transform: scale(1.1);
}
.btn-secondary span {
    z-index: 2;
    position: relative;
}

/* Loader Fullscreen */
.dna-loader {
    height: 100vh;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    transition: opacity 0.6s ease;
}

/* Logo Animation */
.dna-loader img {
    width: 260px;
    animation: zoomLoop 2.2s ease-in-out infinite, glow 2s ease-in-out infinite;
    opacity: 1;
}

/* Infinite Zoom Loop */
@keyframes zoomLoop {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

/* Golden Glow */
@keyframes glow {
    0% { filter: drop-shadow(0 0 4px #dca424); }
    50% { filter: drop-shadow(0 0 16px #ffb022); }
    100% { filter: drop-shadow(0 0 4px #dca424); }
}



/* TOP CONTACT CSS */

.topbar {
    padding: 7px 0;
}
.volunteers figure {
    background: var(--secondary);
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}
.volunteers img {
    width: 20px;
}
.volunteers {
    column-gap: 5px;
    font-family: "Caveat", cursive;
    font-size: 22px;
    font-weight: 600;
}
.top-contact {
    column-gap: 20px;
}
.top-contact p, .top-contact p a {
    color: var(--white);
    font-size: 15px;
}
.topcontact {
    column-gap: 10px;
    align-items: center;
    justify-content: end;
}
.topcontact ul {
    column-gap: 20px;
}
.topcontact i {
    color: transparent;
    -webkit-text-stroke: 1px #000000;
    background: #e0841f1a;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 50px;
}
.topcontact li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: end;
    position:relative;
}
.topcontact a {
    font-size: 15px;
    font-weight: 500;
}
.topcontact span {
    display: block;
    font-size: 15px;
}

/* Header */

header .row {align-items: center;}
header img {
    width: 230px;
}
.topcontact ul li:first-child {
    width: 60%;
}
.topcontact ul li:nth-child(2) {
    width: 45%;
}
.topcontact ul li:nth-child(2) i {
    position: absolute;
    left: 0;
}
.topcontact small {
    padding-left: 50px;
    color: #000;
    font-size:14px;
}

/* Menubar */

.mainmenu {
    z-index: 3;
    box-shadow: 0 2px 12px #00000014;
}
.menus {
    border-top: 1px solid #dc771b33;
    margin-top: 14px;
}
.mainmenu .btn-primary {margin-left: 10px;}


.menubar .btn-secondary {
    border-radius: 10px 10px 0 10px;
    padding: 10px 20px !important;
    margin: 0 !important;
}
.menubar .btn:before {
    border-radius: 10px 10px 0 10px !important;
}

/* pop-up overlay  */

#popupOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popupBox {
    background: #fff;
    padding: 30px;
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.4s ease;
}

.closePopup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}


/* Main Slider */

.mainslider figure{
	margin:0;
	position: relative;
}
.mainslider figure img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.mainslider .carousel-caption {
    top: 50%;
    left: 0;
    right: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: left;
    bottom: inherit;
}
.mainslider .carousel-content {
    width: 55%;
}
.mainslider .carousel-caption h2, .mainslider .carousel-caption p {
	color:var(--white);
}
.mainslider .carousel-content h4 {
    display: inline-block;
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 3px;
    border-bottom: 2px solid #fff;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "Caveat", cursive;
}
.mainslider .carousel-caption h2 {
    font-size: 52px;
    line-height: 77px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    animation: lts .5s ease-in-out .3s forwards;
    margin-bottom: 15px;
    color: var(--black);
}
.mainslider .carousel-caption h2 span {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}
@keyframes lts{
0%{
	transform:translateX(-150px);
}
100%{
	opacity:1;
	transform:translateX(0px);
}
}
.mainslider .carousel-content p {
    font-size: 16px;
    margin: 10px 0 25px;
    line-height: 35px;
    opacity: 0;
    animation: lts .5s ease-in-out .6s forwards;
    color: var(--black);
}
.mainslider .carousel-content .btn-primary {
    opacity: 0;
    animation: lts .5s ease-in-out 1.2s forwards;
}
.mainslider .carousel-control {
	position: absolute;
	bottom: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	font-size: 18px;
	height: 45px;
	background: var(--blackcolor) !important;
	color: var(--whitecolor);
 transition: opacity .15s ease;
	border-radius: 50%;
}
.mainslider .carousel-control.right {
    right: 105px;
    left: auto;
}
.mainslider .left.carousel-control {
	left: 84% !important;
}
.mainslider button i {
    background: rgba(0,0,0,.5);
    font-size: 27px;
    width: 35px;
    height: 55px;
    line-height: 55px;
}
.discover {
    bottom: 70px;
    left: 70px;
    z-index: 1;
}
.discover img {
    width: 160px !important;
	animation: spin 12s infinite linear;
}
@keyframes spin {
    0%  {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}   
}
.btn.btn-primary img {
    width: 25px;
    height: 25px;
}
a.btn.btn-primary figure {
    height: 30px;
    width: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
a.btn.btn-primary {
    width: fit-content;
    column-gap: 10px;
}
.buttons {
    column-gap: 20px;
}


/* Benefits Section  */
.benefits {
    margin: 60px 0;
}
.benefits-item img {
    width: 50px !important;
}
.benefits .row .col-lg-4:first-child .benefits-item {
    background: #fbf1f1;
}
.benefits .row .col-lg-4:nth-child(2) .benefits-item {
    background: #d3ecf1;
}
.benefits .row .col-lg-4:nth-child(3) .benefits-item {
    background: #f8f3e5;
}
.benefits-item figure {
    height: 75px;
    width: 75px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}
.benefits-item {
    padding: 20px;
    border-radius: 10px;
}
.benefits-content h3 {
    margin-bottom: 12px !important;
    display: block;
    font-weight: 500;
    font-size: 23px;
}
.benefits-content a {
    color: #000;
    font-size: 15px;
    display: inline-block;
    background: #d1741c21;
    border-radius: 50px;
    padding: 4px 25px;
    margin-top: 14px;
    font-weight: 500;
}

/* DHI Section Css  */

.dhi .leftheading {
    font-size: 24px;
}

.dhi .whychooseus .row .col-lg-6:last-child {
    width: 50%;
}
.dhi .whychooseus .row .col-lg-6:last-child .about-whychoose {
    padding: 15px;
}


/* About us section  */
.about {
    background: #d1741c1a;
    margin-bottom: 60px;
}
.about-content {
    padding-left: 40px;
}
.about-content .leftheading {
    line-height: 55px;
    letter-spacing: 1px;
}
span.subheading {
    font-size: 16px;
    background: #d1741c24;
    display: inline-block;
    padding: 6px 30px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}


/* Services new section  */

.srvcsnew {
    margin-bottom: 65px;
}
.srvcsnew .heading {
    margin-bottom: 80px;
}
.aboutnewsrvcs img {
    width: 180px !important;
    height: 175px;
    object-fit: cover;
    border-radius: 8px;
}
.aboutnewsrvcs {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #d1741c21;
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.srvcsnew .row {
    row-gap: 20px;
}
.srvcsnew-item .btn {
    padding: 8px 25px;
}
.aboutnewsrvcs h3 {
    margin-bottom: 10px;
}

/* awards section  */

.awards {
    margin-bottom: 60px;
}
.awards .heading{
margin-bottom:60px;
}

.awards img {
    width: 200px;
    display: block;
    margin: 0 auto;
}
.about-awards {
    text-align: center;
    background: #fff;
    box-shadow: 0 0 10px 0px rgba(0,0,0,0.1);
    border-radius: 10px;
    border: 1px solid #d1741c33;
    padding: 20px;
}
.about-awards h3{
 margin:0;
}
.awards .text {
    width: 65%;
    margin: 0 auto 40px;
    text-align: center;
}







/* meet our best dermatologist  */

.doctorsprofile {
    margin-bottom: 60px;
    background: #24544b14;
    padding: 60px 0;
}
.doctorsprofile .heading {
    margin-bottom: 75px;
}
.about-doctor img {
    height: 400px;
    object-position: top;
    border-radius: 8px 8px 0 0;
}
.doctordtls ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.doctordtls ul li {
    margin-bottom: 15px;
    background: #fff;
    padding: 15px;
    width: 48%;
    margin-right: 10px;
    border-radius: 8px;
}
.doctordtls ul li:last-child {
    width: 100%;
}
.about-dtls {
    display: flex;
    align-items: center;
}
.about-dtls h3 {
    font-size: 18px;
    margin:0;
}
.about-dtls figure {
    height: 70px;
    width: 70px;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right:10px;
}
.about-dtls img {
    width: 45px;
}
.about-doctor h2 {
    background: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 0 0 8px 8px;
}

/* info video section  */

.informstions {
    padding: 60px 0;
}
.youtube-video iframe {
    width: 100%;
    height: 260px;
    border-radius: 10px;
}
.lifechanging img {
    width: 100% !important;
}
.lifechanging {
    margin-bottom: 60px;
}
.patienttestimonial {
    background: #d1741c0d;
    padding: 50px 0;
    margin-bottom: 60px;
}
.faqs .heading {
    margin-bottom: 75px;
}
.page-id-11 .homeblog {
    padding: 60px 0;
}


/* Services Section  */
.services {
    margin-bottom: 60px;
}
.services .heading {
    margin-bottom: 75px;
}
.about-services figure {
    position: relative;
    overflow: hidden;
    border-radius:10px;
}
.about-services figure:before {
    background: #ffffff80 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    transition: all .7s ease 0s;
    right: 0;
    top: 0;
    z-index: 1;
}
.about-services figure:after {
    background: #ffffff80 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    transition: all .7s ease 0s;
    right: 0;
    top: 0;
    z-index: 1;
}
.about-services:hover figure:before {
    left: 50%;
    opacity: 1;
    right: 50%;
}
.about-services:hover figure:after {
    bottom: 50%;
    opacity: 1;
    top: 50%;
}
.about-services img {
    height: 400px;
    object-fit: cover;
    transition: .3s ease-in-out;
    filter:brightness(0.8);
}
.srvcs-item {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: linear-gradient(178deg, rgb(255 255 255 / 7%) 0, #07070085 50%);
}
.srvcs-item h3 {
    color: #fff;
    font-size: 28px;
    letter-spacing:1px;
}
.srvcs-item a {
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    background: #fff;
    padding: 5px 25px;
    border-radius: 50px;
}

/* Testimonial section  */
/* .testimonial img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    outline: 1px solid var(--primary);
    outline-offset: 7px;
    margin: 15px;
} */
.testimonial-item {
    background: #d1741c1a;
    padding: 15px;
    border-radius: 10px;
    border-bottom: 3px solid var(--primary);
}
.testimonial .heading {
    margin-bottom: 70px;
}
.testimonial-profile h5 {
    font-size: 23px;
    margin: 18px 0 6px;
}

/* why us section  */
.whyus {
    background: linear-gradient(45deg, black, #000000c9), url(https://demo.gobindaprasadtripathy.com/wp-content/uploads/2025/11/choose-us.jpg);
    margin-bottom: 60px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.whyimg {
    height: 650px;
    object-fit: cover;
}
.lists li {
    background: #d1741c21;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 2px solid var(--primary);
}
.about-lists {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.lists li span {
    height: 60px;
    width: 60px;
    background: linear-gradient(
45deg, black, var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    font-size: 30px;
}
.lists ul li:last-child {
    margin: 0;
}
.lists-info {
    padding-left: 80px;
}
.lists-info h3 {
    color: #d1741c;
    margin-bottom: 15px;
}
.lists-info p {
    color: #fff;
    margin-bottom: 5px;
}

/* before and after section  */
.beforeafter {
    margin: 40px 0 0;
    background: #f9f9f9;
    padding: 50px 0;
}
.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.before-after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-after-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-32%);
}

.before-img {
  clip-path: inset(0 50% 0 0);
  z-index: 2;     
}

.after-img {
  z-index: 1;      
}

.ba-slider {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    z-index: 10;
}
.before-after-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}
.beforeafter .heading {
    margin-bottom: 85px;
}

/* contact form section  */
.appointments {
    background: linear-gradient(45deg, black, #0000007d), url(https://demo.gobindaprasadtripathy.com/wp-content/uploads/2025/11/appointment-banner.jpg);
    padding: 90px 0;
    text-align: center;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
}
.appointments h2 {
    color: #fff;
    font-size: 40px;
    letter-spacing: 2px;
    font-weight: 600;
}
.appointments p {
    color: #fff;
    width: 55%;
    margin: 0 auto 20px;
    font-size: 16px;
}

/* Contact us page css  */
.contactus_details {
    display: flex;
    align-items: center;
    column-gap: 25px;
}
.contactus_details {
    display: flex;
    align-items: center;
    column-gap: 25px;
    background: #d1741c14;
    margin-bottom: 20px;
    padding: 15px;
    position: relative;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}
.contactus_info h3 {
    margin-bottom: 5px;
}
.contactus_details i {
    height: 50px;
    width: 50px;
    background: linear-gradient(45deg, black, #d1741c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
}
.contactus_info a {
    color: #000;
}
form.wpcf7-form.init {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #d1741c29;
}
span.wpcf7-spinner {
    display: none;
}
.google-map iframe {
    width: 100%;
    margin-top: 50px;
}


/* Footer */

footer {
    background: var(--primary);
    padding-top: 50px;
    background-size: cover;
    background-position: center;
}
footer .border-start {
    border-left: 1px solid #dee2e640!important;
}
footer a.footer-logo img {
    width: 250px;
    margin-bottom: 15px;
}
.ftr-about a {
    text-decoration: underline;
    text-underline-offset: 5px;
    letter-spacing: 1px;
    margin-top: 5px;
}
footer .col-sm-4 {
    padding: 50px 30px;
}

footer h3 {
    color: #efefeff0;
    margin-bottom: 22px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
}

.ftrcontact i {
    height: 35px;
    width: 35px;
    background: #d1741c3d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

footer .row a {
    display: inline-block;
    font-size: 15px;
    margin-bottom: 8px;
}
footer a, footer ul li {
    color: #efefeff0;
    font-size: 14.5px;
    transition: 0.5s ease-in-out;
}
.ftr-about a {
    font-family: "Caveat", cursive;
    font-size: 18px !important;
    color: var(--secondary);
}
footer a:hover{
	color:#ffffff;
}
.ftrcontact li{
	margin-bottom:10px;
}
footer ul.menu li a {
    line-height: 35px;
}

footer i{
    font-size: 13px;
    margin-right: 6px;
}
footer p {
    margin-bottom: 0;
    color: #efefeff0;
    font-size: 15px;
    font-weight: 400;
}
.ftr-smoicons {
    column-gap: 8px;
    margin-top: 18px;
}
.ftr-smoicons li {
    color: var(--white);
    font-size: 16px;
}
.ftr-smoicons li a {
    color: var(--white);
    font-size: 14px;
    background: #ffffff17;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.ftr-smoicons svg path{
fill: var(--white);	
}
.ftr-smoicons li a i {
    margin: 0;
}
.copyright {
    text-align: center;
    padding: 12px 0;
    background: #00000080;
    border-radius: 30px 30px 0 0;
    margin-top: 35px;
}
.copyright p {
    color: #efefef;
    letter-spacing: .5px;
}
.copyright p a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
	transition:0.5s ease-in-out;
}
.copyright p a:hover{
	color:var(--primary);
}
.newsletter {
    background: var(--primary);
    margin-top: 30px;
    border-radius: 6px;
    padding: 14px;
}
.newsletter-cnt {
    column-gap: 20px;
    align-items: center;
}
.newsletter-cnt h3, .newsletter-cnt h3 span{
	color:var(--white);
}
.newsletter-cnt h3 span {
    font-size: 17px;
    padding-top: 6px;
}
.newsletter-cnt img{
	transition:0.5s ease-in-out;
}
.newsletter-cnt:hover img{
	transform: rotateY(180deg);
}
.newsletter input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #000;
    font-size: 20px;
    font-family: 'Font Awesome 5 Brands';
    width: 100%;
    height: 100%;
    padding: 12px 20px;
}
.newsletter  .wpcf7-spinner{
	display:none;
}
.newsletter  input {
    margin: 0;
    padding: 12px 20px;
}
#GoToTop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 30px;
    border-radius: 6px;
    z-index: 99999999;
    padding: 0;
    border: 1px solid #ffffff78;
    background: var(
    --primary);
    width: 50px;
    color: var(--white);
    height: 55px;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    text-decoration: none;
    padding-top: 13px;
}
#GoToTop .fa {
	display: block;
	padding-bottom: 3px;
}
#GoToTop:hover {
	background: var(--primary);
	color: var(--white);
}
#GoToTop.show {
	display:block
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 20%;
    right: 25px;
    z-index: 99999999;
    padding: 7px 11px;
    background: #056a62;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    display: flex !important;
    align-items: center;
    column-gap: 5px;
}


/* #whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
} */

@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 25px;
}
#whatsappbtn span {
    font-size: 17px;
    font-weight: 400;
}
.secondary-container {
	padding: 60px 0;
}
.breadcrumb {
    background: linear-gradient(45deg, var(--primary), #000);
    padding: 80px 0;
    text-align: center;
}
.page-id-209 .breadcrumb h1 {
    text-align: left;
}
.page-id-209 .breadcrumb  {
    text-align: left;
}
.page-id-209 .breadcrumb .col-lg-7  {
  padding-right:20px;
}
.page-id-424 .breadcrumb h1 {
    text-align: left;
}
.page-id-424 .breadcrumb  {
    text-align: left;
}
.page-id-424 .breadcrumb .col-lg-7  {
  padding-right:20px;
}
.page-id-105 .breadcrumb h1 {
    text-align: left;
}
.page-id-105 .breadcrumb  {
    text-align: left;
}
.page-id-105 .breadcrumb .col-lg-7  {
  padding-right:20px;
}
.page-id-289 .breadcrumb h1 {
    text-align: left;
}
.page-id-289 .breadcrumb  {
    text-align: left;
}
.page-id-289 .breadcrumb .col-lg-7  {
  padding-right:20px;
}
.breadcrumb h1 {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 20px !important;
}
.breadcrumb span {
    background: var(--primary);
    padding: 12px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
    line-height: 55px;
}
.breadcrumb p {
    margin: 0;
    color: var(--white);
}
.banner-form span {
    background: unset !important;
    padding: 0;
}
.banner-form form.wpcf7-form.init {
    background: #d1741c45;
}
.banner-form h2 {
    color: #fff;
}
.breadcrumb a {
    color: var(--white);
    margin-right: 25px;
    position: relative;
}

.breadcrumb a:after {
    position: absolute;
    content: '\f101';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 12px;
    top: -1px;
    right: -21px;
    color: var(--white);
}

/* Services details page css  */

.whychooseus {
    background: #f9f9f9;
    padding: 55px 0;
}
.about-whychoose {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    position: relative;
    border-bottom: 2px solid var(--primary);
}
.whychooseus .row {
    row-gap: 20px;
}
.page-id-209 .whychooseus .row .col-lg-6:last-child {
    width: 50%;
}
.page-id-209 .whychooseus .row .col-lg-6:last-child .about-whychoose {
    padding: 16px !important;
}
.about-whychoose figure {
    height: 80px;
    width: 80px;
    background: linear-gradient(45deg, black, var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    top: 25px;
}
.whychooseinfo {
    padding-left: 100px;
}
.whychooseinfo h3 {
    margin: 0 0 8px;
}
.about-whychoose img {
    width: 55px;
}
.whychooseus .row .col-lg-6:last-child {
    width: 100%;
}
.whychooseus .row .col-lg-6:last-child .about-whychoose {
    padding: 25px;
}
.whychooseus .heading {
    font-size: 35px;
    margin-bottom: 70px;
}

/* hair transplant css  */

.transplants img {
    width: 100%;
    height: 925px;
    object-fit: cover;
    border-radius: 10px;
    object-position: center;
}
.transplants {
    padding: 60px 0;
}
.transplants .col-lg-12 {
    text-align: center;
    background: #d1741c21;
    padding: 30px;
    border-radius: 10px;
}
.page-id-105 .transplants .leftheading {
    text-align: center;
    width: 100%;
}
.cliniccnt {
    text-align: center;
    margin-top: 60px;
    background: #d0741c17;
    padding: 30px;
    border-radius: 10px;
}
.page-id-105 .lifechanging {
    margin-top: 60px;
    margin-bottom:0;
}
.page-id-105 .informstions {
    padding: 60px 0 0;
}

/* types section css  */
.types {
    background: linear-gradient(45deg, black, transparent) , url(https://demo.gobindaprasadtripathy.com/wp-content/uploads/2025/11/typesbanner.jpg);
    padding: 50px 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
.types .heading {
    color: #fff;
    margin-bottom: 70px;
}
.types .row {
    row-gap: 20px;
}
.about-types {
    background: #ffffff1a;
    height: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d1741c4d;
}
.about-types img {
    height: 270px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    width: 100%;
}
.typesinfo h3 {
    color: #fff;
    font-size: 23px;
    margin: 0 0 12px;
}

/* cost table css  */
.costtable {
    padding: 60px 0;
}
.costtable .heading {
    margin-bottom:70px;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.cost-table thead th {
    background: #f7f7f7;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: #333;
}

.cost-table tbody td {
    padding: 15px 20px;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid #eaeaea;
}

.cost-table tbody tr:nth-child(even) {
    background: var(--primary);
}
.cost-table tbody tr:nth-child(even) td {
   color:#fff;
}

.cost-table tbody tr:last-child td {
    border-bottom: none;
}

.rightcandidate {
    background: #d1741c0a;
    padding: 50px 0;
}
.candidatecontanet ul li {
    margin-bottom: 10px;
}
.candidatecontanet ul {
    margin-top: 25px;
}
.candidatecontanet ul li i {
    color: var(--primary);
    margin-right: 10px;
}
.rightcandidate img {
    border-radius: 10px;
}

/* types section  */

.typess {
    background: #d1741c0a;
    padding: 50px 0;
}
.about-typess img {
    width: 120px !important;
    display: block;
    margin: 0 auto;
}
.about-typess {
    background: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    border-bottom: 2px solid var(--primary);
}
.about-typess h3 {
    margin: 15px 0;
}
.typess .heading {
margin-bottom:75px;
}

/* types image popup css  */

.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}




.stepbystep {
    padding: 60px 0;
}
.stepbystep .heading {
    margin-bottom: 70px;
}
.about-step {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px #d1741c0d;
    height: 100%;
}
.about-step small {
    position: absolute;
    top: 35px;
    right: 30px;
    background: var(--primary);
    padding: 5px 20px;
    border-radius: 50px;
    color: #fff;
}
.skintreatment .about-step {
    height: 100%;
}
.skintreatment .about-step figure {
    height: 70px;
    width: 70px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px;
}
.skintreatment .about-step figure img {
 width:55px;
}
.stepbystep .row {
    row-gap: 20px;
}
.about-step span {
    height: 70px;
    width: 70px;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}
.about-step h3 {
    margin: 0 0 10px;
}

.service .before-after-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    transform: unset;
}
.service .before-after-wrapper img {
    width: 100%;
    height: 330px;
}
.service .before-after-slider {
    overflow: unset;
}
.service .beforeafter {
    padding: 50px 0 175px;
}
.service .beforeafter .heading {
    margin-bottom: 70px;
}
.skintreatment .before-after-wrapper img {
    width: 100%;
    height: 330px;
}
.skintreatment .before-after-wrapper {
    left: 0 !important;
    top: 0 !important;
    transform: unset !important;
}
.skintreatment .before-after-slider {
    overflow: unset;
}
.skintreatment .beforeafter {
    padding: 50px 0 175px !important;
}



/* details section  */
.about-details figure {
    height: 80px;
    width: 80px;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom:20px;
}
.about-details img {
    width: 55px !important;
}
.details {
    padding: 60px 0;
}
.details-info h3 {
    margin: 20px 0 30px;
}
.about-details:after {
    position: absolute;
    content: '';
    top: 79px;
    left: 50%;
    height: 120px;
    width: 2px;
    border: 1px dashed var(--primary);
}
.details-info h3 {
    margin: 20px 0 40px;
    background: linear-gradient(45deg, var(--primary), #000);
    display: inline-block;
    padding: 9px 25px;
    border-radius: 10px;
    color: var(--white);
    position: relative;
    z-index: 2;
    font-size: 16px;
}
.details-info p {
    background: #00221f12;
    padding: 20px 12px;
    border-radius: 10px;
    height: auto;
}
.details .heading {
    margin-bottom: 70px;
}
.dermatologist {
    background: #d1741c0f;
    padding: 40px 0;
}
.dermatologist ul li {
    margin-bottom: 10px;
    list-style-type: circle;
}
.dermatologist ul {
    padding-left: 20px;
    margin-top: 20px;
}
.dermatologist iframe {
    width: 100%;
    border-radius: 10px;
}
.makesus {
    padding: 60px 0;
}
.makesus ul li {
    margin-bottom: 10px;
    list-style-type: circle;
}
.makesus ul {
    padding-left: 20px;
    margin-top: 15px;
}
.makesus img {
    height: 515px;
    border-radius: 10px;
    object-fit: cover;
}
.skintreatment .googlereviews {
    background: #f7f7f7;
    padding: 40px 0 20px;
    margin:0 !important;
}
.skintreatment .faqs {
    background: unset !important;
    padding: 60px 0;
    margin-top: 0 !important;
}
.googlemap iframe {
    width: 100%;
}
/* faqs section  */

.accordion-item {
    margin-bottom: 15px;
    border: unset !important;
    border-bottom: 1px solid #eb1f2836 !important;
}
.faqs img {
    height: 345px;
    object-fit: cover;
    border-radius: 10px;
}
.accordion-button:not(.collapsed) {
    color: #fff !important;
    background-color: #d1741c !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
.accordion-button:focus {
    z-index: 3;
    border-color: unset !important;
    box-shadow: unset !important;
}
.faqs {
    background: #d1741c0f;
    padding: 55px 0;
    margin-top: 40px;
}

/* google reviews  */
.googlereviews {
    margin-top: 55px;
}
.youtubevideo iframe {
    width: 100%;
    height: 270px;
    border-radius: 10px;
    margin-top: 25px;
}

/* bbsr choose us  */
.bbsrchooseus {
    background: #f7f7f7;
    padding: 50px 0;
}
.bbsrchooseus ul li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}
.bbsrchooseus ul li:after {
    position: absolute;
    content: '';
    top: 10px;
    left: 0;
    height: 10px;
    width: 10px;
    background: var(--primary);
    border-radius: 50%;
    outline: 1px solid var(--primary);
    outline-offset: 3px;
}
.bbsrchooseus ul {
    margin-top: 22px;
}
.bbsrchooseus img {
    border-radius: 10px;
}

/* Skin page css  */
.treat {
    background: #f9f9f9;
    padding: 45px 0 35px;
}
.treat .row {
    row-gap: 20px;
    justify-content: center;
}
.abouttreat {
    background: var(--white);
    height: 100%;
    padding: 15px;
    text-align: center;
    border-radius:8px;
}
.abouttreat h3 {
    margin-bottom: 5px;
    font-size: 20px;
}
.abouttreat figure {
    height: 93px;
    width: 93px;
    background: linear-gradient(45deg, var(--primary), #000000);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    margin-bottom: 15px;
}
.abouttreat figure img {
    width: 50px;
}
.abouttreat {
    text-align: center;
    background: #2c338b0d;
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed #2c338b66;
}
.treat .slick-slide {
 margin:10px;
}
.treat .heading {
    margin-bottom: 70px;
}
.treat .slick-dots {
    margin-top: 0;
}


/* skin treatment details page css  */

.skindtls {
    background: #8e54220d;
    padding: 50px 0;
}
.skindtls .leftheading {
    width: 100%;
    text-align: center;
}
.skindtls img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}
.skin-content .btn {
    margin-top: 10px;
    margin-right: 8px;
}
.acne {
    margin: 60px 0;
}
.about-acne {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
}
.about-acne figure {
    height: 70px;
    width: 70px;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 12px;
}
.about-acne figure img {
   width: 50px !important;
}
.acne .heading {
    margin-bottom: 70px;
}
.acne .row {
    row-gap: 20px;
}
.page-id-289 .whychooseus .row .col-lg-6:last-child {
    width: 50%;
}
.page-id-289 .whychooseus .row .col-lg-6:last-child .about-whychoose {
    padding: 16px !important;
}
.whoisacne {
    padding: 60px 0;
}
.whoisacne img {
    height: 410px;
    object-fit: cover;
}
.whoisacne ul li {
    margin-bottom: 10px;
    list-style-type: circle;
}
.whoisacne ul  {
padding-left:25px;
}
.typesinfo p {
    color: #fff;
}
.skindtlss .before-after-slider {
    overflow: unset;
}
.skindtlss .before-after-wrapper {
    left: 0 !important;
    top: 0 !important;
    transform: unset !important;
}
.skindtlss .before-after-wrapper img {
    width: 100%;
    height: 330px;
}
.skindtlss .beforeafter {
    padding: 50px 0 175px !important;
}
.skindtlss .faqs img {
    height: 525px;
    object-fit: cover;
    border-radius: 10px;
}
.skindtlss .faqs {
 margin-top: 0px;
}


/* Hair skin details page css  */

.hairdtlss img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
}
.hairdtlss {
    background: #d1741c0d;
    padding: 50px 0;
    margin-bottom: 60px;
}
.aboutlingdescs {
    background: #0005100a;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 60px;
}
.about-hairfall img {
    width: 55px !important;
    height: 55px !important;
}
.about-hairfall {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    border-bottom: 2px solid var(--primary);
}
.about-hairfall figure {
    height: 70px;
    width: 70px;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px;
}
.hairfall .row {
    row-gap: 20px;
}
.about-hairfall h3 {
    font-size: 18px;
    margin: 0;
}
.hairfall .heading {
    margin-bottom: 70px;
}
.hairfall {
    margin-bottom: 60px;
}
.page-id-355 .whychooseus .row .col-lg-6:last-child {
    width: 50%;
}
.page-id-355 .whychooseus .row .col-lg-6:last-child .about-whychoose {
    padding: 16px !important;
}
.hairdtls .before-after-wrapper img {
    width: 100%;
    height: 330px;
}
.hairdtls .before-after-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    transform: unset;
}
.hairdtls .before-after-slider {
    overflow: unset;
}
.hairdtls .beforeafter {
    margin: 40px 0 0;
    background: #f9f9f9;
    padding: 50px 0 175px !important;
}
.beforeafter .texts {
    text-align: center;
    margin-bottom: 45px;
}
.page-id-355 .beforeafter .heading {
    margin-bottom: 50px;
}
.whotreats {
    padding: 60px 0;
}
.whotreats img {
    border-radius: 10px;
    height: 455px;
    object-fit: cover;
}
.whotreats ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}
.whotreats ul li:after {
    position: absolute;
    content: '';
    top: 10px;
    left: 0;
    height: 10px;
    width: 10px;
    background: var(--primary);
    border-radius: 50%;
    outline: 1px solid var(--primary);
    outline-offset: 3px;
}
.costtable .texts {
    text-align: center;
    margin-bottom: 50px;
}
.page-id-355 .costtable .heading {
    margin-bottom: 50px;
}
.page-id-355 .faqs {
    margin-top: 0;
}
.page-id-355 .googlereviews {
    margin: 55px 0 30px;
}



/* about page css  */
.missions-item {
    background: #d1741c1a;
    height: 100%;
    padding: 30px;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}
.missions-item figure {
    height: 80px;
    width: 80px;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}
.missions-item figure img {
    width: 55px;
}

.ourgallery .row{
 row-gap:20px;
}

.gallerylightboxlist {
    width: 100%;
    height: 270px;
    background-size: cover;
    border-radius: 10px;
}


/* Specialites details page css  */

.dermatologistdtls img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.dermatologistdtls {
    background: #f9f9f9;
    padding: 55px 0;
    margin-bottom: 60px;
}
.dermatologistdtls-content .btn {
    margin-top: 15px;
}
.work .heading {
    margin-bottom: 75px;
}
.work {
    margin-bottom: 70px;
}
ul#pills-tab {
    margin-bottom: 30px;
}
.work-list {
    background: #d1741c12;
    padding: 20px 0 15px;
    text-align: center;
    height: 100%;
    border-radius: 10px;
}
div#pills-tabContent .row {
    row-gap: 20px;
}
.work-list figure {
    background: linear-gradient(45deg, black, var(--primary));
    padding: 12px;
    text-align: center;
    height: 70px;
    width: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 12px;
}
.work-list img {
    width: 53px;
}
.workdtls h3 {
    margin: 0;
}
.expert {
    background: #f7f7f7;
    padding: 50px 0;
}
.expert img {
    height: 470px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}
.expert ul {
margin-top:20px;
}
.expert ul li {
    background: #fff;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
}

.expert ul li strong {
    margin-right: 10px;
}
.types ul#types-tab {
    margin-bottom: 45px;
}
.whychoose img {
    height: 400px;
    object-fit: cover;
    border-radius:10px;
    object-position:top;
}
.whychoose {
    padding: 55px 0;
    background: #f3dfd824;
}
.whychoose ul li {
    margin-bottom: 10px;
    list-style-type: circle;
}
.whychoose ul {
    padding-left: 25px;
}
.whychoose .leftheading {
    margin-bottom: 25px;
}

.specialitiesddtls .before-after-slider {
    overflow: unset;
}
.specialitiesddtls .before-after-wrapper {
    left: 0 !important;
    top: 0 !important;
    transform: unset !important;
}
.specialitiesddtls .before-after-wrapper img {
    width: 100%;
    height: 330px;
}
.specialitiesddtls .beforeafter {
    padding: 50px 0 175px !important;
}

/* Blog section css  */

.homebloglist {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(0,0,0,0.08);
    transition: all 0.4s ease-in-out;
    position: relative;
}

.homebloglist:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Image Zoom Effect */
.zoomeffect {
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.zoomeffect img {
    width: 100%;
    height: 270px;
    transition: transform 0.5s ease;
    object-fit: cover;
}
.homebloglist:hover .zoomeffect img {
    transform: scale(1.09);
}

/* Blog Content Box */
.homeblogbox {
    padding: 20px;
}

.homeblogbox span {
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
}

.homeblogbox span i {
    margin-right: 8px;
    color: var(--primary)
}

/* Title */
.homeblogbox h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin: 10px 0 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.homebloglist:hover .homeblogbox h3 {
    color: var(--primary);
}

/* Description */
.homeblogbox p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Read More Button */
.readbtn {
    display: inline-flex;
    align-items: center;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.readbtn i {
    margin-left: 6px;
}

.readbtn:hover {
    color: var(--primary);
    padding-left: 4px;
}


/* Responsive Screen Options  */

@media(max-width:1199px){
.menutop li a {
    padding: 14px 15px;
}
}

@media (max-width:992px) {

ul.menutop {
    display: none !important;
}
.topcontact ul {
    display: none !important;
}
.mainslider .carousel-caption h2 {
    font-size: 40px;
    line-height: 60px;
}
.mainslider .carousel-content {
    width: 85%;
}
.whychooseus .col-lg-6 {
    width: 100%;
}
.whychooseus .row .col-lg-6:last-child {
    width: 100% !important;
}
.about-whychoose figure {
    top: 12px;
}
.about .row .col-lg-5 {
    width: 100%;
}
.about .row .col-lg-7 {
    width: 100% !important;
}
.about img {
    width: 100%;
    height: 100%;
}
.about-content {
    padding-left: 0;
    text-align: center;
}
.about .row {
    row-gap: 20px;
}
.about-content .leftheading {
    text-align: center;
    width: 100%;
}
.srvcsnew .col-lg-6 {
    width: 100%;
}
.whyus .col-lg-6 {
    width: 100%;
}
.whyus .row {
    row-gap: 20px;
}	
.doctorsprofile .col-lg-5 {
    width: 100%;
}

.doctorsprofile .col-lg-7 {
    width: 100%;
}	
.about-doctor img {
    height: 100%;
}	
.awards img {
    width: 100%;
}
header {
    position: fixed;
    top: 0;
    z-index: 9;
    background: #fff;
    width: 100%;
}
div#rmp-menu-additional-content-659 {
    display: none;
}
div#rmp-menu-title-659 {
    display: none;
}	
input.rmp-search-box {
    display: none;
}	
div#rmp-container-659 {
    background: #000 !important;
}	
#rmp_menu_trigger-659.is-active {
    background: var(--primary) !important;
}	
#rmp_menu_trigger-659:hover, #rmp_menu_trigger-659:focus {
    background: var(--primary) !important;
}
#rmp-menu-wrap-659 .rmp-menu-current-item .rmp-menu-item-link {
    color: #fff;
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
}
#rmp_menu_trigger-659 {
    background: var(--primary) !important;
}
.breadcrumb h1 {
    margin-bottom: 0px !important;
    margin-top: 30px;
}
.breadcrumb {
    padding: 80px 0 40px;
}
.missions .col-lg-4 {
    width: 100%;
}
.missions .row {
    row-gap:20px;
}
.types .col-lg-4 {
    width: 50%;
}
.typess .row {
   row-gap:20px;
}
.typess .col-lg-3 {
    width: 50%;
}
.details .col-lg-3 {
    width: 50%;
}
.details .row{
   row-gap:20px;
}
.bbsrchooseus .col-lg-7 {
    width: 100%;
}
.bbsrchooseus .col-lg-5{
    width: 100%;
}
.bbsrchooseus .row {
   row-gap:20px;
}	
.transplants .col-lg-5 {
    width: 100%;
}
.transplants .col-lg-7 {
    width: 100%;
}
.transplants img {
    width: 100%;
    height: 100% !important;
}
.transplants .row {
    row-gap: 25px;
}
.treat .col-lg-3 {
    width: 50%;
}	
	
}

@media (max-width:768px) {

.doctordtls ul li {
    width: 100%;
}
.awards img {
    width: 200px;
}
.awards .row {
    row-gap: 20px;
}
.beforeafter .col-md-6 {
    width: 100% !important;
}
.beforeafter .row {
    row-gap:20px;
}
footer .row {
    row-gap: 20px;
}	
.breadcrumb .row {
    row-gap: 20px;
}
form.wpcf7-form.init .row {
    row-gap: 0;
}
.beforeafter .col-md-4 {
    width: 100%;
}
.service .before-after-wrapper img {
    width: 100%;
    height: 100%;
}
.service .beforeafter {
    padding: 40px 0;
}
.skintreatment .before-after-wrapper img {
    width: 100%;
    height: 100%;
}
.skintreatment .beforeafter {
    padding: 40px 0 !important;
}
.dermatologist .row {
    row-gap: 20px;
}
.makesus img {
    height: 100%;
}
.makesus .row {
    row-gap: 20px;
}
.makesus {
    padding: 40px 0;
}
.skintreatment .faqs {
    padding: 40px 0;
}
.informstions {
    padding: 40px 0;
}
}

@media (max-width:668px) {

.mainslider .carousel-content p {
    display: none;
}
.mainslider .carousel-content {
    width: 100%;
    text-align: center;
}
.mainslider .carousel-caption h2 {
    font-size: 35px;
    line-height: 60px;
}
.buttons {
    justify-content: center;
}	
.mainslider .carousel-caption {
    top: 60%;
}	
#rmp_menu_trigger-659 {
    right: 15% !important;
}	
.heading {
    font-size: 26px;
}	
.aboutnewsrvcs {
    flex-wrap: wrap;
}	
.aboutnewsrvcs img {
    width: 100% !important;
    height: 100%;
    margin-bottom: 10px;
}
.srvcsnew-item {
    text-align: center;
}	
.appointments p {
    width: 90%;
}
.appointments {
    padding: 40px 0;
}
.homeblog .col-lg-4 {
    width: 100%;
}
.homeblog .row {
   row-gap:20px;
}
.types .col-lg-4 {
    width: 100%;
}
.service .beforeafter .row {
    row-gap: 35px;
}
.details .col-lg-3 {
    width: 100%;
}
.transplants {
    padding: 40px 0;
}
.types {
    padding: 40px 0;
}
.cliniccnt {
   margin: 40px 0;
}
.whychooseus {
    padding: 40px 0;
}	
.costtable {
    padding: 40px 0;
}	
.typess {
    padding: 40px 0;
}
.typess .col-lg-3 {
    width: 100%;
}
.details {
    padding: 40px 0;
}
.bbsrchooseus {
    padding: 40px 0;
}
.googlereviews {
    margin-top: 40px;
}
.faqs {
    padding: 40px 0;
    margin-top: 40px;
}
.treat .col-lg-3 {
    width: 100%;
}
}

@media (max-width:568px) { 

.carousel-control-prev {
    left: 10px !important;
    top: 50% !important;
}
.carousel-control-next {
    right: 10px !important;
    top: 50% !important;
}
header img {
    margin-top: 10px;
}
#rmp_menu_trigger-659 {
    top: 20px !important;
}
.whychooseus .heading {
    font-size: 30px;
}	
.appointments h2 {
    font-size: 30px;
}	
.breadcrumb h1 {
    font-size: 25px !important;
}
.breadcrumb {
    padding: 112px 0 40px !important;
}
}

@media (max-width:480px) {

.about-whychoose figure {
    top: 15px !important;
    left: 50% !important;
    transform: translate(-50%);
}
.whychooseinfo {
    padding-top: 100px !important;
    padding-left: 0;
    text-align: center;
}
.leftheading {
    font-size: 25px;
    line-height: 40px !important;
}
.whyimg {
    height: 100%;
    object-fit: cover;
}
.about-lists {
    flex-wrap: wrap;
}
.lists-info {
    padding-left: 0 !important;
    text-align: center;
}
.lists li span {
    position: inherit;
    margin: 0 auto 10px;
}
.before-after-wrapper {
    left: 0 !important;
    transform: unset !important;
}
.before-after-wrapper img {
    width: 100% !important;
    height: 100% !important;
}
.headings {
    flex-wrap: wrap;
}	
.headings .leftheading {
    width: 100%;
    text-align: center;
}	
.headings a.btn.btn-primary {
    width: fit-content;
    margin: 0 auto;
}	
.whychooseus {
    padding: 40px 0;
}
.about {
    margin-bottom: 40px;
}	
.srvcsnew .heading {
    margin-bottom: 60px;
}	
.srvcsnew {
    margin-bottom: 40px;
}	
.whyus {
    margin-bottom: 40px;
}	
.doctorsprofile {
    margin-bottom: 40px;
    padding: 40px 0;
}	
.awards .text {
    margin: 20px 0;
}	
.informstions {
    padding: 40px 0;
}	
.lifechanging {
    margin-bottom: 40px;
}	
.patienttestimonial {
    padding: 40px 0;
    margin-bottom: 40px;
}
.faqs {
    padding: 40px 0;
    margin-top: 40px;
}
.page-id-11 .homeblog {
    padding: 40px 0;
}
}

@media(max-width:415px) {

.container {
    padding: 0 15px !important;
}
.container-fluid {
    padding: 0 15px !important;
}
header img {
    width: 160px;
    margin-top: 12px !important;
}
#rmp_menu_trigger-659 {
    width: 45px !important;
    height: 45px !important;
    top:16px !important;
}
#rmp_menu_trigger-659 {
    right: 8% !important;
}
header {
    height: 80px;
}
.mainslider .carousel-caption h2 {
    font-size: 28px;
    line-height: 40px;
}
.buttons {
    flex-wrap: wrap;
    row-gap: 20px;
}
.awards .text {
    margin: 20px 0;
    text-align: center;
    width: 100%;
}
}

@media (max-width:360px) {

.heading {
    font-size: 20px;
    line-height: 40px;
    padding: 0 15px;
}
.whyus {
    margin-bottom: 40px;
    padding: 40px 0;
}
}




