@charset "utf-8";

/* CSS Document */
body {
	padding: 0px;
	margin: 0px;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	color: #575757;
	font-weight: 400;
	line-height: 28px;
}

h1,
h2 {
	font-family: 'Libre Baskerville', serif;
}

a {
	color: #3C3F61;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #575757;
	text-decoration: underline;
}

hr {
	width: 100%;
	margin: 10px 0%;
	border: none;
	border-top: 1px solid #c7c7c7 !important;
}

.p-0 {
	padding-right: 0;
	padding-left: 0;
}

#wrap {
	float: left;
	width: 100%;
}

:root {
	--container-width: 1250px;
	--container-padding: calc((100vw - var(--container-width)) / 2);
}

.container {
	max-width: 1250px;
	padding: 0;
	margin: 0px auto;
}

/* Header Top */
#headertop {
	float: left;
	width: 100%;
	padding: 8px 0px;
	background-color: #ff669a;
}

#headertop .topbar {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#headertop .topbar .phoneBox {
	display: flex;
	align-content: center;
	align-items: center;
	grid-gap: 25px;
}

#headertop .topbar .phoneBox a {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #ffffff;
	text-decoration: none;
}

#headertop .topbar .phoneBox a i {
	float: left;
	margin-right: 5px;
}

#headertop .topbar .phoneBox a:hover {
	color: #00cbfd;
	transition: all .25s ease-in-out;
}

#headertop .topbar .socialBox {
	display: flex;
	align-content: center;
	align-items: center;
	grid-gap: 10px;
}

#headertop .topbar .socialBox a {
	width: 30px;
	text-decoration: none;
	border-radius: 100%;
	box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
}

#headertop .topbar .socialBox a img {
	width: 100%;
	height: auto;
}

/* Header Bottom */
#headerbotm {
	width: 100%;
	display: inline-block;
	padding: 18px 0px;
	border-bottom: 1px solid #ff669a;
	transition: all .25s ease-in-out;
}

#headerbotm .header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#headerbotm .header .logo {
	float: left;
	width: 302px;
	transition: all .25s ease-in-out;
}

#headerbotm .header .logo img {
	width: 100%;
	height: auto;
}

#mainNav {
	float: left;
	width: auto;
}

#mainNav ul.menu {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

#mainNav ul.menu li {
	position: relative;
	display: inline-block;
	margin-right: 15px;
	text-align: left;
}

#mainNav ul.menu li:last-child {
	margin-right: 0px;
}

#mainNav ul.menu li a {
	position: relative;
	display: block;
	padding: 0 0 0px 0;
	font-size: 16px;
	line-height: 28px;
	color: #000000;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
}

#mainNav ul.menu li a:after {
	position: absolute;
	display: block;
	content: '';
	left: 0px;
	right: 0px;
	bottom: 0px;
	transform: scaleX(0);
	transition: transform 250ms ease-in-out;
}

#mainNav ul.menu>li>a:hover,
#mainNav ul.menu>li:hover>a,
#mainNav ul.menu>li.current-menu-item>a,
#mainNav ul.menu>li.current-menu-parent>a {
	color: #00cbfd;
}

#mainNav ul.menu>li:hover>ul.sub-menu {
	display: block;
}

#mainNav ul.menu li ul.sub-menu {
	margin: 0;
	padding: 0;
	list-style-type: none;
	float: left;
	width: 250px;
	background-color: #F1E5AC;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 3;
	display: none;
}

#mainNav ul.menu li ul.sub-menu li {
	float: left;
	width: 100%;
	margin: 0 0px;
}

#mainNav ul.menu li ul.sub-menu li a {
	padding: 12px 12px;
	border-bottom: none;
	font-size: 16px;
	color: #000080;
	text-align: left;
	text-transform: none;
}

#mainNav ul.menu li ul.sub-menu li a:hover,
#mainNav ul.menu li ul.sub-menu li:hover>a,
#mainNav ul.menu li ul.sub-menu li.current-menu-item>a {
	background-color: #000080;
	color: #FFFFFF;
	text-decoration: none;
}

