/**
* Template Name: vetQ
* Template URL: https://bootstrapmade.com/vetQ-free-bootstrap-landing-page-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Arial", sans-serif;
  color: #1f1e1e;
}

a {
  color: #3cc954;
  text-decoration: none;
}

a:hover {
  color: #23a4e0;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Arial", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #3cc954;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #3cc954;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2be4a2;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 1s;
  z-index: 999;
  transition: all 0.5s;
  width: 100%;
}

.scrollto {
  color: #000000;
}



#header.header-scrolled {
  background: rgba(255, 255, 255, 0.9);
  height: 85px;
}


.header-scrolled .navbar a {
  color: #302f2f;
}

.header-scrolled .navbar ul li {
  color: #4873b4;
}

.header-scrolled .navbar ul li a:hover {
  color: black;
}

.header-scrolled .navbar ul li a:hover,
.header-scrolled .navbar .active,
.header-scrolled .navbar .active:focus,
.header-scrolled .navbar li:hover>a {
  color: #000000;
}



#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 65px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.788);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #3cc954;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffffff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(13, 20, 36, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #4873b4;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #3cc954;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}



/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #8f8686;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(145, 145, 145, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;

}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li>a:before {
  left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0205a1;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3f43fd;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #3cc954;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 400px;
  margin-top: 30px;
  background: url("../img/carousal-1.jpg") center center/cover no-repeat;
  animation: hero-carousel 12s infinite;
}




#hero h1 {
  margin: 15px 0px 15px 0px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  align-content: center;
  color: rgba(255, 255, 255, 0.8);
}

#hero h1 span {
  color: #fff;
  border-bottom: 4px solid #3cc954;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 24px;
  margin: 5px 15px 5px 15px;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #3cc954;
}

#hero .btn-get-started:hover {
  background: #17b57d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    max-width: 50%;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;

  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}



@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 25px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #3cc954;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #3cc954;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #010483;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #7ceec6;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #3cc954;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #3cc954;
  border-color: #3cc954;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #3cc954;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}


.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(63, 67, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #3f43fd;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f5f5ff;
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #010483;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #01036f;
}

.features .icon-box:hover {
  background: #ebebff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f5f5ff;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 25px;
  background: #3cc954;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 65px;
  height: 65px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #010483;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content+.content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #010483;
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #3cc954;
}

.details .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 5px solid #fff;
  border-bottom: 5px solid #fff;
  padding: 20px;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.gallaryp {
  padding: 15px;
  text-align: center;
  font-size: small;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/cta-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(66, 156, 137, 0.705);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3cc954;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
}

.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  border-radius: 4px;
  overflow: hidden;
}

.team .member img {
  transition: all ease-in-out 0.4s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #01036f;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #0d12fc;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #01036f;
}

.team .member .social {
  margin-top: 10px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #01036f;
}

.team .member .social a:hover {
  color: #3cc954;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #3cc954;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #3cc954;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #3cc954;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #149f6e;
}

.pricing .featured h3 {
  color: #fff;
  background: #3cc954;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #3cc954;
  color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #23a4e0;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #3cc954;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #f0f0ff;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #3cc954;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color:#3cc954;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #0205a1;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #3cc954;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #3cc954;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #23a4e0;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #212125;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #5070b418;
  color: #fff;
  border-top: 4px solid #3cc954;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3cc954;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #61ebba;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #4be8b0;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px 6px 15px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3cc954;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #149f6e;
}

#footer .copyright {
  border-top: 1px solid #333338;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}


.image-containera {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.image-containera img {
  width: 100%;
   height: 400px; 
  display: block;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  color: white;

}

.text-overlayab {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;

}

.text-overlays {
  position: absolute;
  top: 75%;
  left: 35%;
  transform: translate(-50%, -50%);
  color: white;

}

.text-overlay b {
  font-size: 6vw;
  /* Responsive font size for 'Doctors' based on viewport width */
}

@media screen and (max-width: 980px) {

  .smhide {
    display: none;

  }
}

@media screen and (min-width: 980px) {

  .lghide {
    display: none;

  }
}

@media screen and (min-width: 980px) {

  .serv2 {
    margin-right: -40px;
  }
}


body {
  font-family: Arial;
}

* {
  box-sizing: border-box;
}

form.example input[type=text] {
  padding: 19px;
  font-size: 17px;
  border: 3px solid grey;
  float: left;
  width: 250px;
  background: #f1f1f1;
}

