header.header {
    position: fixed;
    background: #fff;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.05));
	padding:10px 0;
	top: 0;
    left: 0;
    right: 0;
	height: 100px;
	z-index: 99;
}
header.header .container{
	max-width:1366px;
}
header.header::before {
    position: absolute;
    content: "";
    z-index: 9;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../img/half-circle.png);
    width: 350px;
    height: 143px;
    background-size: 350px;
    background-repeat: no-repeat;
}
header.small-header {
    z-index: 9999;
}

a.logo {
    position: relative;
    z-index: 9;
    width: 26%;
    text-align: center;
}
a.logo img {
    display: block;
    margin: 0 auto;
}
nav#navbar {
    width: 37%;
}
.right-header {
    width: 37%;
}

.inner-right-header {
    width: 100%;
    display: inline-flex;
    align-items: center;
	justify-content: end;
}
main#main {
    margin-top: 100px;
}
/*=========== Navigation CSS ===========*/
.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}
.navbar li {
    position: relative;
    padding-right: 30px;
}
.navbar li:last-child {
    position: relative;
    padding-right: 0px;
}
.navbar a, .navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 10px;
	font-size: 16px;
	font-weight: 600;
	color: #000;
	white-space: nowrap;
	transition: 0.3s;
}
.navbar a:hover, .navbar .active a, .navbar .active:focus, .navbar li:hover > a {
	color: #0BB3CD;
}
.navbar .getstarted, .navbar .getstarted:focus {
	background: #0BB3CD;
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 4px;
	color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
	color: var(--color-white);
	background: rgba(var(--color-primary-rgb), 0.8);
}
.navbar .dropdown ul {
	display: block;
	left: 0px;
	top: 100%;
	margin: 0;
	padding: 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background:#C0F3FB;
	transition: 0.3s;
	border:none;
	border-radius:0;
}
.navbar .dropdown ul li {
    min-width: 200px;
    padding-right: 0;
	border-bottom:1px solid rgba(0,0,0,0.05);
}
.navbar .dropdown ul li:last-child{
	border-bottom:none;
}
.navbar .dropdown ul a {
    padding: 10px 15px;
    font-size: 15px;
    text-transform: none;
    display: block;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
	background: #0BB3CD;
	color:#fff;
}
.navbar .dropdown:hover > ul {
	opacity: 1;
	visibility: visible;
}
.navbar .dropdown .dropdown ul {
	top: 0;
	left: 100%;
	visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}
.dropdown-menu .dropdown > a:after {
    position: absolute;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: aliceblue;
    border-left: 0.3em solid transparent;
    right: 5px;
    top: 50%;
    transform: translateX(-50%) rotate(-90deg);
}

.language-box {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    position: relative;
    margin-left: 17px;
    display: block;
    width: 65px;
    padding-right: 15px;
}
.language-box span {
    position: relative;
    text-align: center;
    display: block;
}
.language-box::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    right: -5px;
    top: 10px;
}
.language-box::before {
    position: absolute;
    content: "";
    background-image: url(../img/language-drop.png);
    width: 55px;
    height: 62px;
    left: 2px;
    right: 0;
    top: -25px;
    background-position: center;
    background-size: 55px;
    background-repeat: no-repeat;
}
.search-form {
    position: relative;
    max-width: 280px;
    width: 100%;
    margin-right: 30px;
}
.search-form .form-control {
    border: 1px solid #CFCFCF;
    border-radius: 0;
    padding: 12px 12px;
    height: auto;
    line-height: normal;
	background: #fff;
}
.search-form .form-control::-webkit-input-placeholder { /* Edge */
	color: #DEDEDE;
}
.search-form .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #DEDEDE;
}
.search-form .form-control::placeholder {
	color: #DEDEDE;
}
.search-form .btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    line-height: normal;
    width: 40px;
    background-image: url(../img/search-icon.png);
    background-size: 18px;
    font-size: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
	border: none;
}
.cart {
    position: relative;
}
.cart span {
    position: absolute;
    background: rgb(0, 113, 187);
    width: 18px;
    text-align: center;
    height: 18px;
    border-radius: 100%;
    line-height: 18px;
    color: #fff;
    right: -2px;
    z-index: 9;
    font-size: 10px;
    top: -2px;
}
.cart svg, .cart img {
    width: 34px;
    height: 34px;
}
.cart svg path:last-child, .cart svg path:nth-child(5){
	display:none;
}

.home-banner {
    position: relative;
    overflow: hidden;
	padding-top: 90px;
}
.home-banner::before {
    position: absolute;
    content: "";
    left: -100px;
    border-top-left-radius: 180px;
    border-top-right-radius: 180px;
    height: 90px;
    width: 180px;
    background: #D9E026;
    bottom: 120px;
}
.home-banner::after {
    position: absolute;
    content: "";
    right: 0px;
    background-image: url(../img/border-circle-b.png);
    height: 100px;
    width: 90px;
    top: 50%;
    transform: translateY(-50%);
    background-size: 90px;
    background-repeat: no-repeat;
    background-position: center;
}
.home-banner .banner-img {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}
.home-banner .banner-img::before, .home-banner .banner-img::after {
	position: absolute;
    content: "";
}
.home-banner .banner-img::before {
    left: 0;
    right: 0;
    height: 380px;
    bottom: 0;
    background: #F6F7D3;
}
.home-banner .banner-img::after {
    background-image: url(../img/banner-drop.png);
    background-size: 120px;
    height: 148px;
    width: 120px;
    left: 100px;
    top: -30px;
    background-repeat: no-repeat;
}
.home-banner .banner-img img {
    position: relative;
    display: block;
    padding: 0 22px 22px 42px;
}
.home-banner .banner-title {
    font-size: 77px;
    line-height: 0.9;
    max-width: 380px;
}
.home-banner .banner-des{
	font-style: italic;
	font-weight: 500;
	font-size: 24px;
	line-height: 38px;
}
.home-banner .video-wrap {
    position: absolute;
    left: 35px;
    bottom: 22px;
    height: 370px;
    right: 0;
}
.home-banner .video-wrap::before{
	position: absolute;
    content: "";
	background-image: url(../img/banner-shape.png);
    background-size: 110px;
    height: 370px;
    width: 110px;
    left: -8px;
    bottom: 0px;
}
.home-banner .video-wrap::after{
	position: absolute;
    content: "";
	background-image: url(../img/banner-sec.png);
    background-size: 100px;
    height: 98px;
    width: 100px;
    right: -5px;
    bottom: 70px;
}

.home-banner .video-wrap a {
    position: absolute;
    z-index: 9;
    top: 78px;
    left: 56px;
    width: 100px;
    height: 100px;
}
.home-banner .video-wrap a svg, .home-banner .video-wrap a img{
	width: 100px;
    height: 100px;
	position: relative;
	fill:rgba(255, 255, 255, 0.48);
}
.home-banner .video-wrap a svg path{
	fill:rgba(255, 255, 255, 0.48);
}
.home-banner .video-wrap a:hover svg, .home-banner .video-wrap a:hover svg path{
	fill:#fff;
}

.treatments-section {
    position: relative;
}
.treatments-section .sec-heading .heading{
    max-width: 650px;
    margin: 0 auto;
}
.treatments-section::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    height: 94%;
    background: #F6F7D3;
    border-radius: 0 0 700px 700px;
}
.treatments-section::after {
    background-image: url(../img/treatments-drop-sec.png);
    position: absolute;
    content: "";
    left: 0;
    height: 90px;
    width: 160px;
    top: 60%;
    background-size: 160px;
    background-repeat: no-repeat;
}
.treatments-section .container::after {
    position: absolute;
    content: "";
    right: 70px;
    border-bottom-right-radius: 150px;
    border-top-right-radius: 150px;
    height: 150px;
    width: 85px;
    background: #21B577;
    top: 50%;
}
.treatments-section .sec-heading .heading::before {
    position: absolute;
    content: "";
    background-image: url(../img/treatments-title-s.png);
    background-size: 125px;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    right: 0;
    top: -15px;
    height: 136px;
    width: 136px;
    margin: 0 auto;
}
.treatments-section .sec-heading .heading span{
	position:relative;
}
.treatments-section .sec-heading .description{
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
	margin-top:17px;
}
.treatments-lists .item{
	margin-top:35px;
}
.treatments-lists .treatments-box .icon-box, .treatments-lists .treatments-box .icon-box img{
	position:relative;
}
.treatments-lists .item:first-child .treatments-box .icon-box::before, .treatments-lists .item:nth-child(4) .treatments-box .icon-box::before {
    position: absolute;
    content: "";
    top: -30px;
    left: 4px;
    background-image: url(../img/drop-white.png);
    width: 95px;
    height: 105px;
    background-size: 95px;
    background-repeat: no-repeat;
    background-position: center;
}
.treatments-box svg, .treatments-box img {
    max-width: 80px;
	fill:#0BB3CD;
    height: 80px;
	position: relative;
}
.treatments-box svg path{
	fill:#0BB3CD;
}
.treatments-box .title {
    font-size: 24px;
}
.treatments-box .description{
    font-style: italic;
	margin-top: 12px;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
}