#mainNav ul.menu li ul li ul.sub-menu {
	top: 0;
	left: 100%;
	display: none;
}

#mainNav ul.menu>li>ul>li:hover>ul.sub-menu {
	display: block;
}

/*---------------------- Mobile Hamburger Menu CSS Start --------------------*/
.hamburger-menu {
	width: 30px;
	position: relative;
}

.hamburger-menu #nav-btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	margin: 0;
	opacity: 0;
	z-index: 100;
	cursor: pointer;
}

.hamburger-menu #nav-btn+label {
	position: relative;
	top: 0px;
	right: 0px;
	width: 30px;
	height: 30px;
	margin: 0;
	border: 0px solid #b9a424;
	border-radius: 100%;
	z-index: 99;
	cursor: pointer;
	transition: all .25s ease-in-out;
}

.hamburger-menu #nav-btn+label+span {
	display: block;
	width: 28px;
	height: 2px;
	background-color: #ff669a;
	position: relative;
	top: -15px;
	right: 0;
	cursor: pointer;
	z-index: 99;
	transition: all .25s ease-in-out;
}

.hamburger-menu #nav-btn+label+span::before,
.hamburger-menu #nav-btn+label+span::after {
	content: "";
	display: block;
	width: 28px;
	height: 2px;
	background-color: #ff669a;
	position: absolute;
	left: 0;
}

.hamburger-menu #nav-btn+label+span::before {
	top: -10px;
}

.hamburger-menu #nav-btn+label+span::after {
	bottom: -10px;
}

.hamburger-menu #nav-btn:checked+span {
	background-color: #F5060A;
}

.hamburger-menu #nav-btn+label+span::before,
.hamburger-menu #nav-btn+label+span::after {
	transition-delay: 0.3s, 0s;
	transition-duration: 0.3s, 0.3s;
}

.hamburger-menu #nav-btn+label+span::before {
	transition-property: top, transform;
}

.hamburger-menu #nav-btn+label+span::after {
	transition-property: bottom, transform;
}

.hamburger-menu #nav-btn:checked+label+span {
	background: none;
}

.hamburger-menu #nav-btn:checked+label+span::before {
	top: 0;
	transform: rotate(45deg);
}

.hamburger-menu #nav-btn:checked+label+span::after {
	bottom: 0;
	transform: rotate(-45deg);
}

.hamburger-menu #nav-btn:checked+label+span::before,
.hamburger-menu #nav-btn:checked+label+span::after {
	transition-delay: 0s, 0.3s;
}

.hamburger-menu #nav-btn:checked~nav {
	visibility: visible;
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	overflow: hidden;
}

.hamburger-menu nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.95;
	z-index: 98;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
	transition: transform 0.5s, visibility 0s 0.5s;
	overflow: hidden;
}

.hamburger-menu nav ul {
	width: 80%;
	left: 0;
	right: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	margin: 0 auto;
	padding: 0;
}

.hamburger-menu nav li {
	list-style: none;
	margin: 0 0 20px 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
	text-transform: uppercase;
}

.hamburger-menu nav li a {
	color: #ffffff;
	text-decoration: none;
}

.hamburger-menu nav li a:hover {
	color: #00ccff;
}

.hamburger-menu nav li.current-menu-item>a {
	color: #00ccff;
}

.hamburger-menu nav ul>li:hover>ul.sub-menu {
	display: block;
}

.hamburger-menu nav ul li ul.sub-menu {
	margin: 0 auto;
	padding: 0;
	list-style-type: none;
	float: inherit;
	width: 250px;
	background-color: #333470;
	position: absolute;
	top: 125%;
	left: 0;
	z-index: 3;
	display: none;
}

.hamburger-menu nav ul li ul.sub-menu li {
	float: left;
	width: 100%;
	margin: 0 0px;
}