form.example button {
  float: left;
  width: 20%;
  padding: 15px;
  background: #2196F3;
  color: white;
  font-size: 17px;
  border: 3px solid grey;
  border-left: none;
  cursor: pointer;
}

form.example button:hover {
  background: #0b7dda;
}

form.example::after {
  content: "";
  clear: both;
  display: table;
}

.form-control-borderless {
  border: none;
}

.form-control-borderless:hover,
.form-control-borderless:active,
.form-control-borderless:focus {
  border: none;
  outline: none;
  box-shadow: none;
}






/* search bar code */





/* Pulling in reset css and fonts http://seodesigns.com/projects/TD/css/reset.css */
body {
  background: #f6f6f6;
}

p {
  font-family: "Webly Sleek SemiLight", Helvetica-, droid sans, sans-serif;
  font-weight: normal;
  margin: 0 0 1rem;
}

.centerbox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%);
  /* Chrome, Safari, Opera */
  width: 750px;
  min-height: 62px;
  z-index: 2
}

.centerbox h1 {
  margin-bottom: 25px;
  font-size: 36px;
  font-family: "Webly Sleek SemiLight";
  font-weight: normal;
  text-align: center;
}

.centerbox p.description {
  margin-bottom: 40px;
  text-align: center;
}

.description a {
  text-decoration: none;
}

.main-input {
  background: #fff;
  height: 50px;
  width: 327px;
  color: #a7b1ab;
  border: 1px solid #cccccc;
  margin-bottom: 0px;
  -webkit-appearance: none;
  border-radius: 4px 0px 0px 4px;
  -moz-border-radius: 4px 0px 0px 4px;
  -webkit-border-radius: 4px 0px 0px 4px;
  display: inline-block;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  padding: 0px 0px 0px 57px;
  font-size: 16px;
  border-right: 0px;
  background: #ffffff url("http://seodesigns.com/projects/TD/images/search.png") 18px 15px no-repeat;
  background-size: 18px 18px;
  float: left;
}

.main-location {
  display: none;
}

#main-submit {
  background: #3cb13c;
  color: #fff;
  display: inline-block;
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  margin-bottom: 0px;
  -webkit-appearance: none;
  border-radius: 0px 4px 4px 0px;
  -moz-border-radius: 0px 4px 4px 0px;
  -webkit-border-radius: 0px 4px 4px 0px;
  width: 141px;
  height: 50px;
  border: 0pxpadding-top:0px;
  float: left;
}

#main-submit:hover {
  background: #00a221;
  color: #fff !important;
  -webkit-appearance: none;
}

#main-submit-mobile {
  display: none;
}

footer {
  border-top: 0px;
}

.main-btn {
  display: inline-block;
  width: 150px;
  height: 50px;
  border: 1px solid #cccccc;
  padding: 0px;
  position: relative;
  float: left;
  border-right: 0px;
  background: #ffffff url("http://seodesigns.com/projects/TD/images/main-bullet.png") 122px 23px no-repeat;
  background-size: 6px 6px;
  cursor: pointer;
}

.search-small {
  font-size: 12px;
  margin: 0px;
  color: #9B9B9B;
  position: absolute;
  top: 6px;
  left: 16px;
  display: inline-block;
  width: 80px;
  height: 20px;
  text-align: left;
}

.search-large {
  font-size: 16px;
  margin: 0px;
  color: #4A4A4A;
  position: absolute;
  top: 19px;
  left: 16px;
  display: inline-block;
  width: 105px;
  height: 20px;
  font-weight: 900;
  text-align: left;
}

.main-form-container {
  height: 50px;
  position: relative;
  align-content: center;
}

