/*************** Import Css **************/
@import "common.css";
@import "fonts.css";

/********************* Header Css ******************/
.header-area{
	position:fixed;
	width:100%;;
	top:0px;
	left:0px;
	/*z-index:99999;*/
	z-index:99;
	padding:17px 95px;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.header-area.fixed_header{
	background-color: #41AAB8f8 !important;
    box-shadow: 0px 1px 5px;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.logo-area a img{
	width: auto;
    height: 50px;
}
.header-phone-number a{
	color: #FFFFFF;
	font-family: "Oswald", Sans-serif;
    font-size: 23px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.virtual-button-area{
	margin-left:40px;
}
.nav-icon{
	margin-left:25px;
	width:30px;
}
.nav-icon a{
	font-size: 35px;
	color:#fff;
}
body.overflow-hidden, html.overflow-hidden{
	overflow:hidden;
	position:relative;
}
.overflow-hidden:after{
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.4);
	content:'';
	position:absolute;
	top:0px;
	left:0px;
}
/* ================== Menu Css ===============*/
.menu-wrapper{
	position: fixed;
	width: 100%;
    pointer-events: none;
	z-index:-1;
	opacity:0;
	top: 90px;
	height: calc(100vh - 130px);
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.menu-wrapper.active{
	z-index: 90;
	opacity:1;
	pointer-events: all;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.menu-inner{
    border-style: solid;
    border-width: 5px 5px 5px 5px;
    border-color: #41AAB8;
	position: relative;
    width: 90%;
	height: 100%;
    overflow-y: auto;
    background-color: #f1f1f1;
	margin-left:auto;
	margin-right:auto;
}
.menu-wrapper .menu-inner ul{
	margin:0px;
	padding:0px;
	list-style:none;
}
.menu-wrapper .menu-inner > ul{
	display:flex;
}
.menu-wrapper .menu-inner > ul > li{
	display: inline-block;
    clear: none;
    width: 20%;
    vertical-align: top;
    background: #B5D9DE;
	cursor:pointer;
}
.menu-wrapper .menu-inner > ul > li > a{
	display:block;
	text-align: center;
    font-family: "Oswald", Sans-serif;
    font-size: 21px;
    font-weight: 200;
    text-transform: uppercase;
	line-height: 65px;
    height: 65px;
	/*background-color: #41AAB8;
    color: #fff;*/
	color:#333333;
	background: #B5D9DE;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
/*.menu-wrapper .menu-inner > ul > li.menu-item-has-children > a{
	
}*/
.menu-wrapper .menu-inner > ul > li > a:hover, .menu-wrapper .menu-inner > ul > li.active > a{
	background-color: #41AAB8;
    color: #fff;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.menu-wrapper .menu-inner > ul > li.menu-type-1  > ul{
	display: none;
    position: absolute;
    width: 100%;
    padding: 70px 10%;
	background:#f1f1f1;
	flex-wrap:wrap;
	left:0px;
}
.menu-wrapper .menu-inner > ul > li.menu-type-1  > ul > li{
	width: 19.50%;
    margin: 0.25%;
    clear: none;
    min-height: 200px;
    border-style: solid;
    border-width: 4px 4px 4px 4px;
    border-color: #FFFFFF;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	position:relative;
}
.menu-wrapper .menu-inner > ul > li.menu-type-1  > ul > li:nth-child(6),
.menu-wrapper .menu-inner > ul > li.menu-type-1  > ul > li:nth-child(7),
.menu-wrapper .menu-inner > ul > li.menu-type-1  > ul > li:nth-child(8){
	width: 32.83% !important;
}
.menu-wrapper .menu-inner > ul > li.menu-type-1  > ul > li > a{
	position:relative;
	display:inline-block;
	width:100%;
	height:100%;
}
.menu-wrapper .menu-inner > ul > li.menu-type-1  > ul > li > a:before{
	background-color: rgba(65, 170, 184, 0.5);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
	z-index: 3;
}
.menu-wrapper .menu-inner > ul > li.menu-type-1  > ul > li > a > img{
	width: 100% !important;
    height: 100% !important;
    position: absolute;
    object-fit: cover;
    top: 0px;
    left: 0px;
    padding-right: 0px;
}
.menu-wrapper .menu-inner > ul > li.menu-type-1  > ul > li > a .menu-image-title{
	position: absolute;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 0px;
    width: 100%;
    text-align: center;
	text-transform: uppercase;
    text-decoration: none;
	font-family: "Oswald", Sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #ffffff;
	text-shadow: 1px 1px 4px black;
	left:0px;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
	padding: 0px 15px;
}
.menu-wrapper .menu-inner > ul > li.menu-type-1 > ul > li > a:hover:before{
	background-color: rgba(65, 170, 184, 0.9);
}
.menu-wrapper .menu-inner > ul > li > ul{
	display:none;
}
.menu-wrapper .menu-inner > ul > li.menu-type-1 > ul > li > a:hover .menu-image-title{
	transform: scale(1.1) translateY(-50%);;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.menu-wrapper .menu-inner > ul > li.procedure-menu > ul{
	display:none;
	position: absolute;
    width: 100%;
    padding: 30px;
    background: #f1f1f1;
    flex-wrap: wrap;
	left: 0px;
}
.menu-wrapper .menu-inner > ul > li.procedure-menu > ul > li{
	width:25%;
	padding: 0px 10px;
}
.menu-wrapper .menu-inner > ul > li.procedure-menu > ul > li > a > img{
	border-style: solid;
    border-width: 3px 3px 3px 3px;
    border-color: #FFFFFF;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	padding-bottom:0px !important;
	margin:0px !important;
	width: 100% !important;
    max-width: 100% !important;
}
.menu-wrapper .menu-inner > ul > li.procedure-menu > ul > li > a .menu-image-title{
	text-align: center!important;
    color: #41AAB8;
    font-family: 'Oxygen', sans-serif;
    font-size: 20px;
    font-weight: 300;
    border-bottom: 1px solid #41AAB8;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    max-width: 200px;
    margin: 15px auto 1rem;
}
.menu-wrapper .menu-inner > ul > li.procedure-menu > ul > li > ul{
	text-align:center;
}
.menu-wrapper .menu-inner > ul > li.procedure-menu > ul > li > ul > li{
	margin-bottom: 0.9rem;
}
.menu-wrapper .menu-inner > ul > li.procedure-menu > ul > li > ul > li > a{
	text-align: center!important;
    color: #767676;
    font-family: 'Oxygen', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
	text-transform: none;
    text-decoration: none;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.menu-wrapper .menu-inner > ul > li.procedure-menu > ul > li > ul > li > a:hover{
	color: #41AAB8;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.menu-wrapper .menu-inner > ul > li.active.menu-type-1  > ul{
	display:flex !important;
}
.menu-wrapper .menu-inner > ul > li.active.procedure-menu > ul{
	display:flex !important;
}
.menu-wrapper .menu-inner > ul > li.menu-type-1.menu-type-2 > ul > li:nth-child(6), .menu-wrapper .menu-inner > ul > li.menu-type-1.menu-type-2 > ul > li:nth-child(7){
	width:49.50% !important;
}
.menu-wrapper .menu-inner > ul > li.contact-us-menu > ul{
	position: absolute;
    width: 100%;
    padding: 30px;
    background: #f1f1f1;
    flex-wrap: wrap;
	left: 0px;
	display:none;
	height: 100%;
}
.menu-wrapper .menu-inner > ul > li.contact-us-menu.active > ul{
	display:block;
}
.contact-menu-content{
	max-width:400px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}
.contact-menu-content h3{
	padding-bottom: 30px;
    margin: 10px auto 30px;
    max-width: 400px;
    border-bottom: 1px solid #41AAB8;
	text-align:center;
}
.contact-menu-content h3 a{
	color: #41AAB8;
    font-family: Oswald, sans-serif;
    font-size: 36px;
    font-weight: 300;
    text-decoration: none;
}
.contact-menu-content p a{
	color: #767676;
    font-family: Oxygen, sans-serif;
    font-size: 24px;
    font-weight: 300;
    text-decoration: none;
	text-align:center;
	display: block;
}
.social-media-wrap {
	padding: 20px 0;
    margin: 20px auto 10px;
    max-width: 400px;
    border-top: 1px solid #41AAB8;
    border-bottom: 1px solid #41AAB8;
}
.social-media-wrap ul{
	display:flex;
	align-items:center;
	justify-content:center;
}
.social-media-wrap ul li{
	margin: 0px 5px;
}
.social-media-wrap ul li a{
	width: 64px;
    height: 64px;
    border-radius: 10px;
    display: inline-block;
    background: #41AAB8;
	display:flex;
	align-items:center;
	justify-content:center;
	color: #fff;
    font-size: 32px;
}
.contact-menu-content .common-button {
    padding: 10px 30px;
    width: 200px;
    height: 55px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #1E6076;
    border-radius: 0px 0px 0px 0px;
    background-color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    display: inline-block;
    line-height: 2rem;
    text-align: center;
	color:#767676;
	min-width: auto;
}
.contact-menu-content .common-button:hover{
	background-color: #41AAB8;
	color:#fff;
}
.contat-google-map iframe{
	border:0px;
}
.menu-wrapper .menu-inner > ul > li.active > a{
	position:relative;
}
.menu-wrapper .menu-inner > ul > li.active > a:after{
	content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    z-index: 1;
    width: 0px;
    height: 0px;
    border-left: 10px solid rgba(0,0,0,0);
    border-right: 10px solid rgba(0,0,0,0);
    border-top: 10px solid #41aab8;
    border-bottom: 0px;
    display: block;
	border-width: 10px;
    bottom: -10px;
}
/*************** Banner Area ******************/
.banner-area{
	overflow:hidden;
	position:relative;
}
.banner-area:after{
	height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
	background-color: #1E6076;
    opacity: 1;
    mix-blend-mode: overlay;
	content:'';
	z-index:7;
}
.banner-area .swiper-container .image-container {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  transition: 10s ease-out;
  transform: scale(1.1);
  min-height:100vh;
}
.banner-area .swiper-container .swiper-slide.swiper-slide-active .image-container {
  transform: scale(1);
}
.banner-content-area{
	position:absolute;
	top:55%;
	transform:translateY(-50%);
	width:100%;
	z-index:9;
}
.banner-logo a img{
	width:27%;
}
.banner-logo{
	margin-bottom:30px;
}
.banner-content-area h1, .banner-content-area p{
	color: #FFFFFF;
    font-size: 18px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
	font-family: "Oswald", Sans-serif;
}
.banner-content-area a.common-button{
	margin-bottom:20px;
}
.social-listing{
	position:absolute;
	top:100px;
	right:15px;
	z-index:80;
}
.social-listing ul{
	list-style:none;
	margin:0px;
	padding:0px;
	text-align:center;
}
.social-listing ul li a{
	font-size:24px;
	color:#fff;
}
.social-listing ul li:not(:last-child){
	margin-bottom:10px;
}
.social-listing ul li img{
	width:100px;
}
/****************** End Banner Area ****************/

/****************** Services Area ****************/
.services-area{
	background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
	padding: 100px 85px 100px 85px;
	background-image:url('../images/pure-swan-logo-blue.png');
}
.each-service-wrapper{
	width: 100%;
    position: relative;
    display: flex;
	height:100%;
}
.each-service{
	/*padding: 30px;*/
	padding: 15px;
	display: flex;
	position: relative;
    width: 100%;
    flex-wrap: wrap;
	align-content: flex-start;
}
.each-service-content h2{
	letter-spacing: -2px;
	font-size: 62px;
	font-weight:300;
	margin-top: 20px;
	margin-bottom: 20px;
}
.each-service-content p strong{
	font-weight: 400;
}
.service-image img:hover{
	transform: scale(1.1);
}
.each-service-content {
	position: relative;
    z-index: 1;
}
.services-area .row .col-lg-3:nth-child(odd) .each-service{
	align-content: flex-end;
	align-items: flex-end;
}
.services-area .container-fluid .row{
	min-height:850px;
}

/****************** End Services Area ****************/

/****************** Gallery Parallax Area ****************/
.gallery-parallax-area{
	background-attachment: fixed;
	background-position: center right;
	background-color: #FFFFFF;
	margin-top: 100px;
	margin-bottom: 100px;
}
.gallery-each-box-wrapper{
	border-style: solid;
    border-width: 50px 50px 50px 50px;
    border-color: #FFFFFF;
	width: 100%;
    position: relative;
    display: flex;
	height:100%;
}
.gallery-inner-box{
	padding: 30px;
	display: flex;
	position: relative;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
}
.gallery-parallax-area .row .col-lg-4:nth-child(even) .gallery-inner-box{
	align-content: center;
    align-items: center;
}
.gallery-parallax-area .row .col-lg-4:nth-child(even) .gallery-each-box-wrapper{
	border:0px;
}
.gallery-content h2{
	color: #FFFFFF;
    font-family: "Oswald", Sans-serif;
    font-size: 85px;
    font-weight: 200;
    letter-spacing: 1px;
    text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
	margin-bottom:20px;
}
.gallery-content a, .middle-banner-content a, .doctor-content-inner a, .real-patients-heading-area a, .after-before-slider-wrapper a{
	min-width:auto;
	background-color: rgba(255, 255, 255, 0.55);
	width: 200px;
    height: 55px;
    border: 1px solid #1E6076;
	color:#1E6076;
	font-weight:300;
	/*line-height: 37px;*/
	line-height: 33px;
}
.gallery-parallax-area .row{
	min-height: 600px;
}
/****************** End Gallery Parallax Area ****************/

/***************** Middle Banner Area ****************/

.middle-banner-area{
	border-top:10px solid #41AAB8;
	border-bottom:10px solid #41AAB8;
	padding: 500px 100px 50px 100px;
}
.middle-banner-content{
	padding:25px;
}
.middle-banner-content h2{
	color: #FFFFFF;
    font-family: "Oswald", Sans-serif;
    font-size: 50px;
    font-weight: 200;
    letter-spacing: 10px;
    text-shadow: 2px 2px 10px #000000;
	margin-bottom:20px;
}
.middle-banner-content p{
    color: #FFFFFF;
	text-shadow: 1px 1px 1px black;
	margin-bottom:20px;
}
.middle-banner-content a{
	background-color: rgba(255, 255, 255, 0.85);
}

/***************** End Middle Banner Area ****************/
/***************** Doctor Area **************/
.doctor-area{
	padding: 100px 0px 0px 0px;
}
.doctor-area .doctor-wrapper{
	min-height: 800px;
	align-items: center;
	display:flex;
}
.doctor-image-area{
	background-position: top right;
    background-repeat: no-repeat;
	width: 100%;
    position: relative;
    display: flex;
	height:100%;
	background-size: cover;
}
.doctor-content-wrapper{
	background-color: rgba(118, 118, 118, 0.6);
	margin-top: 135px;
    margin-bottom: 0px;
    z-index: 2;
	width: 100%;
	position: relative;
}
.doctor-content-inner{
	padding: 50px 50px 0px 50px;
	position: relative;
    width: 100%;
}
.doctor-content-inner ul{
	margin:0px;
	list-style:none;
	padding:0px;
	margin-bottom:20px;
}
.doctor-content-inner ul li{
	font-family: 'Oxygen', sans-serif;
	font-weight:300;
	color: #1E6076;
	display: inline-block;
	width:100%
}
.doctor-content-inner ul li span{
	min-width: 36px;
    height: 36px;
}
.doctor-content-inner h2{
	color: #FFFFFF;
    font-size: 69px;
    font-weight: 200;
	margin-bottom: 15px;
}
.award-area ul{
	padding:0px;
	margin:0px;
	list-style:none;
	display:flex;
	flex-wrap:wrap;
}
.award-area{
	padding: 60px 30px 60px 30px;
}
.award-area ul li{
	width:10%;
}
.award-area ul li img{
	width:auto;
	max-height:47px;
}
.doctor-content-outer{
	margin-left:-152px;
	width: 100%;
    position: relative;
    display: flex;
}
.doctor-content-outer > div{
	padding:10px;
}
/***************** End Doctor Area **************/

/*************** Footer area **************/
.footer-area{
	background-color: #41AAB8;
	padding: 24px 0px;
}
.footer-content-wrapper ul{
	display:flex;
	align-items:center;
	justify-content:center;
	list-style:none;
	margin:0px;
	padding:0px;
	flex-wrap:wrap;
}
.footer-content-wrapper ul li{
	text-align: center;
    color: #FFFFFF;
    font-family: "Oswald", Sans-serif;
    font-size: 15px;
	padding:0px 10px;
	border-right:1px solid #fff;
}
.footer-content-wrapper ul li:last-child{
	border-right:0px;
}
.footer-content-wrapper ul li a{
	color:inherit;
}
/*************** End Footer area **************/

/*===============================contact-us page start=====================================*/
/****inner-banner-area****/
.inner-banner-area {
	position: relative;
	background-position: top;
}
.inner-banner-area::after {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #41AAB8;
    opacity: 0.77;
    mix-blend-mode: darken;
}
.inner-banner-content {
	padding: 240px 0 140px;
	position: relative;
	z-index: 1;
}
.inner-banner-content h1 {
	color: #FFFFFF;
    font-family: "Oswald", Sans-serif;
    font-size: 77px;
    font-weight: 200;
    text-transform: uppercase;
    text-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
}
.inner-banner-logo {
	width: 250px;
    margin: 0 auto;
    opacity: 0.2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/****contact-info-area****/
.contact-info-area {
	padding: 50px 0 0;
}
.contact-info-text h2 {
	color: #1E6076;
}
.each-contact-info h6 {
	color: #1E6076;
    font-size: 18px;
	font-weight: 700;
	font-family: "Oxygen", Sans-serif;
	margin-bottom: 10px;
}
.each-contact-info p {
	font-size: 18px;
	color: #1E6076;
}
.each-contact-info p a {
	color: #41AAB8;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-contact-info p a:hover {
	color: #1E6076;
}
/***map-area**/
.map-area {
	padding: 50px 0 100px;
	position: relative;
}
.map-area iframe {
	height: 400px;
	border:0px;
}
.map-area::after {
	content: '';
	height: 3px;
	width: 54%;
	background-color: #41aab8;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	bottom: 50px;
}
/***form-area***/
.form-area {
	padding: 150px 0 100px;
	position: relative;
}
.form-area::after {
	content: '';
	height: 100%;
	width: 100%;
	background-color: transparent;
    background-image: linear-gradient(180deg, #F7FEFF 8%, rgba(255, 255, 255, 0) 78%);
    opacity: 1;
	position: absolute;
	top: 0;
	left: 0;
}
.form-wrap {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.form-area h2 {
	color: #1E6076;
	letter-spacing: 5px;
}
.form-btm-info {
	margin-top: 100px;
}
.form-btm-info h3 {
	color: #FFFFFF;
    font-size: 24px;
	font-family: 'Oswald', sans-serif;
    font-weight: 200;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 5.5px;
    text-shadow: 1px 1px 10px #000000;
}
.form-btm-info h3 a {
	color: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.form-btm-info h3 a strong {
	font-weight: 200;
	font-size: 30px;
}
.form-btm-info h3 a:hover {
	color: #03c1b4;
}
/*===============================virtual-consultation page start=====================================*/
.consultation-sec {
	padding-top: 100px;
}
.consultation-sec h2 {
    font-weight: 300;
    padding-top: 20px !important;
    text-transform: uppercase;
}
.consultation-sec ul {
	padding-left: 25px;
}
.consultation-sec img.d-block {
	width: 235px;
}
/*===============================tour-practice page start=====================================*/
/****tour-sec***/
.tour-sec {
	
}
/***tour-info-area***/
.tour-info-area {
	padding: 170px 0;
	position: relative;
	background-attachment: fixed;
}
.tour-info-area::after {
	content: '';
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.31);
	position: absolute;
	left: 0;
	top: 0;
}
.tour-info-wrap { 
	padding: 60px 45px;
	background-color: rgba(255, 255, 255, 0.6);
	border: 1px solid #41AAB8;
	max-width: 705px;
	width: 100%;
	margin-left: auto;
	position: relative;
	z-index: 1;
}
.tour-info-wrap p {
	font-size: 28px;
	color: #1E6076;
}
.tour-info-wrap p a {
	color: #41aab8;
}
/***tour-map***/
.tour-map {
	margin: 90px -140px 60px;
}
.each-tour-map {
	height: 400px;
	border: 3px solid #41AAB8;
	border-radius: 3px;
	overflow: hidden;
}
/**tour-gallery***/
.tour-gallery {
	margin: 0 -155px 90px;
}
.each-gal {
	position: relative;
	margin: 15px;
	overflow: hidden;
}
.each-gal::after {
	content: '';
	height: 100%;
	width: 100%;
	background-color: rgba(65, 170, 184, 0.37);
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: all 0.8s;
	-webkit-transition: all 0.8s;
}
.each-gal:hover::after {
	opacity: 1;
}
/*=========================doctor-template page start===========================*/
.doctor-template-sec {
	overflow: hidden;
}
.doctor-top-area {
	background-color: #1E6076;
	margin: 80px -240px;
}
.doctor-top-text {
	padding: 75px 60px;
}
.doctor-top-text p {
	color: #FFFFFF;
    font-size: 18px;
    font-weight: 200;
}
.doctor-top-text p a {
	color: #B5D9DE;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.doctor-top-text p a:hover {
	color: #41aab8;
}
.doctor-top-img {
	height: 100%;
}
.doctor-top-img img {
	height: 100%;
	object-fit: cover;
}
/***doctor-education-area****/
.doctor-education-area { 
	background-color: #1E6076;
	padding: 90px 0;
}
.doctor-education-area  h2 {
	font-size: 70px;
	color: #fff;
	border-left: 6px solid #03C1B4;
	padding: 6px 20px;
}
.doctor-education-area p {
	color: #fff;
	font-size: 18px;
}
.doctor-education-area p strong {
	font-weight: 700;
}
.doctor-speech-video {
	padding: 50px;
}
.doctor-speech-video iframe {
	height: 670px;
}
.doctor-education-area ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.doctor-education-area li {
	height: 80px;
}
.doctor-education-area li img {
	width: 90px;
	height: 100%;
	object-fit: contain;
}
/***doctor-approach-area***/
.doctor-approach-area {
	padding: 90px 0;
}
.doctor-approach-area h2 {
	font-size: 70px;
	color: #1E6076;
	border-left: 6px solid #03C1B4;
	padding: 6px 20px;
}
.doctor-approach-area p {
	color: #1E6076;
    font-size: 18px;
}
.doctor-approach-area p strong {
	font-weight: 700;
}
.doctor-approach-wrap {
	padding: 50px;
	background-color: rgba(255, 255, 255, 0.85);
	max-width: 956px;
	width: 100%;
	margin-left: auto;
}
.doctor-approach-area .container {
	margin-right: 150px;
}
/****doctor-spec***/
.doctor-spec {
	padding: 90px 0;
}
.doctor-spec h2 {
	font-size: 70px;
	color: #1E6076;
	border-left: 6px solid #03C1B4;
	padding: 6px 20px;
}
.doctor-spec-left {
	background-color: #1E6076;
	padding: 25px;
}
.doctor-spec-right {
	background-color: #B2DDE9;
	padding: 25px;
}
.doctor-spec p {
	font-size: 18px;
	color: #fff;
}
.doctor-spec p strong {
	font-weight: 700;
}
.doctor-spec p a {
	color: #B5D9DE;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.doctor-spec p a:hover {
	color: #41aab8;
}
.doctor-spec-right p {
	color: #1E6076;
}
.doctor-spec-wrap {
	margin: 0 -240px;
}
.doctor-spec {
	background-color: #F3F3F3;
}
.doctor-spec ul {
	margin: 0;
	list-style-type: none;
	padding-left: 0;
}
.doctor-spec li {
	position: relative;
	font-family: "Oxygen", Sans-serif;
	font-weight: 300;
	color: #1E6076;
	font-size: 35px;
	padding-left: 60px;
	padding-bottom: 10px;
}
.doctor-spec li::after {
	background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 50px;
    height: 50px;
    background-image: url(../images/list.svg);
    background-repeat: no-repeat;
}
.doctor-spec h3 {
	font-family: 'Oswald', sans-serif;
	color: #1E6076;
    font-size: 25px;
    font-style: italic;
	font-weight: 300;
	margin-bottom: 20px;
}
.doctor-spec-divider hr {
	background-color: #41aab8;
	width: 70%;
	margin: 30px 0;
}
.doctor-spec-divider-wrap {
	margin: 0 -240px;
}
.doctor-spec-specialze {
	background-color: #fff;
}
/***testimonial-area***/
.testimonial-area {
	padding: 90px 0;
	background-attachment: fixed;
	margin-bottom: 70px;
}
.testimonial-area h2 {
	color: #1E6076;
    font-size: 70px;
	font-family: 'Oswald', sans-serif;
	text-align: center;
}
.testimonial-wrap {
	background-color: rgba(255, 255, 255, 0.85);
	padding: 50px;
	max-width: 690px;
	width: 100%;
}
.testimonial-text-box {
	background-color: #FFFFFF;
    border-radius: 5px;
    padding: 25px 25px 25px 25px;
}
.testimonial-text-box p {
	color: #1E6076;
    font-size: 18px;
	font-family: "Oxygen", Sans-serif;
	font-style: italic;
	line-height: 1.5;
	text-transform: uppercase;
}
.testimonial-text-box h5 {
	color: #1B1B1B;
    font-size: 18px;	
	font-family: 'Oswald', sans-serif;
}
.testimonial-wrap .swiper-pagination  {
	position: initial;
	margin: 20px 0 30px;
}
.testimonial-wrap .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	margin: 0 6px;
}
.testimonial-wrap .swiper-pagination-bullet-active {
	background-color: #1E6076;
}
.testimonial-more-box {
	background-color: rgba(3, 193, 180, 0.08);
	padding: 20px;
	text-align: center;
}
.testimonial-more-box h3 {
	color: #1E6076;
    font-family: "Oswald", Sans-serif;
    font-size: 25px;
    font-weight: 200;
}
.testimonial-more-box p {
	color: #1E6076;
	font-size: 18px;
}
.testimonial-more-box p a {
	color: #03C1B4;
}
/*=========================our-staff page start===========================*/
.staff-wrap {
	margin: 0 -260px;
	padding: 30px 0;
}
.each-staff {
	padding: 30px;
}
.each-staff-name {
	padding: 10px 5px;
	background-color: #1e6076;
}
.each-staff-deg {
	padding: 10px 5px;
	background-color: #41aab8;
}
.each-staff h3 {
	color: #FFFFFF;
    font-family: "Oswald", Sans-serif;
    font-size: 20px;
    font-weight: 200;
	margin: 0;
}
/*=========================news-press page start===========================*/
.news-wrap {
	padding: 90px 0;
	position: relative;
}
.news-wrap h2 {
	text-align: center;
	color: #41aab8;
	font-family: 'Oswald', sans-serif;
	margin-bottom: 20px;
	font-size: 35px;
	line-height: 1.5;
	margin-bottom: 30px;
}
.each-news {
	margin: 15px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-news:hover {
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
	-webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
}
.news-dtl {
	padding: 30px 20px 20px;
	text-align: center;
}
.news-dtl h5 {
	font-size: 1.25rem;
	font-weight: 300;
	font-family: "Oxygen", Sans-serif;
	text-transform: capitalize;
	color: #000;
	margin-bottom: 20px;
}
.news-dtl p {
	margin-bottom: 0;
}
.news-wrap .common-arrow {
	width: 36px;
	height: 36px;
	background-color: #41aab8;
	border-radius: 100%;
}
.news-wrap .common-arrow i {
	color: #fff;
}
.news-wrap .swiper-button-next {
	right: -30px;
}
.news-wrap .swiper-button-prev {
	left: -30px;
}
.press-slider {
	padding-bottom: 0;
}
/*=========================resource page start===========================*/
.resource-sec {

}
.resource-wrap {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	padding-top: 70px;
}
.resource-wrap h2 {
	text-align: center;
	margin: 90px 0 40px;
}
.resource-wrap h3 {
	text-align: center;
}
.resource-wrap p {
	line-height: 35px;
}
.resource-wrap p a {
	color: #41aab8;
}
/*.resource-wrap .common-button {
	display: table;
	margin: 25px auto 0;
	border: 3px solid #1E6076;
	color: #1E6076;
	background-color: #fff;
	letter-spacing: normal;
	font-weight: 300;
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
	-webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
}
.resource-wrap .common-button:hover {
	color: #FFFFFF;
    background-color: #1E6076;
	border-color: #FFFFFF;
}*/
/***finance-option****/
.finance-option {
	margin: 0 -30px;
}
.finance-option strong h2 {
	font-weight: 600;
}
.each-finance-option  {
	margin-top: 90px;
}
.each-finance-option h2 {
	margin-top: 0;
}
.each-finance-img {
	height: 95px;
}
.each-finance-img img {
	width: 280px;
    height: 100%;
    object-fit: contain;
}
/**hotel-area****/
.hotel-area {

}
.hotel-area .row {
	margin-top: 40px;
}
.hotel-area p {
	text-align: center;
}
.each-hotel {
	margin-bottom: 50px;
}
.hotel-dtl h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	margin-top: 25px;
}
.hotel-dtl h3 a {
	color: #41AAB8;
}
.hotel-dtl p {
	margin-bottom: 0;
}
.hotel-dtl p a, .resource-sec p a {
	color: #41AAB8;
}
.hotel-dtl p a:hover, .resource-sec p a:hover {
	color: #7F7F7F;
}
.hotel-dtl h5 {
	/*font-family: 'Oswald', sans-serif;*/
	font-family: "Oxygen", Sans-serif;
	font-weight: bold;
	font-size: 1.25rem;
}
.hotel-dtl h5 a, .resource-sec h5 a {
	color: #41AAB8;
}
.hotel-dtl h5 a:hover, .resource-sec h5 a:hover {
	color: #7F7F7F;
}
/* %%%%%%%%%%%%%%%%%%%%%%%% Procedure overview %%%%%%%%%%%%%% */
.peels-area {
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
	margin-top: 100px;
    margin-bottom: 100px;
	border-right: 30px solid #41AAB8;
}
.peels-image {
    height: 100%;
    width: 34%;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.peels-image img {
    width: 100%;
}
.peels-text ul li a span {
    min-width: 36px;
    margin-top: -12px;
    margin-right: 6px;
}
.peels-text{
	padding: 60px 35px 60px 85px;
    background-color: #ffffffdb;
}
.peels-text ul{
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.peels-text ul li{
	margin-bottom: 19px;
}
.peels-text ul li a{
	font-family: "Oswald", Sans-serif;
    font-size: 36px;
    font-weight: 200;
    letter-spacing: 0.3px;
	color: #41AAB8;
	text-transform: uppercase;
}
/* %%%%%%%%%%%%%%%%%%%%%%%%%% Service area %%%%%%%%%%%%%%% */
.service-area h2{
	font-size: 32px;
	line-height: 1.2;
	margin-bottom: 11px;
	padding-top: 20px;	
}
.service-area p{
	font-size: 16px;
    line-height: 35px;
	margin-bottom: 8px;	
}
.service-area p strong{
	font-weight: bold;
}
.service-area p a{
	color: #41AAB8;
}
.service-look-area {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
	margin-top: 100px;
    margin-bottom: 100px;
	border-right: 20px solid #41AAB8;
}
.service-look-image {
    height: 100%;
    width: 50%;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.service-look-image img {
    width: 100%;
}
.service-look-text h2,
.service-result-text h2{
	font-size: 32px;
	line-height: 1.2;
	margin-bottom: 11px;
	padding-top: 20px;
}
.service-look-text p,
.service-result-text p{
	font-size: 16px;
    line-height: 35px;
	margin-bottom: 8px;
}
.service-look-text p strong,
.service-result-text p strong{
	font-weight: bold;
}
.service-look-text p a,
.service-result-text p a{
	color: #41AAB8;
}
.service-look-text{
	padding: 60px 0px 60px 85px;
    background-color: #ffffffdb;
    margin-left: 52px;
}
.service-result-text{
	padding: 60px 30px 60px 5px;
    background-color: #ffffffdb;	
}
/* ***************** service result *********** */
.service-result-area {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
	margin-top: 100px;
    margin-bottom: 100px;
	border-left: 20px solid #41AAB8;
}
.service-result-image {
    height: 100%;
    width: 40%;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.service-result-image img {
    width: 100%;
}
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% gallery overview %%%%%%%%%%%%%%% */
.gallery-overview-wrapper{
	padding-top: 40px;
}
.gallery-overview-each{
	margin-bottom: 20px;
}
.gallery-overview-each h3{
	font-size: 32px;
	font-weight: 500;
    line-height: 1.2;
	color: #41AAB8f8;
	margin-bottom: 8px;
}
.gallery-overview-each ul{
	list-style: none;
	padding: 0px;
	margin: 0px;
}
.gallery-overview-each ul li{
	margin-bottom: 8px;
}
.gallery-overview-each ul li a{
	font-size: 18px;
    font-weight: 400;
	line-height: 1.2;
	color: #000;
}
.gallery-overview-each ul li a:hover{
	color: #41AAB8;
    text-decoration: underline;
}
.gallery-category-wrapper{
	padding-top: 100px;
	padding-bottom: 70px;
}
.gallery-category-each{
	margin-bottom: 30px;
}
.gallery-category-each img{
	margin-bottom: 10px;
}
.gallery-category-each h3{
	font-family: "Oswald", Sans-serif;
    font-size: 24px;
    font-weight: 300;
	line-height: 1.2;
	color: #B5D9DE;
	margin-bottom: 10px;
}
.gallery-category-each a{
    font-family: "Oswald", Sans-serif;
    font-size: 16px;
    font-weight: 300;
	color: #41AAB8;
}
.gallery-case-wrapper{
	padding-top: 10px;
}
.blog-post-buttom-area {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.blog-post-buttom-area .back-button {
    padding: 9px 16px 9px 16px;
	background-color: #41AAB8;
	margin-right: 10px;
}
.blog-post-buttom-area .back-button a {
	font-family: 'Oxygen', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}
.blog-post-buttom-area .back-button a span i{
	margin-right: 10px;
}
.blog-post-buttom-area .next-button {
	background-color: #41AAB8;
    padding: 9px 16px 9px 16px;
}
.blog-post-buttom-area .next-button a {
	font-family: 'Oxygen', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}
.blog-post-buttom-area .next-button a span i{
	margin-left: 5px;
}
.gallery-case-each{
	margin-bottom: 10px;
}
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%% Gallery Banner %%%%%%%%%%%%%% */
.gallery-banner-content h1{
	text-align: left;
	font-size: 54px;
	font-weight: 300;
}
.gallery-banner-content h2{
	text-align: left;
	font-size: 32px;
	padding: 0;
    margin: 0;
    line-height: 1;
	color: #fff;
}
/* %%%%%%%%%%%%%%%%%%%%%%%%% blog overview %%%%%%%%%%%% */
.blog-overview-wrapper .row .col-lg-4{
	margin-bottom: 35px;
}
.blog-over-each{
	text-align: center;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
	border-radius: 5px;
	min-height: 100%;
	position: relative;
}
.blog-over-each:hover{
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 15%);
}
.blog-overview-wrapper h2{
	color: rgb(65, 170, 184);
    width: 100%;
    font-family: Oswald, sans-serif;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    display: block;
	font-weight: 400;
    margin: 60px 0 40px;
}
.blog-over-text{
	padding: 30px;
	padding-bottom: 20px;
}
.blog-over-text h3{
	margin-top: 0px;
	font-family: 'Oswald', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    color: rgb(181, 217, 222);
    font-size: 21px;
	margin-bottom: 30px;
}
.blog-over-text p{
    margin: 0 0 20px 0;
	color: rgb(119, 119, 119);
    font-family: Oxygen, sans-serif;
    font-size: 14px!important;
    font-weight: 300;
    line-height: 21px;
}
.blog-over-text a{
	text-decoration: none;
    color: #767676;
    font-family: Oswald, sans-serif;
    font-size: 12px!important;
    font-weight: 300;
}
.blog-over-date{
	padding: 15px 30px;
    border-top: 1px solid #eaeaea;
}
.blog-over-date h6{
	font-family: "Oswald", Sans-serif;
    font-weight: 300;
    line-height: 1.3em;
    font-size: 12px;
    color: #adadad;
}
.blog-over-image img{
	border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
/* ******************** Pagination *********** */
.pegination-area {
    margin: 0 auto 70px;
}
.pegination-area .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pegination-area .pagination ul li {
    display: inline-block;
    font-family: Oswald, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgb(51,51,51);
    margin: 0px 10px;
}
.pegination-area .pagination ul li a, .pegination-area .pagination a {
    color: rgb(204, 51, 102);
}
/* %%%%%%%%%%%%%%%%%%%%%%%%% Blog post %%%%%%%%%%%%%%%%% */
.blog-post-wrapper{
	margin-bottom: 100px;
}
.blog-post-top-image{
	margin-top: -50px;
	text-align: center;
    position: relative;
}
.blog-post-wrapper h1{
	font-family: "Oswald", Sans-serif;
    font-size: 68px;
    font-weight: 200;
    color: rgb(65, 170, 184);
    margin-top: 40px;
    padding-bottom: 20px;
}
.blog-post-wrapper p{
	color: rgb(122, 122, 122);
    display: block;
    font-family: Oxygen, sans-serif;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 0.9rem;
}
.blog-post-area .answer-area {
    margin: 35px 0 35px;
}
.blog-post-arrow-area{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
    padding-top: 20px;
}
.blog-post-arrow-area a{
	color:inherit;
}
.blog-post-arrow-left{
	position: relative;
}
.blog-post-arrow-left h5{
	font-family: 'Oswald', sans-serif;
	color:#7a7a7a;
	font-size: 18px;
    text-transform: uppercase;
	margin-bottom: 15px;
	cursor: pointer;
}
.blog-post-arrow-left h6{
	color: #41AAB8;
    font-family: "Oswald", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
	cursor: pointer;
}
.blog-post-arrow-left i{
	position: absolute;
    left: -16px;
    top: 22px;
	cursor: pointer;
}
.blog-post-arrow-right{
	position: relative;
}
.blog-post-arrow-right h5{
	font-family: 'Oswald', sans-serif;
	color:#7a7a7a;
	font-size: 18px;
    text-transform: uppercase;
	margin-bottom: 15px;
	cursor: pointer;
}
.blog-post-arrow-right h6{
	color: #41AAB8;
    font-family: "Oswald", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
	cursor: pointer;
}
.blog-post-arrow-right i{
	position: absolute;
    right: -16px;
    top: 22px;	
	cursor: pointer;
}
.blog-overview-wrapper .row .col-lg-3 {
    margin-bottom: 35px;
}
.blog-inner-banner-area .inner-banner-content{
	padding: 150px 0 40px;
}
/* %%%%%%%%%%%%%%%%%%%%%%%%%% new %%%%%%%%%%%%%%%%% */
.new-team-text{
	background-color: #41aab8;
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	border-left: 15px solid #1E6076;
	padding: 24px;
}
.new-team-text h2{
	color: #fff;
	font-size: 35px;
	margin-bottom: 36px;
}
.new-team-text .common-button{
	margin-top: 10px;
}
.new-team-text h4{
    font-family: "Oxygen", Sans-serif;
    font-family: Oxygen, sans-serif;
    font-size: 16px;
    font-weight: 300;
	margin-bottom: 40px;
}
.new-team-text p, .new-team-text h4{
	color:#1E6076
}
.new-team-area, .pure-vidio-area{
	margin-top: 50px;
	margin-bottom: 50px;
}
.pure-vidio-area{
	padding-top: 65px;
	padding-bottom: 65px;
	background-attachment: fixed;
	margin-top: 85px;
}
.pure-vidio-left iframe{
	min-height: 420px;
}
.pure-vidio-wrapper{
	background-color: rgb(27, 27, 27, 50%);
	padding:30px;
}
/****answer-area***/
.answer-area {
	background-color: #41AAB8;
	padding: 30px;
	margin: 50px 0 100px;
	border-style: solid;
    border-width: 20px 20px 0px 0px;
    border-color: #61D2E2;
    box-shadow: -20px 20px 0px 0px #03c1b4;
}
.answer-area h2 {
	color: #fff;
	font-weight: 200;
    letter-spacing: 10px;
}
.answer-area p {
	color: #fff;
}
.answer-area p a {
	color: #B5D9DE;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.answer-area p a:hover {
	color: #fff;
}
.answer-area .common-button {
	margin: 20px 0 30px;
}
.answer-area h2, .gallery-content h2, .middle-banner-content h2, .real-patients-heading-area h2{
	font-size:50px;
}
/**************** Real Stories Area ***************/
.real-stories-area{
	background-attachment: fixed;
	padding: 100px 50px 0px 100px;
	position:relative;
}
.real-stories-area:after {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color:rgba(65, 170, 184, 0.45 );
    opacity: 1;
    content: '';
    z-index: 1;
}
.real-stories-area .container{
	max-width: 1400px;
}
.real-stories-area .container .row{
	min-height: 450px;
}
.real-patients-heading-area h2{
	color: #1E6076;
    font-family: "Oswald", Sans-serif;
    font-size: 75px;
    font-weight: 200;
    text-transform: uppercase;
    line-height: 1.1em;
    letter-spacing: 5px;
	margin-bottom: 20px;
}
.real-stories-area .container{
	position:relative;
	z-index:2;
}
.each-comment p{
	color: #1E6076;
    font-size: 18px;
}
.real-patient-slider{
	max-width:549px;
	margin-left:auto;
	padding-left:30px;
	width:calc(100% - 122px);
}
.real-patient-text-area{
	position:relative;
	display:flex;
	align-items: center;;
	height:100%;
}
.inverted-icon{
	min-width: 122px;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
	height:100%;
}
.after-before-slider-wrapper{
	margin:20px auto;
}
.after-before-slider-wrapper a.common-button{
	margin-top:20px;
}

/**************** End Real Stories Area ***************/


.wp-block-button .wp-block-button__link, .gform_wrapper .common-button {
	margin: 25px auto 0;
	border: 3px solid #1E6076;
	color: #1E6076;
	background-color: #fff;
	letter-spacing: normal;
	font-weight: 300;
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
	-webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
	border-radius: 0px;
}
.gform_wrapper .common-button{
	letter-spacing: 1.5px;
}
.wp-block-button .wp-block-button__link:hover, .gform_wrapper .common-button:hover {
	color: #FFFFFF;
    background-color: #1E6076;
	border-color: #FFFFFF;
}
.resource-sec h3 + p + h5{
	margin-top:-10px;
}
.bbb-button-wrapper{
	margin-top:50px;
	margin-bottom:50px;
}

.gform_wrapper ul.gform_fields li.gfield select{
	height: 38px;
    margin-top: 12px;
}
.gform_wrapper {
	font-family: "Oswald", Sans-serif;
    color: #000;
	letter-spacing: 1px;
}
.gform_wrapper .gfield label.gfield_label{
	font-weight:500;
}
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>") no-repeat;
	background-position: right 10px top 60%;
	padding-right: 30px !important;
}
.pointer-none{
	pointer-events: none;
}

/* %%%%%%%%%%%%%%%%%%%%%%%%% Check-us-out %%%%%%%%%%%%%%%%%% */
.check-social-each{
	position: relative;
	overflow: hidden;
	height: 500px;
	border: 3px solid rgba(30, 96, 118, 0.68);
    box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.5);
	margin-bottom: 70px;
}
.check-social-each:last-child{
	margin-bottom: 0px;
}
.check-social-each img{
	width: 100%;
}
.check-social-each-up-area{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 100%;
	transition: all 0.35s;
}
.check-social-each:hover .check-social-each-up-area{
	top: 0%;	
	transition: all 0.35s;
}
.check-social-each-up-area:after{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	content: '';
	background-color: rgba(243, 243, 243, 0.38);
}
.check-social-each{
	position: relative;
}
.check-social-each .check-logo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.check-logo{
	width: 150px;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
    background-color: rgba(65, 170, 184, 0.63);
	border-radius: 50%;
}
.check-logo i{
	font-size: 75px;
	color: #fff;
}
.check-social-each-up-area .common-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 3;
	color: #F7FEFF;
    background-color: #41AAB8;
    border-width: 1px;
    border-radius: 5px;
	border: 2px solid #fff;
	padding: 8px 15px;
    height: 47px;
	letter-spacing: 1px;
    min-width: fit-content;
	border: 2px solid #fff;
}
.check-us-top{
	padding-top: 100px;
	padding-bottom: 120px;
	text-align: center;
}
.check-us-top h2{
	color: #1E6076;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.check-us-top h2:after {
    width: 175px;
    height: 1px;
    background: #41aab8;
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
	transform: translateX(-50%);
}
.check-us-top p{
    font-size: 18px;
	color: #1E6076;
}
.check-us-out-area{
    background-color: #F3F3F3;
    background-image: url('../images/pure-plastic-surgery-fav.png');
    background-size: 10% auto;
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
	padding-bottom: 127px;
	background-attachment: fixed;
}
.check-out-area .gallery-parallax-area {
    margin-top: 50px;
}
.wp-block-embed-vimeo iframe, .video-border iframe{
	border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #1e6076'
}
.resource-wrap .page-content-start + h2{
	margin-top:0px;
}

/* %%%%%%%%%%%%%%%%%%%%%%%% Faqs %%%%%%%%%%%%%%% */
.faqs-list-each-wrapper{
	max-width: 960px;
	margin: 0 auto;
}
.ques-item {
    background-image: url(../images/shutterstock_524315620-2.jpg);
    height: 280px;
    width: 100%;
    position: relative;
    text-align: center;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: auto;
    display: inline-block;
    /* margin: 20px 1.5%; */
	margin-bottom: 40px;
    vertical-align: top;
}
.ques {
    background: rgba(65, 170, 184, 0.77);
    min-height: 280px;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    padding: 35px;
    color: #fff;
}
.ans {
    background: #41AAB8;
    min-height: 280px;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    padding: 35px;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    position: absolute;
    z-index: 1;
    top: 0;
}
.ques h3, .ans h3 {
    color: #fff;
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
}
.ques p, .ans p {
    color: #fff;
	line-height: 35px;
}
.ans p{
	line-height: 25px;
}

.ques-item:hover .ans {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.5s linear;
}
.faqs-list-each h2{
	font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: #41AAB8;
	text-transform: uppercase;
}
.faqs-list-each{
	margin-bottom: 10px;
}
.faqs-list-vidio iframe{
	height: 450px;
}
.faqs-list-vidio{
	margin-top: 30px;
	margin-bottom: 55px;
}
/* %%%%%%%%%%%%%%%%%%%%%%%%%%% Submit Review %%%%%%%%%%%%% */
.submit-review-top{
	padding-top: 100px;
	padding-bottom: 100px;
}
.submit-review-top h4{
	font-size: 35px;
    letter-spacing: 1.8px;
	color: #41aab8;
	text-align: center;
	font-family: 'Oswald', sans-serif;
}
.submit-review-each{
	border: 2px solid #41AAB8;
	position: relative;
	margin-bottom: 65px;
	background-image: url('../images/pure-plastic-surgery-miami-lead.jpg');
}
.submit-review-each:after{
	background-color: #FFFFFF;
    opacity: 0.95;
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
}
.submit-review-each-wrap{
	position: relative;
	padding: 60px 40px 60px 40px;
	z-index: 1;
	text-align: center;
}
.submit-review-each-wrap img{
	width: 200px;
	margin-bottom: 30px;
}
.submit-review-each-wrap .common-button{
	font-size: 18px;
	background-color: #41AAB8;
	font-weight: 300;
	padding: 15px 73px;
    min-width: fit-content;
    width: fit-content;
    margin: 0 auto;
	height: 100%;
	border-radius: 5px;
	margin-bottom: 35px;
}
.submit-review-each-wrap .common-button i{
	margin-right: 5px;
}
.submit-review-each-wrap .common-button:hover{
	background-color: #fff;
	color: #74A9B9;
	border: 1px solid #41AAB8;
}
.submit-review-each-wrap p{
   text-align: left;	
   font-size: 18px;
   font-weight: 400;
   line-height: 35px;
   color: #1E6076;
}
.submit-review-wrapper{
	padding-bottom: 40px;
}
.submit-review-wrapper .row{
	margin-right: -35px;
    margin-left: -35px;
}
.submit-review-wrapper .row .col-lg-6{
	padding-right: 35px;
    padding-left: 35px;
}
.addtoany_content{
	color: rgb(65, 170, 184);
    display: flex;
    font-family: "Oswald", Sans-serif;
    font-weight: 300;
    font-size: 20px;
}
.addtoany_content .addtoany_header{
	margin: 0 0 16px;
    padding-top: 3px;
    padding-right: 20px;
}
.html-body-scroll-lock{
	overflow: visible !important;
    width: auto;
}
.html-body-scroll-lock body {
    overflow: hidden !important;
}
body .rmp-container{
	background-color: #41aab8 !important;
}
body .rmp-container .rmp-menu-wrap{
	padding-left: 10% !important;
	padding-right: 10% !important;
	padding-bottom: 75px !important;
}
body .rmp-container .rmp-menu-item-link{
	color: #ffffff !important;
}
body .rmp-container .menu-item img{
	display:none !important;
}
body .rmp-container .contact-us-menu .sub-menu.contact-menu-content-section{
	display:none !important;
}
body .rmp-container .menu-image-title.menu-image-title-below, .menu-image-title-below{
	text-align:left !important;
}
.blog-post-buttom-area{ margin-bottom:30px;}
.back-button, .next-button{opacity:0} 
.back-button:has(a), .next-button:has(a){opacity:1}

.doctor-approach-area {
    background-attachment: fixed;
}
.mobile-view{
	display:none;
}
.desktop-view{
	display:block;
}
@media (max-width:767px){
	.mobile-view{
		display:block;
	}
	.desktop-view{
		display:none;
	}
}
.phone-message-icon a {
    font-size: 32px;
	color: #fff;
}
a.phone-icon {
    padding-right: 20px;
}



/****** Single related post ******/ 
	.more-about-blog-area.new-single-post h2 {
    color: #41AAB8;
    font-family: "Oswald", Sans-serif;
    font-size: 24px;
    font-weight: 200;
    text-transform: uppercase;
    line-height: 1.2em;
}
	.more-about-blog-area .blog-over-text a h3 {
    color: #41AAB8;
}
	.more-about-blog-area.new-single-post {
    margin-top: 100px;
}
	.more-about-blog-area .blog-over-image img {
    min-height: 170px;
}
	.blog-post-top-image {
    padding: 205px;
    background-size: cover;
    background-position: center;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
	/****** Blog page ******/ 
	/*  .blog-over-image img {
   min-height: 233px; 
} */
	 /****** Doctor's page ******/ 
	.doctor-education-area p {
    line-height: 2;
}
	.doctor-top-area p {
	line-height: 2;
}
	 /****** Mobile Inner Banner ******/ 
	@media(max-width:767px){
	.inner-banner-content {
    padding: 145px 0 91px;
    position: relative;
    z-index: 1;
}
	}
	/****** inner page li ******/ 
	.resource-sec ul li:before {
    font-family: 'Font Awesome 5 Free';
    content: '\f058';
    margin: 0 5px 0 -15px;
    color: #46acba;
}
	section.resource-sec ul li {
    list-style: none;
}
section.resource-sec ul li {
    line-height: 2;
}

#input_6_24 {
	width: 100%;
}
#gform_wrapper_6 input {
	margin-top: 12px;
}

/********Header Banner***********/
.join-fb-btn a {
    color: #fff !important;
}
.join-fb-btn {
    margin-top: 86px;
}
.blog-over-image {
    width: 100%;
    height: 215px;
}
/* .blog-over-image {
    background-image: url(/wp-content/uploads/2022/11/Rectangle-blog-post.jpg);
} */
#inline-EaDS1h1Qz19mnco2f7Xi {
	min-height: 1000px;
}