.team-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    .doctor-card {
        width: 100%;
        max-width: 220px;
    }
}

.site-header:not(.is-scrolled) .navbar-brand img {
    filter: brightness(10);
}

.navbar-brand img {
    transition: .25s;
}

.site-header.is-scrolled .navbar-nav .nav-link {
    color: var(--text);
}

.navbar-nav .btn-theme {
    font-size: 12px;
    padding-inline: 20px;
}

.service-block img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}


.symptom-tabs{
    padding:80px 0;
    }
    
    
    /* COLLAGE */
    
    .image-collage{
    display:flex;
    gap:15px;
    flex-wrap: wrap;
    }
    
    .image-collage img{
    width:100%;
    height:100%;
    object-fit:cover;
    }

    
    .image-collage .img1,
    .image-collage .img2 {
        height:475px;
        max-width: 60%;
    }

    .image-collage  .img2 {
        margin-left: auto;
        margin-top: -300px;
        border: solid 15px #fff;
    }
    
    
    /* TABS */
    
    .symptom-nav .nav-link{
		border:none;
		color:#777;
		font-weight:500;
		border-radius: 0;
		line-height:1.2;
		display: grid !important;
		grid-template-columns: auto 40px;
		
    }

    .symptom-nav .nav-link:hover svg {
      transform: rotate(405deg) !important;
    }

    .symptom-nav .nav-link svg {
      margin-left: auto;
      transition: .5s;
    }

    .symptom-nav .nav-link.active svg {
      transform: rotate(405deg) !important;
    }

    .symptom-nav .nav-link:not(.active) {
      opacity: .5;
    }
    
    .symptom-nav .nav-link.active{
    color:var(--accent);
    border-bottom:3px solid var(--accent);
    background:none;
    }
    
    
    /* LIST */
    
    .symptom-list{
    columns:2;
    list-style:none;
    padding:0;
    }
    
    .symptom-list li{
    margin-bottom:8px;
    padding-left:16px;
    position:relative;
    }

    .symptom-nav .nav-link {
        font-size: 18px;
    }

