@charset "utf-8";
  
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap');

/*
 
 font-family: "SN Pro", sans-serif;
  font-family: "Philosopher", sans-serif;
*/

:root {
	--body-font: "SN Pro", sans-serif;
	--body-color: #1B1B1B;
	--primary-color: #9F1E60;
	--secondary-color: #F06EA9;
	--tertiary-color: #C7679E;
	--quaternary-color:#FFEEF9;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;		 	 
	--yellow:#FFC601;
	--font-light:300;
	--font-normal:400;
	--font-medium:500;
	--font-bold:600;
	--heading-font:"Philosopher";
}

body {
	font-family: var(--body-font);
	font-size: 17px;
	font-style: normal;
	line-height: 24px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-normal);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white); 
	 
}


/* *********Scrollbar Styling *************/

::-webkit-scrollbar {
    width: 5px;
}
 
::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 10px;
    border-radius: 10px;
 
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background:  var(--primary-color);
}

html {
	scroll-behavior: smooth;
	overflow-x:hidden;
}
html, body {
  overscroll-behavior-y: contain;
}
* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: var(--primary-color);
	/* Safari */
	color:var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color:var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	transition: all 0.4s ease;
}

a:hover {
	color: var(--primary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	 
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin:20px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
img {
	border: 0;
	transition: all 0.4s ease;
}

a img {
	border: 0;
}

/*-----------text styles------------*/


.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-primary {
	color: var(--primary-color) !important;
}
  
 .text-secondary {
	color: var(--secondary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}

 

/*-----------background styles------------*/
 
.bg-gradient{
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	color:var(--white)!important;	 
	 
}
.bg-secondary {
	background: var(--secondary-color);
	color:var(--white)!important;	 
 
}

.bg-tertiary {
	background: var(--tertiary-color);	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
 
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }

/*************** PRELOADER ***************/
 
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            z-index: 9999; 
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        }

        /* The Spinner */
        .spinner {
            width: 30px;
            height: 30px;
            border: 4px solid var(--secondary-color);
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        /* Keyframes for rotation */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Hide class to be added via JS */
        #preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }


 
/*********************************/

.container {
	  width: 100%;
	  max-width: 1300px;
	  margin-left: auto;
	  margin-right: auto;
	  position: relative;
	 
}
.fullheight {
	width: 100%;
	height:100vh;
	overflow:auto;
} 
.fullwidth, .img-fluid{
	width: 100%;
	display: block;
} 

.img-style{
	border-radius: 12px;
	width: 100%;
	display: block;
 }	
 
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	border-radius: 16px; 
}

 .hover-effect i{
    width:50px;
    height:50px;
    background-color:var(--primary-color);
	border-radius: 50%;
    color:#fff;
    position:absolute;
    left:50%;
    top:-100px;
    z-index:1;
    line-height:50px;
    text-align:center;
    margin:0 0 0 -25px;
    transition: all 0.4s ease;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

 .hover-effect i:hover{
	background-color:var(--secondary-color);
	}

.hover-effect img {
 	display:block;
  	width:100%;
	-webkit-filter: none;
    filter: none;
 	-webkit-transition: all .5s;
    transition: all .5s;
}
.hover-effect:hover img {
     -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    transition: all 0.4s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}


 .hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  transition: all 0.4s ease;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;
}
 
section {
	width: 100%;
	display:block;
	position: relative;
}

.section-spacing{
   padding:70px 0;
 }
.section-spacing-small{
	padding:20px 0;
}
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}

/*********************************************/ 
.eocjs-newsticker {
}

.eocjs-newsticker .eocjs-newsticker-container {
  position: relative;
  height: 24px;
  overflow: hidden;
}

.eocjs-newsticker .eocjs-newsticker-one,
.eocjs-newsticker .eocjs-newsticker-two {
  position:relative;  
  white-space: nowrap;
}
 
@keyframes eocjs-newsticker-spin {
  to {
    transform: rotate(360deg);
  }
}
 

 /* --- Vertical Marquee Styles --- */
 .vertical-marquee {
    height: 90px; 
    overflow: hidden;
    position: relative;
	margin-top:20px;
   
}

.marquee-list, .listing {
    list-style: none;
    padding: 0;
    margin: 0;
}

.marquee-list li, .listing li {
    height: 20px;               /* 50px × 4 = 200px */
    line-height: 250px;
    padding:0 0 0 20px;
	font-size:14px;
	height: 25px; 
	line-height: 25px;
	box-sizing: border-box;
	white-space: nowrap;
	position:relative;
}

.marquee-list li:before, .listing li:before{
	content:'+';
	position:absolute;
	left:0;
	top:0;
	width:10px;
	height:10px;
	color:var(--primary-color);
}
/******************************************/
 
 header{
	 width:100%; 
	 position:relative;
	 padding:8px 0;
	 z-index:5;
	 transition: all 0.4s ease;
	 background-color:var(--white);
	
}
 header.smaller {
	padding:5px 0;
	position: fixed;
	left:0;
	top:0;
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
 .logo { 
	width:145px;
	position:relative;
	transition: all 0.4s ease; 
}
 
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width:100px;
}
.nav-group{
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0 20px;
	} 
.booknow-bt{}
.booknow-bt a{
	display:flex;
	justify-content: center;
	align-items: center;
	padding:0 20px;
	height:40px;
	color:var(--white);
	font-size:16px;
	font-weight:var(--font-medium);
	line-height:normal;
	background-color:var(--secondary-color);
	border-radius:4px;
}  
.booknow-bt a:hover{	 	 
	background-color:var(--primary-color);
}   
 
/***********link ***********/
 
.link {}

.link a {
	color:var(--quaternary-color);	 
	font-size:16px;
	font-weight:var(--font-medium);
	line-height:13px;
	padding: 0  50px 0 30px;
	min-height:40px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-style: normal;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 7px;
	background-color:var(--primary-color);
	font-family:var(--font-medium);
	transition: all 0.4s ease;
}
.link a:hover {
	color:var(--white);
	background-color:var(--secondary-color);
}
/*.link a:before{
	width:100%;
	height:0;
	border-radius: 4px;
	position:absolute;	
	background-color:var(--primary-color);
	bottom:0;
	left:0;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
	 	
} */
 
.link a:hover:before{
	 height:100%;
}
.link a:after{
	width:40px;
	height:40px;
	position:absolute;		 
	top:0;
	right:5px;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:18px;
	filter: inherit;
	 	
} 
.link a:hover:after{
	filter: brightness(0) invert(1);
}
 .link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
 
/********whatsapp button*************/

.whatsapp-bt {}

.whatsapp-bt a {
	color:var(--white);	 
	font-size:16px;
	font-weight:var(--font-medium);
	line-height:13px;
	padding: 0  30px 0 60px;
	min-height:50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-style: normal;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 50px;
	background-color:#25D366;
	font-family:var(--font-medium);
	transition: all 0.4s ease;
}
.whatsapp-bt a:hover {
	 
	background-color:var(--black);
}
 
 
.whatsapp-bt a:after{
	width:50px;
	height:50px;
	position:absolute;		 
	top:0;
	left:5px;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
	background-image: url(../images/icons/whatsapp-icon.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:30px; 
	filter: inherit;
	 	
} 
.whatsapp-bt a:hover:after{
	filter: brightness(0) invert(1);
}
 
/*********************/

.theme-bt {}

.theme-bt a {
	color:var(--white);	 
	font-size:16px;
	font-weight:var(--font-medium);
	line-height:13px;
	padding: 0  30px;
	min-height:50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-style: normal;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 50px;
	background-color:var(--secondary-color);
	font-family:var(--font-medium);
	transition: all 0.4s ease;
}
.theme-bt a:hover {
	background-color:var(--black);
}
 
  


/*********************/
 .done-bt {
	color:var(--white);
	font-size:16px;
	font-weight:var(--font-medium);
	line-height:13px;
	padding: 0 20px;
	min-height:40px;
	width:80px;
	display: inline-flex;
	text-align:center;
	justify-content: center;
	align-items: center;
	font-style: normal;
	position: relative;
	overflow:hidden;
	margin:5px;
	border-radius: 7px;
	background-color:var(--secondary-color);
	font-family:var(--font-medium);
	transition: all 0.4s ease;
	cursor:pointer;
}
.done-bt:hover {
	
	background-color:var(--primary-color);
}
.caps{
	text-transform:uppercase;
}
  
.heading{
	font-size:44px;
	line-height:normal;
}
.heading span{
	font-weight:var(--font-normal);	 
}
.subheading {
	font-size: 40px;
	line-height:normal; 
	font-family:var(--medium);
}
 
.subtitle{
	font-size: 22px;
	font-family:var(--font-bold); 
}
.title-small{
	font-size:18px;
 
}
.bold, strong{
	font-weight:var(--font-bold);
}
.heading-font{
	font-family:var(--heading-font);
	}
.section-title{
	display: flex;
    flex-wrap: wrap;
	justify-content: center;	 
}
 .section-title span{
	display:flex;
	justify-content: center;
	text-align:center;
	font-family:var(--font-medium);
	font-size:16px;
	line-height:normal;
	position:relative;
	margin-bottom:20px;
	padding-bottom:20px;
}
 .section-title span:after{
 	width:50px;
	height:1px;
	background-color:var(--secondary-color);
	position:absolute;
	left:50%;
	bottom:0;
	margin-left:-25px;
	content:'';
 }
/****************************/
  
.pos-rel{
	position:relative;
}
 

/****************SCROLLING TEXT***************/

.header-offer{
	 width:100%;
	 background-color:var(--primary-color);
	 text-align:center;
	 padding:10px 20px;
	 overflow:hidden !important;
	 white-space: nowrap;
     margin: 0;
}

 
 

.header-offer h2 {
  font-size:18px;
  line-height:normal;
  color:var(--white);
  /*font-weight:var(--font-bold);*/
  margin:0;
}
.sep{
	width:6px;
	height:6px;
	background-color:var(--secondary-color);
	outline-offset: 4px;
	outline:1px solid var(--secondary-color);
	border-radius: 50%;
	display:inline-block;
	position:relative;
	margin:0 25px;
	vertical-align:middle
 
	}
.RightToLeft {
  animation: RightToLeft 20s infinite linear;
}
/***********/
 
/*********/
@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.LeftToRight {
  animation: LeftToRight 20s infinite linear;
}

@keyframes  LeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}
/*******************Home page settings***************************/
.hero-section{
	overflow:hidden;
	padding:0 0 50px 0;
 
 
}
.support-grid{
	display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(6, 1fr);
 
	}
.support-grid .item{
	text-align:center;
	line-height:normal;
	display:flex;
	flex-wrap: wrap;
	flex-direction:column;
	transition: all 0.4s ease;
	border-radius: 10px;
	padding:20px;
	color:var(--white);
	/*border:1px solid rgba(240, 110, 169, 0.2);
	background-image: linear-gradient(to top, var(--white), var(--secondary-color));*/
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
}
.support-grid .item:hover{
	background-color:var(--grey-light);
	transform: scale(1.03);
}
.support-grid .item a{
	color:var(--white);
}
.support-grid .item a:hover{
	color:rgba(255, 255, 255, 0.5); 
}
.support-grid .item h2{
	font-size:16px;
	line-height:normal;
	font-weight:var(--font-medium);
	margin:0;

}
.theme-icon{
	width:60px;
	height:60px;
	display:inline-flex;
	text-align:center;
	justify-content: center;
	align-items: center;
	/*background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));*/
	color:var(--primary-color);
	background-color:var(--quaternary-color);
	outline: 1px solid var(--secondary-color);
    outline-offset: -6px;
	border-radius: 50%;
	margin-bottom:15px;
	transition: all 0.4s ease;
	
}
.icon-large{
	width:100px;
	height:100px;
	}
	
.icon-large i{
	font-size:40px !important;
	}
.theme-icon i{
	font-size:24px;
}
.support-grid .item:hover .theme-icon{
	color:var(--white);
	background-color: var(--primary-color);
	transform: rotate(360deg);

}

.fitme-icon{
	width:40px;
	height:40px;
	padding:15px;
	text-align:center;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color:var(--secondary-color);
	background-color:var(--quaternary-color);
	font-size:18px;
}

.fitme-iconic-info{     
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	font-size: 22px;
	font-family:var(--font-bold); 
	gap: 0 15px;
	margin-bottom:15px;
}
/************serch settings*****/

.search-container {
     display: grid;
     grid-gap:20px;
     grid-template-columns: repeat(2, 1fr);
	 padding:40px;
	 background: var(--white);
     border-radius: 12px;
     box-shadow: 0 8px 24px rgba(0,0,0,0.06);
	 margin-bottom:15px;
	 align-items: start;
}
.search-container .item{
	display:flex;
	flex-wrap: wrap;
	 
}
 .search-container .item:nth-child(2) {
 	justify-content:space-between !important;
	 
 }
.dd-wrap{
	width:48.5%;
	display: flex;
	flex-direction:column;
	flex-wrap: wrap;	 
}
 select{
 	width:100% !important;
 }	
/****************************/
 	 
.search-box {
        width:100%;
		height:50px;
		display: flex;
        align-items: center;
        border: 1px solid var(--grey);
        border-radius: 7px;
        padding: 12px 18px;
        box-sizing: border-box;
        background:var(--white);
}
.search-box i{
	margin-right:10px;
	color:var(--primary-color);
}
.search-box svg {
        width: 20px;
        height: 20px;
        fill:  var(--grey-dark);
        margin-right: 10px;
        flex-shrink: 0;
    }

.search-box input {
        border: none;
        outline: none;
        width: 100%;
        font-size: 16px;
        color: var(--body-color);
}

.search-box input::placeholder {
        color: var(--body-color);
}

.drop-head{
	display:block;
	margin-bottom:15px;
	font-weight:var(--font-medium);
	color:var(--black);
	line-height:normal;
	font-size:20px;
}

/*****multiselect-dropdown*******/
select {
  	 
 }
 
.multiselect-dropdown{
		width:100% !important;
	    border: 1px solid var(--grey);
        border-radius: 7px !important;
        padding: 10px 18px !important;
        box-sizing: border-box;
        background-color:var(--white);
		color:var(--body-color)!important;
}
.optext{
	background-color:var(--secondary-color)!important;
	color:var(--white);
} 
 

 /********************profile listing**********************/
 
  
 .profile-listing{      
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
     gap: 24px;
}
 .card {
     background: var(--white);
     border-radius: 12px;
     padding: 10px;
     box-shadow: 0 8px 24px rgba(0,0,0,0.06);
     display: flex;
     flex-direction: column;
     gap: 12px;
	
}
 .card-header {
     background-color:var(--quaternary-color);
     border-radius: 7px;
     display: flex;
	 justify-content: space-between;
     align-items: center;
     gap: 12px;
	 overflow:hidden;
}
.dr-info-group{
 	 width:65%;
	 display: flex;
	 justify-content: space-between;
     align-items: center;
     gap: 12px;
}
 .profile-img {
     width: 150px;
	  
}
 .profile-img img {
     width: 100%;	 
	 display:block;
	 
}
 .dr-info{
 	 padding:0 0 0 15px;
	  
}
 .name {
     margin-bottom:10px;
}
 .name h2 {
     font-weight: var(--font-bold);
     font-size: 20px;
     margin:0;
     line-height:normal;
}
 .role {
     font-size: 16px;
     line-height:14px;
     margin-top: 2px;
}
 .lc {
     font-size: 16px;
     line-height:16px;
     margin-top: 2px;
	 font-style:italic;
	 color:var(--secondary-color);
}
 .quick-view {
}
 
 .quick-view a {
     padding:0 12px 0 40px;
     border-radius:4px;
     cursor: pointer;
     font-size: 12px;
	 height:34px;
	 display: flex;
	 align-items: center;
     line-height:14px;
     color:var(--white);
     font-weight:var(--font-medium);
	 background-color:var(--secondary-color);   
	 position:relative;
}     
 .quick-view a:before{
 	 width:28px;
	 height:28px;
	 position:absolute;
	 border-radius:4px;
	 left:3px;
	 top:3px;
	 content:'';
	 background-color:var(--quaternary-color);   
     background-image: url(../images/icons/quick-view-icon.svg);
     background-repeat: no-repeat;
     background-position: center center;
     background-size:60%;
	 }
 
 .quick-view a:hover{
      background-color:var(--primary-color);
 
}
 .consultaitons-info {
     width:35%;
	 padding:0 15px;
	 border-left:2px solid var(--white);
	 
 
}
 .consultaitons-info h2 {
     font-weight:var(--font-medium);
     margin-top: 4px;
     font-size:16px;
	 line-height:16px;
	 color:var(--secondary-color);
}
 
 .audio-bar {
     display: flex;
     align-items: center;
     gap: 10px;
     margin: 10px 0;
	 padding-bottom:10px;
	 border-bottom:1px solid  var(--grey-dark);
}
 .play-btn {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     border: 1px solid var(--grey-dark);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     font-size: 14px;
}
 .wave {
     flex: 1;
     height: 14px;
     background: repeating-linear-gradient( to right, #111 0px, #111 3px, transparent 3px, transparent 8px );
     opacity: 0.6;
     /*border-radius: 4px;*/
}
  
 
 .card-footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 8px;
}
.price-holder{}

.price {
     font-weight: 600;
     font-size: 15px;
	 line-height:normal;
}
.languae{
	font-size:13px;
}
.languae span{
	font-size:13px;
	color:var(--secondary-color);
	display:inline-flex;
	margin-left:5px;
	font-weight:var(--font-medium);
}
.button-holder{
 	display: flex;
	gap:0 10px;
	align-items: center;
 }
 
 .book-btn {
    
}
 .book-btn a {
     height:34px;
	 display: flex;
	 align-items: center;
	 padding: 0 18px;
     border-radius: 4px;
     border: none;
	 font-size:14px;
	 line-height:14px;
	 background-color:var(--secondary-color);
     color:var(--white);
     cursor: pointer;
     font-weight:var(--font-medium);
}
 .book-btn a:hover {    
	 background-color:var(--primary-color);
}
/*********MARQUEE SETTINGS*******************/
 
 .marquee-container {
     position: relative;
     overflow: hidden;
     padding: 0.5rem 0;
}
/* The mask creates the fade effect on the left and right edges */
 .marquee-mask {
     mask-image: linear-gradient( to right, transparent, black 15%, black 85%, transparent );
     -webkit-mask-image: linear-gradient( to right, transparent, black 15%, black 85%, transparent );
}
 .marquee-track {
     display: flex;
     width: max-content;
     gap: 0.75rem;
}
/* Forward Animation */
 .animate-scroll-left {
     animation: scroll-left 10s linear infinite;
}
/* Reverse Animation */
 .animate-scroll-right {
     animation: scroll-right 10s linear infinite;
}
/* Pause on hover logic */
 .marquee-container:hover .marquee-track {
     animation-play-state: paused;
}
 @keyframes scroll-left {
     from {
         transform: translateX(0);
    }
     to {
         transform: translateX(-50%);
    }
}
 @keyframes scroll-right {
     from {
         transform: translateX(-50%);
    }
     to {
         transform: translateX(0);
    }
}
 .tag-group {
     display: flex;
     gap: 8px;
     padding-right: 0.75rem;
}
 .tag-card {
     padding: 10px 15px;
     border-radius: 9999px;
     border: 1px solid var(--grey);
     background: white;
     font-size: 12px;
	 line-height:12px;
     color:var(--body-color);
     /*box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);*/
     transition: all 0.2s;
     white-space: nowrap;
     cursor: pointer;
}
 .tag-card:hover {
     border-color: var(--secondary-color);
     background-color: var(--quaternary-color);
     color: var(--primary);
     transform: scale(1.05);
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);*/
}

