:root {
	--Trebuchet-MS: 'Trebuchet MS';
	--font14: 14px;
	--mb-0: 0px;
	--drk-blue: #185C80;


	--primary-background-color: 239, 239, 245;
	--primary-text-color: 53, 52, 54;
	--primary-color: 118, 57, 116;
	--primary-color-hover: 71, 35, 70;
	--secondary-color: 209, 222, 229;
	--off-canvas-menu-background-color: 102, 109, 167;
	--off-canvas-menu-text-color: 255, 255, 255;
	--alpha: 0.5;
}

html {
	scroll-behavior: smooth;
}

* {
	-webkit-box-sizing: border-box;
	/* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;
	/* Firefox, other Gecko */
	box-sizing: border-box;
	/* Opera/IE 8+ */
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

a,
a:hover {
	text-decoration: none;
}

strong {
	font-weight: bold;
}

ul {
	padding: 0;
	margin: 0;
}

li {
	list-style-type: none;
}

.btn:focus,
.accordion-button:focus,
.btn:active:focus {
	box-shadow: none;
}

input:focus,
select:focus,
button:focus,
.form-control:focus,
.was-validated .form-control:valid:focus,
.was-validated .form-control:invalid:focus {
	outline: none;
	box-shadow: none;
}

:focus-visible {
	outline: none;
}

.form-control:focus {}

:hover {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

body {
	font-family: var(--Trebuchet-MS);
	margin: 0;
}
::selection{
	color:#fff;
	background:#00a651;
}

/* Menu Off Canvas */
@keyframes hover {
	50% {
		transform: translateX(10px);
	}
}

.offcanvas-menu>label {
	top: 0px;
	left: 0px;
	position: relative;
	width: 40px;
	height: 40px;
	cursor: pointer;
	transition: 0.3s ease;
	display: flex;
	align-items: center;
	z-index: 9999;
}

.offcanvas-menu label span,
.offcanvas-menu label span::before,
.offcanvas-menu label span::after {
	transition: background 0.3s, transform 0.3s;
}

.offcanvas-menu label span,
.offcanvas-menu label span::before,
.offcanvas-menu label span::after {
	content: "";
	position: absolute;
	height: 4px;
	width: 35px;
	background: #231F20;
}

.offcanvas-menu label span::before {
	transform: translateY(-10px);
}

.offcanvas-menu label span::after {
	transform: translateY(10px);
}

.offcanvas-menu nav {
	position: fixed;
	height: 100%;
	width: 350px;
	right: -350px;
	overflow: hidden;
	background: #d2ac67;
	transition: 0.3s ease;
	padding: 40px 30px;
	z-index: 4;
	top: 0;
}

.offcanvas-menu nav>div {
	display: flex;
	justify-content: end;
	align-items: center;
}

.offcanvas-menu nav>div a {
	font-size: 2.5rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	font-family: "Monoton", cursive;
	background: linear-gradient(-90deg, #49a4ed 30%, #3d00a9 110%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.offcanvas-menu nav>div a i {
	font-size: 4rem;
	background: linear-gradient(120deg, #49a4ed 30%, #3d00a9 110%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.offcanvas-menu nav>div label {
	width: 30px;
	height: 30px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s ease;
}

.offcanvas-menu nav>div label span,
.offcanvas-menu nav>div label span:before,
.offcanvas-menu nav>div label span:after {
	background: #4d4d4d;
}

.offcanvas-menu nav>ul {
	margin-top: 30px;
	counter-reset: nav-link-count;
}

.offcanvas-menu nav>ul li {
	cursor: pointer;
	padding: 0px 0 5px;
	transform: translateX(-30px);
	opacity: 0;
	transition: 0.4s ease;
	counter-increment: nav-link-count;
}

.offcanvas-menu nav>ul li a {
	font-size: 1.4rem;
	line-height: 1.5;
	font-weight: 400;
	color: #333333;
	display: block;
}

.offcanvas-menu nav>ul li:hover {
	animation: hover 0.5s;
}

.offcanvas-menu input[type=checkbox] {
	display: none;
}

.offcanvas-menu input[type=checkbox]:checked~label {
	opacity: 0;
	pointer-events: none;
}

.offcanvas-menu input[type=checkbox]:checked~nav {
	right: 0;
}

.offcanvas-menu input[type=checkbox]:checked~nav label span {
	background: transparent;
}

.offcanvas-menu input[type=checkbox]:checked~nav label span:before {
	transform: rotate(-45deg);
}

.offcanvas-menu input[type=checkbox]:checked~nav label span:after {
	transform: rotate(45deg);
}

.offcanvas-menu input[type=checkbox]:checked~nav label span:before,
.offcanvas-menu input[type=checkbox]:checked~nav label span:after {
	transition-delay: 0.2s;
}

.offcanvas-menu input[type=checkbox]:checked~nav ul li {
	opacity: 1;
	transform: translateX(0px);
}

.offcanvas-menu input[type=checkbox]:checked~nav ul li:nth-child(1) {
	transition-delay: 0.1s;
}

.offcanvas-menu input[type=checkbox]:checked~nav ul li:nth-child(2) {
	transition-delay: 0.2s;
}

.offcanvas-menu input[type=checkbox]:checked~nav ul li:nth-child(3) {
	transition-delay: 0.3s;
}

.offcanvas-menu input[type=checkbox]:checked~nav ul li:nth-child(4) {
	transition-delay: 0.4s;
}

.offcanvas-menu input[type=checkbox]:checked~nav ul li:nth-child(5) {
	transition-delay: 0.5s;
}

.offcanvas-menu input[type=checkbox]:checked~nav ul li:nth-child(6) {
	transition-delay: 0.6s;
}

.offcanvas-menu input[type=checkbox]:checked~nav ul li:nth-child(7) {
	transition-delay: 0.7s;
}

/* Menu Off Canvas */

/*.page-header {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  padding: 0px 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 1);
}

/* STICKY STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*.page-header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  top: 0px;
}

.page-header.is-sticky img {
  max-width: 80%;
}

.page-header.is-sticky button {
  font-size: 14px;
  padding: 7px 10px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
} */

header {
	background-color: #fff;
}

.top-band {
	background: #D7B46A;
	text-align: center;
	padding: 5px 0;
}

.top-band ul {
	display: flex;
	align-items: center;
	justify-content: center;
}

.top-band ul li {
	font-size: var(--font14);
}

.top-band ul li:first-child {
	border-right: 1px solid;
	padding: 0 10px;
	margin-right: 10px;
}

.top-band ul li a {
	color: #000;
	font-weight: 600;
}

.logo {
	padding-left: 1.4rem;
}

.logo img {
	width: 220px;
	padding: 10px 0;
}

.bar {
	padding-right: 2rem;
}

.bar a {
	color: #231F20;
}

.banner {
	position: relative;
}

.banner img {
	width: 100%;
}

.banner-text {
	position: absolute;
	left: 25%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 45%;
}

.banner-text h2,
.banner-text h4 {
	margin-bottom: var(--mb-0);
	color: #185C80;
}

.banner-text h2 {
	font-weight: 700;
	font-size: 3.4vw;
}

.banner-text h4 {
	font-size: 2.4vw;
}

.banner-text h5 {
	font-weight: 400;
	margin-top: 1rem;
	font-size: 1.4vw;
	line-height: 1.4;
	color: #646363;
}

.banner-cta {
	text-align: left;
	/* display: inline-block; */
	gap: 25px;
	margin-top: 2rem;
}

.banner-cta a {
	background: #388CAF;
	background: linear-gradient(90deg, rgba(56, 140, 175, 1) 0%, rgba(0, 150, 65, 1) 100%);
	display: inline-block;
	color: #fff;
	border-radius: 40px;
	padding: 15px 25px;
	font-weight: 500;
	line-height: 1.2;
	box-shadow: 0px 2px 2px #ffffff, 1px 3px 5px #00000085;
	text-align: center;
	margin: 0 0.5rem 1rem 0;
    width: 48%;
	font-size: 1.2vw;
}
/* .banner-cta a:last-child {
	display: inline-flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 0;
	height: 69px;
} */

.book-cta {
    text-align: center;
    display: inline-block;
    gap: 25px;
    margin-top: 2rem;
}

.book-cta a {
    background: #388CAF;
    background: linear-gradient(90deg, rgba(56, 140, 175, 1) 0%, rgba(0, 150, 65, 1) 100%);
    display: inline-block;
    color: #fff;
    border-radius: 40px;
    padding: 15px 25px;
    font-weight: 500;
    line-height: 1.2;
    box-shadow: 0px 2px 2px #ffffff, 1px 3px 5px #00000085;
    text-align: center;
    margin: 0 0.5rem 1rem 0;
    width: 24%;
    font-size: 1.2vw;
}

.Unique-cta{
	width: 100%;
}

.banner-cta a:hover{
      background: #D7B46A;
  /*transition: all .3s;
  box-shadow: 0px 0px 10px 5px #c5c5c5, 0px 0px 8px #2a2a2a;
  background: linear-gradient(90deg, rgba(0, 150, 65, 1) 0%,  rgba(56, 140, 175, 1) 100%);*/
}

.submit:hover{
  background: linear-gradient(90deg, rgba(0, 150, 65, 1) 0%,  rgba(56, 140, 175, 1) 100%);
}

.banner-cta a small {
	font-weight: 400;
	font-size: 0.9vw;
}
.export-opinion-bg{
	background: #ffffff;
	/*background: url(../images/export-opinion-bg.png) no-repeat, linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 35%, rgba(115, 190, 227, 1) 100%);*/
	background: url(../images/export-opinion-bg.png) no-repeat;
	background-position: bottom;
	background-size: 100%;
	padding-bottom: 2rem;
	padding-top: 3rem;
}
.export-opinion-points{
	position: relative;
	margin-bottom: 1.8rem;
}
.export-opinion-points:nth-child(1){
	margin-bottom: 3rem;
}
.export-opinion h5{
	font-weight: 700;
	margin-bottom: 15px;
}
.export-opinion-points p{
	font-family: var(--Trebuchet-MS);
	font-weight: 400;
	line-height: 1.2;
	color: #646363;
}
.export-opinion-points p:first-child{
	padding-left: 0px !important;
}
.export-opinion-points p:last-child{
	padding-left: 15px;
}
/*.export-opinion-points.dot-3 p,
.export-opinion-points.dot-4 p{
	text-align: right;
}
.export-opinion-points::after{
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: var(--bs-white);
	border: 1px solid #646363;
	border-radius: 30px;
	position: absolute;
}
.export-opinion-points.dot-1::after {
	top: 1rem;
	right: -3.2rem;
}
.export-opinion-points.dot-2::after {
	top: 1rem;
	right: -3rem;
}
.export-opinion-points.dot-3::after {
	top: 1rem;
	left: -3.1rem;
}
.export-opinion-points.dot-4::after {
	top: 1rem;
	left: -3rem;
}*/
.export-opinion-points-img img{
	width: 100%;
	border-radius: 100%;
	border: 1px dashed #646363;
    padding: 15px;
}
.export-opinion-box{
	height: 100%;
	background:var(--bs-white);
	border: 1px solid #231F20;
	border-radius: 10px;
	text-align: center;
	padding: 15px;
}
.export-opinion-box .icon-box{
	background: #185C80;
	padding: 10px;
    border-radius: 10px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px #185c8021;
    margin: 15px auto 25px;
}
.export-opinion-box .icon-box img{
    width: 50px;
}
.export-opinion-box p{
	color: #646363;
	font-weight: 700;
	margin-bottom: 0;
}

.hdwso-bg {
	background: #D4E9F2;
	background: radial-gradient(circle, rgba(212, 233, 242, 1) 40%, rgba(115, 190, 227, 1) 100%);
	padding-bottom: 1rem;
}

.hdwso {
	padding-top: 2rem;
}

.hdwso h2 {
	color: var(--drk-blue);
	font-weight: 700;
}

.hdwso p {
	margin-bottom: 1.5rem;
}

.we-stand {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 5rem;
}

.we-stand:last-child {
	margin-bottom: 0rem;
}

.we-stand img {}

.we-stand .info {}

.we-stand .info h3 {
	font-size: 18px;
	font-weight: bold;
}

.we-stand .info p {
	font-size: 15px;
	line-height: 1.2;
	margin-bottom: 0;
	color: #646363;
}

.steps-bg {
	background: url(../images/step-bg.svg) no-repeat #fff;
	padding: 2rem 0;
	background-size: cover;
	background-position: center;
}

.heading-title {}

.heading-title h2 {
	font-size: 34px;
	font-weight: bold;
	color: #388CAF;
	background-image: linear-gradient(45deg, #388CAF, #009641 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}


.health-journey-bg {
	background: url(../images/health-bg.png) no-repeat #185C80;
	padding: 2rem 0;
	background-size: cover;
	background-position: center;
}
.lets-talk{
	margin-bottom: 3rem;
}
.lets-talk h2{
	color: #D7B46A;
	font-weight: 700;
	font-size: 3vw;
}
.lets-talk p{
	color: var(--bs-white);
}
.health-journey {}

.health-journey h2 {
	font-size: 2.5vw;
	font-weight: bold;
	color: #fff;
}

.health-journey h2 span {
	color: #D7B46A;
}

.health-journey-cta {
	text-align: center;
	display: flex;
	gap: 25px;
	justify-content: center;
}

.health-journey-cta a {
	background: #D7B46A;
	display: inline-block;
	color: #fff;
	border-radius: 40px;
	padding: 10px 15px;
	font-weight: 400;
	letter-spacing: 0.2px;
	line-height: 1.2;
	box-shadow: 0 0 0 5px #d7b46a45;
	/*width: 100%;*/
}

.health-journey-cta a:hover{
  background: linear-gradient(90deg, rgba(56, 140, 175, 1) 0%, rgba(0, 150, 65, 1) 100%);
}

.health-journey-cta a small {
	font-weight: 400;
	font-size: 12px;
}

.faq p {
	font-size: 1.2vw;
	font-weight: 400;
	color: #646363;
}

.accordion-item {
	border: 1px solid #646363;
}

.accordion-item:last-of-type .accordion-collapse,
.accordion-item:last-of-type,
.accordion-item:first-of-type {
	border-radius: 0;
}

.accordion-body p,
.accordion-body ul.points li {
	color: #646363;
}

.accordion-button::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
	transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-item {
	border-left: 0;
	border-right: 0;
}

.accordion-button:not(.collapsed),
.accordion-button {
	box-shadow: 0 0px 0 rgb(0 0 0);
	background-color: transparent;
	color: var(--drk-blue);
	font-weight: 600;
	font-size: 1.3vw;
}

.accordion-body ul.points,
.note ul.points {
	padding-left: 15px;
}

.accordion-body ul.points li,
.note ul.points li {
	list-style-type: disc;
}

.accordion-body ul.points li:last-child {
	margin-bottom: 1rem;
}

.accordion-body {
	padding: 0rem 1.25rem;
}

#faqs .accordion-body {
    padding-right: 150px;
}

.note ul.points li {
    margin-bottom: 10px;
    font-size: 1vw;
    font-weight: 800;
}

.note ul.points li:last-child {
	margin-bottom: 0;
}

.note {
	display: flex;
	align-items: center;
	gap: 20px;
	background: #EFEFEF;
	border: 2px dashed #bfbfbf;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
	padding: 1rem 2rem;
	width: 94%;
	margin: 3rem auto 0 auto;
}

.awards {
	width: 94%;
	margin: 0 auto;
}

.steps {
	width: 33%;
	text-align: center;
	display: inline-block;
	padding: 0px 15px;
	vertical-align: top;
}

.steps .step-no {
	margin-bottom: 2rem;
}

.steps .step-no::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-color: #185C80;
	margin: 0 auto;
	border-radius: 30px;
	z-index: 1;
	position: relative;
}

.steps .step-no::before {
	content: '';
	display: block;
	width: 60%;
	position: relative;
	top: 3.2rem;
	margin: 0 0 0 auto;
	border: 1px dashed #AFAFAF;
	left: 2rem;
}

.steps .step-no p {
	color: #185C80;
	font-weight: 700;
	font-size: 1.4vw;
}

.steps .step-img {}

.steps .step-img img {
	margin-bottom: 1rem;
}

.steps h5 {
	color: #231F20;
	font-weight: 700;
	font-size: 1.1vw;
	margin-bottom: 1rem;
}

.steps p {
	color: #646363;
	font-weight: 400;
	font-size: 1vw;
	padding: 0 20px;
}

.steps:nth-child(2) .step-no::before {
	content: '';
	margin: auto auto;
	width: 100%;
	left: 0;
}

.steps:last-child .step-no::before {
	content: '';
	margin: auto 0;
	width: 60%;
	left: -2rem;
}

footer {
	background: url(../images/footer-bg.png) no-repeat #185C80;
	padding: 2rem 0 1rem;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	background-size: cover;
	background-position: center;
}

.footer-logo img {
	margin-bottom: 1.5rem;
	width: 203px;
}

.footer-logo p {
	color: #fff;
	font-size: 1.1vw;
}

.quick-link {}

.quick-link h5 {
	font-size: 1.2vw;
	color: #fff;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 1.5rem;
}

.quick-link ul {}

.quick-link ul li {
	margin-bottom: 10px;
	color: #fff;
}

.quick-link ul li a {
	color: #fff;
}

.quick-link ul li a:hover {
	color: #d7b46a;
}

.download {}

.download a {
	margin-right: 10px;
}

.download a:last-child {
	margin-right: 0px;
}

.download img {
	width: 100%;
}

.download img:hover {
	  box-shadow: 0px 2px 0px 2px #020202;
    border-radius: 30px;
    transform: translateY(-3px);
}

.blank-h-50 {
	height: 40px;
}

.social-link {
	margin-top: 4rem;
}

.social-link ul {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-link ul li {
	padding: 0 12px;
}

.social-link ul li::after {
	content: '';
	width: 1px;
	height: 18px;
	background: #fff;
	display: inline-block;
	vertical-align: middle;
	margin-left: 12px;
	position: relative;
	top: -1px;
}

.social-link ul li:last-child::after {
	width: 0;
}

.social-link ul li a {
	color: #fff;
}

.social-link ul li a:hover {
  color: #d7b46a;
}


.breadcrumb-bg {
	background: #F2F4F5;
	padding: 0.5rem 0;
}

.breadcrumb .breadcrumb-item a {
	color: #5F6C72;
}

.breadcrumb .breadcrumb-item.active {
	color: #231F20;
}

.breadcrumb-item+.breadcrumb-item::before {
	content: "•";
}

.e-care-network-bg {
	background: url('../images/form-bg.svg') no-repeat center, linear-gradient(90deg, rgba(56, 140, 175, 1) 0%, rgba(0, 150, 65, 1) 100%);
	background-size: cover;
	background-position: center;
}

.e-care-network-form {
	background: #fff;
	border-radius: 30px;
	box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15);
	padding: 1.5rem 0;
	width: 80%;
	margin: 3rem auto;
}

/* From Uiverse.io by marc_remus */
.form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 100%;
	padding: 20px;
	border-radius: 20px;
	position: relative;
	color: #212121;
}

.flex {
	display: flex;
	width: 100%;
	gap: 20px;
}

.flex .form-group {
	width: 50%;
}

.form label {
	position: relative;
}

.flex .form-group label {
	width: 100%;
}

.form label .input {
	color: #231F20;
	width: 100%;
	padding: 30px 05px 05px 10px;
	outline: 0;
	border: 0;
	border-bottom: 1px solid transparent;
	border-image: linear-gradient(90deg, rgba(56, 140, 175, 1) 0%, rgba(0, 150, 65, 1) 100%);
	border-image-slice: 1;
	width: 100%;
	background-color: transparent;
}

.form label select {
	padding-top: 33px !important;
}

.form label .input+span {
	color: #231F20;
	position: absolute;
	left: 10px;
	top: 0px;
	font-size: 0.9em;
	cursor: text;
	transition: 0.3s ease;
	line-height: 14px;
}

.form label .input:placeholder-shown {
	font-size: 12px;
	padding: 33px 10px 8px;
}

.form label .input:placeholder-shown+span {
	top: 5.5px;
	font-size: 0.9em;
}

.form label .input:focus+span,
.form label .input:valid+span {
	color: #231F20;
	top: 0px;
	font-size: 0.7em;
}

form label .input:valid+span {
	top: 5.5px !important;
	font-size: 0.9em !important;
}

.input {
	font-size: medium;
}

.input.h-80 {
	height: 80px;
}

.submit {
	width: 200px;
	margin: 0 auto;
	border: none;
	outline: none;
	padding: 10px;
	border-radius: 30px;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	transform: 0.3s ease;
	background: #388CAF;
	background: linear-gradient(90deg, rgba(56, 140, 175, 1) 0%, rgba(0, 150, 65, 1) 100%);
}

.submit:hover {

}

#captcha {
	position: relative;
	top: 25px;
}

#captcha-input {
	padding-top: 5px;
}

#refresh-captcha {
	background: #388CAF;
	background: linear-gradient(90deg, rgba(56, 140, 175, 1) 0%, rgba(0, 150, 65, 1) 100%);
	border: 0;
	border-radius: 10px;
	right: 0;
	top: 30%;
	position: absolute;
}