.services-section .heading {
    position: relative;
    max-width: 550px;
    margin: 0 auto 10px;
}
.services-section .heading::before {
    position: absolute;
    content: "";
    background-image: url(../img/service-drop-h.png);
    background-size: 90px;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.services-lists {
    position: relative;
}
.services-lists::before {
    position: absolute;
    content: "";
    background-image: url(../img/vector-circle-icon.png);
    background-size: 90px;
    background-repeat: no-repeat;
    background-position: center;
    left: -92px;
    top: 50%;
    z-index: 99;
    width: 90px;
    height: 90px;
    transform: translateY(-50%);
}
.services-lists .item{
	margin-top:30px;
}
.service-item {
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
	position:relative;
}
.services-lists .item:nth-child(2) .service-item::before {
    position: absolute;
    content: "";
    background-image: url(../img/green-drop.png);
    background-size: 75px;
    background-repeat: no-repeat;
    background-position: center;
    right: -28px;
    top: -30px;
    z-index: 99;
    width: 80px;
    height: 80px;
}
.services-lists .item .service-item::after {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.25);
    left:0;
	right: 0px;
    top: 0px;
	bottom:0;
    z-index: 9;
}
.services-lists .item .service-item .inner-item {
    position: relative;
    z-index: 99;
}
.service-item .title {
    color: #fff;
    max-width: 280px;
    font-weight: 800;
    font-size: 32px;
    line-height: 39px;
}
.experience-section{
	background-image: url(../img/experience-bg.png);
	background-color: #fff;
    background-repeat: no-repeat;
    background-position: center top;
	background-size: cover;
	position:relative;
}
.experience-section::before, .experience-section::after{
	position: absolute;
    content: "";
	background-repeat: no-repeat;
    background-position: center;
}
.experience-section::before {
    background-image: url(../img/multidrop-img.png);
    right: 90px;
    width: 130px;
    height: 143px;
    background-size: 130px;
    top: -20px;
}
.experience-section::after {
    background-image: url(../img/y-hlf-img.png);
    left: 0;
    width: 70px;
    height: 115px;
    background-size: 70px;
    top: 30px;
}
.experience-section .img-block {
    margin-left: 30px;
    margin-right: 30px;
    max-width: 450px;
	position:relative;
}
.experience-section .img-block img{
    border-radius: 100%;
}
.experience-section .img-block::before, .experience-section .img-block::after{
	position:absolute;
	content:"";
	background-position:center;
	background-repeat:no-repeat;
}
.experience-section .img-block::before {
    background-image: url(../img/experience-img-shape.png);
    background-size: 110px;
    width: 110px;
    height: 335px;
    left: 40px;
    top: -20px;
}
.experience-section .img-block::after {
    background-image: url(../img/b-shape-img.png);
    width: 80px;
    height: 80px;
    background-size: 80px;
    right: 0;
    bottom: 40px;
}
.experience-section .heading, .experience-section .heading span{
	position:relative;
}
.experience-section .heading::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 90px;
    border-top-right-radius: 90px;
    background: #F6F7D3;
    width: 60px;
    height: 100%;
    left: -10px;
    top: 0;
    bottom: 0;
}
.experience-section .description {
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    line-height: 38px;
}


.appointment-section{
	background-image: url(../img/appointment-bg.jpg);
	background-color: #21B577;
    background-repeat: no-repeat;
    background-position: center;
	background-size: cover;
	color:#fff;
}
.appointment-section .inner-title {
    position: relative;
}
.appointment-section .appointmenti-title {
    font-size: 36px;
    position: relative;
    line-height: 48px;
    color: #fff;
    max-width: 1030px;
    margin: 0 auto 10px;
}
.appointment-section .appointmenti-title a{
	font-weight: 800;
    color: #fff;
    font-family: 'Gilroy';
}
.appointment-section .appointmenti-title::before {
    position: absolute;
    content: "";
    background-image: url(../img/appointment-shape.png);
    background-color: #21B577;
    background-repeat: no-repeat;
    background-position: center;
    width: 85px;
    height: 82px;
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
    background-size: 85px;
}
.white-btn {
    background: #fff;
    color: #0BB3CD;
    border-color: #fff;
}
.white-btn:hover {
    background: #0BB3CD;
    color: #fff;
    border-color: #0BB3CD;
}

.how-find-section .heading, .how-find-section .heading span {
    position: relative;
	display: inline;
}
.how-find-section .heading::before {
    position: absolute;
    content: "";
    background-image: url(../img/how-to-find-drop.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 80px;
    height: 90px;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    background-size: 80px;
}
.how-find-section .address {
    position: relative;
	padding-left:30px;
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
	line-height: 29px;
	max-width: 300px;
	margin-bottom:15px;
}
.how-find-section .address img, .how-find-section .ph img {
    position: absolute;
    left: 0;
    top: 4px;
}
.how-find-section .ph{
	position: relative;
	padding-left:30px;
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
	line-height: 29px;
}
.addressmap-left {
    position: relative;
}
.addressmap-left .map-large {
    position: absolute;
    right: 20px;
    top: 20px;
    max-width: 150px;
}
.addressmap-left .map-small {
    position: absolute;
    right: 0;
    top: 163px;
    max-width: 110px;
}

.newsletter-section{
	position:relative;
	background: #D9E026;
}
.newsletter-section::before {
    position: absolute;
    content: "";
    background-image: url(../img/newsletter-drop.png);
    background-size: 110px;
    background-repeat: no-repeat;
    background-position: center;
    top: -58px;
    width: 110px;
    height: 130px;
}
.newsletter-section .heading, .newsletter-section .heading span{
	position:relative;
}
.newsletter-section .heading::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
    background: #EBEE88;
    transform: rotate(22deg) translateX(-50%);
    width: 50px;
    height: 100px;
    left: 50%;
    top: -15px;
    margin: 0 0 0 -10px;
}
.newsletter-section .description {
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    line-height: 33px;
    max-width: 480px;
    margin: 0 auto;
}
.newsletter-section form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
	margin-top:30px;
}
.newsletter-section .form-control {
    background: #fff;
    color: #222;
    padding: 12px 15px;
    border-radius: 0;
    height: 54px;
    border: none;
    font-style: italic;
    font-weight: 500;
}
.newsletter-section .form-control::-webkit-input-placeholder { /* Edge */
	color: #D2D2D2;
}
.newsletter-section .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #D2D2D2;
}
.newsletter-section .form-control::placeholder {
	color: #D2D2D2;
}
.newsletter-section .btn {
    border-radius: 0;
    height: 54px;
    border: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    max-width: 186px;
    width: 100%;
}


footer#footer {
    background: #000;
    padding: 60px 0 0;
	color:#fff;
	position:relative;
}
footer#footer::before {
    position: absolute;
    content: "";
    left: 50%;
    border-bottom-right-radius: 120px;
    border-top-right-radius: 120px;
    height: 120px;
    width: 60px;
    background: #0D71BA;
    top: -22px;
    transform: translateX(-50%) scale(-1);
}

footer .footer-logo {
    position: relative;
}
footer .footer-logo::before, footer .footer-logo::after {
    position: absolute;
	content:"";
	background-repeat:no-repeat;
	background-position:center;
}
footer .footer-logo::before {
    background-image: url(../img/yellow-shape-f.png);
    background-size: 63px;
    width: 63px;
    height: 63px;
    right: 0;
    top: 70px;
}
footer .footer-logo::after {
    background-image: url(../img/green-df.png);
    background-size: 63px;
    width: 63px;
    height: 63px;
    right: -100px;
    top: 180px;
}
.footer-logo ul {
    display: flex;
}
.footer-logo li {
    display: block;
    margin-right: 40px;
}
.footer-logo li:last-child {
    margin-right: 0px;
}

.footer-content {
    text-align: right;
}
.nap-address{
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 30px;
	color:#fff;
	font-feature-settings: 'pnum' on, 'lnum' on;
	max-width: 330px;
    margin-left: auto;
}
.nap-ph{
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
	font-feature-settings: 'pnum' on, 'lnum' on;
	color:#fff;
}
.open-hours{
	margin-top: 30px;
	font-weight: 500;
    font-size: 22px;
    line-height: 30px;
	color:#fff;
	font-feature-settings: 'pnum' on, 'lnum' on;
}
.open-hours span{
	display:block;
}


ul.social-links {
    display: flex;
    justify-content: end;
    margin: 0;
}
ul.social-links li{
	display:block;
}
ul.social-links li a {
    display: block;
    width: 33px;
    height: 33px;
    margin-right: 20px;
}
ul.social-links li:last-child a {
    margin-right: 0px;
}

.copyright{
	font-style: italic;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	padding:15px 0;
	display:block;
}


/*================== Inner Page Bannr CSS ==================*/
.inner-page-banner {
    position: relative;
}
.inner-page-banner::before, .inner-page-banner::after{
	position:absolute;
	content:"";
	background-repeat:no-repeat;
}
.inner-page-banner::before {
    background-image: url(../img/banner-shape-l.png);
    left: 0;
    width: 90px;
    height: 106px;
    background-size: 90px;
    top: 220px;
}
.inner-page-banner::after{
	background-image:url(../img/banner-shape-r.png);
	right: 0;
    width: 90px;
    height: 106px;
    background-size: 90px;
    top: 220px;
}
.page-banner-bg{
    position: absolute;
	top:0;
    left: 0;
    right: 0;
    background: #F6F7D3;
    height: 272px;
    z-index: -1;
}
.page-banner-content {
    height: 475px;
    background-size: cover;
    background-position: center;
    display: inline-flex;
    width: 100%;
    align-items: center;
	position: relative;
    z-index: -1;
}
.page-banner-content h1 {
    background: rgba(33,181,119,0.74);
    color: #fff;
    width: auto;
    padding: 5px 70px;
    text-align: center;
    font-size: 56px;
}
/*================== Inner Page Bannr CSS END ==================*/

/*================== About Page CSS ==================*/
.about-whoweare-section .heading {
    max-width: 650px;
    margin: 0 auto;
	position:relative;
}
.about-whoweare-section .heading span{
	position:relative;
}
.about-whoweare-section .heading::before {
    position: absolute;
    content: "";
    background-image: url(../img/shape-whoweare.png);
    background-size: 78px;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    right: 0;
    top: -15px;
    height: 78px;
    width: 78px;
    margin: 0 auto;
}
.about-whoweare-section .description{
	font-style: italic;
	font-weight: 500;
	font-size: 18px;
	line-height: 32px;
	color: #5A7184;
	margin-top: 20px;
}
.whoweare-video-wrap {
    position: relative;
    max-width: 900px;
    margin: 50px auto 20px;
}
.whoweare-video-wrap::before, .whoweare-video-wrap::after{
	position:absolute;
	content:"";
	background-repeat:no-repeat;
	background-position:center;
	top: 50%;
    transform: translateY(-50%);
}
.whoweare-video-wrap::before {
    background-image: url(../img/video-vector-l.png);
    left: -96px;
    width: 96px;
    height: 96px;
    background-size: 96px;
}
.whoweare-video-wrap::after {
    background-image: url(../img/video-vector-r.png);
    right: -88px;
    width: 90px;
    height: 103px;
    background-size: 90px;
}
.whoweare-video-wrap .video-cover {
    display: block;
	width:100%;
}
.whoweare-video-wrap .play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
}
.whoweare-video-wrap .play-icon svg, .whoweare-video-wrap .play-icon img{
	width: 110px;
    height: 110px;
}
.whoweare-video-wrap .video-link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
	z-index:9;
    bottom: 0;
}
.whoweare-result{
	/* border-bottom: 1px solid #B6E8F0; */
	padding-top:70px;
	position:relative;
	padding-bottom:50px;
}
.whoweare-result::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    width: 92%;
    background: #B6E8F0;
    height: 1px;
    bottom: 0;
}
.whoweare-result .title {
    font-size: 32px;
    line-height: normal;
    letter-spacing: 0.2px;
    color: #183B56;
	margin-top: 15px;
}
.whoweare-result .des {
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #5A7184;
    max-width: 160px;
    margin-top: 10px;
}
.whoweare-result .icon-img, .whoweare-result .icon-img img{
	position:relative;
	display:block;
}
.whoweare-result .icon-img::before{
	position:absolute;
	content:"";
	background-position:center;
	background-repeat:no-repeat;
}
.whoweare-result .item:nth-child(odd) .icon-img::before {
    background-image: url(../img/light-bdrop-about.png);
    background-size: 90px;
    width: 90px;
    height: 110px;
    top: -32px;
    left: 0;
    right: 0;
}
.whoweare-result .item:nth-child(even) .icon-img::before{
	background-image:url(../img/light-yellowdrop-about.png);
	background-size: 90px;
    width: 90px;
    height: 110px;
    top: -32px;
    left: 0;
    right: 0;
}
.our-vision-section{
	position:relative;
}
.our-vision-section::before, .our-vision-section::after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-position: center;
}
.our-vision-section::before {
    background-image: url(../img/multidrop-img.png);
    right: 90px;
    width: 130px;
    height: 143px;
    background-size: 130px;
    top: -97px;
}
.our-vision-section::after {
    background-image: url(../img/y-hlf-img.png);
    left: 0;
    width: 70px;
    height: 115px;
    background-size: 70px;
    top: 30px;
}
.our-vision-section .img-block {
    margin-left: 30px;
    margin-right: 30px;
    max-width: 450px;
    position: relative;
}
.our-vision-section .img-block::before, .our-vision-section .img-block::after {
    position: absolute;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
}
.our-vision-section .img-block::before {
    background-image: url(../img/experience-img-shape.png);
    background-size: 110px;
    width: 110px;
    height: 335px;
    left: 40px;
    top: -20px;
}
.our-vision-section .img-block::after {
    background-image: url(../img/b-shape-img.png);
    width: 80px;
    height: 80px;
    background-size: 80px;
    right: 0;
    bottom: 40px;
}