ul.search-description {
  width: 70px;
  position: absolute;
  background: #fff;
  right: 143px;
  top: 55px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  padding: 14px 0px;
  border: 1px solid #E5E5E5;
  display: none;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.search-description li {
  font-size: 16px;
  color: #4A4A4A;
  font-weight: 900;
  padding: 6px 0px;
  display: block;
  padding-left: 16px;
  cursor: pointer;
}

.search-description li:hover {
  background: #f8f8f8;
}












/* responsive css below */
@media only screen and (max-width: 680px) {
  .main-btn {
    border-radius: 0px 4px 4px 0px;
    -moz-border-radius: 0px 4px 4px 0px;
    -webkit-border-radius: 0px 4px 4px 0px;
    border-right: 1px solid #cccccc;
  }

  ul.search-description {
    right: 0px;
    z-index: 9999;
  }

  .centerbox p.description {
    width: 284px;
    margin: 0 auto 40px auto;
  }

  .centerbox {
    width: auto;
    transform: translate(-50%, -60%);
    -ms-transform: translate(-50%, -60%);
    /* IE 9 */
    -webkit-transform: translate(-50%, -60%);
    /* Chrome, Safari, Opera */
  }

  .main-form-container {
    width: 477px
  }

  #main-submit {
    display: none;
  }

  #main-submit-mobile {
    background: #3cb13c;
    color: #fff;
    display: block;
    font-size: 19px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    margin-bottom: 0px;
    -webkit-appearance: none;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    width: 141px;
    height: 50px;
    border: 0px;
    padding-top: 0px;
    float: none;
    border: 0px;
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 100%;
    z-index: 1;
  }

  #main-submit-mobile:hover {
    background: #00a221;
    color: #fff !important;
    -webkit-appearance: none;
  }

  footer {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 515px) {
  .main-input {
    width: 210px;
  }

  .main-form-container {
    width: 360px
  }

  .centerbox h1 {
    width: 280px;
    margin: 0 auto 15px auto;
  }

  .centerbox {
    position: absolute;
    top: 50%;
    left: 50%;
  }
}

@media only screen and (max-width: 375px) {
  .cover {
    background: rgba(0, 0, 0, 0) url("seodesigns.com/projects/TD/images/background.jpg") no-repeat center -175px;
  }

  .main-input {
    width: 185px;
    padding-left: 42px;
    background: #ffffff url("http://seodesigns.com/projects/TD/images/search.png") 12px 15px no-repeat;
    background-size: 18px 18px;
  }

  .main-btn {
    width: 108px;
    background: #ffffff url("http://seodesigns.com/projects/TD/images/main-bullet.png") 85px 23px no-repeat;
    background-size: 6px 6px;
  }

  .main-form-container {
    width: 293px
  }

  .search-small {
    left: 13px;
  }

  .search-large {
    left: 13px;
  }
}



body {
  background-color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

.height {
  height: 100vh;
}


.search {
  position: relative;
  box-shadow: 0 0 40px rgba(51, 51, 51, .1);

}

.search input {

  height: 60px;
  text-indent: 25px;
  border: 2px solid #d6d4d4;


}


.search input:focus {

  box-shadow: none;
  border: 2px solid rgb(13, 196, 125);


}

.search .fa-search {

  position: absolute;
  top: 20px;
  left: 16px;

}

.search button {

  position: absolute;
  top: 5px;
  right: 5px;
  height: 50px;
  width: 110px;
  background: #1db552;

}






/* serch box frontend */


@media (min-width:767px) {
  .searchbox {
    background-color: #fff;
    padding: 10px 76px 10px 40px;
    border-radius: 10px;
    width: 90%;
    height: 80px;
    margin-left: 75px;
  }
}

@media (max-width:767px) {
  .searchbox {
    background-color: #fff;
    padding: 10px 76px 10px 40px;
    border-radius: 30px;


  }
}


.searchbox [class*="col-"] {
  padding: 0px;
}

.searchbox .col-md-5,
.searchbox .col-md-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.searchbox .form-control {
  border-color: transparent;
  border-right: solid 1px rgba(0, 0, 0, 0.10);
}

.searchbox select.form-control {
  border-right: solid 1px transparent;
}

.searchbox .form-control:focus {
  outline: 0;
}

.searchbox .btn {
  border-radius: 10px;
  padding: 20px 40px;
}

/* ------ Select Chosen Styles ---- */
.searchbox .chosen-single,
.searchbox .chosen-container-multi .chosen-choices li.search-field input[type="text"],
.searchbox .chosen-container-single .chosen-single {
  padding: 0 28px;
  width: 100% !important;
  margin: 0;
  border: solid 1px #c4cad0 !important;
  height: 40px;
  line-height: 22px;
  font-size: 14px;
  font-weight: normal;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 23px;
  background: none;
}

.searchbox .chosen-single,
.searchbox .chosen-container-multi .chosen-choices li.search-field input[type="text"],
.searchbox .chosen-container-single .chosen-single {
  font-size: 15px;
}

.searchbox .chosen-single,
.searchbox .chosen-container-multi .chosen-choices li.search-field input[type="text"],
.searchbox .chosen-container-single .chosen-single {
  border: none !important;
  background: #fff !important;
}

.searchbox .chosen-container-multi .chosen-choices {
  background: none;
}

.searchbox .chosen-container-multi .chosen-choices li.search-field {
  float: none;
}

.searchbox .chosen-single,
.searchbox .chosen-container-single .chosen-single,
.searchbox .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  padding-right: 50px;
}