/****************************/

.quickview-head{
	display: flex;
    flex-wrap: wrap; 
	gap: 0 20px;
	align-items: center;
	justify-content: space-between;
	background-color:var(--quaternary-color);
	border-radius: 7px;
	padding:20px;
	margin-bottom:25px;
	}
.quickview-left{
	display: flex;
	flex-wrap: wrap; 
	gap: 0 20px;
	align-items: center;
	justify-content: space-between;
	}	
.quickview-right{
	display: flex;
	flex-wrap: wrap; 
	flex-direction:column;
	gap: 5px 0;
}


 
	
.quickview-right h2 {
     font-weight:var(--font-medium);
     margin-top: 4px;
     font-size:16px;
	 line-height:16px;
	 color:var(--secondary-color);
}
 .quickview-right ul{}
	
.dr-foto{
	width:90px;
	height:90px;
	overflow:hidden;
	border-radius: 50%;
	border:1px solid #FFCEEE;
	background-color:var(--quaternary-color);
	/*padding:7px;
	outline: 2px solid var(--secondary-color);
    outline-offset: 2px;*/
}
.dr-foto img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: fill;
  }
 .info-dr{
 }
 .info-dr h2{
  font-size:22px;
  font-weight:var(--font-bold);
  line-height:22px;
  margin:0;
 }
 .info-dr h3{
  font-size:18px;
  line-height:18px;
   margin:0 0 10px 0;
  font-weight:var(--font-bold);
 }
 
 

 .info-dr p{
 	margin:0;
	font-size:14px;
 }
 
