

.topbar-texts,
.footer-description {
  font-family: "Roboto", sans-serif !important;
  font-size: 15px !important;
}

.headerSlider .owl-nav .owl-prev {
  position: absolute;
  left: 0;
  top: 250px;
}

.headerSlider .owl-nav .owl-next {
  position: absolute;
  right: 0;
  top: 250px;
}

@media only screen and (max-width: 500px) {
  .headerSlider .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    top: 180px;
  }
  .headerSlider .owl-nav .owl-next {
    position: absolute;
    right: 0;
    top: 180px;
  }

}

.hd-nav-btn {
  padding: 0 5px;
}

.feedback_class {
  text-align: center !important;
  color: green !important;
  font-size: 23px !important;
  font-weight: 500 !important;
}
.appointment_modal_header {
  background: #152651 !important;
  border-radius: 19px 19px 0px 0px !important;
  color: white !important;
}
.appointment_modal_body {
  border: transparent !important;
}
.patient_add {
  color: #41cac0 !important;
}
.patient_add_new {
  color: #41cac0 !important;
}
.gridsection_img {
  padding: 0;
}
.featured_services {
  padding-top: 25px !important;
}
.text-custom {
  color: #212529 !important;
  border-radius: 20px 19px 0px 0px !important;
}
.bg-success {
  background-color: #f8f9fa !important;
}
#submit-btn {
  background-color: #152651;
  border-color: #152651;
}
/*vince*/
#submit-btn:hover {
	background-color: #00FFFF;
	border-color: #00FFFF;
    color: #000;
}
.modal_close {
  color: white !important;
}
.form-control {
  margin-bottom: 6px;
}
/*vince*/
.hamburger {
	position: relative;
	display: block;
	width:40px;
	height: 40px;
	
	border: none;
	background: none;
	outline: none;
	appearance: none;
	
}

.hamburger .bar, .hamburger:before, .hamburger:after {
	content: '';
	display: block;
	width: 90%;
	height: 3px;
	margin: 6px 2px;
	background-color: #000;/*does not work if background: #000*/
	transition: 0.4s;
}

.hamburger.is-active:before {
	transform: rotate(-45deg) translate(-6px, 6px);
}
.hamburger.is-active:after {
	transform: rotate(45deg) translate(-7px, -7px);
}
.hamburger.is-active .bar {
	opacity: 0;
}

.mobile-nav {
	position: absolute;
	top: 120;
	left: 100%;/*off screen*/
	width: 100%;
	/*height: 25vh; adding a height will not work in mobile landscape view*/
	display: block;
	opacity: 95%;
	z-index: 98;
	background-color: #00FFFF;
	transition: 0.4s;
}

.mobile-nav.is-active {
	left: 0;/*on screen*/
}

.mobile-nav a {
	text-align: center;
}

.nav-item {
	background: #FFF;
}

@media (min-width: 992px) {
	.mobile-nav {
		display: none;
	}
	.hamburger {
		display: none;
	}
}

/*vince testimonial carousel*/
/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.wrapper {
  /*max-width: 1100px;*/
  margin: auto; /*v*/
  margin-bottom: 25px;
  width: 95%; /*v*/
  border-radius: 25px; /*v*/
  
  position: relative;
  display: flex;
  padding: 35px 35px;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(to left top, #031A9A, #8B53FF);

}
.carousel-wrapper h2 { /*v*/
	position: relative;
    margin-top: 25px;
	text-align: center; 
	font-size: 1.75rem;
}
	
.wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active{
  transform: translateY(-50%) scale(0.85);
}
.wrapper i:first-child{
  left: -22px;
}
.wrapper i:last-child{
  right: -22px;
}
.wrapper .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .card {
  scroll-snap-align: start;
  height: auto; /*vince orig 342px;*/
  list-style: none;
  background: #fff;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
  justify-content: flex-start;/*v*/
}
.carousel .card .img {
  background: #8B53FF;
  height: 148px;
  width: 148px;
  border-radius: 50%;
  margin-top: 25px; /*v*/
}
.card .img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}
.carousel .card h2 {
  font-weight: 500;
  font-size: 1.4rem;
  margin: 30px 0 5px;
  color: #8B53FF;
}
.carousel .card span {
  color: #000;
  font-size: 1.1rem;
  margin: 20px;
}

.carousel .card h3 {/*v*/
  font-weight: 500;
  font-size: 1rem;
  color: #8B53FF;
}

@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}
@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}

/*vince*/