.searchbox .chosen-single span {
  display: block;
  padding: 0;
  margin: 0;
  line-height: 40px;
}

.searchbox .chosen-container-single .chosen-single {
  background: none !important;
  box-shadow: none !important;
}

.searchbox .chosen-container-active .chosen-single,
.searchbox .chosen-container-active .chosen-choices {
  box-shadow: none;
}

.searchbox .chosen-single,
.searchbox .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  color: #334e6f !important;
}

.searchbox .chosen-container-multi .chosen-choices li.search-field input[type="text"],
.main_wrapper .select-tags:after {
  color: #fff !important;
}

.searchbox .chosen-container {
  text-align: left;
}

.searchbox .chosen-drop {
  margin: 5px 0 0 0;
  background: #fff;
  border-radius: 5px;
  border: none;
  overflow: hidden;
  box-shadow: 20px 20px 50px rgba(58, 87, 135, 0.1);
}

.searchbox .chosen-drop ul.chosen-results {
  padding: 0;
  margin: 0;
  text-align: left;
}

.searchbox .chosen-drop ul.chosen-results li:before {
  display: none;
}

.searchbox .chosen-drop ul.chosen-results li {
  padding: 6px 30px 7px 30px;
  line-height: 22px;
  font-size: 14px;
  color: #334e6f;
  background: none !important;
}

.searchbox .chosen-drop ul.chosen-results li:first-child {
  padding-top: 25px;
}

.searchbox .chosen-drop ul.chosen-results li:last-child {
  padding-bottom: 23px;
}

.searchbox .chosen-choices {
  padding: 0;
  margin: 0;
  border: none;
}

.searchbox .chosen-choices li {
  width: 100%;
  display: block;
}

.searchbox .chosen-choices li.search-choice {
  display: none;
}

.searchbox .chosen-choices li:before,
.searchbox .chosen-choices li:after {
  display: none;
}

.searchbox .chosen-single>div {
  display: none;
}

.searchbox .chosen-single {
  position: relative;
}

.searchbox .chosen-single:after {
  content: "\f107";
  right: 28px;
  top: 50%;
  width: auto;
  height: auto;
  background: none;
  font-family: 'FontAwesome';
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: #999999;
  display: block;
  pointer-events: none;
  position: absolute;
  font-size: 28px;
  line-height: 22px;
}

/* ------ End Select Chosen Styles ---- */

footer {
  background-color: #fff;
  padding: 3% 0px;
}

footer p {
  color: #999;
}

@media (max-width:767px) {
  .searchbox .btn {
    width: 100%;
  }

  .searchbox {
    padding: 20px 40px;
  }

  .searchbox .form-control {
    border-color: transparent;
    border-bottom: solid 1px rgba(0, 0, 0, 0.10);
  }

  .searchbox select.form-control {
    border-bottom: solid 1px transparent;
  }
}