.hamburger-menu nav ul li ul.sub-menu li a {
	width: 100%;
	display: inline-block;
	padding: 8px 15px;
	border-bottom: none;
	font-size: 16px;
	color: #fff;
	text-align: center;
	text-transform: none;
}

.hamburger-menu nav ul li ul.sub-menu li a:hover,
.hamburger-menu nav ul li ul.sub-menu li:hover>a,
.hamburger-menu nav ul li ul.sub-menu li.current-menu-item>a {
	background-color: #f7921c;
	color: #FFFFFF;
	text-decoration: none;
}

.hamburger-menu nav ul li ul li ul.sub-menu {
	top: 0;
	left: 100%;
	display: none;
}

.hamburger-menu nav ul>li>ul>li:hover>ul.sub-menu {
	display: block;
}

/* Banner Slider */
#slider {
	width: 100%;
	float: left;
}

#slider .banner-slider .owl-prev {
	left: 60px;
}

#slider .banner-slider .owl-next {
	right: 60px;
}

#slider .banner-slider.owl-theme .owl-nav button.owl-prev {
	left: 50px;
	width: 50px;
	height: 50px;
	background-image: url(../images/owl-prev.png);
	background-repeat: no-repeat;
	background-size: 100%;
	outline: 0;
}

#slider .banner-slider.owl-theme .owl-nav button.owl-next {
	right: 50px;
	width: 50px;
	height: 50px;
	background-image: url(../images/owl-next.png);
	background-repeat: no-repeat;
	background-size: 100%;
	outline: 0;
}

#slider .mobile-slider .banner-slider {
	display: none;
}

#middle {
	float: left;
	width: 100%;
}

/* About Section */
#aboutSec {
	position: relative;
	padding-top: 90px;
	padding-bottom: 90px;
	overflow: hidden;
}

#aboutSec .content {
	float: left;
	width: 100%;
}

#aboutSec .content h2 {
	position: relative;
	margin: 0 0 15px 0;
	font-size: 48px;
	line-height: 58px;
	color: #ff669a;
	font-weight: 400;
}

#aboutSec .content h3 {
	position: relative;
	display: inline-block;
	margin: 0 0 30px 0;
	padding-right: 110px;
	font-size: 24px;
	line-height: 24px;
	font-weight: 400;
	color: #00ccff;
}

#aboutSec .content p {
	margin: 0 0 20px 0;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #383838;
	text-align: justify;
}

#aboutSec .content a {
	display: inline-block;
	padding: 9px 24px;
	border-radius: 50px;
	font-size: 18px;
	line-height: 26px;
	color: #00ccff;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid #00ccff;
	transition: all .3s ease-in-out;
}

#aboutSec .content a:hover {
	color: #fff;
	transition: all .3s ease-in-out;
	background-color: #00ccff;
}

#aboutSec .content a i {
	float: right;
	margin-left: 10px;
}

#aboutSec .picture {
	position: relative;
	float: left;
	text-align: right;
	width: 100%;
	margin-top: 25px;
}

#aboutSec .picture img {
	width: auto;
	height: auto;
	border-radius: 50px;
	border-left: 20px solid #fff;
	border: 20px solid transparent;
	margin-right: -20px;
}

#aboutSec .picture:before {
	content: '';
	width: 130px;
	height: 100%;
	border-radius: 30px 0px 0px 30px;
	box-shadow: -30px 0px 0px 0px #00cbff;
	position: absolute;
	z-index: -1;
}

#aboutSec .picture:after {
	content: '';
	position: absolute;
	right: -50px;
	bottom: -30px;
	width: 175px;
	height: 150px;
	border-radius: 15px;
	background-color: #ff6a9c;
	z-index: -1;
}

/* Footer Section */
#footer {
	position: relative;
	display: inline-block;
	background: url(../images/footer-bg.jpg) center center no-repeat;
	background-size: cover;
}

.footerTop {
	width: 100%;
	display: inline-block;
	border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.footerTop .ftr-contact {
	padding: 30px 95px;
}

.footerTop .ftr-contact ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: space-between;
}