/* --- Timeline Section & Track --- */
.menopause-timeline {
    overflow: visible;
  }
  
  .timeline-container {
    padding-left: 80px; /* Space for the vertical line */
  }
  
  .step-progress-track {
    position: absolute;
    left: inherit;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #fff;
    z-index: 1;
  }
  
  .step-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--accent);
    transition: height 0.1s linear;
  }
  
  /* --- Step Cards (Left Side) --- */
  .step-card-scroll {
    padding: 20px 0; /* Vertical spacing between steps */
    margin-bottom: 40px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0.25; /* Dimmed when inactive */
    position: relative;
    z-index: 2;
    border-bottom: solid 1px;
  }

  .step-card-scroll:last-child {
    border-bottom: none;
  }
  
  .step-card-scroll.is-active {
    opacity: 1;
    transform: translateX(10px); /* Subtle nudge to show focus */
  }
  
  .step-card-scroll .step-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--text); /* Light grey when inactive */
    transition: color 0.4s ease;
  }
  
  .step-card-scroll h3 {
    font-weight: 700;
    color: var(--text);
    transition: color 0.4s ease;
  }
  
  /* Active Text Colors */
  .step-card-scroll.is-active .step-number,
  .step-card-scroll.is-active h3 {
    color: var(--accent);
  }
  
  /* --- Sticky Collage (Right Side) --- */
  .sticky-collage-container {
    position: sticky;
    top: 100px; /* Adjusts vertical centering while scrolling */
    height: 500px;
    width: 100%;
  }
  
  .collage-stack {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .collage-group {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.6s, 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.9) translateY(20px); /* Entrance "slide up" effect */
  }
  
  .collage-group.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    z-index: 10;
  }
  
  /* --- Image Layout Logic --- */
  .collage-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }
  
  .img-main {
    position: absolute;
    width: 65%;
    height: 600px;
    top: 10%;
    left: 0;
    z-index: 4;
  }
  
  .img-sub-top {
    position: absolute;
    width: 45%;
    height: 45%;
    top: 0;
    right: 0;
    z-index: 6;
  }
  
  .img-sub-bottom {
    position: absolute;
    width: 45%;
    height: 45%;
    bottom: 0;
    right: 5%;
    z-index: 5;
    opacity: 0.5; /* Keeps the "collage" depth */
  }

  .img-sub-bottom::before {
    content: '';
    position: absolute;
    left: -20px;
    top: -20px;
    width: calc(100% + 20px);
    height: calc(100% + 40px);
    background: #fcf1ee;
    border-radius: 22.5px;
    z-index: -1;
  }

  .process-section.section-padding {
    padding-bottom: 200px;
  }

  .social-icons { 
    font-size: 36px;

    & svg:hover {
      scale: 1.1;
      color: var(--accent);
    }
  }

  @media only screen and (min-width:1200px) {
    .site-header .nav-link {
      border-bottom: solid 1px transparent;

      &:hover {
        border-bottom: solid 1px #fff;
      }
    }

    .site-header.is-scrolled .nav-link {
      border-bottom: solid 1px transparent;

      &:hover {
        border-bottom: solid 1px var(--primary);
      }
    }
	  
	  .location-slider .slick-list.draggable {
 		 overflow: visible;
	}
  }
  
  /* Responsive: Reset for Mobile */
  @media (max-width: 991px) {
    .timeline-container { padding-left: 15px; }
    .step-card-scroll { opacity: 1; transform: none; padding: 30px 0; }
    .step-progress-track { display: none; }
	  
	.locations-section .custom-arrow.slick-arrow.slick-prev {
			right: calc(45% + 50px);
		}
	  
	 .locations-section .custom-arrow.slick-arrow {
			right: calc(45% - 50px);
		}

  }

  @media only screen and (max-width:767px) {
    main {
        overflow: hidden;
    }

    .process-section::before {
        display: none;
    }

    .process-section.section-padding {
        padding-bottom: 30px;
    }

    .step-card-scroll.is-active {
        opacity: 1;
        transform: translateX(0px);
    }

    .step-card-scroll {
        opacity: .3;
    }

    .step-card-scroll:last-child {
        margin-bottom: 0;
    }

    .team-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-inline: 15px;
    }

    .team-wrap .doctor-card {
            width: 100%;
            max-width: 100%;
    }

    .footer-text {
        max-width: 100%;
    }

    .navbar-toggler {
        color: var(--accent);
    }

    .site-header.is-scrolled .navbar-toggler-icon {
        filter: invert(1);
    }

    .image-collage .img2 {
        margin-top: -150px;
    }

    .image-collage .img1, .image-collage .img2 {
        height: 250px;
    }

    .why-image-collage .tall {
        display: none;
    }

    .why-image-collage {
        margin-bottom: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .why-image-collage .square {
        max-width: 60%;
    }
    .why-image-collage .square:last-child {
        margin-left: auto;
        margin-top: -200px;
        border: solid 15px #fff;
    }

    .symptom-nav .nav-link {
        width: max-content;
    }

    .nav.symptom-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .site-header .navbar-collapse {
        border-radius: 0;
        margin-inline: -15px;
        background: #ffffffcf;
        backdrop-filter: blur(12px);
        box-shadow: none;
    }

    .site-header.is-scrolled .navbar-collapse {
        background:transparent;
        backdrop-filter: none;

       
    }

    .site-header .navbar-collapse .navbar-nav .nav-link {
        color: var(--text);
    }

    .site-header .nav-link {
        border-bottom: solid 1px #1c562a52;
    }

    .site-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }

  }


  /* Added CSS */

  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    border-bottom: none;
  }
  
  #header.sticky-header {
    position: fixed !important;
    background-color: #fff !important;
    border-bottom: solid 1px #ddd !important;
  }

	#header.sticky-header .nav-menu  a {
		color:var(--primary)
	}

  #header:not(.sticky-header) #menu-main-menu > li > a,
  #header:not(.sticky-header) .header-btn > a {
    color: #fff;
  }

	#header .menu-item a:hover {
		text-decoration:underline;
		color:var(--accent);
		    text-underline-offset: 10px;
    	text-decoration-thickness: 1px;
	}

#header .menu-item a {
	font-weight:400;
}

#mobmenu {
	background-color:var(--primary);
}

  html body.down {
    padding-top: 0;
  }


  .banner-location-form .form-group {
    align-content: center;
    margin-right: 3px;
  }

  .banner-location-form {
    max-width: 650px
  }

  .banner-location-form .form-control::placeholder {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    opacity: .7;
  }

  .banner-quick-locate {
    display: inline-flex;
    column-gap: 15px;
    margin-bottom: 20px;
    align-items: center;

    > a {
      background-color: var(--primary);
      padding: 5px 20px;
      border-radius: 100px;
      cursor: pointer;
    }

    > a:hover {
      background-color: var(--accent);
		color:#fff;
    }
  }