.quickview-middle{
	background-color:var(--quaternary-color);
	border-radius: 12px;
	padding:20px;
	margin:15px 0;

}

 .concern{
	 margin:0;
	 padding:20px 0;
	 margin-bottom:25px;
	 position:relative;
	 border-bottom:1px solid var(--black);
}
 .info-heading{
 	margin:0 0 25px 0;
	line-height:normal;
	font-weight:var(--font-bold);
	font-size:20px;
	width:100%;
	display:flex;
	flex-wrap: wrap; 
	gap:0 10px;
	align-items: center;
	 
}

 .concern ul{
 	margin:0;
	padding:0;
	list-style:none;
	display: flex;
	gap:10px 0;
	justify-content: space-between;
	flex-wrap: wrap; 
}

.concern ul li{
  	padding:0 0 0 30px;
	margin:0;
	flex:0 0 48%;	
	font-size:16px;
	line-height:20px;
	position:relative;
	
}
  
.concern ul li:after{
	width:15px;
	height:15px;
	position:absolute;
	left:0;
	top:5px;
	content: '';
	background-image: url(../images/icons/bullet.svg);
	background-repeat: no-repeat;
	background-position: center center; 
	background-size:100%;
 
}
 
 	
 .features {    
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color:var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
  }

  .feature-text {
	font-size:16px;
	line-height:20px;
 
  }
  .quickview-footer{
  	justify-content: space-between;
	align-items: center;
	display: flex;
    flex-wrap: wrap;
	padding:15px 0;
	border-top:1px solid var(--black);
	margin-top:20px;
	justify-content: center;
	}
 
 .pay-now{     
    display: flex;
    flex-wrap: wrap;
	gap:0 15px;
	align-items: center;
	margin-bottom:15px;
} 
.qr{
	width:80px;
} 
.qr img{
	width:100%;
	display:block;
}
.acc-info{}