.footerTop .ftr-contact ul li {
	position: relative;
	display: inline-block;
	width: auto;
	padding: 0 30px 0px 65px;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 26px;
}

.footerTop .ftr-contact ul li strong {
	width: 100%;
	display: inline-block;
	font-weight: 700;
}

.footerTop .ftr-contact ul li:before {
	width: 45px;
	height: 45px;
	background-color: #00ccff;
	border-radius: 50px;
	position: absolute;
	content: "";
	font-family: "Material Design Icons";
	font-size: 18px;
	line-height: 45px;
	color: #ffffff;
	text-align: center;
	left: 0px;
	top: 5px;
}

.footerTop .ftr-contact ul li.address::before {
	content: '\f34d';
}

.footerTop .ftr-contact ul li.phone::before {
	content: '\f3f2';
}

.footerTop .ftr-contact ul li.email::before {
	content: '\f1ee';
}

.footerTop .ftr-contact a {
	color: #ffffff;
	text-decoration: none;
	transition: all .3s ease-out;
}

.footerTop .ftr-contact a:hover {
	color: #00ccff;
}

.footerSection {
	float: left;
	width: 100%;
}

.footerSection .row {
	padding-left: 95px;
	padding-right: 95px;
}

.footerSection h5 {
	position: relative;
	margin: 0 0 25px 0;
	font-size: 22px;
	line-height: 28px;
	font-weight: 700;
	color: #FFFFFF;
}

.footerSection .ftr-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	grid-gap: 30px;
	border-right: 1px solid rgb(255 255 255 / 20%);
}

.footerSection .ftr-social {
	display: inline-block;
	text-align: right;
}

.footerSection .ftr-social ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footerSection .ftr-social ul li {
	display: inline-block;
	padding: 0 10px 0 0;
}

.footerSection .ftr-social ul li:last-child {
	padding: 0;
}

.footerSection .ftr-social ul li a {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-decoration: none;
	box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
}

.footerSection .ftr-social ul li a img {
	width: 100%;
	height: auto;
}

.footerSection .ftr-menu {
	padding-top: 50px;
	padding-bottom: 35px;
	border-right: 1px solid rgb(255 255 255 / 20%);
}

.footerSection .ftr-menu:last-child {
	border-right: 0px;
}

.footerSection .ftr-menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footerSection .ftr-menu ul li {
	display: inline-block;
	width: 100%;
	padding: 0 0 22px 0;
}

.footerSection .ftr-menu ul li:last-child {
	padding: 0;
}

.footerSection .ftr-menu ul li a {
	display: inline-block;
	font-size: 18px;
	line-height: 18px;
	font-weight: 400;
	color: #FFFFFF;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

.footerSection .ftr-menu ul li a:hover {
	color: #00ccff;
}

.footerBottom {
	float: left;
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	border-top: 1px solid rgb(255 255 255 / 20%);
}

.footerBottom p {
	margin: 0 0 0 0;
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	color: #FFFFFF;
	text-align: center;
}

.footerBottom a {
	display: inline-block;
	margin: 0 10px;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: 400;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

.footerBottom a:hover {
	color: #00ccff;
}

/* ---------- Contact Form 7 Css ---------- */
.wpcf7-form-control-wrap {
	display: block;
}

body .wpcf7 form .wpcf7-response-output {
	float: left;
	width: 100%;
	padding: 10px;
	margin: 0 0 0 0;
	box-sizing: border-box;
}

body span.wpcf7-not-valid-tip {
	position: absolute;
	top: 5px;
	right: 10px;
	font-size: 12px;
	white-space: nowrap;
}

body .wpcf7-not-valid {
	border-color: #f00 !important;
}

#innerSection {
	padding-top: 75px;
	padding-bottom: 75px;
}

/* ---------- Services & Surgeons Page Css ---------- */
/* InnerBanner Section */
#innerBanner {
	position: relative;
	width: 100%;
	height: 350px;
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#innerBanner:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(9, 198, 244, 0) 60%, rgba(9, 198, 244, 1) 100%);
	z-index: 0;
}