.our-vision-section .heading {
    letter-spacing: 0.2px;
    color: #183B56;
	position: relative;
    display: inline;
}
.our-vision-section .heading span {
    position: relative;
    display: inline;
}
.our-vision-section .heading::before {
    position: absolute;
    content: "";
    background-image: url(../img/how-to-find-drop.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 80px;
    height: 90px;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    background-size: 80px;
}
.our-vision-section .description {
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    line-height: 38px;
    color: #5A7184;
	margin-top:40px;
}

.our-mission-section {
    padding-bottom: 130px;
}
.our-mission-section .container{
	background: #F6F7D3;
	padding-top:60px;
}
.our-mission-section .heading {
    letter-spacing: 0.2px;
    color: #183B56;
	position: relative;
	margin-bottom:45px;
}
.our-mission-section .inner-content{
	padding-left:30px;
}
.our-mission-section .heading span {
    position: relative;
}
.our-mission-section .heading::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 130px;
    border-top-right-radius: 130px;
    background: #fff;
    transform: rotate(20deg);
    width: 65px;
    height: 130px;
    left: 15px;
    top: -38px;
}
.our-mission-section .description {
	font-style: italic;
	font-weight: 500;
	font-size: 18px;
	line-height: 38px;
	color: #5A7184;
}
.our-mission-section ul {
	display: inline-flex;
    flex-flow: wrap;
    width: 100%;
}
.our-mission-section ul li {
    font-size: 16px;
    color: #183B56;
    line-height: 27px;
    background-image: url(../img/check-icon.png);
    background-repeat: no-repeat;
    background-position: left 7px;
    padding-left: 21px;
    margin-top: 15px;
    width: 50%;
    padding-right: 15px;
}
.our-mission-section .img-block {
    position: relative;
    max-width: 520px;
    margin: 0 auto -50px;
}
.our-mission-section .img-block::after{
	position: absolute;
    content: "";
    background-image: url(../img/banner-shape.png);
    background-size: 110px;
    height: 344px;
    width: 110px;
    right: -15px;
    bottom: -15px;
	background-color: #F6F7D3;
    background-repeat: no-repeat;
}
.our-mission-section .img-block img{
	display:block;
}

.our-value-section{
	position: relative;
}
.our-value-section::before {
    position: absolute;
    content: "";
    background-image: url(../img/value-vector-drop.png);
    background-size: 80px;
    background-repeat: no-repeat;
    background-position: center;
    left: 25px;
    bottom: 25px;
    width: 80px;
    height: 103px;
}
.our-value-section::after {
    position: absolute;
    content: "";
    background-image: url(../img/border-circle-b.png);
    background-size: 70px;
    background-repeat: no-repeat;
    background-position: center;
    right: 0px;
    top: -10px;
    width: 70px;
    height: 77px;
}
.our-value-section .heading, .our-value-section .heading span {
    position: relative;
}
.our-value-section .heading::before {
    position: absolute;
    content: "";
    background-image: url(../img/service-drop-h.png);
    background-size: 75px;
    background-repeat: no-repeat;
    background-position: center;
    left: -18px;
    top: -22px;
    width: 75px;
    height: 86px;
}
/* .value-slider::before {
    position: absolute;
    right: -50px;
    top: 0;
    bottom: 0;
    background: #fff;
    width: 135px;
    height: 100%;
    z-index: 9;
    content: "";
} */
.value-slider .slick-list {
    padding-top: 90px;
    padding-bottom: 35px;
	margin:0 -30px;
}
.value-slider .slick-slide {
    padding: 0 30px;
}
.value-slider .item-box {
    padding: 20px 20px;
    display: flex;
    align-items: center;
}
.value-slider .slick:nth-child(odd) .item-box{
	background: #B6E8F0;
}
.value-slider .slick:nth-child(even) .item-box{
	background: #CDEEE0;
}
.value-slider .left-icon {
    width: 150px;
    height: 150px;
    background: #fff;
    padding: 20px 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
	margin-top: -190px;
}
.value-slider .left-icon img {
    max-width: 80px;
	width:100%;
}
.value-slider .right-content {
    width: calc(100% - 180px);
    width: -webkit-calc(100% - 180px);
    width: -moz-calc(100% - 180px);
    margin-left: 30px;
}
.value-slider .title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.2px;
    color: #183B56;
}
.value-slider .description {
    font-style: italic;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    color: #5A7184;
    margin: 10px 0;
    max-width: 300px;
}
.value-slider .more-btn {
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: #0BB3CD;
    display: inline-flex;
    align-items: center;
    text-decoration-line: underline;
}
.value-slider .more-btn svg, .value-slider .more-btn img{
    width: 17px;
    height: 17px;
    margin-left: 5px;
	fill:#0BB3CD;
}
.value-slider .more-btn svg path{
	fill:#0BB3CD;
}

.value-slider .slick-prev, .value-slider .slick-next {
    right: 0px;
    top: -62px;
    transform: none;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(11,179,205,0.3);
    border-radius: 5px;
	opacity:1;
}
.value-slider .slick-prev {
    right: 50px;
    left: auto;
    transform: scaleX(-1);
}
.value-slider .slick-arrow svg, .value-slider .slick-arrow img{
	fill:rgba(11,179,205,0.3);
	width: 20px;
    height: 20px;
}
.value-slider .slick-arrow svg path{
	fill:rgba(11,179,205,0.3);
}
.value-slider .slick-arrow:hover{
	border: 2px solid rgba(11,179,205,1);
}
.value-slider .slick-arrow:hover svg, .value-slider .slick-arrow:hover svg path{
	fill:rgba(11,179,205,1);
}
.our-team-section .heading, .our-team-section .heading span {
    position: relative;
}
.our-team-section .heading::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 120px;
    border-top-right-radius: 120px;
    background: #B6E8F0;
    transform: rotate(33deg) translateX(-50%);
    width: 60px;
    height: 120px;
    left: 50.4%;
    top: -14px;
}
.our-team-section .team-listing .item{
	margin-top:35px;
}
.our-team-section .team-listing .item:last-child .item-box{
	position:relative
}
.our-team-section .team-listing .item:first-child .item-box::before {
    position: absolute;
    content: "";
    left: -55px;
    bottom: 60px;
    background-image: url(../img/team-vector.png);
    width: 80px;
    height: 75px;
    z-index: -1;
    background-size: 80px;
    background-repeat: no-repeat;
    background-position: center;
}
.our-team-section .team-listing .item:last-child .item-box::before {
    position: absolute;
    content: "";
    right: -90px;
    top: 40%;
    border-bottom-right-radius: 120px;
    border-top-right-radius: 120px;
    background: #21B577;
    transform: rotate(-52.96deg) translateY(-50%);
    width: 60px;
    height: 120px;
    z-index: -1;
}
.our-team-section .item-box {
    height: 100%;
    background: #F6F7D3;
	position: relative;
}
.our-team-section .front-view{
	padding: 15px 15px;
}
.our-team-section .item-box .designation {
    font-weight: 600;
    font-size: 16px;
    text-align: right;
    color: #77808B;
}
.our-team-section .team-img {
    max-width: 200px;
    margin: 15px auto 20px;
    border-radius: 100%;
}
.our-team-section .team-img img{
	border-radius: 100%;
	display:block;
}
.our-team-section .team-name {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #283646;
}
.our-team-section .more-link {
    background: #0BB3CD;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
}
.our-team-section .hover-content {
    position: absolute;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	display:none;
    height: 100%;
}
.our-team-section .item-box:hover .hover-content {
	display:block;
}
.our-team-section .hover-content * {
    position: relative;
    color: #fff;
}
.our-team-section .hover-content::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #0BB3CD;
    opacity: 0.75;
    backdrop-filter: blur(4px);
}
.our-team-section .hover-content .designation {
    text-align: left;
    color: #fff;
}
.our-team-section .hover-content .description{
	color: #F2F4F5;
	font-weight: 300;
	font-size: 14px;
	line-height: 23px;
	margin: 20px 0;
}
.our-team-section .team-social-link {
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding-right: 30px;
}
.our-team-section .team-social-link li{
	display:block;
}
.our-team-section .team-social-link li a {
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 10px;
}
.our-team-section .team-social-link li a:hover{
	background: #21B577;
	border-color: #21B577;
}
.our-team-section .team-social-link li:last-child a {
    margin-right: 0px;
}
.our-team-section .team-social-link li a svg, .our-team-section .team-social-link li a img{
	width: 15px;
    height: 15px;
	fill:#fff;
}
.our-team-section .team-social-link li a svg path{
	fill:#fff;
}
.our-team-section .hover-content .more-link {
    background: no-repeat;
    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width:1080px){
	.our-team-section .team-listing .item:first-child .item-box::before{
		display:none;
	}
}
/*================== About Page CSS END ==================*/

/*================== Contact Page CSS ==================*/