.highlight{
	display:flex;
	flex-wrap: wrap; 
	padding:10px;
	border:2px solid #36B914;
	gap:0 20px;
	border-radius: 12px;
	margin:20px 0;
	width:50%;
}
.highlight .left{
	display:flex;
	flex-wrap: wrap; 
	flex-direction:column;
	}
	
.highlight .left p{
	margin:0;
}
.highlight .left h2{
	display:flex;
	gap:0 10px;
	font-size:20px;
	align-items: center;
	line-height:normal;
	vertical-align:middle;
	font-weight:var(--font-bold);
}
.highlight .left h2 i{
	color:#36B914;
	font-size:24px;
}
.highlight .right{}
.txt-title{
	font-size:14px;
	line-height:normal;
	font-weight:var(--font-medium);
}


/******************profile details*****************************/

.profile-visual{
	display: flex;
    flex-wrap: wrap; 
	justify-content: space-between;
}

.pv-left{
	flex: 0 0 30%;
}
.pv-left img{
	width:100%;
	border-radius: 50%;
}
.pv-right{
	flex: 0 0 65%;
}
 /**********************news**********************/
 
 
.news-widget{
  	padding:20px 0;
  	color:var(--body-color);
  }
 .news-widget h2{
  	font-size:22px;
  	line-height:normal;
 
  } 