#find-practitioner {
      padding: 5px;
    font-size: 42px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: .25s;
    cursor: pointer;
}

#find-practitioner:hover {
  padding: 10px;
}

.font-big {
  font-size: 24px;
  line-height: 1.4;
}

.floating-search.active {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
    width: 100%;
    max-width: 600px;
    left: calc(50% - 300px);
    box-shadow: 0 0 8px -4px #000;
    border-radius: 100px;
    transform: translate(0px, 100px);
    opacity: 0;
    visibility: hidden;
  }

  .floating-search.active.mp-float {
    transform: translate(0px, 0px);
    opacity: 1;
    visibility: visible;
    transition: .5s;
  }

.collage-wrap {

  display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 20px;
    max-height: 700px;

  .image-block {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
  }
	
	.image-block a svg {	
		vertical-align: -0.125em;
		transform: rotate(360deg);
		background-color: #e07a5f;
		width: 34px;
		height: 35px;
		border-radius: 50%;
		padding: 4px;
		position: relative;
		top: 5px;
		margin-inline: 2px 10px;
	}
	

  .image-block  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }  
  
  .portrait {
    grid-column: span 2;
    grid-row: span 5;
  }

  .horizontal {
    grid-column: span 4;
    grid-row: span 3;
  }

  .market-cta-block {
    grid-column: span 4;
    grid-row: span 1;
    background-color: var(--bg);
  }

  .marketplace-block {
      display: grid;
    grid-template-columns: 1fr auto;
    padding: 20px;
    align-items: center;
    height: 100%;
  }


  .cta-collage {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      column-gap: 15px;
      line-height: 1;
  }

  .count {
    font-size: 32px;
    font-weight: 800;
  }

  .image-block:not(.market-cta-block) a {
        position: absolute;
        bottom: 0;
        width: 100%;
        min-height: 100%;
        font-size: 24px;
        display: block;
        padding: 10px;
        color: #fff;
        text-align: right;
        align-content: end;
        padding-bottom: 30px;
	  z-index:2;
  }

   .image-block svg,  .image-block img {
    transition: .5s;
   }


  .image-block:not(.market-cta-block):hover a svg {
    transform: rotate(405deg) !important;
  }

  .image-block:not(.market-cta-block):hover img {
    scale: 1.1;
  }

}

.hero-subtext {
  max-width: 700px;
}


.symptom-nav .nav-link {
    width: 100%;
    text-align: left;
    font-size: 32px;
    font-family: var(--primary-font);
    font-weight: 600;
    border-bottom: solid 3px #ddd;
    min-height: 100px;
  }

  body .big-title {
    font-size: 62px;
    line-height: 1.2;
  }

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

  .description-sym {
    max-width: 700px;
  }

  .tab-pane .h4 {
    font-size: 32px;
    color: var(--primary);
    font-weight: 600;
  }

  .section-struggle .list-unstyled > li {
    font-size: 20px;
  }

  .tab-pane .position-relative p {
    font-size: 20px;
    line-height: 1.4;
  }

  .section-struggle  .image-block-inner {
      margin-top: -200px;
      border-radius: 15px;
      overflow: hidden;
  }

 .section-struggle .tab-content {
    border-left: solid 1px #677561;
    padding-left: 30px;
    height: calc(100%);
  }

 .section-struggle .list-unstyled li {
    position: relative;
    padding-left: 40px;
  }

 .section-struggle .list-unstyled li::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url(../../marketplace/images/hb.png);
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 2px;
  }

 body .section {
    padding-block: 100px;
  }

.section-struggle .image-block-inner .btn-theme {
  width: 100%;
}

.section-struggle .image-block-inner {
	height:calc(100% + 200px);
	
	& img {
		height:100%;
		object-fit:cover;
	}
	
	& h3 {
		 position: absolute;
		width: 100%;
		bottom: 100px;
		font-size: 48px;
		color: #fff;
		text-align: center;
		left: 0;
        padding-inline: 20px;
	}
}

.section-struggle .image-block-inner::before {
	position:absolute;
	content:"";
	width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to top, #0000005e, transparent);
}

.location-card  a svg  {
  transition: .25s;
}

.location-card  a:hover svg {
  transform: rotate(405deg) !important;
}

.location-card a:hover {
  opacity: .7;
  color: var(--accent);
}

.rounded {
  border-radius: 15px !important;
}

.location-block {
  border:1px solid rgba(159,122,67,.14);
  border-radius: 15px;
  overflow: hidden;
}