.contact-page{
	position:relative;
	overflow:hidden;
}
.contact-page::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 120px;
    border-top-right-radius: 120px;
    background: #21B577;
    width: 60px;
    height: 120px;
    left: -10px;
    bottom: 0px;
}
.contact-page .description {
    font-style: italic;
    font-weight: 500;
    font-size: 17px;
    line-height: 30px;
    color: #5A7184;
}
.get-touch-box {
    padding-right: 40px;
}
.get-touch-box .heading {
    color: #2C3C4D;
	max-width:300px;
}
.get-touch-box .heading, .get-touch-box .heading span {
    position: relative;
}
.get-touch-box .heading::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 130px;
    border-top-right-radius: 130px;
    background: #CDEEE0;
    transform: rotate(31deg);
    width: 65px;
    height: 130px;
    left: 13px;
    top: -30px;
}
.get-touch-box .description{
    border-bottom: 1px dashed #E3E3E3;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.get-touch-box .info-block{
	margin-bottom:30px;
}
.get-touch-box .info-block:last-child{
	margin-bottom:0;
}
.get-touch-box .info-block .title {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
	font-family: 'Raleway', sans-serif;
    color: #000;
	margin-bottom:7px;
}
.get-touch-box .info-block .address {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #8C959F;
    max-width: 300px;
	padding-left: 30px;
	position: relative;
}
.get-touch-box .info-block .phno {
    font-weight: 500;
	position: relative;
    font-size: 18px;
    line-height: 28px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #8C959F;
    max-width: 300px;
	padding-left: 30px;
}
.get-touch-box .info-block .address svg, .get-touch-box .info-block .address img,
.get-touch-box .info-block .phno svg, .get-touch-box .info-block .phno img {
    position: absolute;
    width: 22px;
    height: 22px;
    top: 2px;
    left: 0;
}
.contact-form {
    background: #F6F7D3;
    padding: 40px 40px;
	position:relative;
	margin-right:60px;
}
.contact-form::before {
    position: absolute;
    content: "";
    right: -55px;
    bottom: 54px;
    background-image: url(../img/contact/form-vector.png);
    background-size: 65px;
    background-repeat: no-repeat;
    width: 65px;
    height: 67px;
    z-index: -1;
}
.contact-form .form-heading {
    font-size: 32px;
    line-height: 39px;
    color: #2C3C4D;
    margin-bottom: 25px;
}
.contact-form .form-control {
    background: #F9FBFC;
    border: 1px solid #0BB3CD;
    border-radius: 0;
    height: auto;
    line-height: normal;
    padding: 15px 12px;
}
.contact-form textarea.form-control {
	background: #F9FBFC;
    border: 1px solid #0BB3CD;
	height:150px;
	resize:none;
}
.contact-form .form-control::-webkit-input-placeholder {
	color: #8C959F;
}
.contact-form .form-control:-ms-input-placeholder {
	color: #8C959F;
}
.contact-form .form-control::placeholder {
	color: #8C959F;
}
.contact-form .agree-checkbox {
	position:relative;
}
.contact-form .agree-checkbox label {
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: #8C959F;
    margin: 0;
	cursor: pointer;
	position:relative;
	padding-left: 25px;
}
.contact-form .agree-checkbox input{
	display:none;
}
.contact-form .agree-checkbox label::before {
	position: absolute;
    content: '';
    border: 1.5px solid #8C959F;
    cursor: pointer;
    width: 15px;
    height: 15px;
	top:3px;
	left:0;
}
.contact-form .agree-checkbox input:checked + label::after {
    position: absolute;
    content: '';
    top: 6px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid #8C959F;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.contact-form .agree-checkbox label a{
	font-weight: 600;
	color: #0BB3CD;
}
.contact-form .submit-btn .btn {
    width: 100%;
    margin-top: 10px;
}

.faqs-section{
	position:relative;
}
.faqs-section::before{
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    bottom: 37%;
    background-image: url(../img/video-vector-l.png);
    right: 0px;
    width: 70px;
    height: 70px;
    background-size: 70px;
}
.faqs-inner{
	position:relative;
}
.faqs-inner::before {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    bottom: -80px;
    background-image: url(../img/contact/faq-vector-b.png);
    left: 0;
    width: 70px;
    height: 77px;
    background-size: 70px;
    z-index: -1;
}
.faqs-section .heading {
    position: relative;
	letter-spacing: 0.2px;
	color: #183B56;
	padding:15px 0;
}
.faqs-section .heading::before {
    position: absolute;
    content: "";
    background-image: url(../img/contact/faqtitle-drop.png);
    background-size: 75px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    width: 75px;
    height: 85px;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
}
.faqs-section .description {
    font-style: italic;
    font-weight: 500;
    font-size: 17px;
    line-height: 29px;
    color: #5A7184;
    max-width: 950px;
    margin: 0 auto;
}

.faqs-panel {
    margin-top: 40px;
}
.faq-info {
    border-bottom: 1px solid rgba(13, 113, 186, 0.12);
    padding-bottom: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 0;
}
.faq-info:last-child{
	border-bottom:none;
}
.faqs-panel .faq-title {
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;
    color: #081B33;
	cursor:pointer;
    padding: 5px 0;
	position:relative;
}
.faq-title:after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s all;
    height: 38px;
    width: 38px;
    background-image:url(../img/contact/plus-icon.png);
	background-size: 38px;
}
.faq-title[aria-expanded=true]:after {
    background-image: url(../img/contact/mins-icon.png);
}
.faq-description {
    font-style: italic;
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    color: #081B33;
	padding-top:10px;
    padding-right: 70px;
}



@media (max-width:991px){
.contact-form {
    margin-right: 50px;
    margin-top: 30px;
}
.contact-form::before {
    right: -60px;
    background-size: 60px;
    width: 60px;
    height: 60px;
}
.faqs-section::before, .contact-page::before{
	display:none;
}
}
@media (max-width:767px){
.faqs-panel .faq-title {
    font-size: 18px;
    line-height: 26px;
}
}
@media (max-width:575px){
.contact-form::before{
	display:none;
}
.contact-form{
	margin-right:0;
}
}
/*================== Contact Page CSS END ==================*/

/*================== Service Page CSS ==================*/