.doctor-card {
  max-width: 700px;
  background: #fff;
  border-radius: 2px;
  margin: auto;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  position: relative;

  .info {
    padding: 15px;
    display: grid;
    grid-template-columns: 90px auto;

    .avatar {
      overflow: hidden;
      height: 72px;
      width: 72px;
      border-radius: 3px;
      margin-top: 5px;

      img {
        width: 100%;
        border-radius: 3px;
        overflow: hidden;
      }
    }

    .details {
      align-self: center;
      padding: 10px 0;

      .name {
        font-size: 18px;
        line-height: 1;
        padding: 2px 0;
        font-weight: 400
      }

      .meta-info {
        padding: 2px 0;
        color: #787878;
        line-height: 16px;
        font-weight: 400;

        .prac-area,
        .exp-yr {

          &:not(:empty) {
            &::before {
              content: "|";
              padding: 10px
            }
          }

        }
      }
    }

    @media(max-width:575px) {
      grid-template-columns: 1fr;
      justify-items: center;

      .details {
        text-align: center;

        .meta-info {
          padding: 5px;

          .exp-yr {
            display: block;

            &:not(:empty) {
              margin-top: 5px;

              &::before {
                content: none
              }
            }
          }
        }
      }
    }

  }

  .actions {
    margin: 0 15px 15px;
    display: table;
    width: calc(100% - 30px);
    border-collapse: collapse;
    border-radius: 3px;
    border-style: hidden;
    box-shadow: 0 0 0 1px #f6f7f8;

    div {
      text-align: center;
      padding: 0;
      display: table-cell;
      border: 1px solid #f2f2f2;
      vertical-align: middle;
      height: 64px;
    }

    .ratings {
      width: 30%;
      .rating-control {
          font-size: 25px;
          display: block;
        

        .fa {
          font-size: 18px;
          color: #ffdc40
        }
      }

      .rating-count {
        font-size: 12px;
        text-transform: uppercase;
        color: #898989;
      }
    }

    .comments {
      width: 23%;

      .comment-count {
        strong {
          display: block;
          color: #0081e0;
          font-size: 18px;
          font-weight: 400;
          line-height: 20px;
        }

        font-size: 12px;
        text-transform:uppercase;
        color:#898989
      }
    }

    .consultation {
      width: 23%;

      .fee {

        strong {
          display: block;
          color: #0081e0;
          font-size: 18px;
          font-weight: 400;
          line-height: 20px;
        }

        font-size: 12px;
        text-transform:uppercase;
        color:#898989
      }
    }

    .appo {
      width: 30%;

      .btn {
        background: #1db552;
        display: block;
        text-decoration: none;
        color: #fff;
        text-transform: uppercase;
        padding: 10px;
        margin: 0 5px;
      }
    }

    @media(max-width:575px) {
      >div {
        display: block;
        padding: 10px;
        height: auto;

        &.comments,
        &.consultation {
          width: 50%;
          display: inline-block;
        }

        &.ratings,
        &.appo {
          width: 100%
        }
      }
    }
  }

  .locations {
    padding: 15px 15px 20px;
    /* background: #fafafa; */
    border-top: 1px solid #f6f7f8;
    border-radius: 0 0 2px 2px;
    line-height: 1;
    font-size: 12px;
    color: #898989;
    font-weight: 400;
    text-transform: capitalize;

    @media(max-width:575px) {
      text-align: center
    }
  }

  &.hoverable {
    &:hover {
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
  }

  &.certified::after {
    content: '';
    background: url('//via.placeholder.com/100') no-repeat;
    background-size: contain;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 50%
  }

  @media(max-width:575px) {
    padding: 10px
  }

  &+& {
    margin-top: 1rem;
  }
}


/* details page styles */

.emp-profile {
  padding: 6%;
  margin-top: 3%;
  margin-bottom: 3%;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  position: relative;

}

.profile-img {
  width: 36%;
  height: 94%;
  margin-left: 33%;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  position: relative;


}

.profile-imgmb {
  width: 33%;
  height: 124%;
  margin-left: 4%;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  position: relative;

}

.profile-headmb {

  margin-left: 49%;
  margin-top: -18%;

}


.profile-head h5 {
  color: #333;
  margin-bottom: 70px;
}

.profile-head h6 {
  color: #0062cc;
}

.profile-edit-btn {
  border: none;
  border-radius: 1.5rem;
  width: 70%;
  padding: 2%;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
}

.proile-rating {
  font-size: 12px;
  color: #818182;
  margin-top: 2%;
}

.proile-rating span {
  color: #495057;
  font-size: 15px;
  font-weight: 600;
}




.profile-work {
  padding: 20%;
  margin-top: -17%;
  line-height: 1.4;
  margin-left: -34px;
}

.profile-work a {
  text-decoration: none;
  color: #000000;
  font-size: 17px;
  font-family: 'Lato', sans-serif;  /* Professional font */
  font-weight: 400;  /* Regular weight */
}

.profile-work ul {
  list-style: none;
}

.profile-tab label {
  font-weight: 600;
}

.profile-tab p {
  font-weight: 600;
  color: #969696;
}

/* Custom styles for button hover effects */
.custom-green {
  background-color: #3cc954;
  color: white;
}

.custom-green:hover {
  background-color: #106b20;
  /* Change the hover color to dark green */
}

.custom-blue {
  background-color: #3cc954;
  color: white;
}

.custom-blue:hover {
  background-color: #106b20;
  /* Change the hover color to dark blue */
}

.custom-orange {
  background-color: #3cc954;
  color: white;
}

.custom-orange:hover {
  background-color: #106b20;
  /* Change the hover color to dark orange */
}

.lifted-buttons {
  margin-top: -20px;
  /* Adjust the negative margin as needed to lift the buttons */
}




/* Star Rating CSS */
.rating {
  display: inline-block;
  unicode-bidi: bidi-override;
  direction: rtl;
}

.rating input {
  display: none;
}

.rating label {
  float: right;
  padding: 0 1px;
  font-size: 30px;
  color: #ccc;
  cursor: pointer;
}

.rating label:before {
  content: '★';
}

.rating input:checked~label {
  color: #ffdb58;
  /* Change this color for the selected star color */
}

.time-label {
  display: inline-block;
  margin-right: 10px;
  /* Adjust as needed */
}

.time-range {
  display: inline-block;
}

.email-icon {
  margin-right: 5px;
  /* Adjust the margin-right value to add space */
}


/* new navbar */

* {
  box-sizing: border-box;
}



ul {
  margin: 0;
  padding: 0;
  list-style: none;
}


.logo img {
  width: 100px;
  /* Adjust the width as needed */
  height: auto;
  /* Maintain aspect ratio */
}

.main-nav {
  margin-top: 5px;

}

.main-nav img {
  width: 20px;
  /* Adjust the width as needed */
  height: 20px;
  /* Maintain aspect ratio */
}

.logo {
  position: relative;
  /* Ensure the logo container is positioned relative */
}

.logo::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  /* Adjust the position of the vertical line */
  width: 1px;
  background-color: #ccc;
  /* Color of the vertical line */
  height: 80%;
}

