/*== 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: 'Kudryashev Display';
      src: url('../fonts/Kudryashev-Display-Sans.woff2') format('woff2'),
           url('../fonts/Kudryashev-Display-Sans.woff') format('woff');
      font-weight: normal;
	 font-style: normal;}
	@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 300; font-display: swap; src: url(../fonts/montserrat-300.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: 'Montserrat'; font-style: normal; font-weight: 400; font-display: swap; src: url(../fonts/montserrat-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 css End ==*/

/*== Variable ==*/
:root {
	--primary-color:   #a655be;
	--secondary-color: #f5ebe1;
	--purple-color:   #7a5f7f;
	--black-color:     #000000;
	--dark-color:      #414141;
	--light-color:     #F7F7F7;
	--white-color:     #FFFFFF;
	--body-text-color: #000000;

	--font-body:  'Montserrat', sans-serif;
	--font-title: 'Kudryashev Display',sans-serif; 
}
/*== Variable End ==*/

/*== Basic css ==*/
	*, *::before, *::after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
	body { font-family: var(--font-body); font-size: 18px; font-weight: 400; line-height: 1.5; color: var(--body-text-color); }
	a { color: var(--primary-color); 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; }

	@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-purple { color: var(--purple-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-ex-large { font-size: 22px !important; }
	.fs-ex-treat { font-size: 20px !important; }
	.text-uppercase-none { text-transform: none !important;}
	.font-body{font-family: var(--font-body)!important;}
	.font-title{ font-family: var(--font-title)!important;line-height:1.2;}
	.default-cursor{ cursor: default!important;user-select: auto!important; } 

/*== Taxonomy End ==*/

/*== Backgrounds ==*/
	.bg-primary { background-color: var(--primary-color) !important; }
	.bg-secondary { background-color: var(--secondary-color) !important; }
	.bg-purple { background-color: var(--purple-color) !important; }
	.bg-light { background-color: var(--light-color) !important; }
	.bg-dark { background-color: var(--dark-color) !important; }
	.bg-darker { background-color: var(--black-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; }
/*== Backgrounds End ==*/

/*== Border ==*/
	.border-primary { border-color: var(--primary-color) !important; }
	.border-secondary { border-color: var(--secondary-color) !important; }
	.border-purple { border-color: var(--purple-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-blue-light { border-color: #7c6a86 !important; }
	.border-left{border-radius: 30px 0px 0px 30px;}
	.border-right{border-radius: 0px 30px 30px 0px;}
/*== 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 { font-size: 32px; font-weight: 400; line-height: 1.4; margin-bottom: 0rem;font-family: var(--font-title); }
	.sub-title1 { font-size: 30px; font-weight: 400; line-height: 1.2; margin-bottom: 1rem;font-family: var(--font-title); }
	.sub-title2 { font-size: 24px; font-weight: 400; line-height: 1.2; margin-bottom: 0.6rem;font-family: var(--font-title); }
	.sub-title3 { font-size: 24px; font-weight: 400; line-height: 1.2; margin-bottom: 0.6rem;font-family: var(--font-title); }
	.h1-home { font-size: inherit; font-weight: 400; line-height: inherit; }
    .banner .sub-title1 { font-size: 24px;}
	.small-title { font-size: 16px; }
	@media (min-width: 768px) {
		.page-title { font-size: 48px; }
		.sub-title1 { font-size: 38px; }
		.sub-title2 { font-size: 32px; }
		.sub-title3 { font-size: 28px; }
		.banner .sub-title1 { font-size: 32px; }
	}
	@media (min-width: 992px) {
		.page-title { font-size: 52px; }
		.sub-title1 { font-size: 46px; }
		.sub-title2 { font-size: 36px; }
		.banner .sub-title1 { font-size: 38px; }
		.small-title { font-size: 18px; }
	}
	@media (min-width: 1200px) {
		.banner .sub-title1 { font-size: 48px; }
	}
	@media (min-width: 1400px) {
		.page-title { font-size: 70px; }
	}
/*== Heading End ==*/

/*== Header ==*/
	.page-header { font-size: 15px; font-weight: 400; line-height: 1.4; }
	.page-header .site-logo img { width: auto; max-height: 60px; }
	.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; }
	@media (min-width: 992px) {
		.page-header .site-logo img { max-height: inherit; }
	}
/*== Header End ==*/

/*== Footer ==*/
    .copyright-strip { background:#84399a; }
    .bg-footer { background:#aa70bb; }
	.contact-map { min-height: 300px; background-size: auto 370px; }
	.contact-map .btn { margin-top: 160px; }
	.contact-map-new { min-height: 300px; background-size: auto 370px; }
	.contact-map-new .btn { margin-top: 160px; }
	.table-hours { max-width: 280px; width: 100%; text-align: left; }
	.table-hours tr td:first-child { width: 139px; }
	.table-hours-get-in { max-width: 320px; width: 100%; text-align: left; }
	.table-hours-get-in tr td:first-child { width: 139px;padding-bottom: 10px; }
	.slinks { list-style: none; margin: 0; padding: 0; }
	.slinks a { display: block; text-decoration: none; }
	.slinks li { display: inline-block; -webkit-transition: .6s ease; transition: .6s ease; }
	.slinks li + li { margin-left: 10px; }
	.slinks li a svg path { -webkit-transition: .4s ease; transition: .4s ease; }
	.slinks li a:hover svg path { fill: var(--black-color); }
	.tooltip-inner { background-color: var(--black-color); color: var(--white-color); }
	.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before { border-top-color: var(--black-color); }
	.page-footer { font-size: 16px; line-height: 1.8; }
	.page-footer a { color: inherit; }
	.copyright-text { font-family: Verdana, Geneva, sans-serif; font-size: 11px; line-height: 1.4; }
	.copyright-text a { color: inherit; }
	.copyright-text a:hover { color: var(--secondary-color); }
	.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: #555 !important; }
	.df-author[data-theme=dark] .webauthorv1 path { fill: #555 !important; }
	.box-shadow-get{box-shadow: 5px 0px 30px 0px rgba(12, 36.000000000000036, 81.99999999999999, 0.1);}
	@media (min-width: 768px) {
		.contact-map { background-size: auto;min-height: -webkit-fill-available;height:100%;   }
		.contact-map .btn { margin-top: 385px; }
		.contact-map-new { min-height: 500px; background-size: auto; }
		.contact-map-new .btn { margin-top: 250px; }
		.table-hours { max-width: 310px; }
		.table-hours-get-in { max-width: 350px; }
		
	}
	@media (min-width: 992px) {
		.contact-map .btn { margin-top: 360px; }
	}
/*== Footer end ==*/

/*== Menu ==*/
	.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; }
	.navbar-toggler { width: 25px; height: 18px; 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(--primary-color); position: absolute; left: 0; right: 0; margin-left: auto; margin-right: auto; }
	.navbar-toggler .i-line.top { top: 0; }
	.navbar-toggler .i-line.middle { top: 50%; margin-top: -1px; }
	.navbar-toggler .i-line.bottom { bottom: 0; }
	.closed .i-line.middle { width: 0; opacity: 0; }
	.closed .i-line.top { top: 9px; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); transform: rotate(45deg); }
	.closed .i-line.bottom { bottom: 7px; -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: 14px; font-weight: 400; line-height: 1.4; text-transform: uppercase; text-decoration: none; padding: 14px 16px; }
	.active .nav-link, .open .nav-link, .nav-item:hover .nav-link, .nav-item:focus .nav-link { background-color: transparent; color: var(--primary-color); text-decoration: none; }
	.navbar .dropdown-menu { font-size: 14px; font-weight: 400; line-height: 1.2; text-transform: uppercase; background-color: var(--primary-color); color: var(--primary-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(--black-color); }
	.navbar .open > .dropdown-menu { display: block; }
	.navbar .dropdown-toggle::after { border: none; width: .9rem; height: .9rem; margin-top: -.2rem; top: .35rem; position: relative; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='%23A4925E' d='M297.4 438.6C309.9 451.1 330.2 451.1 342.7 438.6L502.7 278.6C515.2 266.1 515.2 245.8 502.7 233.3C490.2 220.8 469.9 220.8 457.4 233.3L320 370.7L182.6 233.4C170.1 220.9 149.8 220.9 137.3 233.4C124.8 245.9 124.8 266.2 137.3 278.7L297.3 438.7z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: contain; }
	.sidebar-nav { z-index: 1021; position: fixed; left: -300px; top: 0; width: 100%; max-width: 300px; 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(200,200,200,.2) 1px solid; transform: translateY(-10px); opacity: 0; -webkit-transition: .6s ease-in-out; transition: .6s ease-in-out; }
	.sidebar-nav .navbar-nav .dropdown-toggle { padding-right: 28px; }
	.sidebar-nav .dropdown-toggle::after { position: absolute; right: 15px; top: 16px; -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); }
	.sidebar-nav .navbar-nav .show-item { transform: translateY(0px); opacity: 1; animation-name: forwards; animation-duration: 1s; animation-iteration-count: 1; animation-timing-function: ease; }
	@keyframes forwards {
        from { transform: translateY(-10px); opacity: 0; }
        to { transform: translateY(0px); opacity: 1; }
    }
	.header-btn .btn{ padding: 9px 11px;font-size:11px}
	.desktop-position{ position:inherit!important;}
	.full-width-menu{ width: 100%;left: 0;right: 0; }
	.full-width-menu .dropdown-item{ border-bottom: 0px solid!important;}
	.full-width-menu .offer-text{ text-transform:initial!important;}
	.full-width-menu .offer-text ul{ list-style:inherit!important;margin-left:0px;}
	.full-width-menu ul{ list-style:none;margin-left:-40px;}
	
	@media (min-width: 576px) {
		.header-btn .btn{ padding: 9px 20px;font-size:13px}
	}
	@media (min-width: 768px) {
		.navbar-expand-md .navbar-nav .nav-link { padding: 15px 11px; font-size: 11px; }
		.navbar-expand-md .dropdown-menu { min-width: 8.1rem; font-size: 11px; }
		.navbar-expand-md .dropdown-menu .dropdown-item { white-space: nowrap; padding: 7px 11px; -webkit-transition-duration: .4s; transition-duration: .4s; }
		.navbar-expand-md .dropdown-menu .dropdown-item:hover { -webkit-transform: translateX(5px); transform: translateX(5px); }
		.header-btn .btn{ padding: 9px 20px;font-size:13px}

	}
	@media (min-width: 992px) {
		.navbar .dropdown-toggle::after { display: none; }
		.navbar-expand-lg .navbar-nav .nav-link { padding: 15px 5px;font-size:11px }
		.navbar-expand-lg .dropdown-menu .dropdown-item { padding: 7px 6px; }
		.navbar-expand-lg .dropdown-menu { min-width: 8.9rem; font-size: 11px; }
		.navbar .btn{ padding: 11px 13px;font-size:12px}
		.full-width-menu ul{ margin-left:-35px;}
		.navbar .dropdown-menu{ border-radius:20px; }
	}
	@media (min-width: 1200px) {
		.navbar-expand-lg .navbar-nav .nav-link { padding: 15px 6px;letter-spacing: 0px;font-size:13px; }
		.navbar-expand-lg .dropdown-menu .dropdown-item { padding: 8px 20px; }
		.navbar-expand-lg .dropdown-menu { min-width: 11.64rem; font-size: 13px; }
		.navbar .btn{ padding: 11px 14px;font-size:13px}
		.full-width-menu ul{ margin-left:-50px;}
	}
	@media (min-width: 1400px) {
		.navbar-expand-lg .navbar-nav .nav-link { padding: 15px 9px;font-size:14px;letter-spacing: 0px; }
		.navbar .btn{ padding: 11px 14px;font-size:14px}
		.full-width-menu{ width: 85%; }
	}
	@media (min-width: 1600px) {
		.navbar .btn{ padding: 11px 38px;}
		.navbar-expand-lg .navbar-nav .nav-link { padding: 15px 12px;letter-spacing: 0px;}
		
	}
	@media (min-width: 1800px) {
		.navbar-expand-lg .navbar-nav .nav-link { padding: 15px 20px;letter-spacing: 1px;}
		
	}
/*== Menu End ==*/

/*== Form ==*/
	.site-form { font-size: 1rem; }
	.form-control, .form-select { border-color: #000000; color: var(--black-color); font-size: 16px; font-weight: 400; line-height: 1.4; height:  calc(1.5em + .75rem + 14px); border-radius: 30px; box-shadow: none; outline: none;background-color: transparent!important; }
	.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='%23000000' 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: 120px!important; }
	.g-recaptcha { -webkit-transform: scale(.8); transform: scale(.8); -webkit-transform-origin: center; transform-origin: center; }
	.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: 0 !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; }
	.rating { display: table; direction: rtl; }
	.rating>input { display: none; }
	.rating>label { position: relative; font-size: 32px; cursor: pointer; display: table-cell; }
	.rating>label::before { content: "\2605"; position: absolute; opacity: 0; }
	.rating>label:hover:before, .rating>label:hover~label:before { opacity: 1 !important; }
	.rating>input:checked~label:before { opacity: 1; }
	.rating:hover>input:checked~label:before { opacity: 0.4; }
	.datepicker-top-left, .datepicker-top-right { border-top-color: var(--primary-color) !important; }
	.datepicker-top-left::before, .datepicker-top-right::before { border-bottom-color: var(--primary-color) !important; }
	.datepicker-panel > ul > li.picked, .datepicker-panel > ul > li.picked:hover { color: var(--primary-color) !important; }
	.datepicker-panel > ul > li.highlighted, .datepicker-panel > ul > li:hover { background-color: #ddd !important; }
	.input-group-text { font-size: 14px; }
	.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); }
	.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;font-size: 17px;font-weight:300;opacity: initial!important; }
	.form-control[type=file] { font-size: inherit; line-height: 1.7; }
/*== Form End ==*/

/*== Button ==*/
	.btn { font-size: 14px; font-weight: 400; padding: 11px 38px; text-transform: uppercase; text-decoration: none; border-radius: 2rem; box-shadow: none !important; }
	.btn-primary { color: var(--white-color); background-color: var(--primary-color); border-color: 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(--black-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 { border-width: 1px;color: var(--primary-color); border-color: 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: 150px; 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 ==*/

/*== PDF DropDown ==*/
     .menu-select-wrapper, .menu-select-wrapper1 {position: relative; width: 100%;}
	.menu-select1 {position: absolute;	width: 100%; display: none;	padding-left: 10px;	padding-right: 10px;}
	.menu-select1 ul {margin: 0; padding: 0; list-style-image: none; list-style-type: none;	text-shadow: none !important; z-index: 1; position: relative;width: 80%;margin: auto;}
	.menu-select1 ul li {margin: 0;	padding: 0;	z-index: 150;}
	.footer-download-guide .menu-select1 ul li a {background: #ffffff; border-bottom: 1px solid #e8e8e8; color: #000000;}
	.menu-select1 ul li a {margin: 1px; padding: 8px 8px 8px 16px; background: #a655be;	border-bottom: 1px solid #ffffff;	color: #fff; display: block;		text-decoration: none;	font-size: 1rem;border-radius: 5px;}
	.menu-select-toggle1 {position: relative; width: 80%;font-size: 16px; font-weight: 400;	margin: 0 auto;	background-image: url(../images/dropdown.svg);	background-repeat: no-repeat;	background-position: 94% center; cursor: pointer; border-radius: 25px;border: 1px solid;}
/*== PDF DropDown 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 ==*/


/*== List Styles ==*/
    ol.list-group { padding-left: 20px;}
	.list-group { padding-left: 15px; margin-bottom: 0.5rem; text-align: left; }
	.list-group li { margin-bottom: 1rem; }
	.list-icons {list-style: none; margin: 0; padding: 0;}
	.list-icons li {margin-bottom: 1rem; padding-left: 40px; background-repeat: no-repeat; background-position: 0px 2px; padding-top: 5px;}
	ul.list-group{ padding-left:0!important; }
	ul.list-group li {padding-left: 1.25rem; background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3e%3cpath fill='%23a655be' d='M5,0c2.762,0,5,2.238,5,5s-2.238,5-5,5S0,7.762,0,5S2.238,0,5,0z'/%3e%3c/svg%3e") no-repeat 0px 8px / 10px;list-style: none; }
	.list-icons li.ico-img1 {background-image: url(../images/appointment-1.svg);background-position: 2px;}
	.list-icons li.ico-img2 {background-image: url(../images/appointment-2.svg);background-position: 5px}
	.list-icons li.ico-img3 {background-image: url(../images/appointment-3.svg);    background-position: 0;}
	.list-icons li.ico-img4 {background-image: url(../images/appointment-4.svg);    background-position: 5px;}
	.list-icons li.ico-img5 {background-image: url(../images/appointment-5.svg);background-position: 4px;}
	.list-icons li.ico-img6 {background-image: url(../images/appointment-6.svg);background-position: 8px;}
	.list-icons .cus-pos{background-position: 0px 11px;}
	.list-group-arrow li { padding-left: 31px!important;background-image: url(../images/right-arrow-primary.svg)!important;background-repeat: no-repeat;background-position: 0px 6px!important;;list-style: none;background-size: inherit !important;}
	.list-group-cross li { padding-left: 31px!important;;background-image: url(../images/cross-sign-new.svg)!important;background-repeat: no-repeat;background-position: 0px 6px!important;;list-style: none;background-size: inherit !important;}
	ul.list-group-new li { margin-bottom: 0; }
	ul.list-group-new li + li { margin-top: 0.5rem; }
	@media (min-width: 768px) {
		.list-group { margin-bottom: 1rem; }
	}
	@media (min-width: 768px) {
		.list-group { margin-bottom: 1rem; }
		.list-group li { margin-bottom: 1.5rem; }
	}
/*== List Styles End ==*/

/*== Team Page Start ==*/
	 
    .team-content{ cursor: pointer;border-radius: 35px 145px 145px 35px;border:2px solid #a655be; }
	.team-border{ border:2px solid #a655be;margin-left: 4px;}
    .team-content:hover .hidden-box {opacity: 1;visibility: visible;max-height: 100%;transition-duration: 0.5s;transition-timing-function: ease-in-out;}
	.hidden-box{ opacity: 1;visibility: visible;max-height: initial;overflow: hidden;}
	@media (min-width: 1200px) {
	.hidden-box {display: block; opacity: 0;visibility: hidden;max-height: 0;overflow: hidden;transition-property: opacity, max-height, padding;transition-duration: 0.2s;transition-timing-function: ease;}
	}
	@media (max-width: 575px) {
		.team-content{ border-radius: 35px 35px 35px 35px;text-align:center;padding:0 10px 0 10px;}
		.team-border{ margin-left: 0px;max-width:280px;}
		.hidden-box{ padding: 10px; }
	}
	
/*== Team Page Styles End ==*/

/*== TileLine CSS Start ==*/

  .hover-none:hover .time-title{padding: 0px!important;margin-left: 0!important; }
  .timeline { position: relative;max-width: 100%;margin: 0 auto;padding: 20px 0;}
  .timeline::before {content: "";position: absolute;top: var(--line-start, 0px);   /*height: var(--line-height, 0px);*/ bottom: 100px;left: 50%;width: 2px; background-color: #7a5f7f; transform: translateX(-50%);border-radius: 2px; }
  #step::after {content: "";position: absolute;width: 20px;height: 20px;background: #fff9f5;left: -10px;          bottom: -20px;z-index: 5;border-radius: 4px;}
  .timeline-step {position: relative;width: 50%;padding: 0px 40px 0px 40px;}
  .timeline-step.left {left: -20px;text-align: right;}
  .timeline-step.right {left: 50%;text-align: left;margin-left: 20px;}
  .circle {position: absolute;top: 44%;width: 50px;height: 50px;background: #f5ebe1;border: 2px solid #7a5f7f;border-radius: 50%;font-weight: 500;color: #6f5876;display: flex;align-items: center;justify-content: center;cursor: default;z-index: 2;}
  .timeline-step.left .circle {right: -45px;}
  .timeline-step.right .circle {left: -45px;}
  .title-bubble {cursor: pointer;position: relative;font-size: 24px;color: #6f5876;user-select: none;display: inline-block;background: #f5ebe1;padding: 30px 30px;border-radius: 15px 0 0 15px;box-shadow: -4px 6px 0 #7a5f7f;max-width: 510px;word-wrap: break-word;transition: all 0.3s ease;text-align:left;font-family: var(--font-title);transition: all 0.5s ease; }
  .timeline-step.right .title-bubble{ box-shadow: 4px 6px 0 #7a5f7f; border-radius: 0px 15px 15px 0px; }
  .timeline-step.left .title-bubble:after {content: '';position: absolute;top: 0;right: -29px;width: 29px;height: 100%;background: linear-gradient(to right, #f5ebe1, #f5ebe1);clip-path: polygon(0 0, 100% 50%, 0 100%);transition: height 0.3s ease;}
   .timeline-step.right .title-bubble:after {content: '';position: absolute;top: 0;left: -29px;width: 30px;height: 100%;background: linear-gradient(to left, #f5ebe1, #f5ebe1);clip-path: polygon(100% 0, 0 50%, 100% 100%);transition: height 0.3s ease;}
  .full-description { display: block;font-weight: 400;font-size: 16px;line-height: 1.4;white-space: normal;font-family: var(--font-body);color:#000; transition: all 0.4s ease;}  
  .time-title { font-size:24px; }
  
  .title-bubble .time-title {padding: 0px 0 25px 0px;margin-left: 15px; }


  /* Responsive */
  @media screen and (min-width: 992px) {
	  .timeline::before{ top: var(--line-start, 0px);   height: var(--line-height, 0px); bottom: 170px; }
  }
   @media screen and (min-width: 1200px) {
   .full-description {  max-height: 0;opacity: 0;overflow: hidden;transition: max-height 0.4s ease, opacity 0.4s ease;font-weight: 400;font-size: 16px;line-height: 1.4;white-space: normal;font-family: var(--font-body);color:#000;}
   .title-bubble .time-title{ padding: 0;margin-left: 0px; }
   .title-bubble:hover .full-description { max-height: 700px;opacity: 1;padding:15px; transition: all 0.4s ease;}
   .title-bubble{ transform: translateY(-50%);margin-top: 25px;}
   .timeline::before{ top: var(--line-start, 0px);   height: var(--line-height, 0px); bottom: 100px; }
   .circle{top: 20px;}
   .timeline-step{padding: 20px 40px;height:150px; }
   .title-bubble:hover .time-title{ padding: 20px 0px 10px 15px;margin-left: 15px; }
   }
  @media screen and (max-width: 991px) {
    .timeline-step,
    .timeline-step.left,
    .timeline-step.right {width: 100%;padding-left: 80px;padding-right: 20px;text-align: left;left: 0 !important;margin-bottom: 30px;}
    .timeline::before {left: 25px;transform: none; bottom: 40px; /*top: var(--line-start, 0px);   height: var(--line-height, 0px);*/}
    .circle {left: 0 !important;right: auto !important;top: 45%;}
    .title-bubble {margin-left: 0px !important;margin-right: 0 !important;max-width: 100%;
        width: 100%;}
    #step::after {left: 10px;bottom: -20px;}
	.timeline-step.left .title-bubble:after{ content: '';position: absolute;top: 0;left: -29px;width: 30px;height: 100%;background: linear-gradient(to left, #f5ebe1, #f5ebe1);clip-path: polygon(100% 0, 0 50%, 100% 100%);transition: height 0.3s ease;}
	.timeline-step.left .title-bubble {box-shadow: 4px 6px 0 #7a5f7f;border-radius: 0px 15px 15px 0px;}
	.timeline-step.right{ margin-left: 0px;}
	.title-bubble .time-title{ margin-left: 40px; }
	
  }
  @media screen and (max-width: 767px) {
	  .title-bubble .time-title{ margin-left: 0px; }
  }
  @media screen and (max-width: 575px) {
	  .circle{ width: 35px;height: 35px;}
	  .timeline-step, .timeline-step.left, .timeline-step.right{ padding-left: 65px;padding-right: 10px; }
	  .time-title { font-size: 24px;line-height: 1.2; }
	  .title-bubble{ padding: 15px 15px; }
	  .timeline::before {left: 17px;}
      }
/*== TileLine CSS END ==*/

/*== FAQ Styles ==*/
    #accordionOption .accordion-item{ border:0;margin-bottom: 1.5rem; }
	 #accordionOption .accordion-body{ padding:0; }
    #accordionOption .accordion-collapse .collapse .show{ background:#000; }
    #accordionOption .accordion-button{ background: #a655be;color:#fff;padding: 1.5rem 1.5rem;border-radius: 15px;line-height: 1.7; }
	#accordionOption .accordion-button.collapsed{ background: #f5ebe1;color:#000; }
    #accordionOption .accordion-button .sub-title2{ font-size:32px!important; }
    #accordionFaqs .accordion-button{border-radius: 20px;font-size:22px;}
	#accordionFaqs .accordion-item{border-radius: 20px;margin-bottom: 0.5rem;border-color:#a655be;}
	#accordionFaqs .accordion-collapse{border-radius: 0;}
	#accordionFaqs .accordion-button:not(.collapsed)::after, #accordion-faq .accordion-button::after {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%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");}
	.accordionnew .accordion-button{border-radius: 20px!important;font-size:22px;}
	.accordionnew .accordion-item{border-radius: 20px;margin-bottom: 0.5rem;}
	.accordionnew .accordion-collapse{border-radius: 0;}
	.accordionnew .accordion-button:not(.collapsed)::after, .accordionnew .accordion-button::after {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%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::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%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;}
	#accordionOption .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='%23fff'%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");}
     #accordionOption .accordion-button::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%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");}
	
/*== FAQ Styles ==*/

	/*== Marquee Slider ==*/
	.scroll-h { overflow-x: clip; white-space: nowrap; position: relative; width: 100%; }
	.scroll-inner { display: flex; align-items: center; gap: 1rem; will-change: transform; }
	.scroll-inner img { transition: transform 0.5s; flex-shrink: 0; }

/*== Marquee Slider END ==*/
/*== Common Styles ==*/
	.data-src { background-repeat: no-repeat; }
	.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: 300px; }
	.brand-logo img { max-width: 120px; max-height: 40px; }
	.block-img-home{ height:400px;}
	.counternumb{ font-size:32px;font-family: 'Kudryashev Display'; }
	.bg-ceramic{ background-color:#f1e1f5;border-radius: 25px 0 0px 25px; }
	.bg-zirconia{ background-color:#ffdede;border-radius: 0 25px 25px 0; }
	.new-patient-table thead th{padding: 27px 10px 27px 10px;}
	.new-patient-table td{ padding: 16px 12px 16px 20px; }
	.new-patient-table tbody tr td div { display: flex; align-items: baseline; gap: 0.5rem;}
	.vs-position{ margin: 0;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);font-family: var(--font-title);height:120px;width:120px;font-size:72px;background:#fff;border-radius: 50%;border:2px solid #7a5f7f; color:#7a5f7f;text-align: center;z-index: 9;vertical-align: middle;}
	.treat-icon{bottom: -23px;right: 15px;background: var(--primary-color);border-radius: 50%;width: 65px;height: 65px;padding: 14px;}
	.treatments ul li{ margin-bottom:10px; }
	.treatments ul a { -webkit-transition-duration: .4s; transition-duration: .4s;display:inline-block;color: inherit; }
	.treatments ul a:hover { -webkit-transform: translateX(5px); transform: translateX(5px);display:inline-block;color:var(--primary-color);}
	.award-logo .bx-wrapper { max-width: 100% !important; }
	.tooth {position: relative;display: inline-block;transition: transform 0.3s ease;cursor: pointer;width:100%;}
    .tooth:hover {transform: scale(1.2);z-index: 2;}
    .tooltip-info {position: absolute;top: -80px;left: 0;right: 0;transform: translateX(0%);background-color: #f5ebe1;color: #5b4764;padding: 11px 11px;border-radius: 10px;font-size: 14px;white-space: normal;border: 1px solid;opacity: 0;transition: opacity 0.3s ease;pointer-events: none;text-align: center;    font-family: var(--font-title);}
	.tooltip-info::after {content: "";position: absolute;bottom: -15px;left: 50%;transform: translateX(-50%);width: 0;height: 0;border-width: 15px 45px 0 45px;border-style: solid;border-color: #5b4764 transparent transparent transparent;}
    .tooltip-info::before {content: "";position: absolute;bottom: -14px;left: 50%;transform: translateX(-50%);width: 0;height: 0;border-width: 15px 45px 0 45px;border-style: solid;border-color: #f3e9e1 transparent transparent transparent;z-index: 1; }
    .tooth:hover .tooltip-info {opacity: 1;margin: auto;display: block;width: 100%;z-index: 9;}
    .tooth img {height: auto;transition: transform 0.3s ease;}
    .tool-label {margin-top: 10px;font-weight: normal;font-size: 22px;}
	.mx-width-auto{ max-width:max-content	!important; }
	.img-hover-new:hover img{box-shadow: 1px 0px 20px 0 rgba(0, 0, 0, 0.2), 0px 0px 20px 0 rgb(166 85 190);transform: scale(1.1);}
	.img-hover-new{ overflow:hidden; border-radius:50%; }	
	.img-hover:hover .img-hover-new{ overflow: hidden;border-radius: 50%;box-shadow: 1px 0px 20px 0 rgba(0, 0, 0, 0.2), 0px 0px 20px 0 rgb(166 85 190);}
	.img-hover img { transition: transform 0.4s ease;}
	.z-index-1{ z-index:-1;}
	#slider2.owl-theme .owl-nav [class*=owl-]{ background: #a655be;text-transform:capitalize;}
	.site-video{ width: 300px;height: 300px;margin: auto;border-radius: 50%;border: 3px solid var(--primary-color);overflow: hidden;}
	.bg-sky-color{ background:#00b2f2;}
	.bg-green-color{ background: #3ab54a;}
	.bg-red-color{ background: #d11f2f;}
	.bg-dark-green-color{ background: #658c3d;}
	.hover-bold li:hover{ font-weight:700;color: var(--primary-color);}
	.round-box{ position: relative;font-size: 24px;color: #000;user-select: none;display: inline-block;background: #f5ebe1;padding: 30px 30px;border-radius: 15px;box-shadow: -4px 6px 0 #7a5f7f;max-width: 510px;word-wrap: break-word;transition: all 0.3s ease;text-align:left;font-family: var(--font-title);transition: all 0.5s ease;}
	.zoom-card { transition: transform 0.4s ease;}
    .zoom-card img { transition: transform 0.4s ease;}
    .zoom-card:hover { transform: scale(1.05);}
    .zoom-card:hover img { transform: scale(1.1);}
	.case-title{ background-color: var(--primary-color);color: #fff !important;text-align: center;
    padding: 5px;text-transform: uppercase;font-size: 18px;}
	.case-title-top{ position: absolute;top: 0px;background: #a655be;color: #fff;text-transform: capitalize;border-radius: 32px 0 20px 0px;padding: 8px 10px 8px 15px;letter-spacing: 1px;}
	#case-slider .owl-stage { display: flex !important; }
	#case-slider .owl-item { display: flex !important;height: auto !important;}
	#case-slider .item {display: flex;align-items: center; justify-content: center;width: 100%;}
	#case-slider .item .band {width: 100%;}
	#case-slider-home .owl-stage { display: flex !important; }
	#case-slider-home .owl-item { display: flex !important;height: auto !important;}
	#case-slider-home .item {display: flex;align-items: center; justify-content: center;width: 100%;}
	#case-slider-home .item .band {width: 100%;}
   .smile-title{bottom: 0;width: 100%;color: #fff;border-radius: 0 0 32px 0px;background: #A655BE;
background: linear-gradient(280deg, rgba(166, 85, 190, 1) 70%, rgba(237, 221, 83, 0) 95%);}
   .aligner-title{ position: static; bottom: 0px; right: 0; padding: 0 15px 0 15px;text-align: center; }
	#case-slider .owl-nav .owl-prev img{ margin-top: 5px;margin-right: 2px; }
	#case-slider .owl-nav .owl-next img{ margin-top: 5px;margin-left: 2px; }
	#case-slider-home .owl-nav .owl-prev img{ margin-top: 5px;margin-right: 2px; }
	#case-slider-home .owl-nav .owl-next img{ margin-top: 5px;margin-left: 2px; }
	#slider2 .btn{ padding: 11px 11px;font-size: 13px;}	
/*== Common Styles ==*/


/*== Responsive ==*/
@media (min-width: 576px) {
	.block-content { max-width: 540px; }
	.block-img { min-height: 400px; }
	.block-img-home{ height:400px;}
	.counternumb{ font-size:40px;}
	#slider2 .owl-prev{position: absolute; left: -48px; top: 45%; background: transparent !important; background-image: url("../images/left-arrow.svg") !important; background-repeat: no-repeat !important; text-indent: -70px; overflow: hidden;text-indent: -110px;padding: 30px 30px!important;}
	#slider2 .owl-next{ position: absolute; right: -35px; top: 45%; background: transparent !important; background-image: url("../images/arrow-right.png") !important; background-repeat: no-repeat !important; text-indent: -70px; overflow: hidden;text-indent: -110px;padding: 35px 35px!important;}
	#case-slider .owl-nav .owl-prev{ position:absolute; left:-45px;top:50px;background: transparent;background: #a655be;border-radius: 50%;height: 35px;width: 35px;}
	#case-slider .owl-nav .owl-next{ position:absolute; right:-45px;top:50px;background: transparent;background: #a655be;border-radius: 50%;height: 35px;width: 35px;}
	#case-slider-home .owl-nav .owl-prev{ position:absolute; left:-45px;top:50px;background: transparent;background: #a655be;border-radius: 50%;height: 35px;width: 35px;}
	#case-slider-home .owl-nav .owl-next{ position:absolute; right:-45px;top:50px;background: transparent;background: #a655be;border-radius: 50%;height: 35px;width: 35px;}
	.aligner-title{ position: absolute; bottom: 0px; right: 0; padding: 0 15px 0 15px;text-align: right; 
	}
	#case-slider .owl-nav .owl-prev{left:-43px;top:45%;}
	#case-slider .owl-nav .owl-next{right:-43px;top:45%;}
	#case-slider-home .owl-nav .owl-prev{left:-43px;top:45%;}
	#case-slider-home .owl-nav .owl-next{right:-40px;top:45%;}
	#slider2 .btn{ padding: 11px 11px;font-size: 13px;}
	.block-img-filling{ height: 250px;}
}
@media (min-width: 768px) {
	.block-content { max-width: 720px; }
	.block-img { min-height: 450px; }
	.brand-logo img { max-width: 100px; max-height: 50px; }
	.block-img-home{ height:400px;}
	.treat-icon{bottom: -30px;right: 15px;border-radius: 50%;width: 65px;height: 65px;padding: 14px;}
	.vs-position{height: 90px;width: 90px;font-size: 48px; line-height: 76px;}
	.aligner-title{ position: absolute;bottom: 0px;right: 0;padding: 0 15px 0 15px;text-align: right; }
    #case-slider .owl-nav .owl-prev{left:-50px;}
	#case-slider .owl-nav .owl-next{right:-50px;}
	#case-slider-home .owl-nav .owl-prev{left:-50px;}
	#case-slider-home .owl-nav .owl-next{right:-50px;}
    #slider2 .btn{ padding: 11px 11px;font-size: 13px;}
	.block-img-filling{ height: 320px;}
	.tooth.hover-active {  transform: scale(1.2);z-index: 2;}
	.tooth.hover-active .tooltip-info {  opacity: 1;margin: auto;display: block;width: 100%;}
	.timeline-step img { width: 50px;}
}
@media (min-width: 992px) {
	.block-content { max-width: 600px; }
	.block-img { min-height: 500px; }
	.brand-logo img { max-width: 100%; max-height: inherit; }
	.block-img-home{ height:490px;}
	.vs-position{height: 120px;width: 120px;font-size: 72px;  line-height: 102px;}
	.site-video{ width: 350px;height: 350px;}
	.smile-title{ position: absolute;}
	.aligner-title{ position: absolute;bottom: 0px;right: 0;padding: 0 15px 0 15px;text-align: right; }
	.aligner-title{ position: absolute;bottom: 0px;right: 0;padding: 0 15px 0 15px;text-align: right; }
	.case-title-top{ position: absolute;top: 0px;background: #a655be;color: #fff;text-transform: capitalize;border-radius: 32px 0 20px 0px;padding: 6px 8px 3px 15px;letter-spacing: 1px;}
	.border-right-d{ border-radius: 0px 30px 30px 0px; }
	 #case-slider .owl-nav .owl-prev{left:-40px;}
	#case-slider .owl-nav .owl-next{right:-40px;}
	 #case-slider-home .owl-nav .owl-prev{left:-23px;}
	#case-slider-home .owl-nav .owl-next{right:-20px;}
	.block-img-filling{ height: 400px;}
	.timeline-step img, .round-box img { width: auto;}
}
@media (min-width: 1200px) {
	.block-img { min-height: 600px; }
	.counternumb{ font-size:60px; }
	.block-img-home{ height:590px;}
	.treat-icon{bottom: 0;bottom: -30px;width: 65px;height: 65px;padding: 14px;}
	#slider2 .owl-prev{left: -65px;padding: 35px 35px!important;}
	#slider2 .owl-next{right: -50px;padding: 35px 35px!important; }
	#case-slider .owl-nav .owl-prev{left:-50px;}
	#case-slider .owl-nav .owl-next{right:-50px;}
	#case-slider-home .owl-nav .owl-prev{left:-35px;}
	#case-slider-home .owl-nav .owl-next{right:-32px;}
	.aligner-title{ position: absolute;bottom: 0px;right: 0;padding: 0 15px 0 15px;text-align: right; }
	.case-title-top{ position: absolute;top: 0px;background: #a655be;color: #fff;text-transform: capitalize;border-radius: 32px 0 20px 0px;padding: 8px 10px 8px 15px;letter-spacing: 1px;}
	#slider2 .btn{ padding: 11px 24px;font-size: 14px; }
	.block-img-filling{ height: 490px;}
	 
}
@media (min-width: 1400px) {
	.block-img-home{ height:690px;}
	.treat-icon{bottom: 0;bottom: -40px;width: 83px;height: 83px;padding: 14px;}
	.owl-prev{left: -65px;}
	.owl-next{right: -50px; }
	.tooltip-info {position: absolute;top: -95px;border-radius: 10px;font-size: 18px;min-width: 300px;}
	.aligner-title{ position: absolute;bottom: 50px;right: 0; }
	.block-img-filling{ height: 490px;}
	}
@media (min-width: 1600px) {
	#slider2 .owl-prev{left: -100px;}
	#slider2 .owl-next{right: -100px; }
	.block-img-filling{ height: 590px;}
}	
	@media (max-width: 1199px) {
		.full-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.timeline-step {
  cursor: pointer;
}

.timeline-step.active .time-title {
  padding-bottom: 20px; /* or whatever spacing you want when open */
}

.timeline-step .time-title {
  padding-bottom: 0px; /* or whatever spacing you want when open */
}

	}
@media (max-width: 767px) {
	.border-left{ border-radius: 15px;}
	.border-right{ border-radius: 15px;}
    .bg-ceramic	{ border-radius: 25px 25px 0px 0px;}
	.bg-zirconia{ border-radius: 0px 0px 25px 25px;}
	.vs-position{ font-size: 32px;height: 80px;width: 80px;top: 0; }
	#accordionFaqs .accordion-button{ font-size:18px; }
	body { font-size:16px;}
	.border-top-0{ border-radius: 0 0px 15px 15px; }
	.border-bottom-0{ border-radius: 15px 15px 0 0px;}
	.rounded-5{ border-radius:1rem!important;}
	.address-link{ text-decoration:underline!important; }
	.accordionnew .accordion-button{ font-size:18px;line-height: 1.4; }
	.case-title-top{ border-radius: 16px 0 20px 0px;padding: 4px 9px 4px 10px;font-size: 13px;}
	.tooth img, .img-hover-new  {  transition: transform 0.4s ease;  transform: scale(1);}
	.tooth.active img, .img-hover-new.active  {	transform: scale(1.2);	z-index: 2;	}
	.img-hover-new  {  transition: transform 0.4s ease;  transform: scale(0.9);}
	.img-hover-new.active  {	transform: scale(1);	z-index: 2;	}
	.title-bubble  {  transition: transform 0.4s ease;  transform: scale(1);}
	.title-bubble.zoomin  {	transform: scale(1.05);	z-index: 2;	}
	.position-xs-absolute{ position: absolute;}
	.bg-trasnparent{ background: rgba(255,255,255,0.5);}
	.z-index-9{ z-index: 9;}	 
}
@media (max-width: 575px) {
	.count-title{ font-size:20px; }
	.btn{ padding: 11px 30px;}
	.home-banner .page-title{ font-size:30px; }
	.home-team .sub-title3{ font-size: 22px; }
	.menu-select-toggle1{ width: 100%;}
	.menu-select1 ul{ width:100%; }
	.tooth{ width:70%; }
	#slider2 .owl-prev{position: absolute; left: -26px; top: 45%; background: transparent !important; background-image: url("../images/left-arrow.svg") !important; background-repeat: no-repeat !important; text-indent: -70px; overflow: hidden;text-indent: -110px;padding: 30px 35px!important;}
	#slider2 .owl-next{ position: absolute; right: -15px; top: 45%; background: transparent !important; background-image: url("../images/arrow-right.png") !important; background-repeat: no-repeat !important; text-indent: -70px; overflow: hidden;text-indent: -110px;padding: 35px 35px!important;}
	.border-radius-0{ border-radius:0px!important; }
	.case-title{ font-size: 14px;}
	.border-radius-top-0{ border-radius: 0 0 15px 0!important; }
	.border-radius-left{ border-radius: 0 0 0 15px!important; }
	#case-slider .owl-nav .owl-prev{ position:absolute; left:-10px;top:50%;background: transparent;background: #a655be;border-radius: 50%;height: 35px;width: 35px;}
	#case-slider .owl-nav .owl-next{ position:absolute; right:-10px;top:50%;background: transparent;background: #a655be;border-radius: 50%;height: 35px;width: 35px;}
	#case-slider-home .owl-nav .owl-prev{ background: transparent;background: #a655be;border-radius: 50%;height: 35px;width: 35px;}
	#case-slider-home .owl-nav .owl-next{ background: transparent;background: #a655be;border-radius: 50%;height: 35px;width: 35px;}
	.new-patient-table .sub-title2{ font-size: 24px; }
	.new-patient-table td { padding: 16px 7px 16px 7px; }
	.smile-title{border-radius: 0 0 15px 15px;}
	.icon-title .font-title{ font-size:18px!important; }
}
@media (max-width: 480px) {
	.custom-col { flex: 0 0 auto;width: 100%;}
	.d-none-custom { display: none; }
	.custom-mb { margin-bottom: 3rem;}
}
/*== Responsive end ==*/