.completing-points {
	margin-top: 1.5rem;
}

.completing-points h5 {
	font-size: 1.2vw;
	font-weight: 600;
	margin-bottom: 20px;
}
.form label select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8+PC9zdmc+);
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 30px;
    border: 1px solid #dfdfdf;
    border-radius: 2px;
    margin-right: 2rem;
    padding: 1rem;
    padding-right: 2rem;
}
.completing-points ul {
	padding-left: 20px;
}

.completing-points ul li {
	list-style-type: disc;
	margin-bottom: 8px;
	font-size: 1vw;
	color: #231F20;
}

/* From Uiverse.io by gharsh11032000 */
.radio-buttons-container {
	display: flex;
	align-items: center;
	gap: 24px;
}

.radio-button {
	display: inline-block;
	position: relative;
	cursor: pointer;
}

.radio-button__input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.radio-button__label {
	display: inline-block;
	padding-left: 30px;
	margin-bottom: 10px;
	position: relative;
	font-size: 1vw;
	color: #231F20;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.radio-button__custom {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #555;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.radio-button__input:checked+.radio-button__label .radio-button__custom {
	transform: translateY(-50%) scale(0.9);
	border: 6px solid #388CAF;
	color: #388CAF;
}

.radio-button__input:checked+.radio-button__label {
	color: #231F20;
}