.logo a,
.main-nav a {
  padding: 49px ;
  text-transform: uppercase;
  text-align: center;
  display: block;

}

.main-nav a {
  color: #34495e;
  font-size: .80em;
}

.main-nav a:hover {
  color: #718daa;
}

.header {
  padding-top: -3.5em;
padding-bottom: 0.5em;
background-color: #f4f4f4;
position: sticky;
top: 0;
z-index: 1000;
align-items: center;
height: 82px;

}

.header,
.main-nav {
  display: flex;
  width: 100%;
}




/* mob view  */


.mobview.lghide {
  background: linear-gradient(to bottom, #3cc954, #28a745);  /* Example color */
  border-bottom-left-radius: 30px;
  /* Example radius for the bottom-left corner */
  border-bottom-right-radius: 30px;
  /* Example radius for the bottom-right corner */
  height: 222px;
  width: 100%;
}

.mobview.lghide h1 {
  font-size: 44px;
  /* Adjust font size as needed */
  color: white;
  /* Adjust text color */
  margin: 0;
  /* Remove default margin */
  padding: 10px;
  /* Add padding for spacing */
  text-align: center;
  /* Center-align the text */
}


.mobview.lghide h4 {
  font-size: 21px;
  /* Adjust font size as needed */
  color: rgba(181, 241, 189, 0.849);    /* Adjust text color */
  margin: 0;
  /* Remove default margin */
  padding: 40px;
  /* Add padding for spacing */
  text-align: center;
  /* Center-align the text */
}



.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Make sure the icon-box takes full width of the column */
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
  padding: 18px;
  text-align: center;
  margin-top: 15px;
}




.appshow {
  border-radius: 10px;
  border-radius: 88px;
  background-color: #fff;
  /* height: 50%; */
}




.custom-size {
  font-size: 23px;
  color:#3cc954;
  /* Blue color */
}

h6 {
  margin-top: 10px;
  margin-bottom: 0;
}



.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  margin-left: 38px;
  margin-top: -19px;


}

.search-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px 0 0 20px;
  outline: none;
  flex: 1;
    margin-left: -9px;
      width: 200px;


}

.search-button {
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-left: none;
  border-radius: 0 20px 20px 0;
  /* Only apply border-radius to the right sides */
  background-color:#3cc954;
  color: white;
  cursor: pointer;
  outline: none;
}

.search-button:hover {
  background-color: #0056b3;
}

.small-image {
  width: 50px;
  /* Adjust the size as necessary */
  height: auto;
  /* Maintain the aspect ratio */
  display: block;
  margin: 10px auto;
  /* Center the image horizontally */
}