.date{
	font-size:14px;
	line-height:14px;
	text-transform:uppercase;
	letter-spacing:1px;
	margin:0 0 15px 0;	
	vertical-align:middle;
}
.date i{
	font-size:16px;
	color:var(--secondary-color);
	vertical-align:middle;
	margin:-5px 10px 0 0; 
}
  .news-style p:last-child{
  	margin:25px 0 0 0;
  }

/*********login*****************/ 

.login-group{
 	display: flex;
    flex-wrap: wrap;
	gap:10px 0;
}
  
.login-box{
 	max-width:450px;
	display: flex;
    flex-wrap: wrap;
	flex-direction:column; 
	padding:40px;
	border-radius: 12px;
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
	} 
	
.login-box .head{
	text-align:center;
	margin:0 0 25px 0;
}
.login-box .head h2{
	font-size:24px;
	line-height:normal;
	margin:0 0 10px 0;
	font-weight:var(--font-bold);
	 
}
 
/********************services scroller**********************/
  
 .boxy{
 	padding:40px;
	border-radius: 12px;
 }
  
.display-style{ 
     width: 100%;
	 aspect-ratio: 1 / 1;
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:40px;
	 transition: all 0.4s ease;
}
  
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
  
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 20px 0 200px;
	min-height:100px;
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size:34px;
	font-family:var(--heading-font-medium);
	margin:0 0 15px 0;
	line-height:30px;
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:0;	
	width:150px;
	height:150px;
	text-align:center;
	color:var(--white);
	font-size:30px;
	vertical-align:middle;
	margin:0;
	padding:30px;
	border-radius:50%;
	border:1px solid var(--secondary-color);	 	 
	transition: all 0.4s ease;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	/*background-color:var(--primary-color);*/
}
.iconic p:last-child{
	margin:0;
}


 
  
  
/**********************Reviews**********************/
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
}
/*********whatsa app*/ 
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:80px;
	line-height:50px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50%;
	text-align:center;
    font-size:30px;
	/*box-shadow: 2px 2px 3px #999;*/
    z-index:4;
}
.float i{
	transition: all 0.4s ease;
 
}
.float:hover i{
	transform: rotate(0.12turn);
}
.float:hover{
	color:#FFF;
	 
} 
.float h5 {
    width: 100px;
    top: 8px;
	right:50px;
    background-color:var(--white);
	color:var(--grey-dark);
	 box-shadow: 0px 0px 5px gray;
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	transition: all 0.4s ease;
	opacity:0;
}
.float:hover h5{
	 opacity:9;
	 right:60px;
}
 