.btn-cta-2 {
    display: inline-flex;
    width: 100%;
    align-items: center;
    column-gap: 10px;
    margin-top: 15px;
  }

.btn-cta-2 a svg {
	transition:.25s;
	font-size: 24px;
	margin-bottom: -3px;
}

.btn-cta-2 a:hover {
	color: var(--accent);
	
	& svg {
		transform:rotate(405deg) !important;
	}
}




  .team-card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}


.team-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* DEFAULT OVERLAY */
.team-overlay-default {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    background: linear-gradient(to top, #000000b0 10%, transparent 90%);
    transition: all 0.4s ease;
    height: 100%;
    align-content: end;
}

.team-overlay-default .name {
  font-size: 24px;
  font-weight: 600;
}

.team-overlay-default .meta {
  font-size: 16px;
  opacity: 1;
  font-weight: 500;
}

/* HOVER OVERLAY */
.team-overlay-hover {
  position: absolute;
  inset: 0;
  background: #677561e8;
  color: #fff;
  padding: 20px;
  transform: translateY(100%);
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
}

.team-card:hover .team-overlay-hover {
  transform: translateY(0);
}

.team-card:hover .team-overlay-default {
  transform: translateY(100%);
}

/* INNER CONTENT */
.hover-inner {
  width: 100%;
}

/* MINI IMAGE */
.mini-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

/* SERVICES */
.services span {
  display: inline-block;
  background: var(--accent);
  padding: 4px 10px;
  margin: 3px;
  border-radius: 20px;
  font-size: 12px;
}

/* DESCRIPTION */
.team-card .desc {
  font-size: 14px;
  opacity: 0.85;
  line-height:1.4;
}

/* SIDE BUTTON */
.expand-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 35px;
  height: 35px;
  background: var(--accent);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.team-card:hover .expand-btn {
  background: #fff;
  color: #000;
  transform: rotate(180deg);
}

#marquee-track .marquee-item span {
  font-size: 42px;
  font-weight: 700;
  opacity: .5;
  color: var(--primary);
}

.marquee-section {
    width: 100%;
    overflow: hidden;
    padding-block: 10px;
    border-top: 0.5px solid rgba(0,0,0,0.12);
    border-bottom: 0.5px solid rgba(0,0,0,0.12);
    position: relative;
  }

  .marquee-section::before,
  .marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  .marquee-section::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
  }
  .marquee-section::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
  }

  .marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
  }

  .marquee-items {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .marquee-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 2rem;
    gap: 2rem;
    font-size: 1.5rem;
    padding-left: 0;
  }

  .marquee-dot {
    background-image: url(../../marketplace/images/hb.png);
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .team-overlay-hover .service-btn {
    background-color: var(--accent);
    font-size: 14px;
    display: block;
    line-height: 1;
    align-content: center;
    padding: 10px 15px;
    border-radius: 100px;
    transition: .25s;
    border: solid 1px var(--accent);
    font-weight: 500;
    letter-spacing: .2px;


    &:hover {
       background-color: transparent;
       color: #fff;
       border: solid 1px #fff;
    }
  }


  .team-overlay-hover .service-btn.service-btn-outline {
    background-color: #fff;
    color: var(--primary);
    border: solid 1px #fff;
    transition: .25s;

    &:hover {
      background-color: transparent;
      color: #fff;
    }
  }

  .apnt-wrap {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
  }

/* MOBILE OVERRIDE */
@media (max-width: 768px) {

  .team-card {
    height: 280px;
  }

  /* Disable hover behavior */
  .team-overlay-hover {
    transform: translateY(100%);
  }

  .team-card.active .team-overlay-hover {
    transform: translateY(0);
  }

  .team-card.active .team-overlay-default {
    transform: translateY(100%);
  }

  /* Expand button more visible */
  .expand-btn {
    background: rgba(255,255,255,0.4);
  }

  .expand-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
    }

    .team-overlay-hover {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    }

    .hover-inner {
    max-height: 100%;
    overflow-y: auto;
    }

}

.location-slide {
  padding: 0 12px;
}

.location-block {
  border-radius: 16px;
  overflow: hidden;
}

.team-card .team-image {
  height: 100%;
}

.team-overlay-hover small {
      font-size: 13px;
      line-height: 1.4;
      display: block;
}

.inside-location {
    color: var(--accent);
    background-color: #fff;
    border-radius: 100px;
    font-weight: 500;
    padding-inline: 10px;
    /* position: absolute; */
    top: 20px;
    font-size: 14px;
    width: fit-content;
    align-content: center;
}