.effective-section{
	overflow:hidden;
}
.effective-section .left-content {
    padding-right: 50px;
}
.effective-section .heading {
    max-width: 370px;
	position:relative;
}
.effective-section .heading span{
	position:relative;
}
.effective-section .heading::before {
    position: absolute;
    content: "";
    background-image: url(../img/services/quality-vector.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 100px;
    height: 99px;
    left: 65px;
    top: -37px;
    background-size: 100px;
}
.effective-section .effective-box-con {
    border-top: 1px solid #B6E8F0;
    padding-top: 25px;
    margin-top: 25px;
    display: inline-flex;
    width: 100%;
}
.effective-section .effective-box-con .inner-box {
    width: 47%;
    margin-right: 6%;
}
.effective-section .effective-box-con .inner-box:last-child {
    margin-right: 0;
}
.effective-section .effective-box-con .title {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.2px;
    color: #2C3C4D;
    margin-bottom: 15px;
    max-width: 200px;
}
.effective-section .right-content {
    position: relative;
    padding: 90px 40px 0 40px;
}
.effective-section .right-content::before {
    position: absolute;
    content: "";
    background: #C0F3FB;
    left: 0;
    right: 0;
	top:0;
    height: 250px;
    z-index: -1;
	width:calc(100% + 100px);
	width:-webkit-calc(100% + 100px);
	width:-moz-calc(100% + 100px);
}
.effective-section .right-content::after {
    position: absolute;
    content: "";
    background-image: url(../img/services/phelbotomy-vector.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 90px;
    height: 92px;
    right: -8px;
    top: 40px;
    background-size: 90px;
}
.service-list-slider {
    margin-bottom: 0;
}
.service-list-slider .item-box .inner-content{
	margin-top:30px;
}
.service-list-slider .item-box img {
   bottom: auto; width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
}
.service-list-slider .slick-dots {
    top: 285px;
	bottom:auto;
}
.service-list-slider .slick-dots li{
	width: 12px;
    height: 12px;
}
.service-list-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0px;
    background: #0A98BA;
    border-radius: 100%;
	border:2px solid #0A98BA;
}
.service-list-slider .slick-dots li.slick-active button, .service-list-slider .slick-dots li:hover button {
    background: none;
	border:2px solid #0A98BA;
}
.effective-section .right-content .title {
    font-size: 32px;
    line-height: 60px;
    letter-spacing: 0.2px;
    color: #2C3C4D;
}
.effective-section .description{
    font-style: italic;
    font-weight: 500;
    font-size: 17px;
    line-height: 30px;
    color: #5A7184;
}

.top-service-section {
    overflow: hidden;
}
.top-service-section .heading{
	position:relative;
}
.top-service-section .heading span{
	position:relative;
}
.top-service-section .heading::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 130px;
    border-top-right-radius: 130px;
    background: #CDEEE0;
    transform: rotate(30.33deg);
    width: 65px;
    height: 130px;
    left: 76px;
    top: -35px;
}
.top-service-slider .slick-list {
    padding: 0 7.5%;
	margin:55px -10px 0;
}
.top-service-slider .slick-slide{
	padding:0 10px;
	display: inline-flex;
	height:auto;
}
.top-service-slider .slick-track {
    display: inline-flex;
}
.top-service-slider .slick-slide > div, .top-service-slider .slick-slide > div > .slick, .top-service-slider .slick-slide > div .item-box {
    height: 100%;
}
.top-service-slider .slick-prev, .top-service-slider .slick-next {
    right: 160px;
    top: -105px;
    transform: none;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(11,179,205,0.3);
    border-radius: 5px;
    opacity: 1;
}
.top-service-slider .slick-prev {
    right: 215px;
    left: auto;
    transform: scaleX(-1);
}
.top-service-slider .slick-arrow svg, .top-service-slider .slick-arrow img {
    fill: rgba(11,179,205,0.3);
    width: 20px;
    height: 20px;
}
.top-service-slider .slick-arrow svg path {
    fill: rgba(11,179,205,0.3);
}
.top-service-slider .slick-arrow:hover {
    border: 2px solid rgba(11,179,205,1);
}
.top-service-slider .slick-arrow:hover svg, .top-service-slider .slick-arrow:hover svg path {
    fill: rgba(11,179,205,1);
}
.top-service-slider .slick-dots {
    display: inline-flex !important;
    max-width: 1200px;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -45px;
}
.top-service-slider .slick-dots li {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
.top-service-slider .slick-dots li button {
    width: 100%;
    height: 4px;
    padding: 0;
    background: #21B577;
	opacity: 0.15;
	border-radius: 10px;
}
.top-service-slider .slick-dots li.slick-active button {
	opacity: 1;
	height: 8px;
    margin-top: -2px;
}

.service-lisitng .item-box {
    background: #F6F7D3;
    padding: 10px 10px 70px;
    position: relative;
}
.service-lisitng .item-box > img, .service-lisitng .item-box > a img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.service-lisitng .cat-timing {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
	align-items:self-start;
}
.service-lisitng .cat-service {
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    text-decoration-line: underline;
	font-family: 'Gilroy';
    color: #0BB3CD;
}
.service-lisitng .timing {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #0BB3CD;
    font-feature-settings: 'pnum' on, 'lnum' on;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-left: 10px;
}
.service-lisitng .timing svg, .service-lisitng .timing img {
    width: 15px;
    height: 15px;
    margin-right: 7px;
	stroke: #0BB3CD;
}
.service-lisitng .timing svg path{
	stroke: #0BB3CD;
}
.service-lisitng .title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #183B56;
	margin-bottom: 12px;
}
.service-lisitng .price-btn-block {
    border: 1px solid #B6E8F0;
    margin: 0;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.service-lisitng .price {
    font-weight: 500;
    font-size: 15px;
    color: #000;
    display: inline-flex;
    align-items: center;
	margin-right:5px;
}
.service-lisitng .price span {
    font-weight: 800;
    font-size: 19px;
    line-height: normal;
	font-family: 'Gilroy';
	margin-left:7px;
    color: #0BB3CD;
}
.service-lisitng .price-btn-block .btn {
    font-size: 12px;
    padding: 12px 13px;
}
.our-service-section{
	position:relative;
}
.our-service-section::before{
    position: absolute;
    content: "";
    border-bottom-right-radius: 120px;
    border-top-right-radius: 120px;
    background: #21B577;
    width: 60px;
    height: 120px;
    right: 30px;
    top: 40%;
}
.our-service-section::after {
    position: absolute;
    content: "";
    left: 30px;
    bottom: 120px;
    background-image: url(../img/services/service-drop-vector.png);
    background-repeat: no-repeat;
    background-size: 90px;
    height: 120px;
    width: 90px;
}
.our-service-section .service-lisitng > div{
	margin-top:30px;
}
.our-service-section .service-lisitng .item-box {
    height: 100%;
}
.our-service-section .service-lisitng > div:first-child .item-box::before {
    position: absolute;
    content: "";
    left: -50px;
    top: 60px;
    background-image: url(../img/services/service-vcector.png);
    background-repeat: no-repeat;
    background-size: 80px;
    height: 60px;
    width: 80px;
    z-index: -1;
}
.our-service-section .heading {
    position: relative;
    display: inline;
}
.our-service-section .heading::before {
    position: absolute;
    content: "";
    background-image: url(../img/services/service-drop.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 78px;
    height: 88px;
    left: 74px;
    top: -19px;
    background-size: 78px;
}
.our-service-section .heading span {
    position: relative;
    display: inline;
}


.sort-filter .inner-sort-filter {
    display: inline-flex;
    justify-content: flex-end;
    width: 100%;
}
.sort-filter .sort-box {
    margin-right: 20px;
    width: 100%;
    max-width: 180px;
	position: relative;
}
.sort-filter .sort-box .select-box {
    border: 1px solid #CFCFCF;
    padding: 0 10px;
    height: 46px;
    font-weight: 400;
    font-size: 14px;
    line-height: 46px;
    color: #71717A;
}
.sort-filter .sort-box .select-box span {
    color: #0BB3CD;
    font-weight: 500;
    position: relative;
}
/* .sort-filter .sort-box .select-box span:before {
    content: "";
    right: -12px;
    position: absolute;
    top: 4px;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    border-right: 2px solid #0BB3CD;
    border-bottom: 2px solid #0BB3CD;
} */
.sort-filter .sort-box .select-option {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border: 1px solid #CFCFCF;
    padding: 0 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 46px;
    color: #71717A;
    background: #fff;
    z-index: 9;
    border-top: none;
}
.sort-filter .sort-box:hover .select-option{
	display:block;
}
.filter-search-form {
    position: relative;
    max-width: 290px;
    width: 100%;
}
.filter-search-form .form-control {
    border: 1px solid #CFCFCF;
    border-radius: 0;
    padding: 12px 12px;
    height: auto;
    line-height: normal;
	background:#fff;
}
.filter-search-form .form-control::-webkit-input-placeholder {
	color: #DEDEDE;
}
.filter-search-form .form-control:-ms-input-placeholder {
	color: #DEDEDE;
}
.filter-search-form .form-control::placeholder {
	color: #DEDEDE;
}
.filter-search-form .btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    line-height: normal;
    width: 40px;
    background-image: url(../img/search-icon.png);
    background-size: 18px;
    font-size: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
	border: none;
}
.sort-filter .filter-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: #959595;
    font-feature-settings: 'pnum' on, 'lnum' on;
    text-align: right;
    margin-top: 10px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.sort-filter .filter-text a.clear-data {
    width: 10px;
    height: 10px;
    background-image: url(../img/cross-icon.png);
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    margin-left: 10px;
}

.nav-tabs {
    border: none;
    justify-content: center;
	margin-top: 50px;
}
.nav-tabs .nav-item {
    margin: 0 15px 10px 0;
	cursor: pointer;
}
.nav-tabs .nav-link {
    border: 2px solid #21B577;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.2px;
    color: #21B577;
    display: inline-flex;
    align-items: center;
}
.nav-tabs .nav-link svg, .nav-tabs .nav-link img {
    width: 25px;
    height: 25px;
    fill: #21B577;
	margin-right:5px;
}
.nav-tabs .nav-link svg path{
    fill: #21B577;
}
.nav-tabs .nav-link:focus svg, .nav-tabs .nav-link:hover svg, .nav-tabs .nav-link:focus svg path, .nav-tabs .nav-link:hover svg path,
.nav-tabs .nav-link.active svg, .nav-tabs .nav-link.active svg path{
	fill: #fff;
	stroke: #fff;
}
.nav-tabs .nav-link:focus img, .nav-tabs .nav-link:hover img, .nav-tabs .nav-link.active img{
    filter: brightness(0) invert(1);
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #21B577;
    background: #21B577;
    color: #fff;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #21B577;
    border-color: #21B577;
}

.pagination {
    border-radius: 0;
    margin-top: 40px;
}
.pagination li{
	margin-right:2px;
}
.pagination li:last-child{
	margin-right:0;
}
.pagination li .page-link {
    border: none;
    padding: 8px;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
	font-feature-settings: 'pnum' on, 'lnum' on;
    color: #636972;
}
.page-link:focus{
	box-shadow:none;
}
.pagination .active .page-link, .pagination li .page-link:hover {
    color: #000;
    background-color: transparent;
    border-bottom: 1px solid #0BB3CD;
}
.pagination .page-item:first-child{
	margin-right:16px;
}
.pagination .page-item:last-child{
	margin-left:16px;
}
.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(11,179,205,0.3);
    border-radius: 5px;
	padding: 0;
    line-height: 36px;
    text-align: center;
}
.pagination .page-item:first-child .page-link{
	transform:scaleX(-1);
}
.pagination .page-item:first-child .page-link svg, .pagination .page-item:last-child .page-link svg,
.pagination .page-item:first-child .page-link img, .pagination .page-item:last-child .page-link img {
    fill: rgba(11,179,205,0.3);
    width: 16px;
    height: 16px;
}
.pagination .page-item:first-child .page-link svg path, .pagination .page-item:last-child .page-link svg path{
	fill: rgba(11,179,205,0.3);
}
.pagination .page-item:first-child .page-link:hover, .pagination .page-item:last-child .page-link:hover {
	border: 2px solid rgba(11,179,205,1);
}
.pagination .page-item:first-child .page-link:hover svg, .pagination .page-item:last-child .page-link:hover svg,
.pagination .page-item:first-child .page-link:hover svg path, .pagination .page-item:last-child .page-link:hover svg path{
	fill: rgba(11,179,205,1);
}

@media (max-width:1200px){
.our-service-section::after, .our-service-section::before, .our-service-section .service-lisitng > div:first-child .item-box::before{
	display:none;
}
}
@media (max-width:991px){
.effective-section .right-content {
    margin-top: 30px;
}
.effective-section .right-content::before{
	width:100%;
}
.effective-section .right-content::after {
    width: 70px;
    height: 69px;
    right: 12px;
    top: 45px;
    background-size: 70px;
}
.effective-section .left-content {
    padding-right: 0;
}

.sort-filter {
    margin-top: 50px;
}
.sort-filter .sort-box {
    width: 50%;
    max-width: 100%;
}
.filter-search-form {
    max-width: 100%;
    width: 50%;
}
.nav-tabs {
    margin-top: 30px;
}
.nav-tabs .nav-item {
    margin: 0 8px 8px 0;
}
.nav-tabs .nav-link {
    padding: 10px 15px;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0;
}
}
/*================== Service Page CSS END ==================*/

/*================== Service Details Page CSS ==================*/

.single-service-img{
	height: 100%;
}
.single-service-img img {
    /* height: 100%; */
	display:block;
   /*  background-size: cover;
    background-position: top center; */
}
.service-detail .cat-name {
    font-weight: 800;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Gilroy';
    color: #0BB3CD;
    display: inline-flex;
    align-items: center;
}
.service-detail .cat-name .cat-icon{
	width: 38px;
    height: 38px;
	margin-right: 12px;
	position:relative;
}
.service-detail .cat-name .cat-icon::before {
    position: absolute;
    content: "";
    left: 2px;
    top: -15px;
    background-image: url(../img/service-detail/cat-name-drop.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 45px;
    height: 50px;
    background-size: 45px;
}
.service-detail .cat-name svg, .service-detail .cat-name img {
    width: 38px;
    height: 38px;
    fill: #0BB3CD;
	position:relative;
}
.service-detail .cat-name svg, .service-detail .cat-name svg path{
	fill: #0BB3CD;
}
.service-detail h1 {
    letter-spacing: 0.2px;
    color: #183B56;
    max-width: 500px;
}
.service-info-tabs {
    justify-content: normal;
    width: 100%;
    margin-top: 100px;
}
.service-info-tabs .nav-item {
    margin: 0 0 8px;
    padding-right: 10px;
}
.service-info-tabs .nav-item:last-child {
    padding-right: 0px;
}
.service-info-tabs .nav-link {
    border: none;
    background: #C0F3FB;
    border-radius: 0;
    padding: 10px 35px;
    font-weight: 800;
    font-size: 16px;
    line-height: 30px;
    color: #0BB3CD;
	font-family: 'Gilroy';
    width: 100%;
    display: block;
    text-align: center;
}
.service-info-tabs .nav-item.show .nav-link, .service-info-tabs .nav-link.active,
.service-info-tabs .nav-link:focus, .service-info-tabs .nav-link:hover {
    background-color: #0BB3CD;
    border-color: #0BB3CD;
}
.serviceinfo-tabs-content {
    padding: 25px 10px;
}
.serviceinfo-tabs-content .tabs-content ul li {
    position: relative;
    font-weight: 500;
    line-height: 24px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #000;
    margin-top: 8px !important;
    padding-left: 22px !important;
    display: block;
}
.serviceinfo-tabs-content .tabs-content ul li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 8px;
    background-image: url(../img/service-detail/bullet-drop.png);
    background-size: 10px;
    width: 10px;
    height: 11px;
}
.serviceinfo-tabs-content .tabs-content{
	font-weight: 500;
    line-height: 30px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #000;
}
.serviceinfo-tabs-content ul.overview-content li {
    padding-left: 0;
    display: inline-flex;
    width: 100%;
    align-items: center;
    margin-bottom: 15px;
}
.serviceinfo-tabs-content .overview-content li::before{
	display:none;
}
.serviceinfo-tabs-content .overview-content li .icon-box {
    background: #0BB3CD;
    width: 36px;
    display: inline-flex;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
	margin-right:10px;
}
.serviceinfo-tabs-content .overview-content li .icon-box svg, .serviceinfo-tabs-content .overview-content li .icon-box img{
	width: 18px;
    height: 18px;
	fill:#fff;
}
.serviceinfo-tabs-content .overview-content li .icon-box svg path{
	fill:#fff;
}
.service-detail .price {
    font-weight: 500;
    font-size: 20px;
    color: #000;
    display: inline-flex;
    align-items: center;
	width: 100%;
}
.service-detail .price span {
    font-weight: 800;
    font-size: 42px;
	margin-left:5px;
    color: #21B577;
	font-family: 'Gilroy';
}