#innerBanner .caption {
	position: relative;
	float: left;
	width: 100%;
	z-index: 1;
}

#innerBanner .caption h1 {
	margin: 0 0 20px 0;
	font-size: 48px;
	line-height: 55px;
	font-weight: 400;
	color: #ffffff;
}

#innerBanner .caption nav .breadcrumb {
	background-color: transparent;
	margin: 0;
	padding: 0;
}

#innerBanner .caption nav .breadcrumb .breadcrumb-item a {
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #fff;
}

#innerBanner .caption nav .breadcrumb .breadcrumb-item a:hover {
	text-decoration: none;
}

#innerBanner .caption nav .breadcrumb .active {
	color: #ff669a;
}

#innerBanner .caption nav .breadcrumb-item+.breadcrumb-item::before {
	color: #ffffff;
}

/* Services section */
#Services {
	padding-top: 90px;
	padding-bottom: 90px;
}

#Services .content {
	width: 100%;
	float: left;
}

#Services .content h2 {
	position: relative;
	margin: 0 0 15px 0;
	font-size: 48px;
	line-height: 58px;
	color: #ff669a;
	font-weight: 400;
}

#Services .content ul {
	padding: 0;
	list-style: none;
}

#Services .content ul li {
	width: 50%;
	float: left;
	position: relative;
	margin: 0 0 5px 0;
	padding-left: 35px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #3e3e3e;
	padding-right: 5px;
}

#Services .content ul li::before {
	position: absolute;
	content: '\f5e0';
	font-family: "Material Design Icons";
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #00ccff;
	top: 0px;
	left: 0;
}

#Services .picture {
	float: right;
	width: 100%;
	border-radius: 50px;
	overflow: hidden;
}

#Services .picture img {
	width: 100%;
	height: auto;
}

/* Our Surgeons Section */
#ourSurgeons {
	position: relative;
	padding-top: 90px;
	padding-bottom: 90px;
	background: url(../images/our-surgeries-bg.jpg) top center no-repeat;
	background-size: cover;
	overflow: hidden;
}

#ourSurgeons h2 {
	position: relative;
	margin: 0 0 40px 0;
	font-size: 48px;
	line-height: 58px;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
}

#ourSurgeons p {
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
}

/* Our Surgeons Info Section */
#ourSurgeonsInfoSec {
	padding-top: 90px;
	padding-bottom: 90px;
}

#ourSurgeonsInfoSec h2 {
	position: relative;
	margin: 0 0 30px 0;
	font-size: 48px;
	line-height: 58px;
	color: #ff669a;
	font-weight: 400;
}

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

#ourSurgeonsInfoSec ul li {
	position: relative;
	margin: 0 0 10px 0;
	padding-left: 35px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #3e3e3e;
}

#ourSurgeonsInfoSec ul li::before {
	position: absolute;
	content: '\f5e0';
	font-family: "Material Design Icons";
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #00ccff;
	top: 0px;
	left: 0;
}

/* ---------- Testimonial Page Css ---------- */
#testimonialSec {
	padding-top: 90px;
	padding-bottom: 90px;
}

#testimonialSec h2 {
	position: relative;
	margin: 0 0 40px 0;
	font-size: 48px;
	line-height: 58px;
	font-weight: 400;
	color: #000000;
	text-align: center;
}

#testimonialSec h3 {
	position: relative;
	margin: 0 0 15px 0;
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
	color: #ff6a9c;
	text-align: center;
}

#testimonialSec .item {
	width: 100%;
	height: calc(100% - 30px);
	padding: 30px 20px;
	margin-bottom: 30px;
	border: 1px solid #ffb9ce;
	border-radius: 15px;
}

#testimonialSec .item .info {
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

#testimonialSec .item .image {
	width: 58px;
	height: 58px;
	border-radius: 100%;
	overflow: hidden;
}

#testimonialSec .item .image img {
	width: 100%;
	height: auto;
}