.team-overlay-hover .exp {
  font-size: 13px;

  & span {
    font-size: 18px;
    font-weight: 700;
  }
}

.team-overlay-hover {
  display: grid;
  align-content: space-between;
}

.team-top-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.team-card .location {
  color: var(--accent);
  background-color: #fff;
  border-radius: 100px;
  font-weight: 500;
  padding-inline: 10px;
}

.custom-arrow.slick-arrow {
      position: absolute;
      right: calc(100% - 740px);
      bottom: -75px;
      width: 50px;
      height: 50px;
      border: solid 1px #ddd;
      border-radius: 50%;
      background-color: transparent;
      color: #e07a5f;
      font-size: 32px;

    &.slick-prev {
      right: calc(100% - 635px);
    }
}



#locations {
  padding-bottom: 150px;
}


#practitioners-wrapper .front-meta {
	position: absolute;
    top: 15px;
    left: 0;
    font-size: 13px;
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    padding-left: 15px;
}

#practitioners-wrapper .verified {
	  background-color: #e07a5f;
    padding: 2px 10px;
    border-radius: 100px;
    color: #fff;
    font-weight: 500;
    margin-right: 10px;
    letter-spacing: .1px;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 1;
    padding-inline: 8px;
    display: inline-flex;
    align-items: center;
    column-gap: 3px;
	
	& svg {
		font-size:16px;
	}
}

.team-section {
	.form-select  {
		background-color: #fff;
		border: solid 1px #ddd;
		font-size: 16px;
		border-radius: 7.5px;
	}
	
	.select2 {
		font-size: 16px;
	}
	
	& span.dropdown-wrapper {
		font-size: 16px;
	}
	
	.form-select:focus {
		box-shadow:none;	
	}
	
	
}

.collage-title {
	position: absolute;
    top: 0;
    font-size: 36px;
    line-height: 1.2;
    padding: 20px;
    height: 100%;
    align-content: end;
    color: #fff;
    z-index: 1;
    padding-bottom: 100px;
	width:100%;
    background: linear-gradient(to top, #0000009e, transparent);
}

.horizontal .collage-title  {
	max-width:100%;
	padding-bottom:25px;
	padding-right:45%;
}

.select2-container {
	.select2-results__option {
		font-size: 16px;
		padding-block: 5px;
   		padding-inline: 10px;
	}
	
	.select2-results {
		font-size: 16px;
	}
}

#blogs .service-card p {
	font-size:18px;
}

.cta-banner-content {
	position: absolute;
    top: 0;
    height: 100%;
    align-content: center;
	width:100%;
	z-index:1;
	
	> div {
		max-width:1000px;
		margin-inline:auto;
	}
}

.cta-banner-content::before {
	content:"";
	position:absolute;
	width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00000080;
    z-index: -1;
}

.header-btn .btn {
	font-size: 14px !important;
	border-radius: 1.5rem;
	font-weight: 300;
	position: relative;
	color: var(--white);
	background-color: var(--salmon-color);
	border: 1px solid var(--salmon-color);
}
	
.section-title.sentence-case {
	text-transform:initial;
}

.team-overlay-default .meta .mob-icon {
	display:none;
}