/*************** footer CSS ***************/
 
.footer {
	padding:80px 0 0 0;
	margin:0;
	background-color:var(--primary-color);
	color:var(--white);
	background-image: url(../images/fitmehealth-logo-outline.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:100%;
	font-weight:var(--font-light);
}
.footer p{
	margin:0 0 15px 0;
}
.footer-row{     
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between; 
}

.footer-row .column{     
    /*flex: 0 0 22%;*/
}
.footer-row .column h2{     
    font-size:20px;
	line-height:normal;
	margin:0 0 25px 0;
	font-weight:var(--font-bold);
}
.footer-row .column ul, .footer-row .column ul li{
	margin:0;
	padding:0;
	list-style:none;
}
.footer-row .column ul li{
	padding:8px 0;
	line-height:normal;
}
.footer-row .column ul li a{
	font-size:16px;
	line-height:16px;
	
} 
.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
}  
 
.social {
	display:flex;
	vertical-align:middle;
	gap:10px;
 
}
.social a  {
	width:40px;
	height:40px;
	display:flex;
	justify-content: center;
	align-items: center;	 
	border-radius: 50%;
	text-align:center;
	color:var(--secondary-color);
	font-size:18px; 
	text-align:center;
	background-color:var(--white);
}
.social a:hover  {
	background-color:var(--black);
}
.lower-footer{
	border-top:1px solid rgba(255, 255, 255, 0.3);
	padding:20px 0;
	margin-top:50px;
	 
}
 /**********************/
 .address-box{
	padding:30px;
	border-radius:20px;
	border-bottom:4px solid var(--secondary-color);
	/*background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));*/
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	font-size:20px; 
	vertical-align:top;
	line-height:24px;
	 
}
 .add h2{
 	font-size:20px;
	line-height:24px;
	font-weight:var(--font-bold);
	color:var(--primary-color);
	margin:0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--tertiary-color);
	border-radius: 5px;
	color:var(--primary-color);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--white);
	}
.add a:hover{
	color:var(--tertiary-color);
	}
/******************************/

ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 16px;
}

/*****************************/
 
 
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background:var(--secondary-color);
	color: var(--white);
	
	}

td, th { 
	padding: 8px 15px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 14px;
	} 

/******************************team-style*****************/
 
 .web-theme-banner{
 	margin:40px 0;
	/*background-color:var(--secondary-color);*/
	color:var(--white);
    border-radius: 12px;
	padding:80px 50px;
 	display: flex;
    flex-wrap: wrap;
	gap:20px; 
	justify-content: space-between;
	align-items: center;
 
 }
.theme-banner-left{
	width:65%;
}
.theme-banner-right{
	 width:15%;
}
.theme-banner-right img{
	width:100%;
	display:block;
}
/*************** INNER BANNER ***************/
.fitme-banner { 
	width: 100%;
	height:40vh;	 
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/fitme-theme-banner.webp);
}
 
.fitme-banner h2 {
	color:var(--white);	
	font-weight:var(--font-bold);
	font-family:var(--heading-font); 
	font-size:60px;
	line-height:60px;
	margin:0 0 30px 0;
	padding:0;
	position:relative;
	z-index:2;
}
 
.fitme-banner .container{
	 display: flex;
	 justify-content: center;
	 flex-direction:column;
	 text-align:center;
	 }
 /*****************************/

.page-title { 
	 
    
}
 .page-title span { 
	marging:0;
	padding:8px 15px;
	display:inline-block;
	 border-radius: 4px;
	font-size:14px;
	text-transform:uppercase;
	line-height:normal;
	background-color:var(--primary-color);
	color:var(--white);
	font-weight:var(--font-bold);	  
    
}
 
 
 
/*************** JARALLAX ***************/
.cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
 