.related-service{
	position:relative;
}
.related-service::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 100px;
    background-image: url(../img/service-detail/related-vector.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 42px;
    width: 42px;
    height: 70px;
}
.related-service-slider::before {
    position: absolute;
    content: "";
    right: -50px;
    z-index: -1;
    bottom: 100px;
    background-image: url(../img/service-detail/related-vector-y.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75px;
    width: 75px;
    height: 85px;
}
.related-service .heading, .related-service .heading span {
    position: relative;
}
.related-service .heading::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 110px;
    border-top-right-radius: 110px;
    background: #CDEEE0;
    transform: rotate(30.33deg) translateX(-50%);
    width: 55px;
    height: 110px;
    left: 50%;
    top: -18px;
}
.related-service-slider .slick-list {
    margin: 55px -15px 0;
}
.related-service-slider .slick-track {
    display: inline-flex;
}
.related-service-slider .slick-slide {
    padding: 0 15px;
    display: inline-flex;
    height: auto;
}
.related-service-slider .slick-slide > div, .related-service-slider .slick-slide > div > .slick, .related-service-slider .slick-slide > div .item-box {
    height: 100%;
}
.related-service-slider .slick-next {
    right: -65px;
}
.related-service-slider .slick-prev {
    left: -65px;
    transform: scaleX(-1) translate(0, -50%);
}
.related-service-slider .slick-arrow svg, .related-service-slider .slick-arrow img {
    width: 23px;
    height: 23px;
	fill:#0BB3CD;
}
.related-service-slider .slick-arrow svg path{
	fill:#0BB3CD;
}
.related-service-slider .slick-arrow:hover svg, .related-service-slider .slick-arrow:hover svg path{
	fill:#000;
}

@media (max-width:1400px){
.service-info-tabs .nav-link{
	padding:10px 28px;
}
}
@media (max-width:1200px){
.related-service::before, .related-service-slider::before{
	display:none;
}
.related-service-slider .slick-prev{
	left:0;
	background: #fff;
    height: 35px;
    width: 35px;
	z-index:9;
}
.related-service-slider .slick-next {
    right: 0;
    background: #fff;
    height: 35px;
    width: 35px;
}
}
@media (max-width:991px){
.single-service-img {
    height: auto;
	margin-bottom:35px;
}
.single-service-img img {
    height: auto;
    width: 100%;
}
.service-info-tabs {
    margin-top: 20px;
}
.service-detail h1 {
    max-width: 450px;
    font-size: 35px;
}
.related-service .heading::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 90px;
    border-top-right-radius: 90px;
    background: #CDEEE0;
    transform: rotate(30.33deg) translateX(-50%);
    width: 45px;
    height: 90px;
    left: 50%;
    top: -18px;
}
}
@media (max-width:767px){

.service-info-tabs .nav-link {
    padding: 9px 20px;
    font-size: 14px;
    line-height: 22px;
}
.service-detail .price span {
    font-size: 28px;
}
.serviceinfo-tabs-content {
    padding: 15px 0;
}
}
@media (max-width:575px){
.service-detail h1 {
    max-width: 380px;
    font-size: 30px;
}
}
@media (max-width:480px){
.service-info-tabs .nav-item {
    width: calc(50% - 10px);
    width: -webkit-calc(50% - 10px);
    width: -moz-calc(50% - 10px);
    padding-right: 0;
    margin-right: 10px;
}
.service-info-tabs .nav-item:nth-child(2n) {
    padding-right:0;
}
}
@media (max-width:380px){
.service-detail h1 {
    max-width: 100%;
    font-size: 27px;
}
.service-info-tabs .nav-item {
    width: 100%;
    margin-right: 0px;
}
}
/*================== Service Details Page CSS END ==================*/

/*================== Order Summary Page CSS ==================*/
.order-summary-sec{
	position: relative;
}
.order-summary-sec::before {
    position: absolute;
    content: "";
    left: 0;
    top: 40%;
    background-image: url(../img/service-detail/related-vector.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 42px;
    width: 42px;
    height: 70px;
}
.order-summary-sec::after {
    position: absolute;
    content: "";
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
    background: #21B577;
    transform: rotate(41.71deg);
    width: 50px;
    height: 100px;
    right: 60px;
    bottom: 5px;
}
.order-summary-sec .heading, .order-summary-sec .heading span {
    position: relative;
}
.order-summary-sec .heading::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 110px;
    border-top-right-radius: 110px;
    background: #CDEEE0;
    transform: rotate(30.33deg) translateX(-50%);
    width: 55px;
    height: 110px;
    left: 49.3%;
    top: -8px;
}

.order-details-table .order-item {
    background: #F6F7D3;
    border: none;
    border-bottom: 15px solid #fff;
}
.order-details-table .order-item:last-child {
    border-bottom: none;
}
.order-details-table  td, .order-details-table  th{
	border:none;
	vertical-align: middle;
}
.order-details-table .item-thumbnail {
    max-width: 110px;
}
.order-details-table .item-thumbnail img{
	display:block;
}
.order-details-table .title {
    font-size: 23px;
    color: #000;
	margin-bottom:15px;
    display: inline-block;
}
.order-details-table .appointment-info {
    font-weight: 500;
    font-size: 16px;
	margin-bottom:4px;
    color: #000;
}
.order-details-table .appointment-info:last-child {
	margin-bottom:0px;
}
.order-details-table .appointment-info span {
    font-weight: 700;
    font-size: 16px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #0BB3CD;
    position: relative;
    padding-right: 30px;
}
.order-details-table .appointment-date span::before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background-image: url(../img/order-summary/date-a-icon.png);
    width: 22px;
    height: 24px;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}
.order-details-table .appointment-time span::before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background-image: url(../img/order-summary/clock-a-icon.png);
    width: 22px;
    height: 24px;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}
.order-details-table .price {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: end;
    margin-bottom: 70px;
    padding-right: 25px;
}
.order-details-table .price span {
    font-weight: 800;
    font-size: 32px;
    margin-left: 5px;
    color: #0BB3CD;
    font-family: 'Gilroy';
}
.order-details-table .item-subtotal{
	position:relative;
}
.order-details-table .remove-item {
    position: absolute;
    right: 35px;
    bottom: 25px;
    width: 28px;
    height: 28px;
}
.order-details-table .remove-item svg, .order-details-table .remove-item img{
	width: 28px;
    height: 28px;
	fill:#000;
}
.order-details-table .remove-item svg path{
	fill:#000;
}
.order-details-table .remove-item:hover svg, .order-details-table .remove-item:hover svg path{
	fill:#0BB3CD;
}
.order-details-table .total {
	vertical-align: bottom;
}
.order-details-table .total .price{
	margin-bottom:0;
	text-align:right;
	line-height: 35px;
	display:block;
}
.order-details-table .total .price span{
	display:block;
}
.checkout-btn {
    margin-top: 25px;
}
.checkout-btn .btn-secondary {
    margin-right: 10px;
}

.cart_empty_btn {
    margin-bottom: 12px;
}
.cart_empty_btn .btn {
    font-size: 15px;
    padding: 8px 15px;
}
.cart_empty_btn .btn svg, .cart_empty_btn .btn img {
    fill: #fff;
    width: 17px;
    height: 17px;
    margin-left: 9px;
}
.cart_empty_btn .btn svg path{
	fill: #fff;
}