/* rating card */
/* rating card */
#card {
  display: inline-block;
  position: relative;
  margin: 20px;
  border-radius: 2px;
  width: 200px;
  height: 175px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
  transition: box-shadow 1s;
  overflow: hidden;
  background-color: white;
}

#card .text {
  padding-left: 9px;
  padding-top: 0px;
}

#card .text:first-of-type {
  padding-top: 8px;
}

#title {
  color: rgba(0, 0, 0, 0.87);
  font-size: 22px;
  padding-top: 16px;
}

#artist {
  color: rgba(0, 0, 0, 0.54);
}

#album {
  color: rgba(0, 0, 0, 0.87);
}

#card img {
  height: 40%;
  width: 43%;
  position: absolute;
  top: 58px;
  right: 6px;
  border-radius: 15px;
}

#rating {
  border-top: 1px solid rgba(0, 0, 0, .1);
  width: 260px;
  padding-left: 24px;
  padding-top: 8px;
  position: absolute;
  bottom: 8px;
  transition: 1s;
}

#card .rateToggle {
  bottom: -45px;
}

#rating .material-icons {
  cursor: default;
  font-size: 17px;
  padding-right: -3px;
  color: #faca43;
}

#rating .material-icons:nth-child(6) {
  position: absolute;
  bottom: -45px;
  transition: 1s;
  right: 8px;
}

#rating .material-icons:nth-child(6).expandToggle {
  bottom: 50px;
  transition: 1s;
}

div.scrollmenu {
  background-color: #ffffff;
  overflow: auto;
  white-space: nowrap;
  padding: 10px 0;
}

div.scrollmenu div#card {
  display: inline-block;
}

hr {
  width: 80%;
  /* Adjust the width as needed */
  height: 2px;
  /* Adjust the height as needed */
  background-color: greenyellow;
  /* Adjust the color as needed */
  border: none;
  /* Remove default border */
  margin: 20px auto;
  /* Center the hr element and add some margin */
}



.sticky-buttons {
  position: fixed;
  bottom: 60px;
  /* Adjusted to accommodate the sticky bar */
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 23px 20px;
  z-index: 1000;
}

.call-now,
.whatsapp {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
}

.call-now {
  background-color: #007bff;
}

.whatsapp {
  background-color: #3cc954;
}

.call-now i,
.whatsapp i {
  margin-right: 10px;
}
.whatsapp-icon {
  font-size: 22px; /* Adjust the size as needed */
}



.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 11px 0;
  background-color: #f8f9fa;
  border-top: -7px solid #ddd;
  z-index: 1000;
  border-radius: 12px;

}

.sticky-bar a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sticky-bar a i {
  font-size: 20px;
  margin-bottom: 5px;
  color: grey;
}




.logost {
  width: 27%;
  height: 23%;
  display: block;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-left: 10px;
  /*margin-top: 5px;*/
}

.logost img {
  width: 100%;
  /*height: 66%;*/
  /*object-fit: cover;*/
  /*border-radius: inherit;*/
}


/*      @media screen and (min-width: 980px) {*/

/* .badge{*/

/* height: 150px; */
/*width: 200px;*/
/*border-radius: 20px;*/
/*position: fixed;*/
/*left: 85%;*/
/*top: 65%;*/
/*z-index: 999;*/
/*background-color: rgba(51, 175, 67, 0.518);*/
/*padding: 10px;*/
/*}*/

/*.tym{*/

/*width: 165px;*/
/*margin-left: 5px;*/
/*text-align: center;*/

/*border-radius: 5px;*/
/*padding: 5px;*/
/*} */*/

/*}*/
/*.button1{*/
/*display: block;*/
/*margin:  0 0 5px auto;*/
/*background-color: transparent;*/
/*font-size: 30px;*/
/*color: #c5c5c5;*/
/*border: none;*/
/*outline: none;*/
/*cursor: pointer;*/

/*}*/

@media screen and (max-width: 980px) {

.badge{

 height: 150px; 
width: 150px;
border-radius: 10px;
position: absolute;
left: 55%;
top: 65%;
z-index: 999;
background-color: rgba(238, 255, 0, 0.316);
padding: 10px;

}

.tym{

width: 65px;
margin-left: 5px;
text-align: center;

border-radius: 5px;
padding: 5px;
}