.radio-button__label:hover .radio-button__custom {
	transform: translateY(-50%) scale(1.2);
	border-color: #388CAF;
	box-shadow: 0 0 10px #388CAF80;
}

.agree-star {
	border: 0 !important;
	width: 0 !important;
	height: 0 !important;
	vertical-align: top !important;
	padding-left: 0 !important;
}

.thank-you-bg {
	background: url(../images/thank-bg.svg) no-repeat center;
	background-size: contain;
	margin: 3rem 0;
}

.thank-you {
	text-align: center;
	padding: 3rem 0;
}

.thank-you img {
	width: 140px;
	margin-bottom: 2rem;
}

.thank-you p {
	color: #646363;
}

@keyframes slideRightToLeft {
	from {
		transform: translateX(-100%);
		/* Starting position (no horizontal translation) */
	}

	to {
		transform: translateX(0);
		/* Ending position (move left by 100% of its own width) */
	}
}

.banner-cta-anim {
	animation-name: slideRightToLeft;
	animation-duration: 1s;
	/* Duration of the animation */
	animation-timing-function: ease;
	/* Easing function */
	animation-iteration-count: 1;
	/* Loop the animation indefinitely */
}




/* Tab */
.health-experts {
	padding: 0;
}

.doctors.owl-carousel .owl-stage{
	display: flex;
	margin: 2px;
}