@media only screen and (max-width:767px) {
	.collage-wrap {
		grid-template-rows: repeat(15, 1fr);
		max-height:100%;

		.portrait {
			grid-column: span 4;
			grid-row: span 15;
		} 

		.horizontal {
			grid-column: span 8;
			grid-row: span 10;
		}
		
		.market-cta-block {
			grid-column: span 8;
		}
		
		.image-block a svg {
        	width: 25px;
			height: 25px;
		}
		
		.image-block:not(.market-cta-block) a {
			font-size: 16px;
		}
		
	}
	
	body .section {
		padding-block: 60px;
	}
	
	.collage-title {
		font-size:22px;
		padding-inline:10px;
		padding-bottom: 75px;
	}
	
	.cta-banner-content {
		padding-inline:20px;
	}
	
	#reset-filters {
		display:none;
	}
	
	.pract-filter {
		display: grid !important;
		grid-template-columns: 50% 50%;
		padding-inline: 10px;
		
		.select2-container {
			width:100% !important;
			min-width:100% !important; 
		}
	}
	
	.team-overlay-default {
		padding:10px;
	}
	
	.team-overlay-hover {
		padding:10px;
	}
	
	.team-overlay-default .name {
		font-size: 18px; 
		margin-bottom:3px;
	}
	
	.team-overlay-default .meta {
		font-size:14px;	
	}
	
	#practitioners-wrapper .front-meta {
		font-size:11px;
	}
	
	.team-card .location {
		align-content:center;
	}
	
	#practitioners-wrapper .verified svg {
        font-size: 14px;
	}

	#practitioners-wrapper .verified {
		font-size:9px;
	}

	#practitioners-wrapper  {
		
		.team-card .services {
			display:none;
		}
		
		.hover-inner .mini-img {
			width: 45px;
			height: 45px;
			position: absolute;
			top: 10px;
			right: 0px;
		}
		
		.team-overlay-hover small {
			font-size:12px;
		}
		
		.team-overlay-hover .doc-title {
			font-size:18px;
		}
		
		.team-card .desc {
			display: -webkit-box;
			-webkit-box-orient: vertical;
			-webkit-line-clamp: 5;
			overflow: hidden;
		}
		
		.hover-inner .top-row {
			display:none !important;
		}
		
		 .team-overlay-default .meta .mob-icon {
            display: block;
            position: absolute;
            right: 6px;
            bottom: 8px;
            background-color: var(--accent);
            width: 25px;
            height: 25px;
            text-align: center;
            align-content: center;
            border-radius: 50%;
            font-size: 16px;
            line-height: 1;
            animation: float 3s linear infinite;
            transform: rotate(-45deg);
        }
		
	}
	
	#marquee-track .marquee-item span { 
		font-size:32px;
	}
	
	#locations .location-card {
		padding: 15px 10px;
	}
	
	.location-badge {
		 padding: 5px 10px;
		font-size: 8px;
	}
	
	.location-block {
		border-radius:10px;	
	}
	
	.location-card a {
		font-size:16px;
	}
	
	#location > .container > .text-center  {
		padding-inline:10px;
	}
	
	#blogs .service-card {
		padding:0;
	}
	
	body .select2-container {
    	min-width: 180px !important;
    	max-width: 180px;
	}
	
	.section-struggle .image-block-inner {
		height: auto; 
	}
	
	.collage-wrap .marketplace-block {
		grid-template-columns: 100%;
        row-gap: 20px;
        text-align: center;
	}
	
	.font-big {
		font-size: 20px;
	}
	
	.banner-quick-locate {
		display:none;	
	}
	
	.banner-location-box {
		padding-top:15px;
	}
	
	body .banner-location-form .form-control {
		border-radius:100px;
	}
	
	.banner-location-form {
		position:relative;
		
		.col-auto {
			    position: absolute;
				right: -1px;
				top: 1px;
				scale: .8;
		}
		
	}
	
	.hero-content .hero-card small {
		font-size:14px;
	}
	
	#hero {
        min-height: initial;
        height: calc(100vh + 200px);
        max-height: 700px;
		
		    .hero-content {
				padding-top: 60px;
		}
		
		    .hero-title {
        		font-size: 36px;
    	}
    }
	
	
	#symptomsAccordion	 {
		padding-block:25px;
		
		.accordion-item, .accordion-button	 {
			background-color:transparent;
			}
		
		.accordion-item {
			border:none;
			margin-bottom: 20px;
		}

		.accordion-button {
			font-size: 26px;
			padding: 0;
			border: none;
			border-radius: 0;
			padding-bottom: 15px;
			color: var(--accent);
			border-bottom: solid 1px;
			padding-inline: 0px;
		}
		
		.accordion-button.collapsed {
			color:#777;
			opacity:.5;
		}
		
		.accordion-body {
			padding-inline:0;
		}
		
		.accordion-button:focus {
			box-shadow:none;
		}
			
	}
	
	.section-struggle .list-unstyled > li {
		font-size: 18px;
	}
	
	.section-title br {
		display:none;
	}
	

	.hero-card {
		text-align:center;
	}
	
	.section-struggle .list-unstyled li::before {
		top:0;
	}

	
	.team-card:hover .team-overlay-default {
		transform: translateY(0%);
	}

	.team-card:hover .team-overlay-hover {
		transform: translateY(100%);
	}
	
	.team-card:hover {
		transform: translateY(0px);
	}
	
	.team-card.active .team-overlay-default {
		transform: translateY(100%);
	}

	.team-card.active .team-overlay-hover {
		transform: translateY(0%);
	}
	
	
	

}
/* 
@keyframes float {
	0% {
		transform:translate(0px, -10px);
	}

	50% {
		transform:translate(0px, 0px);
	}

	100% {
		transform:translate(0px, -10px);
	}
} */
	
	

