/*== Font css ==*/
	@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 300; font-stretch: 100%; src: url(../fonts/opensans-300.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }
	@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(../fonts/opensans-400.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
	@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(../fonts/opensans-600.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
	@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(../fonts/opensans-700.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
	@font-face { font-family: 'El Messiri'; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/ei-messiri-600.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
	@font-face { font-family: 'Lato'; font-style: normal; font-weight: 400;font-display: swap; src: url(../fonts/lato-400.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
/*== Font css End ==*/

/*== Variable ==*/
:root {
	--primary-color:   #ee7ab0;
	--secondary-color: #96daf4;
	--black-color:     #000000;
	--dark-color:      #414141;
	--light-color:     #F7F7F7;
	--white-color:     #FFFFFF;
	--light-pink:      #f7bdd8;
	--light-gray:	   #e9e9e9;
	--gray-color:	   #ebebeb;
	--font-lato:       'Lato';
	--font-el-messiri: 'El Messiri';
}
/*== Variable End ==*/

/*== Basic css ==*/
	*, *::before, *::after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
	body { font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 400; line-height: 1.5; color: var(--black-color); }
	a { color: inherit; text-decoration: underline; }
	a:hover, a:focus { color: inherit; text-decoration: none; }
	p { margin-bottom: 1rem; }
	img { max-width: 100%; height: auto; }
	b { font-weight: 600; }
	strong { font-weight: 700; }
	.transition { -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; transition-duration: 0.5s; }
	a.phonelink, a.phonelink:hover, a.phonelink:focus { cursor: default; text-decoration: none !important; color: inherit !important; }
	hr { opacity: 0.1; }
	.z-index { z-index:1;}
	@media (max-width: 1024px) {
		a.phonelink { text-decoration: underline !important; }
	}
	@media (min-width: 768px) {
		p { margin-bottom: 1.5rem; }
	}
/*== Basic css End ==*/

/*== Taxonomy ==*/
	.text-primary { color: var(--primary-color) !important; }
	.text-secondary { color: var(--secondary-color) !important; }
	.text-dark { color: var(--dark-color) !important; }
	.text-darker { color: var(--black-color) !important; }
	.fw-medium { font-weight: 500 !important; }
	.fw-sbold { font-weight: 600 !important; }
	.fs-smaller { font-size: 14px !important; }
	.fs-small { font-size: 16px !important; }
	.fs-large { font-size: 18px !important; }
	.fs-larger { font-size: 20px !important; }
	.text-uppercase-none { text-transform: none !important; }
	.text-underline-none { text-decoration: none !important; }
	.letter-spacing-1 { letter-spacing:1px;}
	.font-lato { font-family: var(--font-lato) !important}
	.font-el-messiri { font-family: var(--font-el-messiri) !important; }
/*== Taxonomy End ==*/

/*== Backgrounds ==*/
	.bg-primary { background-color: var(--primary-color) !important; }
	.bg-secondary { background-color: var(--secondary-color) !important; }
	.bg-light { background-color: var(--light-color) !important; }
	.bg-light-pink { background-color: var(--light-pink) !important; }
	.bg-dark { background-color: var(--dark-color) !important; }
	.bg-darker { background-color: var(--black-color) !important; }
	.bg-light-gray { background-color: var(--light-gray) !important;}
	.bg-gray { background-color:var(--gray-color) !important}
	.bg-cover { background-size: cover !important; }
	.bg-contain { background-size: contain !important; }
	.bg-start { background-position: left !important; }
	.bg-start-top { background-position: left top !important; }
	.bg-end { background-position: right !important; }
	.bg-end-top { background-position: right top !important; }
	.bg-center { background-position: center !important; }
	.bg-center-top { background-position: center top !important; }
	.bg-center-bottom { background-position: center bottom !important; }
	.bg-repeat { background-repeat: repeat !important; }
	.bg-repeat-x { background-repeat: repeat-x !important; }
	.bg-repeat-y { background-repeat: repeat-y !important; }
	.bg-norepeat { background-repeat: no-repeat !important; }
	.object-cover { object-fit: cover; object-position: center; }
	.object-center-top { object-position: center top; }
	.object-center-bottom { object-position: center bottom; }
	.object-start { object-position: left; }
	.object-end { object-position: right; }
	.overflow-hide { overflow:hidden;}
/*== Backgrounds End ==*/

/*== Border ==*/
	.border-primary { border-color: var(--primary-color) !important; }
	.border-secondary { border-color: var(--secondary-color) !important; }
	.border-light { border-color: var(--light-color) !important; }
	.border-dark { border-color: var(--dark-color) !important; }
	.border-darker { border-color: var(--black-color) !important; }
	.border-gray { border-color: var(--light-gray) !important; }
/*== Border End ==*/

/*== Position ==*/
	@media (min-width: 576px) {
		.position-sm-absolute { position: absolute !important; }
	}
	@media (min-width: 768px) {
		.position-md-absolute { position: absolute !important; }
	}
	@media (min-width: 992px) {
		.position-lg-absolute { position: absolute !important; }
	}
	@media (min-width: 1200px) {
		.position-xl-absolute { position: absolute !important; }
	}
	@media (min-width: 1400px) {
		.position-xxl-absolute { position: absolute !important; }
	}
/*== Position End ==*/

/*== Sizing ==*/
	@media (min-width: 576px) {
		.w-sm-25   { width: 25% !important; }
		.w-sm-50   { width: 50% !important; }
		.w-sm-75   { width: 75% !important; }
		.w-sm-100  { width: 100% !important; }
		.w-sm-auto { width: auto !important; }
		.mw-sm-25   { max-width: 25% !important; }
		.mw-sm-50   { max-width: 50% !important; }
		.mw-sm-75   { max-width: 75% !important; }
		.mw-sm-100  { max-width: 100% !important; }
		.mw-sm-auto { max-width: auto !important; }
	}
	@media (min-width: 768px) {
		.w-md-25   { width: 25% !important; }
		.w-md-50   { width: 50% !important; }
		.w-md-75   { width: 75% !important; }
		.w-md-100  { width: 100% !important; }
		.w-md-auto { width: auto !important; }
		.mw-md-25   { max-width: 25% !important; }
		.mw-md-50   { max-width: 50% !important; }
		.mw-md-75   { max-width: 75% !important; }
		.mw-md-100  { max-width: 100% !important; }
		.mw-md-auto { max-width: auto !important; }
	}
	@media (min-width: 992px) {
		.w-lg-25   { width: 25% !important; }
		.w-lg-50   { width: 50% !important; }
		.w-lg-75   { width: 75% !important; }
		.w-lg-100  { width: 100% !important; }
		.w-lg-auto { width: auto !important; }
		.mw-lg-25   { max-width: 25% !important; }
		.mw-lg-50   { max-width: 50% !important; }
		.mw-lg-75   { max-width: 75% !important; }
		.mw-lg-100  { max-width: 100% !important; }
		.mw-lg-auto { max-width: auto !important; }
	}
	@media (min-width: 1200px) {
		.w-xl-25   { width: 25% !important; }
		.w-xl-50   { width: 50% !important; }
		.w-xl-75   { width: 75% !important; }
		.w-xl-100  { width: 100% !important; }
		.w-xl-auto { width: auto !important; }
		.mw-xl-25   { max-width: 25% !important; }
		.mw-xl-50   { max-width: 50% !important; }
		.mw-xl-75   { max-width: 75% !important; }
		.mw-xl-100  { max-width: 100% !important; }
		.mw-xl-auto { max-width: auto !important; }
	}
	@media (min-width: 1400px) {
		.w-xxl-25   { width: 25% !important; }
		.w-xxl-50   { width: 50% !important; }
		.w-xxl-75   { width: 75% !important; }
		.w-xxl-100  { width: 100% !important; }
		.w-xxl-auto { width: auto !important; }
		.mw-xxl-25   { max-width: 25% !important; }
		.mw-xxl-50   { max-width: 50% !important; }
		.mw-xxl-75   { max-width: 75% !important; }
		.mw-xxl-100  { max-width: 100% !important; }
		.mw-xxl-auto { max-width: auto !important; }
	}
/*== Sizing End ==*/

/*== Heading ==*/
	.page-title, .banner-title { font-size: 28px; font-weight: 600; line-height: 1.2; text-transform: uppercase; margin-bottom: 0rem; font-family: 'El Messiri', sans-serif; }
	.sub-title1, h2 { font-size: 20px; font-weight: 600; line-height: 1.2; text-transform: uppercase; margin-bottom: 1rem; font-family: 'El Messiri', sans-serif; }
	.sub-title2, h3 { font-size: 20px; font-weight: 600; line-height: 1.2; text-transform: uppercase; margin-bottom: 0.6rem; font-family: 'El Messiri', sans-serif; }
	.sub-title3, h4 { font-size: 18px; font-weight: 600; line-height: 1.2; text-transform: uppercase; margin-bottom: 0.6rem; font-family: 'El Messiri', sans-serif; }
	.inner-banner-title { font-size:30px; font-weight: 600; line-height: 1.2; margin-bottom: 0rem; font-family: 'El Messiri', sans-serif;  }
	.new-patient-title { font-size:40px; font-weight: 600; line-height: 1.2; margin-bottom: 0rem; font-family: 'El Messiri', sans-serif; }
	.large-title { font-size:30px; font-weight: 600; line-height: 1.2; margin-bottom: 0rem; font-family: 'El Messiri', sans-serif; }
	.step-title { font-size:28px; font-weight: 600; line-height: 1.2; margin-bottom: 0rem; font-family: 'El Messiri', sans-serif; }
	@media (min-width: 768px) {
		.inner-banner-title { font-size:50px;}
		.new-patient-title { font-size:55px;}
		.large-title { font-size:45px;}
		.banner-title { font-size:42px;}
		.step-title { font-size:35px; }
		.page-title { font-size: 28px; }
		.sub-title1, h2 { font-size: 25px; }
		.sub-title2, h3 { font-size: 23px; }
		.sub-title3, h4 { font-size: 21px; }
		
	}
	@media (min-width:1200px) {
		.new-patient-title { font-size:66px;} 
		.inner-banner-title { font-size:60px;}
		.large-title { font-size:50px;}
		.page-title { font-size: 32px; }
		.sub-title1, h2 { font-size: 27px; }
		.sub-title2, h3 { font-size: 25px; }
		.sub-title3, h4 { font-size: 23px; line-height: 1.4; } 
	}
	@media (min-width: 1400px) {
		.banner-title { font-size:58px;}
		.page-title { font-size: 42px; }
	}
/*== Heading End ==*/

/*== Header ==*/
	.page-header { font-size: 15px; font-weight: 400; line-height: 1.4; }
	.page-header .site-logo img { width: auto; max-height: 50px; -webkit-transition: .6s ease-in-out; transition: .6s ease-in-out; }
	.sticky-fixed { position: fixed; left: 0; right: 0; top: 0; z-index: 1020; -webkit-box-shadow: rgba(0,0,0,.1) 1px 0px 5px; box-shadow: rgba(0,0,0,.1) 1px 0px 5px; background:#fff; }
	.sticky-fixed.page-header:after { background-image:none !important; display:none;}
	.page-header .btn { padding: 7px 22px; }
	.page-header:after { content: ''; position: absolute;  top: 0;  left: 0; right: 0; width: 100%;  background-image: linear-gradient(0, transparent 0%, #fff 90%, #fff 100%) !important; height: 180px; z-index: -1;}
	.sticky-fixed .site-logo img { max-height:43px !important; -webkit-transition: .6s ease-in-out; transition: .6s ease-in-out;}
	@media (min-width: 768px) {
		.page-header .site-logo img { max-height: 75px;  -webkit-transition: .6s ease-in-out; transition: .6s ease-in-out; }
		.page-header:after { height:220px;}
	}
	@media (min-width: 1400px) { .page-header:after { height:92px;} .page-header .site-logo img { max-height: 110px; -webkit-transition: .6s ease-in-out; transition: .6s ease-in-out;  } .sticky-fixed .site-logo img { max-height:70px !important; -webkit-transition: .6s ease-in-out; transition: .6s ease-in-out;} }
/*== Header End ==*/

/*== Footer ==*/
	.contact-map { min-height: 300px; background-size: auto 370px; }
	.contact-map .btn { margin-top: 160px; }
	.page-footer { font-size: 15px; line-height: 1.4; }
	.page-footer a { color: inherit; }
	.copyright-text { font-family: Verdana, Geneva, sans-serif; font-size: 11px; line-height: 1.4; }
	.webauthorv1 { color: #828487; text-align: left !important; font-family: 'Open Sans', sans-serif !important; font-weight: 400 !important; font-size: 11px !important; line-height: 1.4 !important; text-transform: uppercase !important; display: inline-block !important; position: relative !important; padding-left: 35px; }
	.webauthorv1 strong.dfbold { font-size: 16px !important; font-weight: 700 !important; letter-spacing: 0.3px !important; }
	.webauthorv1 a.dflink, .webauthorv1 a.dflink:hover, .webauthorv1 a.dflink:focus { color: inherit !important; text-decoration: none !important; font-weight: inherit !important; font-size: inherit !important; }
	.webauthorv1 a.dflink:focus { outline: none !important; }
	.webauthorv1 .dflogo { position: absolute; left: 0; top: 4px; }
	.lineup1 { margin-left: -0.3px; }
	.lineup2 { margin-left: -1.3px; }
	.lineup3 { margin-left: -0.5px; }
	.lineup4 { margin-left: -0.5px; }
	.lineup5 { margin-left: -0.5px; }
	.lineup6a { margin-left: 0.5px; }
	.lineup6b { margin-left: -0.5px; }
	.df-author[data-theme=white] .webauthorv1 { color: var(--white-color) !important; }
	.df-author[data-theme=white] .webauthorv1 path { fill: var(--white-color) !important; }
	.df-author[data-theme=light] .webauthorv1 { color: #bbb !important; }
	.df-author[data-theme=light] .webauthorv1 path { fill: #bbb !important; }
	.df-author[data-theme=dark] .webauthorv1 { color: var(--black-color) !important; }
	.df-author[data-theme=dark] .webauthorv1 path { fill: var(--black-color) !important; }
	@media (min-width: 768px) {
		.contact-map { min-height: 400px; background-size: auto; }
		.contact-map .btn { margin-top: 230px; }
		.table-hours { max-width: 310px; }
	}
/*== Footer end ==*/

/*== Menu ==*/
	.navbar-toggler { width: 25px; height: 21px; padding: 0; outline: none !important; vertical-align: middle; display: inline-block; }
	.navbar-toggler:focus { box-shadow: none; }
	.navbar-toggler .i-line { width: 100%; height: 2px; border-radius: 10px; background-color: var(--white-color); position: absolute; left: 0; right: 0; margin-left: auto; margin-right: auto; }
	.navbar-toggler .i-line.top { top: -1px; }
	.navbar-toggler .i-line.middle { top: 50%; margin-top: -1.5px; }
	.navbar-toggler .i-line.bottom { bottom: 0; }
	.closed .i-line.middle { width: 0; opacity: 0; }
	.closed .i-line.top { top: 8px; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); transform: rotate(45deg); }
	.closed .i-line.bottom { bottom: 9px; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); transform: rotate(-45deg); }
	.navbar .nav-item { outline: none; }
	.navbar .nav-link { color: var(--black-color); font-size: 12px; font-weight: 400; line-height: 1.4; text-transform: uppercase; text-decoration: none; padding: 14px 16px; letter-spacing:1px; }
	.active .nav-link, .open .nav-link, .nav-item:hover .nav-link, .nav-item:focus .nav-link { background-color: transparent; color: var(--black-color); text-decoration: none; }
	.navbar .dropdown-menu { font-size: 12px; font-weight: 400; line-height: 1.2; text-transform: uppercase; background-color: var(--black-color); color: var(--white-color); margin: 0; border: none; border-radius: 0; padding: 5px 0; }
	.navbar .dropdown-menu .dropdown-item { color: var(--white-color); text-decoration: none; padding: 6px 16px; white-space: normal; }
	.navbar .dropdown-menu .dropdown-item:hover, .navbar .dropdown-menu .dropdown-item:focus, .navbar .dropdown-menu .dropdown-item:active { background-color: transparent; color: var(--white-color); }
	.navbar .open > .dropdown-menu { display: block; }
	.sidebar-nav { z-index: 1021; position: fixed; left: -250px; top: 0; width: 100%; max-width: 250px; height: 100%; text-align: left; -webkit-box-shadow: rgba(0,0,0,.1) 1px 0px 5px; box-shadow: rgba(0,0,0,.1) 1px 0px 5px; }
	.sidebar-nav .container, .sidebar-nav .container-fluid { height: 100%; }
	.sidebar-nav .navbar-collapse { display: block; overflow-y: auto; height: 100% !important; background:#fff; }
	.sidebar-nav .navbar-nav > .nav-item { border-bottom: rgba(100,100,100,.5) 1px solid; }
	.sidebar-nav .navbar-nav .dropdown-toggle { padding-right: 28px; }
	.sidebar-nav .dropdown-toggle::after { position: absolute; right: 15px; top: 23px; border-width: 5px; opacity: .7; -webkit-transform: rotate(-90deg); transform: rotate(-90deg);  -webkit-transition-duration: .4s; transition-duration: .4s; }
	.sidebar-nav .show::after { -webkit-transform: rotate(0); transform: rotate(0); }
	.menu-fade { position: fixed; left: 0 !important; right: 0 !important; top: 0 !important; bottom: 0 !important; z-index: 1020; background-color: rgba(0,0,0,.1); display: none; }
	@media (min-width: 768px) {
		.navbar-expand-md .navbar-nav .nav-item { position: relative; }
		.navbar-expand-md .navbar-nav .nav-link { padding: 15px 0px; margin:0 5px; font-size: 10px; letter-spacing:0.5px; }
		.navbar-expand-md .dropdown-menu { min-width: 8.1rem; font-size: 9px; }
		.navbar-expand-md .dropdown-menu .dropdown-item { white-space: nowrap; padding: 7px 0px; margin:0 8px; -webkit-transition-duration: .4s; transition-duration: .4s; }
		.navbar-expand-md .dropdown-menu .dropdown-item:hover { -webkit-transform: translateX(5px); transform: translateX(5px); }
		.navbar .dropdown-toggle::after { display:none;}	
		.line { position:absolute; display:inline-block; background:#74bbd7;  height:20px; width:1px; right:0; top:0; }
		.active .nav-link, .nav-item:hover .nav-link { position:relative;} 
		.active .nav-link:before , .nav-item:hover .nav-link:before { background-color: var(--primary-color); position:absolute; content:""; width:100%; height:4px; bottom:0px; left:0} 
	}
	@media (min-width: 992px) {
		.navbar-expand-md .navbar-nav .nav-link { padding: 15px 0px; margin:0 8px; font-size: 12px; }
		.navbar-expand-md .dropdown-menu .dropdown-item { padding: 7px 0px; margin:0 8px; }
		.navbar-expand-md .dropdown-menu { min-width: 8.9rem; font-size: 12px; }
	}
	@media (min-width: 1200px) {
		.navbar-expand-md .navbar-nav .nav-link { padding: 15px 0px; margin:0 15px; }
		.navbar-expand-md .dropdown-menu .dropdown-item { padding: 7px 0px; margin:0 15px; }
		.navbar-expand-md .dropdown-menu { min-width: 11.64rem; }
	}
/*== Menu End ==*/

/*== Form ==*/
	.site-form { font-size: 1rem; }
	.form-control, .form-select { border-color: #ced4da; color: var(--black-color); font-size: 16px; font-weight: 400; line-height: 1.4; height: 45px; border-radius: 0; box-shadow: none; outline: none; padding: .375rem 1rem; }
	.form-control:focus, .form-select:focus { box-shadow: none; border-color: #202833; }
	.form-select { background-size: 15px; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23999999' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); }
	textarea.form-control, .form-floating>textarea.form-control { height: 70px; }
	.g-recaptcha { -webkit-transform: scale(.8); transform: scale(.8); -webkit-transform-origin: center; transform-origin: center; }
	.g-recaptcha-center { -webkit-transform-origin: center; transform-origin: center; -webkit-transform: scale(.8); transform: scale(.8);}
	.form-check { padding-left: 2rem; margin-bottom: 0.5rem; }
	.form-check-input { margin-top: 2px; width: 18px; height: 18px; margin-left: -2rem !important; }
	.form-check-input[type=checkbox] { border-radius: 5px !important; }
	.form-check-input:focus { box-shadow: none; }
	.form-check-input:checked { background-color: var(--primary-color); border-color: var(--primary-color); }
	.form-check-label { line-height: 1.3; }
	.contact-form { max-width: 710px; margin-left: auto; margin-right: auto; }
	.form-light .form-control, .form-light .form-select, .form-light .form-check-input { background-color: transparent; color: var(--white-color); border-color: rgba(255,255,255,.55); border-radius: 1.5rem; }
	.form-light .form-control:focus, .form-light .form-select:focus { border-color: var(--white-color); }
	.form-light .form-select option { color: var(--black-color); }
	input[type="checkbox"]:required { border-color: red; }
	.input-group .form-floating { flex: 1; }
	.form-floating>label { white-space: nowrap; }
	.form-control[type=file] { font-size: inherit; line-height: 1.7; }
/*== Form End ==*/

/*== Button ==*/
	.btn { font-size: 13px; font-weight: 400; padding: 14px 28px; text-transform: uppercase; text-decoration: none; border-radius: 2rem; box-shadow: none !important; border:none; letter-spacing:0.8px; }
	.btn-primary { color: var(--white-color); background-color: var(--primary-color); border-color: 2px solid var(--primary-color); }
	.btn-primary:hover, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--black-color); border-color: var(--white-color); }
	.btn-secondary { color: var(--white-color); background-color: var(--secondary-color); border-color: var(--secondary-color); }
	.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--black-color); border-color: var(--black-color); }
	.btn-dark { color: var(--white-color); background-color: var(--dark-color); border-color: var(--dark-color); }
	.btn-dark:hover, .btn-dark:focus, .btn-dark:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--black-color); border-color: var(--black-color); }
	.btn-outline-primary { color: var(--primary-color); border:2px solid var(--primary-color); }
	.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--primary-color); border-color: var(--primary-color); }
	.btn-outline-secondary { color: var(--secondary-color); border-color: var(--secondary-color); }
	.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--secondary-color); border-color: var(--secondary-color); }
	.btn-outline-dark { color: var(--dark-color); border-color: var(--dark-color) }
	.btn-outline-dark:hover, .btn-outline-dark:focus, .btn-outline-dark:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--dark-color); border-color: var(--dark-color); }
	.btns-group { max-width: 300px; }
	.btn-scrollTop { position: fixed; bottom: 170px; right: 10px; z-index: 1000; width: 3rem; height: 3rem; border-radius: 50%; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'%3e%3cpath fill='%23FFFFFF' d='M11.77,23c0.646,0,11.995,0,12.441,0c0.578,0,1.008-0.485,0.67-0.965c-0.271-0.384-5.739-8.06-6.208-8.715 c-0.308-0.431-1.04-0.424-1.348,0c-0.344,0.471-5.839,8.177-6.222,8.734C10.824,22.464,11.133,23,11.77,23z'/%3e%3c/svg%3e"); background-position: center; background-size: 80%; background-repeat: no-repeat; border: none; outline: none; -webkit-box-shadow: 0px 0px 0px 3px rgba(255,255,255,0.6) !important; box-shadow: 0px 0px 0px 3px rgba(255,255,255,0.6) !important; }
	@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .btn-scrollTop { right: 20px; } }
/*== Button End ==*/

/*== Carousel ==*/
	.carousel-indicators [data-bs-target] { width: 4px; height: 4px; border-radius: 50%; border: 2px solid var(--primary-color); background-color: var(--primary-color); opacity: 1; margin: 0 7px; }
	.carousel-indicators .active { width: 7px; height: 7px; background-color: transparent; border-color: var(--primary-color); }
	#carouselSliderHome .carousel-item { min-height: 420px; }
	#carouselSliderHome .carousel-indicators [data-bs-target] { background-color: var(--white-color); border-color: var(--white-color); }
	#carouselSliderHome .carousel-indicators .active { background-color: transparent; border-color: var(--white-color); }
	@media (min-width: 576px) {
		#carouselSliderHome .carousel-item { min-height: 370px; }
	}
	@media (min-width: 768px) {
		#carouselSliderHome .carousel-item { min-height: 400px; }
	}
	@media (min-width: 992px) {
		#carouselSliderHome .carousel-item { min-height: 470px; }
	}
	@media (min-width: 1200px) {
		#carouselSliderHome .carousel-item { min-height: 600px; }
	}
	@media (min-width: 1400px) {
		#carouselSliderHome .carousel-item { min-height: 800px; }
	}
/*== Carousel End ==*/

/*== Animation ==*/
	.animated { -webkit-animation-duration:1s; animation-duration:1s; -webkit-animation-fill-mode:both; animation-fill-mode:both }
	.fast { -webkit-animation-duration: 0.5s; animation-duration: 0.5s; -webkit-animation-fill-mode: both; animation-fill-mode: both; }
	.slow { -webkit-animation-duration: 1.5s; animation-duration: 1.5s; -webkit-animation-fill-mode: both; animation-fill-mode: both; }
	.delay-250 { -webkit-animation-delay:0.25s; -moz-animation-delay:0.25s; -o-animation-delay:0.25s; animation-delay:0.25s; }
	.delay-500 { -webkit-animation-delay:0.5s; -moz-animation-delay:0.5s; -o-animation-delay:0.5s; animation-delay:0.5s; }
	.delay-750 { -webkit-animation-delay:0.75s; -moz-animation-delay:0.75s; -o-animation-delay:0.75s; animation-delay:0.75s; }
	@-webkit-keyframes fadeInLeft {
		0% { opacity:0; -webkit-transform:translate3d(-400px, 0, 0); transform:translate3d(-400px, 0, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	@keyframes fadeInLeft {
		0% { opacity:0; -webkit-transform:translate3d(-400px, 0, 0); transform:translate3d(-400px, 0, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	.fadeInLeft { -webkit-animation-name:fadeInLeftSlow; animation-name:fadeInLeftSlow }

	@-webkit-keyframes fadeInRight {
		0% { opacity:0; -webkit-transform:translate3d(400px, 0, 0); transform:translate3d(400px, 0, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	@keyframes fadeInRight {
		0% { opacity:0; -webkit-transform:translate3d(400px, 0, 0); transform:translate3d(400px, 0, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	.fadeInRight { -webkit-animation-name:fadeInRightSlow; animation-name:fadeInRightSlow }

	@-webkit-keyframes fadeInUp {
		0% { opacity:0; -webkit-transform:translate3d(0, 400px, 0); transform:translate3d(0, 400px, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	@keyframes fadeInUp { 
		0% { opacity:0; -webkit-transform:translate3d(0, 400px, 0); transform:translate3d(0, 400px, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	.fadeInUp { -webkit-animation-name:fadeInUpSlow; animation-name:fadeInUpSlow }

	@-webkit-keyframes fadeInDown {
		0% { opacity:0; -webkit-transform:translate3d(0, -400px, 0); transform:translate3d(0, -400px, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	@keyframes fadeInDown {
		0% { opacity:0; -webkit-transform:translate3d(0, -400px, 0); transform:translate3d(0, -400px, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	.fadeInDown { -webkit-animation-name:fadeInDownSlow; animation-name:fadeInDownSlow }

	.fadeInRight-slow, .fadeInLeft-slow, .fadeInUp-slow, .fadeInDown-slow { opacity:0; -webkit-transform: translateX(40px); transform: translateX(40px); }
	@-webkit-keyframes fadeInLeftSlow {
		0% { opacity: 0; -webkit-transform: translateX(-40px); } 
		100% {  opacity: 1;  -webkit-transform: translateX(0); } 
	}
	@keyframes fadeInLeftSlow {
		0% { opacity: 0; transform: translateX(-40px); } 
		100% { opacity: 1; transform: translateX(0); } 
	}
	.fadeInLeft-slow { opacity: 0; -webkit-transform: translateX(-40px); transform: translateX(-40px); }
	.fadeInLeft-slow.go { -webkit-animation-name: fadeInLeftSlow; animation-name: fadeInLeftSlow; }

	@-webkit-keyframes fadeInRightSlow {
		0% { opacity: 0; -webkit-transform: translateX(40px); } 
		100% {  opacity: 1;  -webkit-transform: translateX(0); } 
	}
	@keyframes fadeInRightSlow {
		0% { opacity: 0; transform: translateX(40px); } 
		100% { opacity: 1; transform: translateX(0); } 
	}
	.fadeInRight-slow { opacity: 0; -webkit-transform: translateX(40px); transform: translateX(40px); }
	.fadeInRight-slow.go { -webkit-animation-name: fadeInRightSlow; animation-name: fadeInRightSlow; }

	@-webkit-keyframes fadeInUpSlow {
		0% { opacity: 0; -webkit-transform: translateY(40px); } 
		100% { opacity: 1; -webkit-transform: translateY(0); } 
	}
	@keyframes fadeInUpSlow {
    	0% { opacity: 0; transform: translateY(40px); } 
		100% { opacity: 1; transform: translateY(0); } 
	}
	.fadeInUp-slow { opacity: 0; -webkit-transform: translateY(40px); transform: translateY(40px); }
	.fadeInUp-slow.go { -webkit-animation-name: fadeInUpSlow; animation-name: fadeInUpSlow; }

	@-webkit-keyframes fadeInDownSlow {
		0% { opacity: 0; -webkit-transform: translateY(-40px); } 
		100% { opacity: 1; -webkit-transform: translateY(0); } 
	}
	@keyframes fadeInDownSlow {
    	0% { opacity: 0; transform: translateY(-40px); } 
		100% { opacity: 1; transform: translateY(0); } 
	}
	.fadeInDown-slow { opacity: 0; -webkit-transform: translateY(-40px); transform: translateY(-40px); }
	.fadeInDown-slow.go { -webkit-animation-name: fadeInDownSlow; animation-name: fadeInDownSlow; }
/*== Animation End ==*/
/*== Invisalign Slider ==*/
.slider-section .arrow-left, .slider-section .arrow-right { width: 45px; height: 45px; background-color: #2F2F2F; display: flex; align-items: center; justify-content: center; border-radius: 50px; font-size: 31px; color: #fff; position: absolute; top: calc(50% - 22.5px); cursor: pointer; background-repeat: no-repeat; background-position: center; background-size: contain; }
.slider-section .arrow-left { left: 0; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 45 45'%3e%3cpath fill='%23FFFFFF' d='M25.516,14.681l0.82,0.798c0.098,0.098,0.164,0.225,0.164,0.369c0,0.129-0.066,0.272-0.164,0.368l-6.9,6.284 l6.9,6.285c0.097,0.095,0.164,0.239,0.164,0.367c0,0.127-0.066,0.272-0.164,0.368l-0.82,0.8c-0.099,0.095-0.246,0.159-0.377,0.159 s-0.279-0.064-0.377-0.16l-8.098-7.451C16.566,22.772,16.5,22.628,16.5,22.5c0-0.127,0.066-0.272,0.164-0.368l8.097-7.451 c0.099-0.096,0.248-0.16,0.378-0.16S25.417,14.585,25.516,14.681z'/%3e%3c/svg%3e"); }
.slider-section .arrow-right { right: 0; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 45 45'%3e%3cpath fill='%23FFFFFF' d='M19.484,30.319l-0.82-0.798c-0.098-0.098-0.164-0.225-0.164-0.369c0-0.129,0.066-0.272,0.164-0.368 l6.9-6.284l-6.9-6.285c-0.097-0.095-0.164-0.239-0.164-0.367c0-0.127,0.066-0.272,0.164-0.368l0.82-0.8 c0.099-0.095,0.246-0.159,0.377-0.159s0.279,0.064,0.377,0.16l8.098,7.451c0.099,0.096,0.165,0.241,0.165,0.369 c0,0.127-0.066,0.272-0.164,0.368l-8.097,7.451c-0.099,0.096-0.248,0.16-0.378,0.16S19.583,30.415,19.484,30.319z'/%3e%3c/svg%3e"); }
.slider-section .arrow-left span, .slider-section .arrow-right span { position: relative; top: 0; display: none; }
.row.slider-section { padding: 0 45px; position: relative; margin: 0 auto; float: none; }
.slider-line { padding: 0 25px; display: flex; justify-content: space-around; align-items: center; }
.slick-slide img { margin: 0 auto; width: 100%; }
.slick-slide { padding: 0 15px; }
.slide-wrapper { background-color: #EBF8FF; text-align: center; }
.slide-week { font-size: 14px; font-weight: 500; border-bottom: 20px solid #000; padding: 10px 0; color:#000; }
.slide-week, .slide-title { text-align: center; }
.slide-title { color: #000; font-size: 20px; font-weight: 500; padding: 10px 0 0 0; line-height:32px; }
.slider-range { -webkit-appearance: none; width: 100%; height: 2px; border-radius: 5px; background: #000; outline: none; }
.slide-range { position: relative; }
.slider-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; content: '\3e'; width: 20px; height: 20px; border-radius: 50px; background: #000; cursor: pointer; z-index: 100; border:none; }
.slider-range::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50px; background: #000; cursor: pointer; z-index: 100; border:none; }
.fill { height: 2px; background-color: #000; position: absolute; left: 0; bottom: 7px; }
@media (max-width: 767px) {
.row.slider-section { padding: 0px 20px; }
.row.slider-section .slide { width: 93%; }
.slider-section .arrow-left { left: -10px; }
.slider-section .arrow-right { right: -10px; }
.slider-section .arrow-right, .slider-section .arrow-left { width: 40px; height: 40px; font-size: 20px; }
}
/*== Common Styles ==*/
	.data-src { background-repeat: no-repeat; }
	.list-group { padding-left: 22px; margin-bottom: 0.5rem; text-align: left; }
	.list-group li { margin-bottom: 0.6rem; }
	.breadcrumb { background-color: transparent; font-weight: 400; }
	.breadcrumb, .breadcrumb h2 { font-size: 13px; font-weight: 400; }
	.breadcrumb a { color: var(--black-color); text-decoration: none; }
	.breadcrumb a:hover { color: var(--primary-color); }
	.breadcrumb-item { display: inline-block; }
	.breadcrumb-item+.breadcrumb-item::before { content: '→'; font-size: 18px; line-height: 1; opacity: .5; }
	.block-content { padding-left: 15px; padding-right: 15px; margin-left: auto; margin-right: auto; }
	.block-img { min-height: 360px; }
	.brand-logo img { max-width: 120px; max-height: 40px; }
	.sticky-fixed .top-bar { display:none;}
	.banner-home::after { content: ""; background: rgba(0, 0, 0, 0.2); position: absolute; top: 0; bottom: 0; left: 0%; right: 0;}
	.pink-overlay::after {content: ""; background: rgba(43,0,20, 0.8); position: absolute; top: 0; bottom: 0; left: 0%; right: 0;}
	.border-img:after { position:absolute; content:""; left:0; top:-15px; background-color:transparent; width:100%; height:100%; border:1px solid var(--primary-color); border-radius:50%;}
	.dsvg-bottom { position:absolute; bottom:-2px; left:0; right:0;}
	.inner-banner::after { content: ""; background: rgba(238, 122, 176, 0.8); position: absolute; top: 0; bottom: 0; left: 0%; right: 0;}
	.dsvg-top { position:absolute; top:-1px; left:0; right:0; }
	.inner-banner-h { min-height:200px;}
	ul.li-icons, ul.li-icons li { list-style:none;}
	ul.li-icons li { margin-bottom:1rem;}
	.braces-img { position:absolute; top: -75px; left: -55px;}
	.braces-img-right { position:absolute; bottom:-60px; right:0px;}
	.accordion-button:not(.collapsed)::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ee7ab0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");}
	.accordion-button:focus { box-shadow: none;}
	.brand-logo-row img { max-width:220px;}
	.bx-wrapper { background:none !important; box-shadow:none !important; border:none !important; max-width:100% !important; margin-bottom:0 !important;}
	.primary-circle, .secondary-circle { position:absolute; background-color:transparent; border-radius:50%; left:0; } 
/*== Common Styles ==*/

/*== Responsive ==*/

@media (min-width: 576px) {
	.block-content { max-width: 540px; }
	.block-img, .inner-block-img { min-height: 400px; }
	.banner-bottom { bottom:-2px;}
	.primary-circle {  width:90px; height:90px; border:20px solid var(--primary-color);  top:45px; }
	.secondary-circle { width:65px; height:65px; border:15px solid var(--secondary-color);  bottom:90px; }
}
@media (min-width: 768px) {
	.list-group { margin-bottom: 1rem; }
	.block-content { max-width: 720px; }
	.block-img { min-height: 450px; }
	.inner-block-img { min-height: 550px; }
	.brand-logo img { max-width: 100px; max-height: 50px; }
	.custom-margin-top { margin-top:-180px;}
	.primary-circle {  width:8vw; height:8vw; border:1.8vw solid var(--primary-color); top:5%; left:5% }
	.secondary-circle { width:6vw; height:6vw; border:1.4vw solid var(--secondary-color); bottom:8%; left:10% }
	.btn { padding:8px 22px;}
	.team-row a:hover .team-wrap{ background:rgba(238,122,176,1); border-radius:50%; }
	.team-row a:hover .team-wrap img { opacity:0.7;}
	.banner-bottom { bottom:-3px;}
	.braces-img, .braces-img-right { max-width:150px;}
	.block-img-home { min-height:600px;}
	.top-md-45 { top:45px;}
	.inner-banner-h { min-height:300px;}
}
@media (min-width: 992px) {
	.block-content { max-width: 600px; }
	.block-img { min-height: 500px; }
	.inner-block-img { min-height: 600px; }
	.brand-logo img { max-width: 100%; max-height: inherit; }
	.h-lg-auto { height:auto !important;}
	.custom-margin-top { margin-top:-200px;}
	.top-md-45 { top:40px;}
	.custom-top-100 { top:100px;}
}
@media (min-width: 1200px) {
	.block-img { min-height: 600px; }
	.inner-block-img { min-height: 700px; }
	.primary-circle {width: 7vw; height: 7vw; border: 1.7vw solid var(--primary-color); top: 7%; left:0; }
	.secondary-circle { width:4.5vw; height:4.5vw; border:1.1vw solid var(--secondary-color); left:9%; bottom:7%; }
	.btn { padding: 14px 28px;}
	.custom-margin-top { margin-top:-270px;}
	.banner-bottom { bottom:-4px;}
	.block-img-home { min-height:800px;}
}
@media (min-width: 1400px) {
	.position-img { position:relative; left:70px;}
	.custom-margin-top { margin-top:-300px;}
	.banner-bottom { bottom:-6px;}
	.braces-img, .braces-img-right { max-width:100%;}
	.block-img-home { min-height:920px;}
	.top-md-45 { top:40px;}
}
@media (min-width: 1601px) { .block-img-home { min-height:1000px;} .top-md-45 { top:0px;} .position-img { position:relative; left:130px;} }
@media (max-width:767px) { 
.top-md-45 { top:45px;}
.block-img-home { min-height:500px;} .sticky-fixed .sticky-icon { display: inline-block !important;} .sticky-icon { display: none !important; width:40px; height:38px; vertical-align:middle;} .sticky-icon svg { position:relative; top:6px; left:-10px;}
}
@media (max-width: 575px) {
	.btn { padding:8px 20px;}
	.top-40 {top:40px;}
	.primary-circle {  width:70px; height:70px; border:15px solid var(--primary-color);  top:25px; }
	.secondary-circle {  width:55px; height:55px; border:10px solid var(--secondary-color); bottom:45px; }
	.page-header .btn { padding: 7px 13px; font-size:11px; letter-spacing:0px;}
	.banner-bottom { bottom:-2px;}
	.dsvg-bottom { position:absolute; bottom:-1px;}
	.dsvg-top { position:absolute; top:-1px; left:0;  }
	.g-recaptcha { transform-origin: center; -webkit-transform-origin: center;}
	.braces-img { position: absolute; top: -45px; left: -40px;  max-width: 100px;}
	.braces-img-right { max-width:100px; bottom:-45px;}
	.block-img-home { min-height:400px;}
	
}
/*== Responsive end ==*/