.doctors.owl-carousel .item {
    height: 100%;
}


/*.doctors.owl-carousel .owl-stage,
.doctors.owl-carousel .owl-item{
	display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}*/

/* .health-experts-box {
	border: 1px solid #000;
	border-radius: 10px;
	padding: 10px;
	height: 100%;
	margin: 1px;
	position: relative;
} */
.health-experts-box {
	border: 1px solid #000;
	border-radius: 10px;
	padding: 10px;
	height: 100%;
	width: 330px;
	max-width: 100%;
	margin: 1px;
	position: relative;
}

.doctor-info {
	display: flex;
	gap: 20px;
}

.doctor-info .doctor-image {
	height: 120px;
}

.doctor-info .doctor-image img {
	object-fit: cover;
	height: 100%;
	border-radius: 6px 24px 6px 24px;
	width: 100px !important;
}

.doctor-info .doctor-name-designation {}

.doctor-info .doctor-name-designation h3 {
	font-weight: 700;
	font-size: 1.4vw;
	margin-bottom: 5px;
}

.doctor-info .doctor-name-designation p {
	font-size: 1vw;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 0;
}

.doctor-qualification-experience {
	border: 1px solid #F1F1F1;
	border-radius: 10px;
	margin: 20px 0 50px;
}

.doctor-qualification-experience-tab {
	border-bottom: 1px solid #F1F1F1;
}