.payment-method-sec .heading, .payment-method-sec .heading span {
    position: relative;
	letter-spacing: 0.2px;
	color: #2C3C4D;
}
.payment-method-sec .heading::before {
    position: absolute;
    content: "";
    background-image: url(../img/services/quality-vector.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 97px;
    height: 98px;
    left: 50%;
    transform: translateX(-50%);
    top: -28px;
    background-size: 97px;
}
.payment-method-lists {
    display: inline-flex;
    align-items: center;
    flex-flow: wrap;
	justify-content: center;
	margin-top: 35px;
}
.payment-method-lists li {
    padding: 10px 35px;
}
.payment-method-lists li img{
    display:block;
}

@media (max-width:1200px){
.order-summary-sec::before, .order-summary-sec::after{
	display:none;
}
}
@media (max-width:991px){
.order-details-table{
    width: 900px;
}
}
@media (max-width:767px){
.order-details-table {
    width: 850px;
}
.order-details-table .title {
    font-size: 22px;
    margin-bottom: 15px;
}
.order-details-table .price span {
    font-size: 22px;
}
.order-details-table .total .price {
    line-height: 26px;
}
.order-details-table .remove-item svg, .order-details-table .remove-item img, .order-details-table .remove-item {
    width: 22px;
    height: 22px;
}
.order-details-table .appointment-info, .order-details-table .appointment-info span{
	font-size:15px;
}
.checkout-btn .btn {
    display: block;
    max-width: 270px;
    margin: 0 auto 10px;
}
.checkout-btn .btn:last-child{
	margin-bottom:0;
}
}
/*================== Order Summary Page CSS END ==================*/


/*================== Checkout Page CSS ==================*/
.checkout-page, .inner-checkout{
	position:relative;
}
.checkout-page::before, .checkout-page::after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
}
.checkout-page::before {
    background-image: url(../img/banner-shape-l.png);
    left: 0;
    width: 80px;
    height: 96px;
    background-size: 80px;
    top: 150px;
}
.checkout-page::after {
    background-image: url(../img/banner-shape-r.png);
    right: 0;
    width: 80px;
    height: 96px;
    background-size: 80px;
    top: 150px;
}
.inner-checkout::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
    background: #21B577;
    transform: rotate(41.71deg);
    width: 50px;
    height: 100px;
    left: 0px;
    top: 70%;
}
.checkout-login-box .login-title, .checkout-page .checkout-form-title {
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    color: #000;
    margin-bottom: 22px;
}
.checkout-form{
	margin-top:35px;
}
.checkout-form label {
    font-weight: 600;
    font-size: 16px;
    color: #444444;
    margin-bottom: 2px;
}
.checkout-form .form-control {
    background: #F9FBFC;
    border: 1px solid #0BB3CD;
    border-radius: 0;
    height: auto;
    line-height: normal;
    padding: 15px 12px;
}
.checkout-form textarea.form-control {
	background: #F9FBFC;
    border: 1px solid #0BB3CD;
	height:150px;
	resize:none;
}
.checkout-form .form-control::-webkit-input-placeholder {
	color: #8C959F;
}
.checkout-form .form-control:-ms-input-placeholder {
	color: #8C959F;
}
.checkout-form .form-control::placeholder {
	color: #8C959F;
}
.payment-details {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.2);
}

.amount-block {
    border: 1px solid #0BB3CD;
    padding: 35px 25px;
}
.amount-table tr td{
	border:none;
	padding: 12px;
}
.amount-table tr td:first-child{
	font-weight: 500;
	color: #3D3E35;
	display: inline-flex;
	font-feature-settings: 'pnum' on, 'lnum' on;
	line-height:28px;
    align-items: center;
}
.amount-table tr td:last-child{
	font-weight: 700;
    font-size: 22px;
	font-feature-settings: 'pnum' on, 'lnum' on;
	line-height:28px;
    text-align: right;
    color: #000;
}
.amount-table tr.total-amount td:first-child {
    font-size: 18px;
    color: #081B33;
}
.amount-table tr td svg, .amount-table tr td img{
	margin-left:5px;
}
.amount-table .total-amount {
    background: #F6F7D3;
}

@media (max-width:1200px){
.checkout-page::before, .checkout-page::after, .inner-checkout::before{
	display:none;
}
.amount-block {
    padding: 35px 15px;
}
.amount-table tr td:last-child {
    font-size: 16px;
}
}
@media (max-width:991px){
.amount-block {
    margin-top: 35px;
}
}
@media (max-width:767px){
.checkout-login-box .btn-secondary {
    margin-top: 15px;
}
.checkout-login-box .login-title, .checkout-page .checkout-form-title {
    font-size: 25px;
    line-height: 26px;
    margin-bottom: 18px;
}
}
@media (max-width:575px){
.amount-block {
    padding: 30px 20px;
}
.amount-table tr td {
    padding: 10px;
}
.amount-table tr td:first-child {
    font-size: 14px;
}
.amount-table tr td:last-child {
    font-size: 16px;
}
}
/*================== Checkout Page CSS END ==================*/

/*================== Login Page CSS ==================*/
.login-signin-page{
	position: relative;
}
.login-signin-page::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
    background: #21B577;
    transform: rotate(-33.12deg);
    width: 50px;
    height: 100px;
    left: 0px;
    top: 50%;
}
.login-form .heading, .login-form .heading span {
    color: #2C3C4D;
    position: relative;
    margin-bottom: 20px;
}
.login-form .heading::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 90px;
    border-top-right-radius: 90px;
    background: #CDEEE0;
    transform: rotate(30.33deg);
    width: 50px;
    height: 90px;
    left: 46px;
    top: -12px;
}
.create-account-form {
    background: #F6F7D3;
    padding: 45px 30px;
	position: relative;
}
.create-account-form::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 110px;
    border-top-right-radius: 110px;
    background: #D9E026;
    transform: rotate(90deg) translateY(-50%);
    width: 60px;
    height: 110px;
    right: 26px;
    top: 50%;
    z-index: -1;
}
.create-account-form .heading, .create-account-form .heading span {
    color: #2C3C4D;
    position: relative;
    margin-bottom: 20px;
}
.create-account-form .heading::before {
    position: absolute;
    content: "";
    background-image: url(../img/sign-in-up/create-account-drop.png);
    background-size: 82px;
    background-repeat: no-repeat;
    background-position: center;
    width: 82px;
    height: 92px;
    top: -30px;
    left: 20px;
}

@media (max-width:991px){
.login-form .heading::before {
    border-bottom-right-radius: 80px;
    border-top-right-radius: 80px;
    width: 40px;
    height: 80px;
    left: 38px;
    top: -12px;
}
.login-signin-page::before, .create-account-form::before{
	display:none;
}
.create-account-form {
    margin-top: 40px;
}
.create-account-form .heading::before {
    background-size: 60px;
    width: 60px;
    height: 75px;
    top: -20px;
    left: 25px;
}
}
@media (max-width:575px){
.login-form .heading::before {
    left: 20px;
    top: -21px;
}
.create-account-form {
    padding: 35px 15px;
}
}
/*================== Login Page CSS END ==================*/

/*================== Booking Thank You Page CSS ==================*/
.booking-thankyou-page, .inner-booking-thankyou{
	position:relative;
}
.booking-thankyou-page::before, .booking-thankyou-page::after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
}
.booking-thankyou-page::before {
    background-image: url(../img/banner-shape-l.png);
    left: 0;
    width: 80px;
    height: 96px;
    background-size: 80px;
    top: 150px;
}
.booking-thankyou-page::after {
    background-image: url(../img/banner-shape-r.png);
    right: 0;
    width: 80px;
    height: 96px;
    background-size: 80px;
    top: 150px;
}

.inner-booking-thankyou::before, .inner-booking-thankyou::after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
}
.inner-booking-thankyou::before {
    background-image: url(../img/booking/green-vector.png);
    left: 20px;
    width: 80px;
    height: 85px;
    background-size: 80px;
    bottom: 23%;
}
.inner-booking-thankyou::after {
    background-image: url(../img/booking/drop-by.png);
    right: 25px;
    width: 90px;
    height: 115px;
    background-size: 90px;
    bottom: 22%;
}

.booking-thankyou-msg .heading {
    max-width: 370px;
}
.booking-thankyou-msg .appointment-info {
    font-weight: 500;
    color: #000;
}
.booking-thankyou-msg .appointment-info span {
    font-weight: 600;
    font-size: 16px;
    color: #0BB3CD;
    font-feature-settings: 'pnum' on, 'lnum' on;
}

.order-summary-info {
    margin-top: 45px;
}
.order-summary-info .heading {
    font-size: 28px;
    line-height: 37px;
    color: #0A0C17;
}
.order-summary-info .booking-id {
    font-weight: 800;
    color: #000;
}
.order-summary-info .booking-id span {
    font-weight: 600;
    letter-spacing: 0.1em;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #0D0E10;
    opacity: 0.5;
}

.order-summary-table .item-thumbnail {
    max-width: 90px;
}
.order-summary-table .title {
    font-size: 24px;
    margin-bottom: 5px;
}
.order-summary-table .price {
    padding:0;
	margin:0;
}
.order-summary-table .total-amount span {
    color: #000;
}

.payment-method-info {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.2);
}
.payment-method-info .left-content {
    font-style: italic;
    font-weight: 500;
    color: #5A7184;
	max-width:680px;
}
.payment-method-info .card-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    text-align: right;
    color: #081B33;
}
.payment-method-info .card-no {
    font-weight: 400;
    text-transform: lowercase;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #000;
}
.payment-method-info .card-no img{
	margin-right:10px;
}
.payment-method-info .card-info-inner {
    display: flex;
    width: 100%;
    justify-content: space-between;
	align-items:center;
}
.payment-method-info .card-info-inner .card-name {
    font-weight: 700;
    font-size: 17px;
    color: #000;
}
.person-detail-block {
    background: #C0F3FB;
    padding: 40px 40px;
    margin-top: 40px;
}
.person-detail-block .person-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
    opacity: 0.5;
	margin-bottom:25px;
}
.person-detail-block .booked-time-date {
    font-weight: 500;
    color: #607A7E;
	margin-bottom:15px;
}
.person-detail-block .booked-time-date span {
    font-weight: 700;
    color: #0A0C17;
    font-feature-settings: 'pnum' on, 'lnum' on;
}
.person-detail-block .person-name {
    font-weight: 700;
    font-size: 27px;
    line-height: 32px;
    color: #0A0C17;
}
.person-detail-block .barcode {
    margin: 50px 0;
}
ul.person-fullinfo {
    display: inline-flex;
    width: 100%;
	flex-flow: wrap;
	margin-top:20px
}
ul.person-fullinfo li {
    font-weight: 500;
    color: #607A7E;
	width:50%;
	margin-bottom:8px;
}
ul.person-fullinfo li span {
    font-weight: 700;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #000000;
}
.share-social-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
	margin-top:65px;
    font-size: 17px;
    color: #607A7E;
}
.share-social-btn a {
    width: 25px;
    height: 20px;
    text-align: center;
    margin-right: 8px;
}
.share-social-btn a:last-child {
    margin-right: 0px;
}
.person-detail-block .btn {
    font-size: 14px;
}
.person-detail-block .btn svg {
    margin-left: 7px;
    width: 20px;
    height: 20px;
}
@media (max-width:1200px){
.booking-thankyou-page::before, .booking-thankyou-page::after, .inner-booking-thankyou::before, .inner-booking-thankyou::after{
	display:none;
}
}
@media (max-width:991px){
.right-logo {
    display: none;
}
.order-summary-info .booking-id {
    text-align: left !important;
}
.payment-method-info .card-info {
    margin-top: 20px;
}
.payment-method-info .card-title {
    font-size: 20px;
    text-align: left;
}
.person-detail-block {
    padding: 30px 20px;
    margin-top: 30px;
}
.share-social-btn {
    margin-top: 15px;
}
.person-detail-block .right-info{
    text-align: center !important;
	margin-top:20px;
}
.person-detail-block .barcode {
    margin: 12px 0;
}
}

@media (max-width:575px){
.person-detail-block .person-name {
    font-size: 22px;
    line-height: 28px;
}
ul.person-fullinfo li {
    width: 100%;
    margin-bottom: 5px;
}
}
/*================== Booking Thank You Page CSS END ==================*/