/**************************/
 
 .bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);
	background-attachment:fixed;
	}
 
 
 /***********custom check******************/
 
 .info-heading label{
	height: 30px;
    width: 30px;
	margin:0;
	padding-left: 30px;
	position:relative;
}

 /* Hide default input */
.custom-check input,
.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Base label style */
.custom-check,
.custom-radio {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
	
}

/* Checkbox box */
.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 30px;
    width: 30px;
    border: 2px solid var(--secondary-color);
    /*border-radius: 4px;*/
}

/* Checkbox checked */
.custom-check input:checked ~ .checkmark {
    background-color: var(--secondary-color);
}

/* Checkbox tick */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-check input:checked ~ .checkmark:after {
    display: block;
}

.custom-check .checkmark:after {
    left: 9px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
}

/* Radio circle */

.radio-row{
    display: flex;
    flex-wrap: wrap;
	padding:0;
	position:relative;
	gap:0 20px;
	align-items: center;
	}
	
.radio-row label{
	height: 30px;
    width: 30px;
	margin:0;
	padding-left: 30px;
	position:relative;
}
.radiomark {
    position: absolute;
    left: 0;
    top: -2px;
    height: 30px;
    width: 30px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
}

/* Radio checked */
.custom-radio input:checked ~ .radiomark {
    background-color:  var(--white);
}

/* Radio inner dot */
.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-radio input:checked ~ .radiomark:after {
    display: block;
}

.custom-radio .radiomark:after {
    top: 8px;
    left: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background:var(--secondary-color);
}


/**********************************/

.step-2{
    display:none;
}


 
/**********forms**************/

 .form-group{
    /*display: flex;
    flex-wrap: wrap;
	gap:15px 3.5%;*/
	}
	
.step-1{
	display: flex;
    flex-wrap: wrap;
	gap:15px 3.5%;
	}
	
.my-label{
  font-size:16px;
  line-height:normal;
  color:var(--secondary-color);
  font-weight:var(--font-medium);
  margin-bottom:10px;
  display:block;
 
  }
.select-wrap {
  position: relative;
  width: 100%;
}

.select-wrap select {
  width: 100%;
  padding: 10px 44px 10px 18px;
  font-size: 14px;
  border: 1px solid var(--grey);
  border-radius: 7px;
  background:var(--white);
  color:var(--body-color);
  outline: none;
  appearance: none;      /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

 

/* Custom arrow */
.select-wrap::after {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900); 
  content: "\f063";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color:var(--primary-color);
  font-size: 14px;
}



 input.file{
    display: none;
}

.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
    border: 0;
    display: block;
    padding: 16px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 1px solid var(--primary-color);
}
.star{
	font-size:16px;
	color: var(--secondary-color);
}
.note{
	font-size:12px;
	color:#A4A4A4;
	line-height:12px;
	margin:10px 0;
}
.formstyle{}
 
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:10px 20px;
	border:1px solid var(--grey);
	background-color:var(--white);
	color:var(--black);
	display: block;
	border-radius: 7px;
	margin: 0;
	font-size: 16px;
 
}
.fieldset::placeholder {
	color: #999;
	opacity: 0.6;
}

.sendbutton {
	border-radius: 7px;
	color: var(--white);
	font-size: 20px;
	font-family:var(--font-bold);
	background-color:var(--secondary-color);
	border:0;
	padding: 10px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	 
}

.sendbutton:hover {	
	background-color:var(--primary-color);
 
}
 