#testimonialSec .item .ratingBox {
	width: calc(100% - 58px);
	float: left;
	padding-left: 10px;
}

#testimonialSec .item .ratingBox h4 {
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	color: #fe679a;
	font-weight: 700;
	text-transform: uppercase;
}

#testimonialSec .item .ratingBox .rating {
	float: left;
	width: 100%;
	font-size: 20px;
	color: #FFB800;
}

#testimonialSec .item p {
	margin: 0 0 0px 0;
	font-size: 18px;
	color: #000000;
	font-weight: 400;
	line-height: 28px;
}

/* ---------- Hospital Page Css ---------- */
/* Hospital Section */
#hospitalsec {
	padding-top: 90px;
	padding-bottom: 90px;
}

#hospitalsec .content {
	width: 100%;
	float: left;
}

#hospitalsec .content h2 {
	position: relative;
	margin: 0 0 15px 0;
	font-size: 48px;
	line-height: 58px;
	color: #ff669a;
	font-weight: 400;
}

#hospitalsec .content ul {
	padding: 0;
	list-style: none;
}

#hospitalsec .content ul li {
	width: 100%;
	float: left;
	position: relative;
	margin: 0 0 5px 0;
	padding-left: 35px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #3e3e3e;
	padding-right: 5px;
}

#hospitalsec .content ul li::before {
	position: absolute;
	content: '\f5e0';
	font-family: "Material Design Icons";
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #00ccff;
	top: 0px;
	left: 0;
}

#hospitalsec .hospital_logo {
	max-width: 300px;
	width: 100%;
	float: right;
}

#hospitalsec .hospital_logo img {
	width: 100%;
	height: auto;
}

/* ---------- Contact Us page css ---------- */
#contactSec {
	padding-top: 90px;
	padding-bottom: 90px;
}

#contactSec h2 {
	position: relative;
	margin: 0 0 15px 0;
	font-size: 48px;
	line-height: 58px;
	color: #ff669a;
	font-weight: 400;
}

#contactSec .contactForm {
	width: 100%;
}

#contactSec .contactForm .input-group {
	margin-bottom: 15px;
}

#contactSec .contactForm .input-group .form-control {
	display: block;
	width: 100%;
	height: 50px;
	padding: 10px 15px;
	margin-bottom: 0px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #383838;
	outline: 0;
	border: 1px solid #dcdcdc;
	background-color: #ffffff;
	border-radius: 10px;
}

#contactSec .contactForm .input-group textarea.form-control {
	height: auto;
	resize: none;
}

#contactSec .contactForm .input-group .submitBtn {
	display: inline-block;
	padding: 9px 24px;
	border-radius: 50px;
	font-size: 18px;
	line-height: 26px;
	color: #00ccff;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid #00ccff;
	transition: all .3s ease-in-out;
	background-color: transparent;
	transition: all .3s ease-in-out;
}

#contactSec .contactForm .input-group .submitBtn:hover {
	color: #fff;
	background-color: #00ccff;
}

#contactSec .contactDetails {
	width: 100%;
	margin-bottom: 20px;
}

#contactSec .contactDetails ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

#contactSec .contactDetails ul li {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 0 0 15px 30px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #383838;
}

#contactSec .contactDetails ul li::before {
	position: absolute;
	font-family: "Material Design Icons";
	font-size: 18px;
	color: #ff669a;
	left: 0px;
	top: 0px;
}

#contactSec .contactDetails ul li.address::before {
	content: '\f34d';
}

#contactSec .contactDetails ul li.phone::before {
	content: '\f3f2';
}

#contactSec .contactDetails ul li.email::before {
	content: '\f1ee';
}

#contactSec .contactDetails ul li a {
	transition: all .3s ease-out;
	text-decoration: none;
}

#contactSec .contactDetails ul li a:hover {
	color: #ff669a;
}

