*{
	margin:0;
	padding:0;
	border:0;
}
header, nav, footer, section, aside, article{
	display:block;
}
body{
	font-family: 'Calibri', sans-serif;
	font-size:11px;
	line-height:33px;
	color:#101010;
}
a{
	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
  	-o-transition: all 0.3s ease-in-out;
  	transition: all 0.3s ease-in-out;
	text-decoration:none;
}
h2, h3, h4, h5, h6{
	font-weight:normal;
	font-family: 'Red Hat Display', sans-serif;
}
.wrapper{
	max-width:1160px;
	width:100%;
	margin:0 auto;
}
.specer{
	font-size:0;
	line-height:0;
	clear:both;
}
.topWhiteBg{
	background:#fff;
	border-bottom:1px solid #cfcfcf;	
}
.topWhiteTxt01{
	font-size:14px;
	line-height:30px;
	color:#747474;
	font-weight:500;
	padding:3px 0;
}
.topWhiteTxt02{
	font-size:14px;
	line-height:30px;
	color:#747474;
	font-weight:500;
	padding:3px 0;
}
.topWhiteTxt03{
	font-size:14px;
	line-height:30px;
	color:#747474;
	font-weight:500;
	padding:3px 0;
}
.topWhiteTxt03:hover{
	color:#42c2ab;
}
.topWhiteBox01{
	width:100%;
	max-width:230px;
	float:left;
	border-right:1px solid #cfcfcf;
}
.topWhiteBox02{
	width:100%;
	max-width:250px;
	float:left;
	border-right:1px solid #cfcfcf;
	padding-left:10px;
}
.topWhiteBox03{
	width:100%;
	max-width:230px;
	float:left;
	padding-left:10px;
}
.socialWrap{
	width:100%;
	max-width:60px;
	float:right;
	padding-top:3px;
}
.socialIcon{
	font-size:20px;
	line-height:30px;
	color:#747474;
	font-weight:500;
	margin-right:5px;
}
.socialIcon:hover{
	color:#42c2ab;
}
.topWhiteResp{
	display:none;
}
.headerNameBg{
  background: linear-gradient(135deg, #e8d5ce, #675f5c);
	padding-top:10px;
	padding-bottom:33px;
}
.headerWrap{
	width:100%;
	max-width:1160px;
	float:left;
}
.homeLogoName{
	width:100%;
	max-width:560px;
	float:left;
	margin-top:30px;
}
.homeLogo{
	width:100%;
	max-width:80px;
	float:left;
}
.homeNameCont{
	width:100%;
	max-width:466px;
	float:right;
}
.abc{
	font-family: 'Cinzel', serif;
	font-size:40px;
	line-height:50px;
	color:#101010;
}
.docDegre{
	font-size:14px;
	line-height:20px;
	color:#171616;
}
.headerConsult{
	width:100%;
	max-width:522px;
	float:right;
	position:relative;
}
.doctorVector{
	width:100%;
	max-width:130px;
	float:left;
	position:absolute;
	left:12%;
	top:25px;
}
.doctorTabCont{
	width:100%;
	max-width:380px;
	float:right;
}
.doctorYellowTab{
	background:#9c9d93;
	width:100%;
	max-width:360px;
	float:left;
	border-radius:20px;
	padding-right:20px;
	margin-top:45px;
}
.doctorYellowTab:hover{
	background:#d4c5ac;
}
.doctorBlueTab{
	background:#bde7df;
	width:100%;
	max-width:360px;
	float:left;
	border-radius:20px;
	padding-right:20px;
	margin-top:15px;
}
.doctorBlueTab:hover{
	background:#b9bc9c;
}
.doctorYellowTabTxt{
	font-size:16px;
	line-height:40px;
	color:#0a0909;
	font-weight:500;
	text-align:right;
	display:block;
}

/* Sticky Cont Start */
/* Base Styles */


header {
    width: 100%;
    border-bottom: 1px solid #ccc;
	font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.navBar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    list-style: none;
    margin: 0;
    background-color: #d6e2e7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navBar li {
    margin: 0 15px; /* Added more space between items */
    position: relative;
    font-family: 'Roboto', sans-serif; /* Custom font family */
    font-size: 12.8px;
}

.navBar a {
    text-decoration: none;
    color: black;
    font-size: 12.8px;
	font-weight: 400px; /* Added bold text */
    transition: all 0.3s ease-in-out;
    padding: 5px 10px;
    border-radius: 5px;
}

.navBar a:hover {
    color: white;
    background: linear-gradient(90deg, #007bff, #00c6ff); /* Gradient hover effect */
}
/* Style the custom arrow */
.custom-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid black; /* Black color arrow */
    margin-left: 5px;
    vertical-align: middle;
}

/* Optionally, on hover, change the arrow color or rotate it */
.navBar li:hover .custom-arrow {
    border-top-color: #007bff; /* Change to blue on hover */
    transform: rotate(180deg); /* Optional: Rotate the arrow when hovered */
    transition: transform 0.3s ease-in-out; /* Smooth rotation transition */
}

/* Dropdown Menu */
.navBar .sub-menu {
    display: none;
    position: absolute;
	top: 100%; /* Place it right below the parent menu */

    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Enhanced shadow */
    border-radius: 8px; /* Softer corners for submenu */
}

.navBar li:hover .sub-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out; /* Smooth dropdown animation */
}

.sub-menu li {
    margin: 0;
    font-weight: normal; /* Remove bold text */
	
	font-size: 0.8rem;
    line-height: 26px;
    padding: 4px 18px;
    white-space: nowrap; /* Prevent text wrapping */
    border-bottom: 1px solid #f1f1f1; /* Subtle divider between items */
}
/* Style for the hamburger menu icon */
.menu-toggle {
    display: none; /* Hidden by default */
    font-size: 30px; /* Size of the hamburger icon */
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 0%;
    right: 20px;
}

.navBar.active {
    display: flex !important; /* Show the menu when active */
}

@media screen and (max-width: 768px) {
    /* Show the hamburger icon on mobile */
    .menu-toggle {
        display: block; /* Display the hamburger menu */
    }

    /* Hide the navigation items by default */
    .navBar {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 50px;
        left: 0;
        z-index: 1000;
    }

    /* When the navBar has the 'active' class, show the menu */
    .navBar.active {
        display: flex;
    }

    .navBar li {
        text-align: center;
        padding: 5px;
        border-top: 1px solid #ccc;
        width: 50%;
    }

    .navBar a {
        font-size: 12.8px;
    }

    .sub-menu {
        display: none; /* Hide submenus on mobile */
    }

    .navBar li:hover .sub-menu {
        display: block; /* Show submenus when hovered on */
    }

    /* Style for the sub-menu items on mobile */
    .sub-menu li {
        font-size: 14px;
        padding: 5px 10px;
    }
}

.sub-menu li:last-child {
    border-bottom: none; /* Remove border for the last item */
}

.sub-menu a {
    font-size: 0.8rem;
    transition: all 0.3s ease-in-out;
    padding: 5px 10px;
	font-weight: normal; /* Remove bold text */

    border-radius: 5px;
}

.sub-menu a:hover {
    color: white;
    background: linear-gradient(90deg, #ff7f50, #ff4500); /* Gradient hover effect */
}

/* Dropdown Arrow */
.navBar li > a i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease-in-out;
}