::-webkit-input-placeholder {
	color:var(--body-color);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: var(--body-color);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

:-ms-input-placeholder {
	color: var(--body-color);
}
 

/************************************* 1400px *************************************/

@media only screen and (max-width: 1480px) {
.container {
	padding:0  20px;
	}
}

@media only screen and (max-width: 1280px) {
 .profile-listing{      
     grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    
}
.search-container {
     grid-template-columns: repeat(2, 1fr);
	 padding:10px;
 
}
}	
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

 .section-spacing{
	 padding:40px 0;
 }
.nav-group{ 
  flex-direction: row-reverse;
  gap:0 15px;
  } 
 .profile-listing{      
     grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    
}
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
 
 .support-grid{
    grid-gap:10px;
 
	}
.support-grid .item{
	padding:20px;
}
 
 .search-container {
     grid-template-columns: repeat(1, 1fr);
	 padding:10px;
 
}
 
 
.fitme-banner h2 {
	font-size:30px;
	line-height:40px;
}
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {

 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {

 
 

.theme-banner{
	padding:20px;
}
 .web-theme-banner{ 	 
	flex-direction:column;
	justify-content: center;
	text-align:center;
	padding:20px;
	 
 }
 .theme-banner-right, .theme-banner-right{ 	 
	justify-content: center;
	text-align:center;	 
	display:flex;
	flex-wrap: wrap;
	width:100%;
 
 }
.theme-banner-right img{
	width:150px;
	display:inline-block;
}
.support-grid {    
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}


.search-container {
	flex-direction:column;
}
.search-box {
   width:100%;
}
.dd-wrap-outer{
	width:100%;
	
}
.dd-wrap{
	 width:49%;
	 
}

}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
 
	}
  .header-offer{
	 padding:8px 10px;
	 
}


.header-offer h2 {
  font-size:14px;
 }
 
.RightToLeft {
  animation: RightToLeft 4s infinite linear;
}

	
 header,  header.smaller{
	 padding:10px 0;	 
	 box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}

 .logo, header.smaller .logo { 
	width:100px;
	 }
 
.booknow-bt a{
	padding:0 12px;
	height:35px;
	font-size:14px;
}
 
.support-grid{
    grid-gap:2px;
    grid-template-columns: repeat(4, 1fr);
	}
.support-grid .item{
	padding:10px;
}
 
.support-grid .item h2{
	font-size:12px;
	line-height:14px;
 }
.theme-icon{
	width:40px;
	height:40px;
	margin-bottom:15px;
}
.theme-icon i{
	font-size:16px;
	}
 .icon-large i{
	font-size:16px!important;
	}
 .fitme-banner h2 {
	 margin:0 0 15px 0;
	 font-size:28px;
}
.page-title span{
	padding:5px 10px;
	font-size:14px;
}
.card {
  padding:10px;
  border-radius: 12px;
}

.card-header {
	flex-direction:column;
	gap: 12px 0;
	background-color:var(--white);
	
}

.dr-info-group{
 	 width:100%;
     gap: 12px 0;
	 border-radius: 7px;
	 overflow:hidden;
	 background-color:var(--quaternary-color);
	 margin:0;
	 padding:0 15px;
}
.name h2 {
     font-size: 18px;
 
}

.role {
     font-size: 13px;
     line-height:13px;
 
}
 .lc {
     font-size: 15px;
     line-height:15px;
}
.profile-img{
	order:-1;
	width:110px;

}
 .dr-info{
 	 padding:15px;
	  
}
 .consultaitons-info {
     width:100%;
	 padding:0;
	 border-left:0;
}
 .card-footer {
    /* display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 8px;*/
	  margin-top:0;
}
.price-holder{
	width:55%;
}

.price {
     font-weight: 600;
     font-size: 15px;
	 line-height:normal;
}
 
.languae, .languae span{
	margin-left:0;
	line-height:normal; 
}
.button-holder{
	width:45%;
	gap:5px 0;	 
	flex-direction:column;
	justify-content: start;	
	align-items: start;
 
 }

.vertical-marquee{
    height:auto;
    width:100%;
}

.marquee-list{
    display:flex;
    width:max-content;
}

.marquee-list li{
    padding:0 20px 0 30px;
	background-color:var(--white);
	border:1px solid var(--grey);
	margin:0 5px;
	height:30px;
	display: flex;
	align-items: center;
	border-radius: 4px;
}

.marquee-list li:before{
    left:14px;
	top:2px;
   
}
.iconic{
	padding:0 0 0 70px;	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 20px;
	line-height:28px;
}
.webicon{		 
	width:50px;
	height:50px;
	padding:10px;
	 
} 
 .search-container {
     grid-template-columns: repeat(1, 1fr);
	 padding:10px;
 
}
 .search-container .item:nth-child(2) {
 	gap:10px 0;
	 
 }
 .dd-wrap{
	width:100%;
 	 
}

.quickview-head{
	gap: 0 15px;
}
	
.quickview-middle{
 
}
 .info-heading h2{
	font-size:18px;
 
}

.dr-foto{
	width:60px;
	height:60px; 
}
 .info-dr h2{
  margin:0 0 5px 0;
 }
 .info-dr h3{
   margin:0 0 5px 0;
}
 .concern ul{
	gap:8px 0;
	flex-direction:column;
}
.concern ul li{
	flex:0 0 100%;	
}
.profile-visual{
	display: flex;
    flex-wrap: wrap; 
	justify-content: space-between;
}

.pv-left, .pv-right{
	flex: 0 0 100%;
	margin:0 0 15px 0;
}
.pv-left img{
	width:150px;
 
}
 
/***************headings********/

.heading{
	font-size:24px;
}
.support-grid {
  /*display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 10px;*/
}

/* Mobile: horizontal scroll */
 
.support-grid {    
	grid-template-columns: repeat(2, 1fr);
   gap: 10px;
    
  }

   
 
.footer{
	padding:50px 0 0 0;
}
 .footer-row .column ul li{
	padding:0;
	line-height:normal;
	 
}
.footer-row .column{
	width:100%;
	padding:15px 0;
}
.footer-row .column ul li a{
	font-size:14px;
	line-height:14px;
	 
}
.footer-row {
	gap: 10px 0;
}
.footer-row .column h2{
	margin:0 0 10px 0;
}
.lower-footer{
	 
	padding:15px 0;
	margin-top:20px;
	font-size:13px;
}
   .features {
      grid-template-columns: 1fr;
    }
	
.highlight{
	margin:15px 0;
	width:100%;
}

.whatsapp-bt a { 
	font-size:12px;
	padding: 0  10px 0 40px;
	min-height:30px;
}
.whatsapp-bt a:after{
	width:30px;
	height:30px;	 
	background-size:20px; 
 
	 	
}
.theme-bt a { 
	font-size:12px;
	padding: 0  10px;
	min-height:30px;
	 
}

 .boxy{
 	padding:20px;
 
 }
 
.login-box{
	padding:20px;
}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
 .profile-listing{      
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    
}	 
  
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}