.chat {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: block;
	width: 80px;
	height: 80px;
	background: #00ccff;
	border-radius: 50%;
	font-size: 50px;
	line-height: 75px;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.chat:hover {
	width: 70px;
	height: 70px;
	font-size: 45px;
	line-height: 65px;
	transition: all 0.3s ease-in-out;
}

.chat a {
	color: #ffffff;
}

/* ---------- Accomodations Page Css ---------- */
#accomodations-sec {
	width: 100%;
	float: left;
	padding-top: 70px;
	padding-bottom: 70px;
	background: #00a6cf;
	margin: 0;
}

#accomodations-sec .accomodationInfo {
	float: left;
	width: 100%;
}

#accomodations-sec .accomodationInfo .imageBox {
	width: 50%;
	float: left;
}

#accomodations-sec .accomodationInfo .imageBox iframe {
	width: 100%;
	height: 400px;
}

/* #accomodations-sec .accomodationInfo .imageBox img {
	width: 100%;
	height: auto;
	border-radius: 40px;
} */

#accomodations-sec .accomodationInfo .contentBox {
	width: 50%;
	float: left;
	padding-left: 80px;
}

#accomodations-sec .contentBox h2 {
	position: relative;
	margin: 0 0 20px 0;
	font-size: 48px;
	line-height: 48px;
	font-weight: 400;
	color: #ffffff;
}

#accomodations-sec .contentBox p {
	position: relative;
	margin: 0 0 20px 0;
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
	color: #ffffff;
}

#accomodations-sec .contentBox ul {
	padding: 0;
	margin: 0 0 40px 0;
	list-style: none;
}

#accomodations-sec .contentBox ul li {
	position: relative;
	margin: 0 0 10px 0;
	padding-left: 35px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #ffffff;
}

#accomodations-sec .contentBox ul li:after {
	position: absolute;
	content: '\f5e0';
	font-family: "Material Design Icons";
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #ffffff;
	top: 0px;
	left: 0;
}

#accomodations-sec .contentBox a {
	display: inline-block;
	padding: 14px 75px;
	border-radius: 50px;
	font-size: 18px;
	line-height: 26px;
	color: #ffffff;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid #ffffff;
	transition: all .3s ease-in-out;
}

#accomodations-sec .contentBox a:hover {
	background: #ffffff;
	color: #00ccff;
}


/* ---------- Gallery Page Css ---------- */
.gallery-sec {
	position: relative;
	padding-top: 90px;
	padding-bottom: 90px;
}

.gallery-sec h2 {
	position: relative;
	margin: 0 0 20px 0;
	font-size: 48px;
	line-height: 58px;
	color: #ff669a;
	font-weight: 400;
}

.gallery-sec .thumb_box {
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
}

.gallery-sec .thumb_box a {
	display: block;
	width: 100%;
	height: 165px;
	overflow: hidden;
}

.gallery-sec .thumb_box a img {
	width: 100%;
	height: auto;
}

/* ---------- Surgeries Page Css ---------- */
#ourSurgeries {
	padding-top: 70px;
	padding-bottom: 70px;
}

#ourSurgeries h3 {
	position: relative;
	margin: 0 0 15px 0;
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
	color: #ff6a9c;
	text-align: center;
}

#ourSurgeries h2 {
	position: relative;
	margin: 0 0 40px 0;
	font-size: 48px;
	line-height: 58px;
	font-weight: 400;
	color: #000000;
	text-align: center;
}

#ourSurgeries .item {
	float: left;
	width: 100%;
	margin-bottom: 30px;
	border-radius: 20px;
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 25%);
	background: #FFFFFF;
}

#ourSurgeries .item .surgeriesImg {
	width: 100%;
	float: left;
}

#ourSurgeries .item .surgeriesImg img {
	width: 100%;
	height: auto;
	border-radius: 20px 20px 0 0;
}

#ourSurgeries .item .info {
	display: inline-block;
	width: 100%;
	padding: 30px 20px;
}


#ourSurgeries .item .info h4 {
	margin: 0;
	font-family: 'Libre Baskerville', serif;
	font-size: 30px;
	line-height: 40px;
	font-weight: 400;
	color: #000000;
	min-height: 80px;
}