.navBar li:hover > a i {
    transform: rotate(180deg); /* Rotate arrow on hover */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navBar {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .navBar li {
        margin: 10px;
    }
	.abc{
		text-align: center;
	}
	.navBar a {
        font-size: 14px; /* Adjust font size for better readability */
    }
    .sub-menu li {
        font-size: 12px; /* Adjust font size for submenu */
    }
}
@media screen and (max-width: 768px) {
    /* Hide the nav items by default */
    .navBar {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
    }

    /* Show the hamburger icon */
    .menu-toggle {
        display: block;
        font-size: 30px;
        cursor: pointer;
        padding: 10px;
    }

    /* Show the nav items when the menu is toggled */
    .navBar.active {
        display: flex;
    }

    /* Adjust the sub-menu styling on mobile */
    .sub-menu {
        display: none;
        flex-direction: column;
        padding-left: 0;
    }

    .navBar li:hover .sub-menu {
        display: block;
    }

    /* Style the individual nav links */
    .navBar li {
        text-align: center;
        padding: 15px;
        border-top: 1px solid #ccc;
    }

    /* Style for the links */
    .navBar a {
        font-size: 14px;
    }
	.abc{
		text-align: center;
	}

    /* Adjust the appearance of the sub-menu items */
    .sub-menu li {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* For better UX on small screens */
@media screen and (max-width: 480px) {
    .navBar a {
        font-size: 16px;
    }

    .sub-menu li {
        padding: 10px 15px;
    }
	.abc{
		text-align: center;
	}
}


/* Sticky Cont End */
.homeChamberBg{
	background:#c4e5f4;
	padding:60px 0 70px 0;
}
.homeChamberCont{
	width:100%;
	max-width:1160px;
	margin:0 auto;
}
.homeChamberHead{
	font-size:35px;
	line-height:45px;
	color:#1d1b1b;
	padding-bottom:10px;
	margin-bottom:40px;
	font-weight:500; 	
	border-bottom:1px solid #8e5575;
}
.homeChamberBox01{
	width:100%;
	max-width:350px;
	float:left;
	margin-right:50px;
	position:relative;
}
.homeChamberBox02{
	width:100%;
	max-width:350px;
	float:left;
}
.homeChamberName{
	font-size:20px;
	line-height:30px;
	color:#0b0a0a;
	text-shadow:4px 0 3px #8dbdd5;
	text-transform:uppercase;
	font-weight:600;
	margin-top:15px;
	margin-bottom:15px;
}
.homeChamberTxt01{
	font-family: 'Cinzel', sans-serif;
	font-size:16px;
	line-height:26px;
	color:#050404;
	margin-top:15px;
	padding-bottom:15px;
	border-bottom:1px solid #9c5b80;
}
.homeChamberTxt02{
	font-family: 'Manrope', sans-serif;
	font-size:16px;
	line-height:26px;
	color:#151313;
	margin-top:15px;
}
.homeClinicCallBox{
	font-size:14px;
	line-height:35px;
	color:#fff;
	background:#dda348;
	font-weight:500;
	padding:0 15px;
	display:inline-block;
	border-radius:5px;
	margin-top:20px;
}
.homeClinicAppoBox{
	font-size:14px;
	line-height:35px;
	color:#fff;
	background:#42c2ab;
	font-weight:500;
	padding:0 15px;
	display:inline-block;
	border-radius:5px;
	margin-top:20px;
	margin-left:10px;
}
.homeDoctorBg{
	background:url(../images/doctor_bg.jpeg) 50% 0 no-repeat;
	background-size:cover;
	padding-top:80px;
}
.homeDoctorWrap{
	width:100%;
	max-width:1160px;
	margin:0 auto;
}
.homeAbtBarik{
	width:100%;
	max-width:370px;
	float:left;
}
.homeAbtHead{
	font-family: 'Cinzel', sans-serif;
	font-size:38px;
	line-height:36px;
	color:#eaecec;
	font-weight:600;
	padding-bottom:15px;
}
.homeAbtTxt01{
	font-family: 'Manrope', sans-serif;
	font-size:16px;
	line-height:30px;
	color:#ece5e5;
	font-weight:500;
}
.homeAbtMore{
	background:#0e5d64;
	font-size:14px;
	line-height:30px;
	color:#fff;
	display:inline-block;
	padding:0 10px;
	margin-top:18px;
}
.homeAbtMore:hover{
	background:#0b474c;
}
.homeAbtTabWrap{
	width:100%;
	max-width:362px;
	float:left;
	margin-top:35px;
	margin-bottom:20px;
}
.homeAbtTab01{
	width:100%;
	max-width:100px;
	margin-right:25px;
	float:left;
	text-align:center;
}
.homeAbtTab02{
	width:100%;
	max-width:100px;
	float:left;
	text-align:center;
}
.homeAbtTabTxt{
	font-size:16px;
	line-height:26px;
	color:#0e5d64;
	font-weight:500;
}
.doctorImgCont{
	width:100%;
	max-width:391px;
	float:left;
	position:relative;
}
.sbarik{
	margin-top:110px;
	position:absolute;
}
.hospitalWrap{
	width:100%;
	max-width:465px;
	float:right;
}
.hospitalCircle{
	font-family: 'Manrope', sans-serif;
	background: #316b21;
	text-align:center;
    width: 25px;
    height:25px;
    border-radius: 50%;
	color:#fff;
	font-size:18px;
	font-weight:300;
	float:left;
	float:left;
	margin-right:10px;
}
.hospitalName{
	font-size:16px;
	font-family: 'Red Hat Display', sans-serif;

	line-height:26px;
	color:#f8f0f0;
	font-weight:500;
	margin-bottom:15px;
}
.homeAppoBg{
	background:#42c2ab;
	padding:50px 0;
}
.homeAppoWrap{
	width:100%;
	max-width:1160px;
	margin:0 auto;
}
.homeAppoHead{
	font-family: 'Red Hat Display', sans-serif;
	font-size:30px;
	line-height:36px;
	color:#fff;
	font-weight:400;
}
.homeAppoTxt{
	font-size:16px;
	line-height:25px;
	color:#fff;
	font-weight:400;
	margin-top:15px;
}
.homeAppoMore{
	background:#0e5d64;
	font-size:18px;
	line-height:40px;
	color:#fff;
	text-align:center;
	padding:0 13px;
	float:left;
	margin-top:25px;
}
.homeTreatBg{
	background:url(../images/112431home_treatment_bg.jpg) 0% 0 no-repeat #e1e5e8;
	padding:70px 0 40px 0;
	border-bottom:7px solid #a5869eff;
}
.homeTreatWrap{
	width:100%;
	max-width:1160px;
	margin:0 auto;
	position:relative;
}
.homeTreatHeader{
	width:100%;
	max-width:560px;
	float:right;
	margin-bottom:220px;
}
.homeTreatHeadTxt01{
	background:none;
	border-bottom:0;
	font-family: 'Cinzel', sans-serif;
	font-size:65px;
	line-height:55px;
	font-weight:400;
	color:#100b0b;
	margin-bottom:12px;
	text-shadow:1px 0 2px #41293c;
}
.homeTreatHeadTxt02{
	font-family: 'Red Hat Display', sans-serif;
	font-size:30px;
	line-height:36px;
	font-weight:400;
	color:#302929;
	text-align:right;
	margin-top:12px;
	text-shadow:1px 0 2px #1f4635;
}
.homeTreatListWrap{
	width:100%;
	max-width:1160px;
	margin:0 auto;
	margin-top:60px;
}
.homeTreatListBox01{
	width:100%;
	max-width:340px;
	float:left;
	margin-right:60px;
}
.homeTreatListBox02{
	width:100%;
	max-width:340px;
	float:left;
}
.homeTreatList{
	width:100%;
	font-family: 'Red Hat Display', sans-serif;
	font-size:18px;
	line-height:30px;
	font-weight:500;
	color:#040857;
	border-bottom:1px solid #bfc5c4;
	padding-bottom:10px;
	margin-bottom:25px;
}
.homeTreatList:hover {
	color: #fff; /* Change text color */
	font-weight: bold; /* Make text bold */
	background: linear-gradient(150deg, #ffcb51, #f5752a); /* Gradient background */
	padding: 10px; /* Optional: Add padding for better appearance */
	border-radius: 8px; /* Optional: Add rounded corners */
	transition: all 0.3s ease; /* Smooth hover effect */
  }
  
.treatCircle{
	font-family: 'Red Hat Display', sans-serif;
	background: #101010;
	text-align:center;
    width: 30px;
    height:30px;
    border-radius: 50%;
	color:#fff;
	font-size:15px;
	font-weight:400;
	float:left;
	float:left;
	margin-right:10px;
}
.treatCircle:hover{
	background: #672a51;
}
.homeReviewBg{
	background:#fff;
	padding:70px 0;
}
.homeReviewHeader{
	width:100%;
	max-width:1160px;
	margin:0 auto;
}
.homeReviewHeaderBox01{
	width:100%;
	max-width:106px;
	float:left;
	margin-right:25px;
}
.homeReviewHeaderBox02{
	width:100%;
	max-width:156px;
	float:left;
}
.homeReviewHeaderBox03{
	width:100%;
	max-width:839px;
	float:right;
}
.homeReviewTxt01{
	font-size:15px;
	line-height:30px;
	color:#fbf7f7;
	font-weight:500;
}
.homeReviewTxt02{
	font-size:15px;
	line-height:30px;
	color:#2d72f2;
	font-weight:600;
}
.homeReviewWrap{
	width:100%;
	max-width:1160px;
	margin:0 auto;
	margin-top:55px;
}
.homeReviewBox{
	width:100%;
	max-width:315px;
	float:left;
	position:relative;
}
.revwPic{
	width:100%;
	max-width:50px;
	float:left;
	margin-right:15px;
}
.revwNameBox{
	width:100%;
	max-width:220px;
	float:left;
}
.reviewrName{
	font-size:15px;
	line-height:21px;
	color:#2a458a;
	font-weight:600;
}
.googleStar{
	font-size:15px;
	color:#fcb002;
}
.googleLogo{
	width:100%;
	max-width:20px;
	float:left;
	top:10px;
	right:40px;
	position:absolute;
}
.patientReview{
	width:90%;
	font-size:15px;
	line-height:25px;
	color:#101010;
	font-weight:500;
	margin-top:15px;
}
footer{
	font-family: 'Figtree', sans-serif;
	background:#481d39;
	padding:50px 0;
}
.ftrWrap{
	 width:100%;
	 max-width:1160px;
}
.ftrCont01{
	width:100%;
	max-width:265px;
	float:left;
	margin-right:50px;
}
.ftrCont02{
	max-width:180px;
	width:100%;
	float:left;
	margin-right:50px;
}
.ftrCont03{
	max-width:250px;
	width:100%;
	float:left;
	margin-right:50px;
}
.ftrCont04{
	max-width:300px;
	width:100%;
	float:right;
}
.footerDocName{
	font-family: 'cinzel', sans-serif;
	font-size:22px;
	line-height:30px;
	font-weight:500;
	color:#dda348;
	padding-bottom:8px;
	text-transform:uppercase;
}
.footerDocDegre{
	font-size:14px;
	line-height:23px;
	font-weight:500;
	
	color:#fff;
	border-bottom:1px dotted #fff;
	padding-bottom:8px;
}
.footerDocDeatils{
	font-size:14px;
	line-height:23px;
	color:#fff;
	padding-top:10px;
	padding-bottom:20px;
}
.footerHeading{
	font-size: 14px;
    color: #fff;
    font-weight: 500;
    padding-bottom: 5px;
    margin-bottom: 12px;
    margin-top: 4px;
    position: relative;
}
.footerHeading::after {
    content: '';
    display: block;
    width: 50px; /* Adjust the line width */
    height: 2px; /* Line thickness */
    background-image: linear-gradient(90deg, #EC8046, #060822);/* Gradient color */
    margin-top: 5px; /* Spacing between text and the line */
}
.footerBtn{
	font: size .75rem;
	text-decoration: none;
	font-family: 'Figtree',sans-serif;
	color: #94a0a3;
}
.footerBtn:hover{
	color:#dda348;
}
.footerTxt{
	line-height:25px;
	font: size .75rem;
	text-decoration: none;
	font-family: 'Figtree',sans-serif;
	color: #94a0a3;
	padding-bottom:10px;
}

.poweredby{
	font-size:14px;
	color:#fff;
	font-style:italic;
}







.cprght_ftr {
    background-color: #0dcaf0; /* Dark background */
    color: #ffffff; /* White text */
    padding: 15px 0; /* Top and bottom padding */
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
}

.cprght_ftr .container {
    display: flex; /* Flexbox layout */
    align-items: center; /* Vertically align content */
    flex-wrap: wrap; /* Wrap content for smaller screens */
    margin-left: 20px; /* Left margin */
    margin-right: 20px; /* Right margin */
}

/* Copyright text */
.cprght_ftr .pt-2 {
    color: #0b0a0a; /* Subtle gray text */
    margin: 0;
    margin-left: auto; /* Push content to the left */
}

/* Social media links */
.nav-social {
    display: flex;
    gap: 15px; /* Spacing between icons */
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-social .nav-link {
    color: #090505; /* White color for icons */
    font-size: 18px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-social .nav-link:hover {
    color: #ff4500; /* Highlight color on hover */
}

/* Navigation links (Privacy Policy, Disclaimer, Contact) */
.nav {
    display: flex;
    gap: 20px; /* Spacing between links */
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: auto; /* Push content to the right */
}

.nav .nav-link {
    color: #1c1212; /* Subtle gray for links */
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav .nav-link:hover {
    color: #ff4500; /* Highlight color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .cprght_ftr .container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center-align content */
        text-align: center;
    }

    .pt-2 {
        margin-left: 0; /* Reset left margin for smaller screens */
        margin-bottom: 10px;
    }

    .nav-social {
        justify-content: center; /* Center icons */
        margin-top: 10px;
    }

    .nav {
        justify-content: center; /* Center navigation links */
        margin-top: 10px;
        margin-left: 0; /* Reset margin */
    }
}









/* ob Wheel*/














/* Inner CSS */

.inrChamAppoWrap{
	width:100%;
	max-width:250px;
	float:right;
	margin-top:30px;
}
.inrDocCham{
	width:100%;
	max-width:80px;
	float:left;
	margin-right:20px;
}
.cont{
  	position: relative;
  	width: 50%;
}
.inrImg {
  	display: block;
  	width: 100%;
  	height: auto;
}
.inrOverlay {
  	position: absolute;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	right: 0;
  	height: 100%;
  	width: 100%;
  	opacity: 0;
  	transition: .5s ease;
  	background-color: #acb889;
  	border-radius:50%;
}
.inrDocChamTxt {
  	color: rgb(18, 18, 18);
  	font-size: 16px;
  	position: absolute;
	font-weight: 500;
  	top: 50%;
  	left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.cont:hover .inrOverlay {
  	opacity: 1;
}
.innerBodyBg{
	/* background: linear-gradient(to right, rgb(116, 75, 75), rgb(69, 67, 67)); */
}
.innerWrap{
	/* background: linear-gradient(to right, rgb(116, 75, 75), rgb(69, 67, 67)); */
	padding-top:50px;
	padding-bottom:80px;
}
.innerHeading{
	font-family: 'Red Hat Display', sans-serif;
	font-size:35px;
	line-height:45px;
	font-weight:bold;
	color:#101010;
	padding-bottom:8px;
	margin-bottom:20px;
	border-bottom:1px solid #ededed;
}
.innerText{
	font-family: 'Manrope', sans-serif;
	font-size:16px;
	line-height:32px;
	color:#101010;
	font-weight:400;
	padding-bottom:15px;
}
.drBarikPic{
	width:100%;
	height:100%;
	margin:30px 0;
}
.vline {
  	border-left: 3px solid #101010;
  	height: 50px;
 	margin-top:-20px;
  	margin-left:8px;
}
.awardBox{
	background:url(../images/112431awards_bg.jpg) 0 0 no-repeat;
	width:100%;
	max-width:210px;
	height:220px;
	float:left;
	border:2px solid #e4d09e;
	margin-right:20px;
	text-align:center;
	padding:90px 20px 10px 20px;
	margin:20px 30px 20px 0;
}
.experiBox{
	width:100%;
	max-width:330px;
	float:left;
	margin-right:40px;
}
.experiTxt01{
	background:#672a51;	
	font-family: 'Red Hat Display', sans-serif;
	font-size:20px;
	line-height:40px;
	color:#fff;
	font-weight:500;
	padding:5px 0 5px 15px;
	border-radius:25px;
	margin-bottom:10px;
}
.experiTxt02{
	font-size:16px;
	line-height:35px;
	color:#101010;
	font-weight:500;
	padding-left:15px;
}
.innerTextRed{
	font-size:18px;
	line-height:30px;
	color:#7c765b;
	font-weight:bold;
	padding-bottom:8px;
	padding-top:10px;
}
.treatLft{
	width:100%;
	max-width:700px;
	float:left;
	margin-top:10px;
}
.treatRgt{
	width:100%;
	max-width:380px;
	float:right;
	margin-top:10px;
}
.treatRgt img{
	width:100%;
	height:auto;
	padding:5px;
	border:1px dashed #dbd7d2;
}
.docChamberWrap{
	background:#f6f6f6;
	width:100%;
	max-width:1100px;
	float:left;
	margin:20px 0 70px 0;
	padding:40px 30px;
	border:1px solid #ececec;
	border-radius:15px;
}
.docChamberBox01{
	width:100%;
	max-width:330px;
	float:left;
	margin-right:20px;
}
.docChamberBox02{
	width:100%;
	max-width:380px;
	margin-right:30px;
	float:left;
}
.docChamberBox03{
	width:100%;
	max-width:330px;
	float:right;
}
.docChamberTxt01{
	font-family: 'Red Hat Display', sans-serif;
	font-size:20px;
	line-height:30px;
	color:#d78b13;
	font-weight:500;
	padding-bottom:15px;
}
.docChamberTxt02{
	font-family: 'Manrope', sans-serif;
	font-size:15px;
	line-height:28px;
	color:#101010;
	font-weight:500;
	padding-bottom:10px;	
}
/*FAQ Style*/
h6 {
	font-family: 'Manrope', sans-serif;
  	margin-top:25px;
  	background-color:#fff;
  	color:#000;
	font-size:17px;
	line-height:25px;
	font-weight:bold;
	border-radius:5px;
	border-bottom:1px solid #cfcdcb;
}

h6 a {
	font-family: 'Manrope', sans-serif;
  	display: block;
  	padding:7px 10px;
  	color:#101010;
	font-size:17px;
	line-height:30px;
	font-weight:bold;
}

h6:hover { background: #ededed;  }
h6.open  { background: #ededed;}
h6 + div { padding: 10px; }

/* Pre hide sections with JavaScript on
--- */
h6+div {
  display: none;
}

/* CSS3 Animation example
--- */
#css3-animated-example h6 + div {
  height: 0px;
  padding: 0px;
  overflow: hidden;
  background: #000;
  display: block!important;
  -webkit-transform: translateZ(0);
  -webkit-transition: all 0.3s ease;
  moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition:all 0.3s ease;
  transition: all 0.3s ease;
}
#css3-animated-example .content {
  padding: 10px;
}

#css3-animated-example h6.open + div {
  height: auto;
  background: #54b5f2;
}

#default-example{
	margin-bottom:30px;
}

.faqArow{
	float:right;
	color:#171515;
	font-size:23px;
}
/*FAQ Style*/

.galleryWrap{
	width:100%;
	max-width:1110px;
	float:left;
	margin-top:25px;
}
.photoCont{
	width:100%;
	max-width:330px;
	float:left;
	margin-right:20px;
	margin-left:20px;
	margin-bottom:50px;
}
.photoCont img{
	width:100%;
	height:auto;
}
.allReview{
	width:100%;
	max-width:120px;
	background:#672a51;
	padding:10px;
	margin-left:auto;
	margin-right:auto;
	margin-top:30px;
	display:block;
	text-align:center;
}
.allReviewTxt{
	font-size:16px;
	color:#fff;
}
.allReview:hover{
	background:#101010;
}
.contactDocWrap{
	width:100%;
	max-width:965px;
	float:none;
	margin:0 auto;
	margin-top:50px;
	margin-bottom:80px;
	position:relative;
}
.contacDocPic{
	width:100%;
	max-width:191px;
	float:left;	
	position:absolute;
	left:10%;
	top:0;
}
.contacDocInfo{
	background:#ececec;
	width:100%;
	max-width:700px;
	height:140px;
	padding:25px 30px;
	float:right;
	border:1px solid #cacaca;
	border-radius:0 20px 20px 0;
}
.docName01{
	font-family: 'Red Hat Display', sans-serif;
	font-size:28px;
	line-height:34px;
	color:#0e5d64;
	font-weight:600;
	margin-left:70px;
}
.docName02{
	font-family: 'Manrope', sans-serif;
	font-size:15px;
	line-height:27px;
	color:#101010;
	font-weight:500;
	margin-left:70px;
	padding-bottom:20px;
}
.contacDocBox01{
	width:100%;
	max-width:180px;
	float:left;
	margin-right:0px;
	margin-left:70px;
}
.contacDocBox02{
	width:100%;
	max-width:200px;
	float:left;
	margin-right:20px;
}
.docName03{
	font-family: 'Manrope', sans-serif;
	font-size:15px;
	line-height:22px;
	color:#101010;
	font-weight:500;
}
.docName03:hover{
	color:#707070;
}
.contactHospitalWrap{
	width:100%;
	max-width:900px;
	margin:0 auto;
}
.contactChamber{
	width:100%;
	max-width:380px;
	float:left;
}
.contactAttach{
	width:100%;
	max-width:450px;
	padding-left:50px;
	float:right;
	border-left:1px solid #CCCCCC;
}
.docName04{
	font-family: 'Red Hat Display', sans-serif;
	font-size:23px;
	line-height:33px;
	color:#672a51;
	font-weight:500;
	padding-bottom:10px;
	text-transform:uppercase;
}
.docName05{
	font-family: 'Manrope', sans-serif;
	font-size:16px;
	line-height:35px;
	color:#101010;
	font-weight:500;
	padding-bottom:10px;
}
.docName05:hover{
	color:#707070;
}





/*Responsive CSS*/

@media screen and (max-width: 1200px) {

.wrapper{
	width:90%;
	margin:0 auto;
	height:auto;
}


}



@media screen and (min-width: 992px) and (max-width: 1199px) {

.wrapper{
	width:90%;
	margin:0 auto;
	height:auto;
}
.homeLogoName{
	width:100%;
	max-width:520px;
	float:left;
	margin-top:40px;
}
.homeLogo{
	width:100%;
	max-width:70px;
	float:left;
}
.homeLogo img{
	width:100%;
	height:120px;
}
.homeNameCont{
	width:100%;
	max-width:445px;
	float:right
}
.headerConsult{
	width:100%;
	max-width:370px;
	float:right;
	position:relative;
}
.doctorVector{
	width:100%;
	max-width:115px;
	float:left;
	position:absolute;
	left:0%;
	margin-top:10px;
}
.doctorVector img{
	width:100%;
	float:left;
	position:absolute;
}
.doctorYellowTab{
	width:100%;
	max-width:300px;
	float:right;
	border-radius:20px;
	padding-right:10px;
	margin-top:45px;
	text-align:right;
}
.doctorBlueTab{
	width:100%;
	max-width:300px;
	float:right;
	border-radius:20px;
	padding-right:10px;
	margin-top:15px;
}
.doctorYellowTabTxt{
	font-size:14px;
	line-height:40px;
	font-weight:500;
	text-align:right;
	display:block;
}
.homeChamberHead{
	font-size:30px;
	line-height:40px;
	padding-bottom:10px;
	margin-bottom:40px;
	font-weight:300; 	
	border-bottom:1px solid #8e5575;
}
.homeChamberBox01{
	width:100%;
	max-width:390px;
	float:left;
	margin-right:50px;
	position:relative;
}
.homeChamberBox02{
	width:100%;
	max-width:390px;
	float:left;
	margin-top:80px;
	clear:both;
}
.homeChamberName{
	font-size:18px;
	line-height:30px;
	text-shadow:4px 0 3px #34242f;
	text-transform:uppercase;
	font-weight:600;
	margin-top:15px;
	margin-bottom:15px;
}

.doctorImgCont{
	width:100%;
	max-width:250px;
	float:right;
	position:relative;
}
.doctorImgCont img{
	width:100%;
	height:auto;
}
.sbarik{
	margin-top:300px;
	position:absolute;
}
.homeTreatBg{
	background:url(../images/112431home_treatment_bg.jpg) 30% 0 no-repeat #e1e5e8;
	padding:70px 0 40px 0;
	background-size:contain cover;	
}
.homeTreatHeader{
	width:100%;
	max-width:450px;
	float:right;
	margin-bottom:170px;
	padding-top:50px;
}
.homeTreatHeadTxt01{
	font-size:50px;
	line-height:50px;
	font-weight:400;
	margin-bottom:12px;
	text-align:right;
	text-shadow:1px 0 2px #41293c;
}
.homeTreatHeadTxt02{
	font-size:25px;
	line-height:35px;
	font-weight:400;
	text-align:right;
	margin-top:12px;
	text-shadow:1px 0 2px #41293c;
}
.homeTreatListBox01{
	width:100%;
	max-width:275px;
	float:left;
	margin-right:30px;
}
.homeTreatListBox02{
	width:100%;
	max-width:275px;
	float:left;
}
.homeTreatList{
	width:100%;
	font-size:17px;
	line-height:30px;
	font-weight:500;
	border-bottom:1px solid #bfc5c4;
	padding-bottom:10px;
	margin-bottom:25px;
}
.ftrCont04{
	max-width:100%;
	float:left;
	margin-top:30px;
}
.innerHeading{
	font-size:33px;
	line-height:43px;
	font-weight:400;
	padding-bottom:8px;
	margin-bottom:20px;
	border-bottom:1px solid #ededed;
}
.experiBox{
	width:100%;
	max-width:500px;
	float:left;
	margin-right:0px;
	margin-bottom:30px;
	clear:both;
}
.treatLft{
	max-width:100%;
	float:left;
	margin-top:0px;
	margin-bottom:15px;
}
.treatRgt{
	width:100%;
	max-width:380px;
	float:left;
	margin-top:10px;
	margin-bottom:25px;
}
.docChamberWrap{
	width:93%;
	max-width:1100px;
	float:left;
	margin:20px 0 70px 0;
	padding:40px 30px;
	border:1px solid #ececec;
	border-radius:15px;
}
.docChamberBox02{
	width:100%;
	max-width:450px;
	margin-right:0px;
	float:left;
}
.docChamberBox03{
	width:100%;
	max-width:480px;
	float:right;
}
.photoCont{
	width:100%;
	max-width:275px;
	float:left;
	margin-right:10px;
	margin-left:10px;
	margin-bottom:50px;
}


}




@media screen and (max-width: 991px) and (min-width: 768px) {

.wrapper{
	width:90%;
	margin:0 auto;
	height:auto;
}
.topWhiteBg{
	background:#e8f8f4;
	border-bottom:1px solid #cfcfcf;	
}
.topWhiteResp{
	max-width:100%;
	padding:5px 0;
	display:block;
}
.topWhiteTxt01{
	font-size:14px;
	line-height:30px;
	font-weight:500;
	padding:3px 5px 0 5px;
	border-right:1px solid #cfcfcf;
	margin-right:10px;
	padding-right:10px;
}
.topWhiteTxt03{
	font-size:14px;
	line-height:30px;
	font-weight:500;
	padding:3px 0 0 0;
}
.topWhiteBox01, .topWhiteBox02, .topWhiteBox03{
	display:none;
}
.headerNameBg{
	padding-top:10px;
	padding-bottom:35px;
}
.homeLogoName{
	width:100%;
	max-width:560px;
	float:none;
	margin:0 auto;
	margin-top:30px;
	margin-bottom:65px;
}
.headerConsult{
	width:100%;
	max-width:522px;
	float:none;
	margin:0 auto;
	position:relative;
}
.doctorVector img{
	width:100%;
	max-width:142px;
	float:left;
	position:absolute;
	left:5%;
	padding-top:63px;
}
.homeDoctorBg{
	background:url(../images/doctor_bg.jpeg) 50% 0 no-repeat;
	background-size:cover;
	padding-top:60px;
	padding-bottom:50px;
}
.homeDoctorWrap{
	width:100%;
	max-width:1160px;
	margin:0 auto;
	position:relative;
}
.homeChamberHead{
	font-size:32px;
	line-height:42px;
	padding-bottom:10px;
	margin-bottom:40px;
	font-weight:300; 	
	border-bottom:1px solid #8e5575;
}
.homeChamberBox01{
	width:100%;
	max-width:315px;
	float:left;
	margin-right:30px;
	margin-bottom:50px;
}
.homeChamberBox02{
	width:100%;
	max-width:315px;
	float:left;
	clear:both;
}
.homeChamberBox01 img, .homeChamberBox02 img{
	width:100%;
	height:auto;
}
.homeChamberName{
	font-size:18px;
	line-height:30px;
	text-shadow:4px 0 3px #34242f;
	text-transform:uppercase;
	font-weight:600;
	margin-top:15px;
	margin-bottom:15px;
}
.doctorImgCont{
	width:100%;
	max-width:391px;
	float:right;
	position:absolute;
	top:0;
	right:0;
}
.doctorImgCont img{
	width:70%;
	height:auto;
	float:right;
	border-bottom:1px solid #000;
}
.sbarik{
	margin-top:0;
	position:static;
}
.homeAbtTabWrap{
	width:100%;
	max-width:362px;
	float:left;
	margin-top:50px;
	margin-bottom:40px;
}
.hospitalWrap{
	width:100%;
	max-width:465px;
	float:left;
}
.homeAppoHead{
	font-size:27px;
	line-height:36px;
	font-weight:400;
}
.homeAppoMore{
	font-size:16px;
	line-height:40px;
	text-align:center;
	padding:0 13px;
	float:left;
	margin-top:25px;
}
.homeTreatBg{
	background:url(../images/112431home_treatment_bg.jpg) 30% 0 no-repeat #e1e5e8;
	padding:70px 0 40px 0;
	background-size:contain cover;	
}
.homeTreatHeader{
	width:100%;
	max-width:345px;
	float:right;
	right:0;
	margin-bottom:150px;
	margin-top:50px;
}
.homeTreatHeadTxt01{
	font-size:40px;
	line-height:46px;
	font-weight:400;
	margin-bottom:8px;
	text-shadow:1px 0 2px #41293c;
}
.homeTreatHeadTxt02{
	font-size:22px;
	line-height:31px;
	font-weight:400;
	text-align:right;
	margin-top:8px;
	text-shadow:1px 0 2px #41293c;
}
.homeTreatListBox01{
	width:100%;
	max-width:320px;
	float:left;
	margin-right:30px;
}
.homeTreatList{
	width:100%;
	font-size:17px;
	line-height:30px;
	font-weight:500;
	border-bottom:1px solid #bfc5c4;
	padding-bottom:10px;
	margin-bottom:20px;
}
.ftrCont01{
	width:100%;
	max-width:380px;
	float:left;
	margin-right:0px;
	margin-bottom:50px;
}
.ftrCont02{
	max-width:250px;
	width:100%;
	float:right;
	margin-right:0px;
}
.ftrCont04{
	max-width:250px;
	width:100%;
	float:right;
	margin-top:30px;
}
.inrChamAppoWrap{
	width:100%;
	max-width:250px;
	float:none;
	margin:0 auto;
}
.inrDocCham{
	width:100%;
	max-width:80px;
	float:left;
	margin-right:20px;
	margin-top:30px;
}
.innerHeading{
	font-size:30px;
	line-height:40px;
	font-weight:400;
	padding-bottom:8px;
	margin-bottom:20px;
	border-bottom:1px solid #ededed;
}
.experiBox{
	width:100%;
	max-width:500px;
	float:left;
	margin-right:0px;
	margin-bottom:30px;
	clear:both;
}
.treatLft{
	max-width:100%;
	float:left;
	margin-top:0px;
	margin-bottom:15px;
}
.treatRgt{
	width:100%;
	max-width:380px;
	float:left;
	margin-top:10px;
	margin-bottom:25px;
}
.docChamberWrap{
	width:93%;
	max-width:1100px;
	float:left;
	margin:20px 0 70px 0;
	padding:40px 30px;
	border:1px solid #ececec;
	border-radius:15px;
}
.docChamberBox01{
	width:100%;
	max-width:330px;
	float:left;
	margin-right:0px;
	margin-bottom:15px;
}
.docChamberBox02{
	width:100%;
	max-width:450px;
	margin-right:0px;
	float:left;
}
.docChamberBox03{
	max-width:100%;
	float:left;
}
.photoCont{
	width:100%;
	max-width:300px;
	float:left;
	margin-right:20px;
	margin-left:20px;
	margin-bottom:50px;
}
.contactDocWrap{
	width:100%;
	max-width:620px;
	float:left;
}
.contacDocPic{
	width:100%;
	max-width:191px;
	float:left;	
	position:absolute;
	left:0%;
	top:0;
}
.contacDocInfo{
	width:100%;
	max-width:380px;
	height:230px;
	padding:25px 30px 20px 70px;
	float:right;
	border-radius:0 20px 20px 20px;
}
.docName01{
	font-size:28px;
	line-height:34px;
	color:#0e5d64;
	font-weight:600;
	margin-left:0px;
}
.docName02{
	font-size:15px;
	line-height:27px;
	color:#101010;
	font-weight:500;
	margin-left:0px;
	padding-bottom:20px;
}
.contacDocBox01{
	width:100%;
	max-width:160px;
	float:left;
	margin-right:0px;
	margin-left:0px;
	margin-bottom:20px;
}
.contacDocBox02{
	width:100%;
	max-width:200px;
	float:left;
	margin-right:20px;
	margin-bottom:20px;
}
.contactChamber{
	max-width:100%;
	float:left;
	padding-bottom:30px;
}
.contactAttach{
	max-width:100%;
	padding-left:0px;
	padding-top:30px;
	float:left;
	border-left:0;
	border-top:1px solid #efefef;
}




}






@media screen and (min-width: 600px) and (max-width: 767px) {
.wrapper{
	width:90%;
	margin:0 auto;
	height:auto;
}
.topWhiteBg{
	background:#eff3f2;
	border-bottom:1px solid #cfcfcf;	
}
.topWhiteResp{
	max-width:100%;
	padding:5px 0;
	display:block;
}
.topWhiteTxt01{
	font-size:14px;
	line-height:30px;
	font-weight:500;
	padding:3px 5px 0 5px;
	border-right:1px solid #cfcfcf;
	margin-right:10px;
	padding-right:10px;
}
.topWhiteTxt03{
	font-size:14px;
	line-height:30px;
	font-weight:500;
	padding:3px 0 0 0;
}
.topWhiteBox01, .topWhiteBox02, .topWhiteBox03{
	display:none;
}
.homeLogoName{
	width:100%;
	max-width:560px;
	float:left;
	margin-top:30px;
	margin-bottom:15px;
}
.homeLogo{
	width:100%;
	max-width:70px;
	float:left;
}
.homeLogo img{
	width:100%;
	height:auto;
}
.headerConsult{
	width:100%;
	max-width:522px;
	float:left;
	position:relative;
}
.homeChamberBg{
	padding:40px 0 50px 0;
}
.homeChamberCont{
	width:100%;
	max-width:1160px;
	margin:0 auto;
}
.homeChamberHead{
	font-size:30px;
	line-height:36px;
	padding-bottom:10px;
	margin-bottom:30px;
	font-weight:400; 	
	border-bottom:1px solid #8e5575;
	text-align:center;
}
.homeChamberBox01{
	width:100%;
	max-width:450px;
	float:none;
	margin:0 auto;
	margin-bottom:50px;
	position:relative;
	text-align:center;
}
.homeChamberBox02{
	width:100%;
	max-width:450px;
	float:none;
	margin:0 auto;
	margin-bottom:50px;
	text-align:center;
}
.homeChamberName{
	font-size:20px;
	line-height:30px;
	text-transform:uppercase;
	font-weight:600;
	margin-top:15px;
	margin-bottom:15px;
}
.homeChamberTxt01{
	font-size:15px;
	line-height:24px;
	margin-top:15px;
	padding-bottom:15px;
	border-bottom:1px solid #9c5b80;
}
.homeChamberTxt02{
	font-size:15px;
	line-height:24px;
	margin-top:15px;
}
.homeDoctorBg{
	background:url(../images/doctor_bg.jpeg) 50% 0 no-repeat;
	background-size:cover;
	padding-top:50px;
	padding-bottom:50px;
}
.homeAbtBarik{
	max-width:100%;
	float:left;
	text-align:center;
}
.homeAbtHead{
	font-size:35px;
	line-height:36px;
	font-weight:500;
	padding-bottom:10px;
}
.homeAbtTxt01{
	font-size:12px;
	line-height:30px;
	font-weight:400;
}
.homeAbtTabWrap{
	width:100%;
	max-width:362px;
	float:none;
	margin:0 auto;
	margin-top:30px;
}
.homeAbtTab01, .homeAbtTab02{
	width:100%;
	max-width:90px;
}
.homeAbtTab01 img, .homeAbtTab02 img{
	width:100%;
	height:auto;	
}
.homeAbtTabTxt{
	font-size:15px;
	line-height:25px;
	font-weight:500;
}
.doctorImgCont{
	width:100%;
	max-width:391px;
	float:none;
	margin:0 auto;
	position:static;
	margin-bottom:50px;
}
.sbarik{
	width:100%;
	height:auto;
	margin-top:30px;
	position:static;
	border-bottom:1px solid #0e5d64;
}
.hospitalWrap{
	max-width:100%;
	float:left;
}
.hospitalName{
	font-size:16px;
	line-height:26px;
	font-weight:500;
	margin-bottom:20px;
	margin-top:10px;
}
.homeAppoHead{
	font-size:28px;
	line-height:38px;
	font-weight:400;
	padding-bottom:10px;
}
.homeAppoTxt{
	font-size:15px;
	line-height:25px;
	font-weight:400;
	margin-top:15px;
}
.homeAppoMore{
	font-size:16px;
	line-height:40px;
	font-weight:500;
	text-align:center;
	padding:0 10px;
	float:left;
	margin-top:25px;
}
.homeTreatBg{
	background:url(../images/112431home_treatment_bg_resp.jpg) 0% 0 no-repeat #e1e5e8;
	background-size:contain;
	padding:100px 0 40px 0;
	border-bottom:7px solid #9c6891;
}
.homeTreatHeader{
	width:100%;
	max-width:560px;
	float:left;	
	margin-top:250px;
	margin-bottom:0px;
}
.homeTreatHeadTxt01{
	font-size:8vw;
	line-height:30px;
	font-weight:400;
	margin-bottom:5px;
	color:#915884;
	text-shadow:none;
}
.homeTreatHeadTxt02{
	font-size:18px;
	line-height:30px;
	color:#101010;
	font-weight:400;
	text-align:left;
	margin-top:15px;
	margin-bottom:25px;
	text-shadow:none;
}
.homeTreatListWrap {
    width:100%;
    max-width:1160px;
    margin:0 auto;
    margin-top:20px;
}
.homeTreatList{
	width:100%;
	font-size:17px;
	line-height:28px;
	font-weight:400;
	border-bottom:1px solid #bfc5c4;
	padding-bottom:10px;
	margin-bottom:20px;
}
.homeTreatListBox01{
	max-width:100%;
	float:left;
	margin-right:0px;
}
.homeTreatListBox02{
	max-width:100%;
	float:left;
}
.homeReviewBg{
	padding:50px 0;
}
.homeReviewHeaderBox02{
	width:100%;
	max-width:156px;
	float:left;
}
.homeReviewHeaderBox03{
	width:100%;
	max-width:839px;
	float:left;
	margin-top:15px;
}
.homeReviewTxt01{
	font-size:15px;
	line-height:26px;
	font-weight:500;
}
.homeReviewWrap{
	width:100%;
	max-width:1160px;
	margin:0 auto;
	margin-top:35px;
}
.ftrCont01{
	max-width:100%;
	float:left;
	margin-right:0px;
	margin-bottom:30px;
}
.ftrCont04{
	max-width:100%;
	float:left;
}
.inrChamAppoWrap{
	width:100%;
	max-width:202px;
	float:none;
	margin:0 auto;
}
.inrDocCham{
	width:100%;
	max-width:80px;
	float:left;
	margin-right:20px;
	margin-top:30px;
}
.innerHeading{
	font-size:29px;
	line-height:38px;
	font-weight:400;
	padding-bottom:8px;
	margin-bottom:20px;
	border-bottom:1px solid #ededed;
}
.awardBox{
	width:100%;
	max-width:195px;
	height:220px;
	float:left;
	margin-right:10px;
	padding:90px 20px 10px 20px;
	margin:20px 30px 20px 0;
}
.experiBox{
	width:100%;
	max-width:500px;
	float:left;
	margin-right:0px;
	margin-bottom:30px;
	clear:both;
}
.experiTxt01{
	font-size:18px;
	line-height:37px;
	margin-bottom:10px;
}
.treatLft{
	max-width:100%;
	float:left;
	margin-top:0px;
	margin-bottom:15px;
}
.treatRgt{
	width:100%;
	max-width:380px;
	float:left;
	margin-top:10px;
	margin-bottom:25px;
}
.docChamberWrap{
	width:88%;
	max-width:1100px;
	float:left;
	margin:20px 0 70px 0;
	padding:40px 30px;
	border:1px solid #ececec;
	border-radius:15px;
}
.docChamberBox01{
	width:100%;
	max-width:330px;
	float:left;
	margin-right:0px;
	margin-bottom:15px;
}
.docChamberBox02{
	width:100%;
	max-width:450px;
	margin-right:0px;
	float:left;
}
.docChamberBox03{
	max-width:100%;
	float:left;
}
.photoCont{
	width:100%;
	max-width:350px;
	float:left;
	margin-right:20px;
	margin-left:20px;
	margin-bottom:50px;
}
.contactDocWrap{
	width:100%;
	max-width:620px;
	float:left;
}
.contacDocPic{
	width:100%;
	max-width:191px;
	float:left;	
	position:absolute;
	left:0%;
	top:0;
}
.contacDocInfo{
	width:100%;
	max-width:300px;
	height:320px;
	padding:25px 30px 20px 70px;
	float:right;
	border-radius:	20px;
}
.docName01{
	font-size:28px;
	line-height:34px;
	color:#0e5d64;
	font-weight:600;
	margin-left:0px;
}
.docName02{
	font-size:15px;
	line-height:27px;
	color:#101010;
	font-weight:500;
	margin-left:0px;
	padding-bottom:20px;
}
.contacDocBox01{
	width:100%;
	max-width:160px;
	float:left;
	margin-right:0px;
	margin-left:0px;
	margin-bottom:20px;
}
.contacDocBox02{
	width:100%;
	max-width:200px;
	float:left;
	margin-right:20px;
	margin-bottom:20px;
}
.contactChamber{
	max-width:100%;
	float:left;
	padding-bottom:30px;
}
.contactAttach{
	max-width:100%;
	padding-left:0px;
	padding-top:30px;
	float:left;
	border-left:0;
	border-top:1px solid #efefef;
}

}





@media screen and (min-width: 480px) and (max-width: 599px) {

.wrapper{
	width:90%;
	margin:0 auto;
	height:auto;
}
.topWhiteBg{
	background:#eff3f2;
	border-bottom:1px solid #cfcfcf;	
}
.topWhiteResp{
	max-width:100%;
	padding:5px 0;
	display:block;
}
.topWhiteTxt01{
	font-size:14px;
	line-height:30px;
	font-weight:500;
	padding:3px 5px 0 5px;
	border-right:1px solid #cfcfcf;
	margin-right:10px;
	padding-right:10px;
}
.topWhiteTxt03{
	font-size:14px;
	line-height:30px;
	font-weight:500;
	padding:3px 0 0 0;
}
.topWhiteBox01, .topWhiteBox02, .topWhiteBox03{
	display:none;
}
.headerNameBg{
	padding-top:0px;
	padding-bottom:20px;
}
.homeLogoName{
	width:100%;
	max-width:560px;
	float:left;
	margin-top:30px;
	margin-bottom:20px;
}
.homeLogo{
	width:100%;
	max-width:80px;
	float:none;
	margin:0 auto;
}
.homeLogo img{
	width:100%;
	height:auto;
}
.sukhamoyBarik{
	font-size:8.5vw;
	line-height:50px;
	text-align:center;
}
.docDegre{
	font-size:13px;
	line-height:19px;
	text-align:center;
}
.doctorVector{
	width:100%;
	max-width:100px;
	float:left;
	position:absolute;
	left:0%;
	bottom:-25px;
}
.doctorYellowTabTxt{
	font-size:15px;
	line-height:40px;
	font-weight:500;
	text-align:right;
	display:block;
}
.homeChamberBg{
	padding:40px 0 0px 0;
}
.homeChamberHead{
	font-size:30px;
	line-height:36px;
	padding-bottom:10px;
	margin-bottom:30px;
	font-weight:400; 	
	border-bottom:1px solid #8e5575;
	text-align:center;
}
.homeChamberBox01, .homeChamberBox02{
	max-width:100%;
	margin-right:0px;
	margin-bottom:70px;
}
.homeChamberBox01 img, .homeChamberBox02 img{
	width:100%;
	height:auto;
}
.homeChamberName{
	font-size:20px;
	line-height:30px;
	text-transform:uppercase;
	font-weight:600;
	margin-top:15px;
	margin-bottom:15px;
}
.homeChamberTxt01{
	font-size:15px;
	line-height:24px;
	margin-top:15px;
	padding-bottom:15px;
	border-bottom:1px solid #9c5b80;
}
.homeChamberTxt02{
	font-size:15px;
	line-height:24px;
	margin-top:15px;
}
.homeDoctorBg{
	background:url(../images/doctor_bg.jpeg) 50% 0 no-repeat;
	background-size:cover;
	padding-top:50px;
	padding-bottom:50px;
}
.homeAbtBarik{
	max-width:100%;
	float:left;
}
.homeAbtHead{
	font-size:30px;
	line-height:36px;
	font-weight:600;
	color: #000;

	padding-bottom:10px;
}
.homeAbtTxt01{
	font-size:15px;
	line-height:30px;
	color: #000;
	font-weight:500;
}
.homeAbtTabWrap{
	width:100%;
	max-width:362px;
	float:none;
	margin:0 auto;
	margin-top:30px;
}
.homeAbtTab01, .homeAbtTab02{
	width:100%;
	max-width:90px;
}
.homeAbtTab01 img, .homeAbtTab02 img{
	width:100%;
	height:auto;	
}
.homeAbtTabTxt{
	font-size:15px;
	line-height:25px;
	font-weight:500;
}
.doctorImgCont{
	width:100%;
	max-width:391px;
	float:none;
	margin:0 auto;
	position:static;
	margin-bottom:50px;
}
.sbarik{
	width:100%;
	height:auto;
	margin-top:30px;
	position:static;
	border-bottom:1px solid #0e5d64;
}
.hospitalName{
	font-size:16px;
	line-height:26px;
	font-weight:500;
	margin-bottom:20px;
	margin-top:10px;
}
.homeAppoHead{
	font-size:28px;
	line-height:38px;
	font-weight:400;
	padding-bottom:10px;
}
.homeAppoTxt{
	font-size:15px;
	line-height:25px;
	font-weight:400;
	margin-top:15px;
}
.homeAppoMore{
	font-size:16px;
	line-height:40px;
	font-weight:500;
	text-align:center;
	padding:0 10px;
	float:left;
	margin-top:25px;
}
.homeTreatBg{
	background:url(../images/112431home_treatment_bg_resp.jpg) 0% 0 no-repeat #ecf0ef;
	background-size:contain;
	padding:100px 0 40px 0;
	border-bottom:7px solid #9c6891;
}
.homeTreatHeader{
	width:100%;
	max-width:560px;
	float:left;	
	margin-top:170px;
	margin-bottom:0px;
}
.homeTreatHeadTxt01{
	font-size:10vw;
	line-height:30px;
	font-weight:400;
	margin-bottom:5px;
	color:#915884;
	text-shadow:none;
}
.homeTreatHeadTxt02{
	font-size:18px;
	line-height:30px;
	color:#101010;
	font-weight:400;
	text-align:left;
	margin-top:15px;
	margin-bottom:25px;
	text-shadow:none;
}
.homeTreatListWrap {
    width:100%;
    max-width:1160px;
    margin:0 auto;
    margin-top:10px;
}
.homeTreatList{
	width:100%;
	font-size:17px;
	line-height:28px;
	font-weight:400;
	border-bottom:1px solid #bfc5c4;
	padding-bottom:10px;
	margin-bottom:20px;
}
.homeTreatListBox01{
	max-width:100%;
	float:left;
	margin-right:0px;
}
.homeTreatListBox02{
	max-width:100%;
	float:left;
}
.homeReviewBg{
	padding:50px 0;
}
.homeReviewHeaderBox02{
	width:100%;
	max-width:156px;
	float:left;
}
.homeReviewHeaderBox03{
	width:100%;
	max-width:839px;
	float:left;
	margin-top:15px;
}
.homeReviewTxt01{
	font-size:14px;
	line-height:26px;
	font-weight:500;
}
.homeReviewWrap{
	width:100%;
	max-width:1160px;
	margin:0 auto;
	margin-top:35px;
}
.ftrCont01{
	max-width:100%;
	float:left;
	margin-right:0px;
	margin-bottom:30px;
}
.ftrCont02{
	max-width:100%;
	float:left;
	
	margin-right:0px;
	margin-bottom:30px;
}
.ftrCont03{
	max-width:100%;
	float:left;
	margin-right:0px;
	margin-bottom:30px;
}
.ftrCont04{
	max-width:100%;
	float:left;
}
.footerDocName{
	font-size:18px;
	line-height:30px;
	font-weight:500;
	padding-bottom:8px;
	text-transform:uppercase;
}
.inrChamAppoWrap{
	width:100%;
	max-width:202px;
	float:none;
	margin:0 auto;
}
.inrDocCham{
	width:100%;
	max-width:80px;
	float:left;
	margin-right:20px;
	margin-top:10px;
}
.innerHeading{
	font-size:27px;
	line-height:37px;
	font-weight:400;
	padding-bottom:8px;
	margin-bottom:20px;
	border-bottom:1px solid #ededed;
}
.awardBox{
	width:100%;
	max-width:210px;
	height:220px;
	float:none;
	padding:90px 20px 10px 20px;
	margin:0 auto;
	margin-bottom:50px;
}
.experiBox{
	width:100%;
	max-width:500px;
	float:left;
	margin-right:0px;
	margin-bottom:30px;
	clear:both;
}
.experiTxt01{
	font-size:18px;
	line-height:37px;
	margin-bottom:10px;
}
.treatLft{
	max-width:100%;
	float:left;
	margin-top:0px;
	margin-bottom:15px;
}
.treatRgt{
	width:100%;
	max-width:380px;
	float:left;
	margin-top:10px;
	margin-bottom:25px;
}
.docChamberWrap{
	width:86%;
	max-width:1100px;
	float:left;
	margin:20px 0 70px 0;
	padding:40px 30px;
	border:1px solid #ececec;
	border-radius:15px;
}
.docChamberBox01{
	width:100%;
	max-width:330px;
	float:left;
	margin-right:0px;
	margin-bottom:15px;
}
.docChamberBox02{
	width:100%;
	max-width:450px;
	margin-right:0px;
	float:left;
}
.docChamberBox03{
	max-width:100%;
	float:left;
}
.photoCont{
	width:100%;
	max-width:350px;
	float:left;
	margin-right:20px;
	margin-left:20px;
	margin-bottom:50px;
}
.contactDocWrap{
	max-width:100%;
	float:left;
}
.contacDocPic{
	width:100%;
	max-width:191px;
	float:left;	
	position:absolute;
	left:0%;
	top:-5%;
}
.contacDocInfo{
	width:100%;
	max-width:340px;
	height:auto;
	padding:200px 30px 20px 30px;
	float:right;
	border-radius:20px;
}
.docName01{
	font-size:28px;
	line-height:34px;
	color:#0e5d64;
	font-weight:600;
	margin-left:0px;
}
.docName02{
	font-size:15px;
	line-height:27px;
	color:#101010;
	font-weight:500;
	margin-left:0px;
	padding-bottom:20px;
}
.contacDocBox01{
	width:100%;
	max-width:160px;
	float:left;
	margin-right:0px;
	margin-left:0px;
	margin-bottom:20px;
}
.contacDocBox02{
	width:100%;
	max-width:200px;
	float:left;
	margin-right:20px;
	margin-bottom:20px;
}
.contactChamber{
	max-width:100%;
	float:left;
	padding-bottom:30px;
}
.contactAttach{
	max-width:100%;
	padding-left:0px;
	padding-top:30px;
	float:left;
	border-left:0;
	border-top:1px solid #efefef;
}





}



@media screen and (min-width: 320px) and (max-width: 479px) 
{
	.wrapper{
		width:90%;
		margin:0 auto;
		height:auto;
	}
	.topWhiteBg{
		background:#eff3f2;
		border-bottom:1px solid #cfcfcf;	
	}
	.topWhiteResp{
		max-width:100%;
		padding:5px 0;
		display:block;
	}
	.topWhiteTxt01{
		font-size:14px;
		line-height:30px;
		font-weight:500;
		padding:3px 10px 0 10px;
		border-right:1px solid #cfcfcf;
		margin-right:10px;
	}
	.topWhiteTxt03{
		font-size:13px;
		line-height:30px;
		font-weight:500;
		padding:3px 0 0 0;
	}
	.topWhiteBox01, .topWhiteBox02, .topWhiteBox03{
		display:none;
	}
	.socialWrap{
		display:none;
	}
	.headerNameBg{
		padding-top:0px;
		padding-bottom:20px;
	}
	.homeLogo{
		width:100%;
		max-width:70px;
		float:none;
		margin:0 auto;
	}
	.homeLogo img{
		width:100%;
		height:auto;
	}
	.sukhamoyBarik{
		font-size:8.5vw;
		line-height:50px;
		text-align:center;
	}
	.docDegre{
		font-size:13px;
		line-height:19px;
		text-align:center;
	}
	.headerConsult{
		width:100%;
		max-width:522px;
		float:left;
		position:static;
	}
	.abc{
		text-align: center;
	}
	.doctorVector{
		width:100%;
		max-width:120px;
		float:none;
		margin:0 auto;
		position:static;
		left:0;
		margin-top:20px;
		margin-bottom:-5px;
	}

	.doctorTabCont{
		max-width:100%;
		float:left;
	}
	.doctorYellowTab, .doctorBlueTab{
		max-width:100%;
		float:left;
		border-radius:20px;
		padding-right:0px;
		margin-top:10px;
	}
	.doctorYellowTabTxt{
		font-size:15px;
		line-height:40px;
		font-weight:500;
		text-align:center;
		display:block;
	}
	.homeChamberBg{
		padding:40px 0 0px 0;
	}
	.homeChamberHead{
		font-size:26px;
		line-height:36px;
		padding-bottom:10px;
		margin-bottom:30px;
		font-weight:400; 	
		border-bottom:1px solid #8e5575;
		text-align:center;
	}
	.homeChamberBox01, .homeChamberBox02{
		margin-right:0px;
		margin-bottom:70px;
	}
	.homeChamberBox01 img, .homeChamberBox02 img{
		width:100%;
		height:auto;
	}
	.homeChamberName{
		font-size:19px;
		line-height:30px;
		text-transform:uppercase;
		font-weight:600;
		margin-top:15px;
		margin-bottom:15px;
	}
	.homeChamberTxt01{
		font-size:15px;
		line-height:24px;
		margin-top:15px;
		padding-bottom:15px;
		border-bottom:1px solid #9c5b80;
	}
	.homeChamberTxt02{
		font-size:15px;
		line-height:24px;
		margin-top:15px;
	}
	.homeDoctorBg{
		background:url(../images/doctor_bg.jpeg) 50% 0 no-repeat;
		background-size:cover;
		padding-top:50px;
		padding-bottom:50px;
	}
	.homeAbtBarik{
		max-width:100%;
		float:left;
	}
	.homeAbtHead{
		font-size:28px;
		line-height:34px;
		font-weight:600;
		color: #000;
		padding-bottom:10px;
	}
	.homeAbtTxt01{
		font-size:15px;
		line-height:30px;
		color: #f0eded;
		font-weight:500;
	}
	.homeAbtTabWrap{
		max-width:100%;
		float:left;
		margin-top:50px;
		margin-bottom:20px;
	}
	.homeAbtTab01, .homeAbtTab02{
		width:100%;
		max-width:90px;
	}
	.homeAbtTab01 img, .homeAbtTab02 img{
		width:70%;
		height:auto;	
	}
	.homeAbtTabTxt{
		font-size:15px;
		line-height:25px;
		font-weight:500;
	}
	.doctorImgCont{
		width:100%;
		max-width:391px;
		float:left;
		position:static;
		margin-bottom:50px;
	}
	.sbarik{
		width:100%;
		height:auto;
		margin-top:0px;
		position:static;
		border-bottom:1px solid #0e5d64;
	}
	.hospitalName{
		font-size:15px;
		line-height:26px;
		font-weight:500;
		margin-bottom:20px;
		margin-top:10px;
	}
	.homeAppoHead{
		font-size:25px;
		line-height:35px;
		font-weight:400;
	}
	.homeAppoTxt{
		font-size:15px;
		line-height:25px;
		font-weight:400;
		margin-top:15px;
	}
	.homeAppoMore{
		font-size:16px;
		line-height:40px;
		font-weight:500;
		text-align:center;
		padding:0 10px;
		float:left;
		margin-top:25px;
	}
	.homeTreatBg{
		background:url(../images/112431home_treatment_bg_resp.jpg) 0% 0 no-repeat #ecf0ef;
		background-size:contain;
		padding:100px 0 40px 0;
		border-bottom:7px solid #9c6891;
	}
	.homeTreatHeader{
		width:100%;
		max-width:560px;
		float:left;	
		margin-top:120px;
		margin-bottom:20px;
	}
	.homeTreatHeadTxt01{
		font-size:10vw;
		line-height:30px;
		font-weight:400;
		margin-bottom:5px;
		color:#915884;
		text-shadow:none;
	}
	.homeTreatHeadTxt02{
		font-size:18px;
		line-height:30px;
		color:#101010;
		font-weight:400;
		text-align:left;
		margin-top:8px;
		text-shadow:none;
	}
	.homeTreatListWrap {
		width:100%;
		max-width:1160px;
		margin:0 auto;
		margin-top:10px;
	}
	.homeTreatList{
		width:100%;
		font-size:17px;
		line-height:28px;
		font-weight:400;
		border-bottom:1px solid #bfc5c4;
		padding-bottom:10px;
		margin-bottom:20px;
	}
	.homeReviewBg{
		padding:50px 0;
	}
	.homeReviewHeaderBox02{
		width:100%;
		max-width:156px;
		float:left;
	}
	.homeReviewHeaderBox03{
		width:100%;
		max-width:839px;
		float:left;
		margin-top:15px;
	}
	.homeReviewTxt01{
		font-size:14px;
		line-height:26px;
		font-weight:500;
	}
	.homeReviewWrap{
		width:100%;
		max-width:1160px;
		margin:0 auto;
		margin-top:35px;
	}
	.ftrCont01{
		width:100%;
		max-width:265px;
		float:left;
		margin-right:0px;
		margin-bottom:30px;
	}
	.ftrCont02{
		max-width:180px;
		width:100%;
		float:left;
		margin-right:0px;
		margin-bottom:30px;
	}
	.ftrCont03{
		max-width:250px;
		width:100%;
		float:left;
		margin-right:0px;
		margin-bottom:30px;
	}
	.ftrCont04{
		max-width:300px;
		width:100%;
		float:left;
	}
	.footerDocName{
		font-size:18px;
		line-height:30px;
		font-weight:500;
		padding-bottom:8px;
		text-transform:uppercase;
	}
	.inrChamAppoWrap{
		width:100%;
		max-width:202px;
		float:none;
		margin:0 auto;
	}
	.inrDocCham{
		width:100%;
		max-width:80px;
		float:left;
		margin:0 10px;
		margin-top:15px;
	}
	.innerHeading{
		font-size:7.5vw;
		line-height:34px;
	}
	.awardBox{
		width:100%;
		max-width:210px;
		height:220px;
		float:none;
		padding:90px 20px 10px 20px;
		margin:0 auto;
		margin-bottom:50px;
	}
	.experiBox{
		max-width:95%;
		float:left;
		margin-right:0px;
		margin-bottom:30px;
		clear:both;
	}
	.experiTxt01{
		font-size:17px;
		line-height:37px;
		margin-bottom:10px;
	}
	.innerTextRed{
		font-size:17px;
		line-height:30px;
	}
	.treatLft{
		max-width:100%;
		float:left;
		margin-top:0px;
		margin-bottom:15px;
	}
	.treatRgt{
		width:95%;
		max-width:380px;
		float:left;
		margin-top:10px;
		margin-bottom:25px;
	}
	.docChamberWrap{
		width:93%;
		max-width:1100px;
		float:left;
		margin:20px 0 70px 0;
		padding:40px 10px;
		border:1px solid #ececec;
		border-radius:15px;
	}
	.docChamberBox01{
		width:100%;
		max-width:330px;
		float:left;
		margin-right:0px;
		margin-bottom:15px;
	}
	.docChamberBox01 img{
		width:100%;
		height:auto;
	}
	.docChamberBox02{
		width:100%;
		max-width:450px;
		margin-right:0px;
		float:left;
	}
	.docChamberBox03{
		max-width:100%;
		float:left;
	}
	h6 {
		margin-top:25px;
		font-size:16px;
		line-height:25px;
	}

	h6 a {
		font-size:16px;
		line-height:25px;
	}
	.photoCont{
		width:100%;
		float:left;
		margin-right:0px;
		margin-left:0px;
		margin-bottom:50px;
	}
	.contactDocWrap{
		max-width:100%;
		float:left;
		margin-bottom:50px;
	}
	.contacDocPic{
		width:100%;
		max-width:150px;
		float:left;	
		position:absolute;
		left:0%;
		top:-5%;
	}
	.contacDocPic img{
		width:100%;
		height:auto;
	}
	.contacDocInfo{
		width:100%;
		max-width:265px;
		height:auto;
		padding:150px 30px 20px 20px;
		float:right;
		border-radius:20px;
	}
	.docName01{
		font-size:7vw;
		line-height:34px;
		color:#0e5d64;
		font-weight:600;
		margin-left:0px;
	}
	.docName02{
		font-size:15px;
		line-height:27px;
		color:#101010;
		font-weight:500;
		margin-left:0px;
		padding-bottom:20px;
	}
	.contacDocBox01{
		width:100%;
		max-width:160px;
		float:left;
		margin-right:0px;
		margin-left:0px;
		margin-bottom:20px;
	}
	.contacDocBox02{
		width:100%;
		max-width:200px;
		float:left;
		margin-right:20px;
		margin-bottom:20px;
	}
	.contactChamber{
		max-width:100%;
		float:left;
		padding-bottom:30px;
	}
	.contactAttach{
		max-width:100%;
		padding-left:0px;
		padding-top:30px;
		float:left;
		border-left:0;
		border-top:1px solid #efefef;
	}
	.docName04{
		font-size:20px;
		line-height:30px;
		font-weight:500;
		padding-bottom:10px;
		text-transform:uppercase;
	}
	.docName05{
		font-size:16px;
		line-height:35px;
		font-weight:500;
		padding-bottom:10px;
	}

}











/*Enquiry CSS*/
.formCont{
  max-width:500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  color:#000;
}

.formCont02{
  max-width:500px;
  width: 100%;
  position: relative;
  color:#000;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact select,
#contact button[type="submit"] {
  font: normal 16px 'Oxygen', sans-serif;
  color:#000;
}

#contact {  
  rgba(249, 249, 249, 0.2);
  padding: 25px;
  margin: 30px 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

#contact h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}

#contact h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 13px;
  font-weight: 400;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
  color:#000;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact select,
#contact textarea {
  width: 90%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  color:#000;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact select:hover
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact select{
  max-width: 90%;
  color: #888;
  color:#000;
}
#contact textarea {
  height: 100px;
  max-width: 90%;
  resize: none;
  color:#000;
}

#contact button[type="submit"] {
  cursor: pointer;
  border: none;
  background: #672a51;
  color: #FFF;
  padding: 10px;
  font-size: 15px;
  margin: auto;
  width: 72%;
  display:block;
  text-transform:uppercase;
}

#contact button[type="submit"]:hover {
  background: #672a51;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}


:-ms-input-placeholder {
  color: #888;
}




/*Captcha Start*/

.capbox {
	background-color: #672a51;
	border-width: 0px 12px 0px 0px;
	display: inline-block;
	*display: inline; zoom: 1; /* FOR IE7-8 */
	padding: 15px;
	margin: auto;
  	width: 70%;
	display:block;
	}

.capbox-inner {
	font: 12px 'Lato', sans-serif;
	color: #000;
	background-color: #672a51;
	margin: 5px auto 0px auto;
	padding: 10px;
	}

#CaptchaDiv {
	font: bold 18px 'Open Sans', sans-serif;;
	font-style: italic;
	color: #000000;
	background-color: #FFFFFF;
	padding: 4px;
	text-align:center;
	}

#CaptchaInput { margin: 1px 0px 1px 0px; width: 180px;

}







blink {
    -webkit-animation: 1s linear infinite condemned_blink_effect; // for android
    animation: 1s linear infinite condemned_blink_effect;
}
@-webkit-keyframes condemned_blink_effect { // for android
    0% {
        visibility: hidden;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}
@keyframes condemned_blink_effect {
    0% {
        visibility: hidden;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}


/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}


@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
	.hvr-push {
	display: inline-block;
	transform: translateY(-10px) rotate(2deg);
	box-shadow: 0 10px 30px rgba(27, 20, 20, 0.3);
	-webkit-transform: perspective(1px) translateZ(0);
	border-radius: 15px; /* Added rounded corners */

	}

.hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}


.container {
	max-width: 600px;
	margin: 50px auto;
	padding: 20px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
	text-align: center;
	color: #333;
  }
  
  form {
	display: flex;
	flex-direction: column;
  }
  
  label {
	margin-top: 10px;
	font-weight: bold;
  }
  
  input, select, button {
	margin-top: 5px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
  }
  
  button {
	background-color: #007BFF;
	color: white;
	cursor: pointer;
  }
  
  button:hover {
	background-color: #0056b3;
  }
  
  #responseMessage {
	margin-top: 20px;
	font-size: 1em;
	color: green;
  }



  .stats-container {
	display: flex;
	justify-content: space-around;
	align-items: center;
	background: linear-gradient(180deg, #7c8287, #868f83);
	padding: 20px 0;
	color: white;
  }
  
  .stat-box {
	text-align: center;
	flex: 1;
	padding: 20px;
  }
  
  .stat-box:not(:last-child) {
	border-right: 1px solid #ffffff50; /* Slightly transparent divider */
  }
  
  .stat-box h2 {
	font-size: 2.5em;
	margin: 10px 0;
  }
  
  .stat-box p {
	font-size: 1em;
	color: #ccc;
  }
  
  .baby {
	width: 90px;
	height: 70px;
	display: block;

	margin: 0 auto 0px;
  }
  
  
  
  @media (max-width: 768px) {
	.stats-container {
	  flex-direction: column;
	}
	.stat-box:not(:last-child) {
		border-right: none; /* Slightly transparent divider */
	  }
	.stat-box {
	  border-right: none;
	  border-bottom: 1px solid #ffffff50;
	}
  
	.stat-box:last-child {
	  border-bottom: none;
	  
	}
  
	.stat-box h2 {
	  font-size: 2em;
	}
  
	.stat-box p {
	  font-size: 0.9em;
	}
  
	
  }



span.num {
	color: #111010;
	display: grid;
	place-items: center;
	font-weight: 600;
	font-size: 3rem;
}

span.text {
	color: #0a0909;
	font-size: 1rem;
	font-weight: 400;
	padding: 0.7em 0;
	text-align: center;
	line-height: 0;
}





.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
    display: grid;
    place-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 200ms ease-in-out opacity;
    z-index: 9999; /* Ensure popup is above other content */
}

.popup-content {
    width: clamp(300px, 90vw, 500px);
    background-color: #d4c5c5;
    padding: clamp(1.5rem, 100vw, 3rem);
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
    border-radius: 0.5em;
    opacity: 0;
    transform: translateY(20%);
    transition: 200ms ease-in-out opacity,
                200ms ease-in-out transform;
    position: relative;
    z-index: 10000; /* Ensure popup content is above the background overlay */
}

.showPopup {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}


.popup-content.showPopup {
    box-shadow: 0 0 20px 5px rgba(161, 179, 197, 0.8),
                0 0 30px 10px rgba(115, 112, 112, 0.8);
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 15px 5px rgba(168, 204, 219, 0.8),
                    0 0 20px 10px rgba(101, 106, 131, 0.8);
    }
    50% {
        box-shadow: 0 0 25px 10px rgba(168, 204, 219, 0.8),
                    0 0 35px 15px rgba(101, 106, 131, 0.8);
    }
    100% {
        box-shadow: 0 0 15px 5px rgba(168, 204, 219, 0.8),
                    0 0 20px 10px rgba(101, 106, 131, 0.8);
    }
}

.popup-content.showPopup {
    animation: pulse 2s infinite;
}

.popup h1 {
    position: absolute;
    top: 2rem;
    right: 2rem;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}
.popup h1:active {
    transform: scale(.9);
}

.showPopup {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