.doctor-qualification-experience-tab ul {
	text-align: center;
	padding: 15px 0;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.doctor-qualification-experience-tab ul li {
	position: relative;
	margin: 0 10px;
	cursor: pointer;
	display: flex;
}

.doctor-qualification-experience-tab ul li:first-child:after {
	content: '';
	display: block;
	width: 2px;
	height: 25px;
	background: #F1F1F1;
	position: relative;
	left: 18px;
}

.doctor-qualification-experience-tab ul li:last-child {}

.doctor-qualification-experience-tab ul li.doctor-quex.active::before {
	content: '';
	display: block;
	height: 2px;
	background: #185C80;
	width: 100%;
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.doctor-qualification-experience-tab ul li.active img {
	width: 22px !important;
	margin-right: 10px;
	filter: none;
}

.doctor-qualification-experience-tab ul li img {
	width: 22px !important;
	margin-right: 10px;
	filter: invert(77%) sepia(17%) saturate(10%) hue-rotate(14deg) brightness(96%) contrast(89%);
}

.doctor-qualification-experience-tab ul li.active p {
	color: #185C80;
}

.doctor-qualification-experience-tab ul li p {
	margin-bottom: 0;
	font-size: 1.2vw;
	font-weight: 500;
	color: #BABABA;
}

.doctor-qualification-experience-info {
	padding: 15px;
}

.doctor-qualification-experience-info .doctor-qualification {}

.doctor-qualification-experience-info .doctor-qualification p {
	margin-bottom: 0;
	font-size: 1vw;
	line-height: 1.2;
}

.doctor-qualification-experience-info .doctor-experience {}

.doctor-qualification-experience-info .doctor-experience p {
	margin-bottom: 0;
}


.view-profile {
	position: absolute;
    bottom: 0;
    width: 94%;
    left: 0;
    right: 0;
    margin: 0 auto 10px;
}

.view-profile a {
	text-align: center;
}

.view-profile a p {
	margin-bottom: 0;
	color: #fff;
	background: #185C80;
	padding: 10px 0;
}

.view-profile a:hover p {
	margin-bottom: 0;
	color: #185C80;
	background: transparent;
	box-shadow: inset 0 0 0 1px #185C80;
}

.view-profile a p i {}

.hideme {
	display: none;
}
.showme{
	display: block !important;
}

.doctors .owl-nav {
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 25px;
}

.doctors .owl-nav .owl-prev {}

.doctors .owl-nav .owl-next {}

.doctors .owl-nav .owl-prev,
.doctors .owl-nav .owl-next {
	border: 2px solid #185C80 !important;
	width: 38px;
	height: 38px;
	border-radius: 4px;
}

.doctors .owl-nav .owl-prev:hover,
.doctors .owl-nav .owl-next:hover {
	background: #185C80;
}

.doctors .owl-nav .owl-prev:hover i,
.doctors .owl-nav .owl-next:hover i {
	color: #fff;
}


.tab__menu, .tab__menu_kawach {}

.tab__menu .tab__btn, .tab__menu_kawach .tab__btn_kawach {}

.tab__menu .tab__btn p,
.tab__menu_kawach .tab__btn_kawach p {
	margin-bottom: 0;
}

.tab__menu .tab__btn.active,
.tab__menu_kawach .tab__btn_kawach.active,
.kawach-doc ul.nav-tabs a.active {
	background: #185C80;
}

.tab__menu .tab__btn.active p,
.tab__menu_kawach .tab__btn_kawach.active p,
.kawach-doc ul.nav-tabs a.active p {
	color: #fff;
}

.tab__bar {
	position: relative;
	margin: 10px;
}

.tab__bar .tab__navigation {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.tab__bar .tab__menu, .tab__bar .tab__menu_kawach, .kawach-doc ul.nav-tabs {
	color: var(--white);
	list-style: none;
	max-width: 98%;
	white-space: nowrap;
	scroll-behavior: smooth;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow-x: auto;
	padding: 8px 0;
	background: #FBFBFE;
	border: 1px solid #F1F2F9;
	border-radius: 10px;
}

.tab__bar .tab__menu.dragging,
.tab__bar .tab__menu_kawach.dragging {
	scroll-behavior: unset;
	cursor: -webkit-grab;
	cursor: grab;
}

.tab__bar .tab__menu.dragging .tab-btn,
.tab__bar .tab__menu_kawach.dragging .tab-btn_kawach {
	pointer-events: none;
}

.tab__bar .tab__menu::-webkit-scrollbar,
.tab__bar .tab__menu_kawach::-webkit-scrollbar {
	display: none;
}

.tab__bar .tab__menu .tab__btn,
.tab__bar .tab__menu_kawach .tab__btn_kawach,
.kawach-doc ul.nav-tabs .nav-link {
	display: inline-block;
	color: var(--white);
	margin: 0 10px;
	padding: 4px 15px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition: background-color 0.3s ease;
	/*box-shadow: 0 2px 6px 0 #4A3AFF1A ;*/
	border-radius: 5px;
}
.kawach-doc ul.nav-tabs .nav-link:hover{
	border-color:#FBFBFE;
}

.tab__bar .tab__menu .tab__btn img,
.tab__bar .tab__menu_kawach .tab__btn_kawach img {
	filter: grayscale(100%);
	width: 100px;
}

.tab__bar .tab__menu .tab__btn:hover {}
.tab__bar .tab__menu_kawach .tab__btn_kawach:hover {}

.tab__bar .tab__menu .tab__btn.active,
.tab__bar .tab__menu_kawach .tab__btn_kawach.active {
	/*border-bottom: 5px solid var(--blue-btn);*/
	box-shadow: 0px 3px 0 0px var(--blue-btn), 0 1px 4px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
}

.tab__bar .tab__menu .tab__btn.active img,
.tab__bar .tab__menu_kawach .tab__btn_kawach.active img {
	filter: grayscale(0%);
}

.tab__bar .left__btn,
.tab__bar .right__btn,
.tab__bar .left__btn_kawach,
.tab__bar .right__btn_kawach {
	position: absolute;
	color: var(--white);
	font-size: 1.8em;
	cursor: pointer;
	padding: 16px 0px 0px 0px !important;
	box-shadow: 0 0 0px 1px var(--blue-btn);
	background: var(--white);
	z-index: 1;
	border-radius: 5px;
	border: 1px solid #185C80;
	height: 25px;
	width: 25px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.tab__bar .left__btn:hover,
.tab__bar .right__btn:hover,
.tab__bar .left__btn_kawach:hover,
.tab__bar .right__btn_kawach:hover {
	background: var(--blue-btn);
}

.tab__bar .left__btn:hover i,
.tab__bar .right__btn:hover i,
.tab__bar .left__btn_kawach:hover i,
.tab__bar .right__btn_kawach:hover i {
	color: var(--white);
}

.tab__bar .left__btn i,
.tab__bar .right__btn i,
.tab__bar .left__btn_kawach i,
.tab__bar .right__btn_kawach i {
	width: 30px;
	height: 30px;
}

.tab__bar .left__btn i,
.tab__bar .right__btn i,
.tab__bar .left__btn_kawach i,
.tab__bar .right__btn_kawach i {
	color: var(--blue-btn);
	font-size: 14px;
}

.tab__bar .left__btn,
.tab__bar .left__btn_kawach {
	display: none;
	left: -25px;
	padding: 0px 0px 0px 0;
}

.tab__bar .right__btn,
.tab__bar .right__btn_kawach {
	right: -25px;
	padding: 0px 0 0px 0px;
}

.tab__content {
	position: relative;
}

.tab__content .tab,
.tab__content .tab_kawach {
	position: relative;
	width: 100%;
	padding: 10px 20px;
	display: none;
	/* -webkit-animation: fadein 0.8s;
	animation: fadein 0.8s; */
}

.tab__content .tab.active,
.tab__content .tab_kawach.active {
	display: flex;
	justify-content: center;
}

.tab__content .tab .row,
.tab__content .tab_kawach .row {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

@media (max-width: 767px) {
	.tab__content .tab .row,
	.tab__content .tab_kawach .row {
		flex-direction: column;
	}
}

.tab__content .left-column,
.tab__content .right-column {
	width: 50%;
	max-width: 500px;
}

@media (max-width: 767px) {

	.tab__content .left-column,
	.tab__content .right-column {
		width: 100%;
		max-width: 700px;
	}
}

.tab__content .left-column {
	display: flex;
	align-items: center;
}

.tab__content .left-column .img-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: var(--box-shadow);
}

.tab__content .left-column .img-card img {
	width: 100%;
}

.tab__content .info .city {
	margin-bottom: 15px;
	font-size: 32px;
}

.tab__content .info .description {
	font-weight: normal;
	font-size: 14px;
	line-height: 1.8;
}

@media (max-width: 767px) {
	.tab__content .info .description {
		text-align: justify;
	}
}

.tab__content .info .city,
.tab__content .info .description {
	color: var(--text-color);
}

@media (max-width: 767px) {

	.tab__content .info .city,
	.tab__content .info .description {
		text-align: center;
	}
}

@-webkit-keyframes fadein {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadein {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}


/* -----------request a call back---------- */

.callback-section {
  background: #f9f9f9;
}

.callback-form-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.callback-section .form-label {
  font-weight: 500;
  color: var(--drk-blue);
  
}

.callback-section .form-title{
	color: var(--drk-blue);
}

.callback-section .form-control {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
  color: #333;
  transition: 0.2s ease;
}

.callback-section .form-control:focus {
  border-color: #26448c;
  box-shadow: 0 0 0 0.1rem rgba(38, 68, 140, 0.25);
}

/* phone number mask styling */
.callback-section .phone-wrapper {
  position: relative;
}

.callback-section .phone-field {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px 12px;
  background: #fff;
}

.callback-section .phone-prefix {
  font-size: 0.95rem;
  color: #666;
  margin-right: 8px;
}

.callback-section .phone-input {
  border: none;
  outline: none;
  flex: 1;
  background: transparent;
  color: transparent; /* hide real text */
  caret-color: #26448c;
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
}

.callback-section .phone-mask {
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  letter-spacing: 3px;
  font-family: monospace;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}

.callback-section .btn-submit {
      background: linear-gradient(90deg, rgba(56, 140, 175, 1) 0%, rgba(0, 150, 65, 1) 100%);
  color: #fff;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  transition: 0.3s ease;
}

.callback-section .btn-submit:hover {
 background: #D7B46A;
}

/* Responsive */
@media (max-width: 576px) {
  .callback-form-wrapper {
    padding: 30px 20px;
  }
}

.details-sathi-kawach{background: #EBF8FF;border-radius: 30px;padding: 20px;display: inline-block;width: 100%;}
.resp-vtabs .resp-tabs-list li {font-family: var(--Trebuchet-MS);font-size: 1.6vw;font-weight: 600;}
.details-sathi-kawach .tab-content-body{}
.details-sathi-kawach .tab-content-body h5{font-family: var(--Trebuchet-MS);font-size: 1.4vw;font-weight: 500;line-height: 1.4;    margin-bottom: 20px;color: #646363;}
.details-sathi-kawach .tab-content-body p{color: #646363;}
.details-sathi-kawach .tab-content-body p strong{}
.details-sathi-kawach .tab-content-body ul{}
.details-sathi-kawach .tab-content-body ul li{display: flex;margin-bottom: 15px;}
.details-sathi-kawach .tab-content-body ul li p{color: #646363;}
.details-sathi-kawach .tab-content-body ul li p:first-child{background: #CFECFF;width: 30px;height: 30px;min-width: 30px;border-radius: 30px;display: flex;justify-content: center;margin-right: 15px;}
.details-sathi-kawach .tab-content-body ul li p img{width: 18px;}
.details-sathi-kawach .tab-content-body ul li:nth-child(3) p img{width: 14px;}


.responsive-tabs {
  padding: 1rem;
}
.responsive-tabs .nav-tabs {
  display: none;
}
@media (min-width: 768px) {
  .responsive-tabs .nav-tabs {
    display: flex;
  }
  .responsive-tabs .card {
    border: none;
  }
  .responsive-tabs .card .card-header {
    display: none;
  }
  .responsive-tabs .card .collapse {
    display: block;
  }
}
@media (max-width: 767px) {
  .responsive-tabs .tab-pane {
    display: block !important;
    opacity: 1;
  }
}