/*================== My Account Page CSS ==================*/

.my-account-page, .inner-my-account{
	position:relative;
	overflow:hidden;
}
.my-account-page::before, .my-account-page::after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
}
.my-account-page::before {
    background-image: url(../img/banner-shape-l.png);
    left: 0;
    width: 80px;
    height: 96px;
    background-size: 80px;
    top: 140px;
}
.my-account-page::after {
    background-image: url(../img/banner-shape-r.png);
    right: 0;
    width: 80px;
    height: 96px;
    background-size: 80px;
    top: 140px;
}

.inner-my-account::before, .inner-my-account::after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
}
.inner-my-account::before {
    background-image: url(../img/banner-shape-r.png);
    left: -20px;
    width: 70px;
    height: 75px;
    background-size: 70px;
    bottom: 0;
    transform: rotate(-175.53deg);
}
.inner-my-account::after {
    position: absolute;
    content: "";
    border-bottom-right-radius: 80px;
    border-top-right-radius: 80px;
    width: 50px;
    height: 95px;
    right: 35px;
    bottom: 67px;
    background: #21B577;
    transform: rotate(41.71deg);
}
.my-account-page .heading, .my-account-page .heading span {
    position: relative;
}
.my-account-page .heading::before {
    position: absolute;
    content: "";
    border-bottom-right-radius: 90px;
    border-top-right-radius: 90px;
    width: 60px;
    height: 100px;
    left: 50%;
    top: 0px;
    background: #CDEEE0;
    transform: rotate(30.33deg) translateX(-50%);
}

.myaccount-sidebar{
	background: #C0F3FB;
	padding:40px 0;
}
.myaccount-tabs-content {
    padding-left: 25px;
}
.myaccount-tabs-content .form-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    color: #000;
    display: block;
    margin-bottom: 15px;
    margin-top: 15px;
}
.myaccount-sidebar .profile-img {
    max-width: 160px;
	height: 150px;
    border-radius: 100%;
    margin: 0 auto 10px;
}
.myaccount-sidebar .profile-img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.myaccount-sidebar .name {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #283646;
}
.myaccount-sidebar .designation {
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #5A7184;
}

.myaccount-tab{
	display: block;
}
.myaccount-tab .nav-item {
    margin: 0;
    display: block;
}
.myaccount-tab .nav-link {
    display: block;
    border-radius: 0;
    border: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: #000;
    padding: 15px 15px;
}
.myaccount-tab .nav-item.show .nav-link, .myaccount-tab .nav-link.active, 
.myaccount-tab .nav-link:focus, .myaccount-tab .nav-link:hover {
    color: #fff;
    background: #0BB3CD;
}
.myaccount-tab .nav-item .logout-btn {
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}
.myaccount-tab .nav-item .logout-btn svg, .myaccount-tab .nav-item .logout-btn svg path, .myaccount-tab .nav-item .logout-btn img {
    width: 15px;
    height: 15px;
	margin-left:5px;
    fill: #000;
}

.myrecent-service-table .title {
    font-size: 22px;
    margin-bottom: 12px;
	line-height: 26px;
}
.myrecent-service-table .appointment-info {
    color: #7E7E7E;
	line-height: 25px;
}
.myrecent-service-table .booking-id {
    font-weight: 600;
    font-size: 14px;
    color: #000;
	margin-bottom:15px;
}
.myrecent-service-table .booking-id span {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.01em;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #0D0E10;
    opacity: 0.5;
}
.myrecent-service-table .btn {
    background: #21B577;
    border-color: #21B577;
}
.myrecent-service-table .btn svg, .myrecent-service-table .btn svg path, .myrecent-service-table .btn img {
    width: 15px;
    height: 15px;
    margin-left: 5px;
}
.myrecent-service-table .btn:hover {
    background: #000;
    border-color: #000;
}

.payment-card-slider .slick-list{
	margin:35px -20px 30px;
}
.payment-card-slider .slick-slide {
    padding: 0 20px;
}
.payment-card-slider .item-card img {
    width: 100%;
}
.payment-card-slider .slick-prev, .payment-card-slider .slick-next {
    right: 0px;
    top: -67px;
    transform: none;
    width: 35px;
    height: 35px;
    border: 2px solid rgba(11,179,205,0.3);
    border-radius: 5px;
    opacity: 1;
}
.payment-card-slider .slick-prev {
    right: 45px;
    left: auto;
    transform: scaleX(-1);
}
.payment-card-slider .slick-arrow svg, .payment-card-slider .slick-arrow img {
    fill: rgba(11,179,205,0.3);
    width:18px;
    height: 18px;
}
.payment-card-slider .slick-arrow svg path {
    fill: rgba(11,179,205,0.3);
}
.payment-card-slider .slick-arrow:hover {
    border: 2px solid rgba(11,179,205,1);
}
.payment-card-slider .slick-arrow:hover svg, .payment-card-slider .slick-arrow:hover svg path {
    fill: rgba(11,179,205,1);
}
input[type=radio] {
    margin-right: 7px;
}

@media (max-width:1200px){
.my-account-page::before, .my-account-page::after, .inner-my-account::before, .inner-my-account::after{
	display:none;
}
}
@media (max-width:991px){
.my-account-page .heading::before {
    border-bottom-right-radius: 80px;
    border-top-right-radius: 80px;
    width: 45px;
    height: 80px;
}
.myaccount-sidebar {
    padding: 30px 0;
}
.myaccount-tabs-content {
    padding-left: 0;
    margin-top: 30px;
}
}
/*================== My Account Page CSS END ==================*/
/*================== Book Appointment Tabs CSS END ==================*/
.book-appointment-tabs {
    border-bottom: 3px solid #C0F3FB;
}
.book-appointment-tabs .nav-item {
    margin: 0;
    width: 33.33333%;
}
.book-appointment-tabs .nav-link {
    border: none;
    border-radius: 0px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.2px;
    width: 100%;
	justify-content: center;
	font-weight: 600;
	color: rgba(0,0,0,0.6);
	position:relative;
}
.book-appointment-tabs .nav-link::before{
	position:absolute;
	content:"";
	height:5px;
	border-radius:10px;
	background:none;
	bottom:-4px;
	left:0;
	right:0;
	margin: 0 auto;
	width:78%;
}
.book-appointment-tabs .nav-link::after{
	content: "";
    right: 5px;
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    transform: rotate(-45deg) translateY(-50%);
    -webkit-transform: rotate(-45deg) translateY(-50%);
    -moz-transform: rotate(-45deg) translateY(-50%);
    -o-transform: rotate(-45deg) translateY(-50%);
    -ms-transform: rotate(-45deg) translateY(-50%);
    border-right: 2px solid rgba(24,59,86,0.4);
    border-bottom: 2px solid rgba(24,59,86,0.4);
    transform-origin: 5px 0px;
}
.book-appointment-tabs .nav-item:last-child .nav-link::after{
	display:none;
}
.book-appointment-tabs .nav-link .icon-box{
	width: 35px;
    height: 35px;
	margin-right:7px;
}
.book-appointment-tabs .nav-link .icon-box img, .book-appointment-tabs .nav-link .icon-box svg {
    width: 35px;
    height: 35px;
    fill: rgba(11,179,205,0.6);
}
.book-appointment-tabs .nav-link .icon-box svg path{
	fill: rgba(11,179,205,0.6);
}
.book-appointment-tabs .nav-link:focus img, .book-appointment-tabs .nav-link:hover img,
.book-appointment-tabs .nav-item.show .nav-link img, .book-appointment-tabs .nav-link.active img {
    filter: brightness(1);
}
.book-appointment-tabs .nav-link:focus svg, .book-appointment-tabs .nav-link:hover svg,
.book-appointment-tabs .nav-item.show .nav-link svg, .book-appointment-tabs .nav-link.active svg, 
.book-appointment-tabs .nav-link:focus svg path, .book-appointment-tabs .nav-link:hover svg path,
.book-appointment-tabs .nav-item.show .nav-link svg path, .book-appointment-tabs .nav-link.active svg path{
	fill: #21B577;
}
.book-appointment-tabs .nav-item.show .nav-link, .book-appointment-tabs .nav-link.active,
.book-appointment-tabs .nav-link:focus, .book-appointment-tabs .nav-link:hover {
    color: #000;
    background-color: transparent;
}
.book-appointment-tabs .nav-link.active::before, .book-appointment-tabs .nav-link:focus::before, .book-appointment-tabs .nav-link:hover::before{
	background:#21B577;
}

.book-appointment-tabing .tabs-content {
    padding: 40px 80px;
}
.book-appointment-tabing .tabs-content ul {
    margin-top: 30px;
    margin-bottom: 30px;
	list-style:none;
}
.book-appointment-tabing .tabs-content ul li {
    position: relative;
    font-weight: 500;
    line-height: 24px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #000;
    margin-top: 8px !important;
    padding-left: 22px  !important;
	display:block;
}
.book-appointment-tabing .tabs-content ul li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 8px;
    background-image: url(../img/service-detail/bullet-drop.png);
    background-size: 10px;
    width: 10px;
    height: 11px;
}
.book-appointment-tabing .tabs-content h4 {
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0.12px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #183B56;
}
.book-appointment-tabing .accept-btn .btn {
    max-width: 200px;
    width: 100%;
}

div#snackbar {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
}
.forgot-password-page span.heading {
    display: block;
}
.forgot-password-page .heading::before {
    transform: rotate(30.33deg) translateX(-50%);
    left: 50%;
    top: -5px;
    z-index: -1;
}

.reset-password-form span.heading {
    display: block;
}
.reset-password-form .heading::before{
	z-index: -1;
}
.reset-password-form  i.fas {
    position: absolute;
    top: 46px;
    right: 10px;
    color: #0BB3CD;
    cursor: pointer;
}
.reset-password-form .register-pass-validationbox p {
    font-size: 15px;
    margin: 5px 0 0;
}

.username-signin::before {
    position: absolute;
    content: "";
    background-image: url(../img/username-check.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    right: 10px;
    top: 46px;
}

@media screen and (max-width:700px){
.top-service-slider .slick-prev {
    right: 70px !important;
    left: auto;
    transform: scaleX(-1);
}
 .top-service-slider .slick-next {
    right: 22px !important;
    top: -105px;
    transform: none;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(11,179,205,0.3);
    border-radius: 5px;
    opacity: 1;
}
}

.header-error-dialog {
    max-width: 727px;
    border: 3px solid red;
    padding: 3px 10px;
    background: #be8c8c;
    color: #fff;
    border-radius: 9px;
    margin: 10px 0px;
}
.header-error-dialog p{
    margin:0px;	
}