@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500&display=swap');
/********** Template CSS **********/
:root {
    --primary: #74125e !important;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #331092;
}
a button{
  background-color: #74125e;
  color: white;
  font-size: 22px;
  border-radius: 70px;
}
a button:hover{
  background-color: lavender;
  color: #74125e;
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
   
}


/*** Team ***/


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/clinic_back.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}


/* Top Doctors section*/

.leftdoc{
    flex: 1;
    width: 60%;
    height: 60vh;
    
    margin-right: 5px;
}
.rightdoc{
    flex: 1;
    width: 40%;
    height: 60vh;
    border: 1px solid rgb(213, 213, 218);
    margin-left: 5px;
}
.paradoc{
    margin: 20px;
}
.threeIcon{
    margin-left: -10px;
    display: flex;
    height: auto;
    width: auto;
}
.subleft, .subRight, .subMid {
    margin:3px;
    width: 50%;
    height: 70%;
    border: 2px solid rgb(194, 194, 245);
    
}
.threeIcon p{
    justify-content: center;
}
.carousel{
    margin: 30px 5px 10px 5px;
}
#carousel {
    position: relative;
    height: 400px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
  }
  #carousel div {
    position: absolute;
    transition: transform 400ms, left 400ms, opacity 400ms, z-index 0s;
    opacity: 1;
  }
  #carousel div img {
    width: 400px;
    transition: width 400ms;
     -webkit-user-drag: none;
     box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
     border-radius: 10px;
  }
  #carousel div.hideLeft {
    left: 0%;
    opacity: 0;
    transform: translateY(50%) translateX(-50%);
  }
  #carousel div.hideLeft img {
    width: 200px;
  }
  #carousel div.hideRight {
    left: 100%;
    opacity: 0;
    transform: translateY(50%) translateX(-50%);
  }
  #carousel div.hideRight img {
    width: 200px;
  }
  #carousel div.prev {
    z-index: 5;
    left: 30%;
    transform: translateY(50px) translateX(-50%);
  }
 
  #carousel div.prev img {
    width: 300px;
  }
  #carousel div.prevLeftSecond {
    z-index: 4;
    left: 15%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0.7;
  }
  #carousel div.prevLeftSecond img {
    width: 200px;
  }
  #carousel div.selected {
    z-index: 10;
    left: 50%;
    height: 20vh;
 
    transform: translateY(0px) translateX(-50%);
  }
  #carousel div.next {
    z-index: 5;
    left: 70%;
    transform: translateY(50px) translateX(-50%);
  }
  #carousel div.next img {
    width: 300px;
  }
  #carousel div.nextRightSecond {
    z-index: 4;
    left: 85%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0.7;
  }
  #carousel div.nextRightSecond img {
    width: 200px;
  }
  
  /*previous or next buttons css*/
  
  .buttons {
    position: sticky;
    justify-content: center;
    transform: translateX(50%);
    bottom: 100px;
  }
  
  .button-82-pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-82-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition:
      transform
      600ms
      cubic-bezier(.3, .7, .4, 1);
  }
  
  .button-82-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
      to left,
      #74125e (340deg 100% 16%) 0%,
      #74125e (340deg 100% 32%) 8%,
      #74125e (340deg 100% 32%) 92%,
      #74125e (340deg 100% 16%) 100%
    );
  }
  
  .button-82-front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    background:  #74125e;
    will-change: transform;
    transform: translateY(-4px);
    transition:
      transform
      600ms
      cubic-bezier(.3, .7, .4, 1);
  }
  
  @media (min-width: 768px) {
    .button-82-front {
      font-size: 1.25rem;
      padding: 12px 42px;
    }
  }
  
  .button-82-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
  }
  
  .button-82-pushable:hover .button-82-front {
    transform: translateY(-6px);
    transition:
      transform
      250ms
      cubic-bezier(.3, .7, .4, 1.5);
  }
  
  .button-82-pushable:active .button-82-front {
    transform: translateY(-2px);
    transition: transform 34ms;
  }
  
  .button-82-pushable:hover .button-82-shadow {
    transform: translateY(4px);
    transition:
      transform
      250ms
      cubic-bezier(.3, .7, .4, 1.5);
  }
  
  .button-82-pushable:active .button-82-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
  }
  
  .button-82-pushable:focus:not(:focus-visible) {
    outline: none;
  }
  .containTwo a button{
    background-color: #74125e;
    color: whitesmoke;
    margin-left: 50px;
  }
  @media (max-width: 768px) {
    .containTwo {
      flex-direction: column;
    }
  
    .leftdoc, .rightdoc {
      width: 100%;
    }
  }

  /*Top Counselor page*/
  #All-Counse {
    display: flex;
    flex-wrap: wrap;
  }
  
  .item {
    width: calc(33.33% - 20px);
    height: 360px;
    border: 2px solid #74125e;
    margin: 10px;
    border-radius: 15px;
  }
  
  #load-more {
    margin-top: 10px;
    margin-left: 500px;
    display: block;
    background-color: rgb(207, 207, 248);
    box-shadow: 3px 4px rgb(253, 229, 237);
  }
  #load-more:hover{
    background-color: #74125e;
    color: lavender;
  
  }
  .name-img{
      display: flex;
  }
  
  .image-section {
    text-align: center;
    margin-left: 10px;
  }
  
  .image-section img {
   margin-top: 10px;
   height:130px;
   width:130px;
  }
  
  .name-section {
    text-align: center;  
    margin-left: 17px;
  }
  .name-section h4{
      margin-top: 30px;
  }

  .name-section pre{
    font-size: 18px;
  }
  
  .specialization-section {
    margin-left: 8px;
    margin-top: 10px;
  }
  .specialization-section p .speaciality{
    font-size: 20px;
  }
  .special{
    margin-top: -15px;
  }
  
  .button-section {
    margin-left: 10px;
    margin-top: -15px;
  }
  
  .button-section button {
    background-color: #74125e;
    color: whitesmoke;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 15px;
  }
  .button-section button:hover{
    background-color: rgb(217, 217, 250);
    color: black;

  }
  @media (max-width: 768px) {
    #All-Counse {
      flex-wrap: wrap;
    }
  
    .item {
      flex-basis: 100%;
      margin-bottom: 30px;
    }
    .name-section pre{
      font-size: 13px;
    }
    #load-more{
      margin-left: 0px;
    }
  }
  /*Top counselor End*/
/*Animation*/
.anime
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 20px;
      margin-left: -10px;
      margin-top: 20px;
     
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

/*Doctors Page*/
.Doctor-container {
  display: flex;
}

.left {
  flex-basis: 40%;
  background-color: white;
  height: 70vh;
}
.left-sub{
  margin: 15px;
}
.right {
  flex-basis: 60%;
  background-color: lavender;
}
.icon-img{
  display: flex;
  margin: 10px;
}
.box {
  margin-bottom: 10px;
  background-color: rgb(220, 220, 247);
  margin-left: 10px;
  height: 17vh;
  width: 35%;
  box-shadow: 5px 5px rgb(231, 231, 245);
}
.box img{
  margin-left: 25px;
  margin-top: 12px; 
}
.box p{
  margin-left: 15px;
  
}
.right-sub{
  margin: 40px;
}

/* Media query for screens smaller than 600px */
@media (max-width: 600px) {
  .Doctor-container {
    flex-direction: column;
  }

  .left, .right {
    flex-basis: 100%;
  }
  .box img{
      margin-left:  17px;

  }
  .box p{
    margin-left:  0px;

}
#diet img{
    width:320px;
    height:100%;
}
}



  /*sticky button*/
  .sticky-button {
    position: fixed;
    left: 20px; /* Adjust the left value as per your preference */
    top: 88%; /* Adjust the top value as per your preference */
    transform: translateY(-50%);
    z-index: 9999;
  }
  
  .button {
    background-color: #1c87c9;
    -webkit-border-radius: 60px;
    border-radius: 60px;
    border: none;
    color: #eeeeee;
    cursor: pointer;
    display: inline-block;
    font-family: sans-serif;
    font-size: 20px;
    padding: 5px 15px;
    text-align: center;
    text-decoration: none;
  }
  
  @keyframes glowing {
    0% {
      background-color: #2ba805;
      box-shadow: 0 0 3px #2ba805;
    }
    50% {
      background-color: #49e819;
      box-shadow: 0 0 10px #49e819;
    }
    100% {
      background-color: #2ba805;
      box-shadow: 0 0 3px #2ba805;
    }
  }
  .button {
    animation: glowing 1300ms infinite;
  }
  /*new img with media query*/
 
   #micro-slider{
    margin: 0;
    padding: 0;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background: #F6F9FC;
    color: #212121;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    min-height: 100%;
    min-width: 320px;
    margin: 0;
    padding: 0;
    width: 100%;
}

h1 {
    margin: 0;
    padding: 0;
}
.section-header {
    display: block;
    margin-top: 20px;
    position: relative;
    text-align: center;
}
.section-header h1 {
    color: #212121;
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    padding: 0 0 24px;
    position: relative;
    z-index: 2;
}
.section-header h1:after {
    position: absolute;
    display: block;
    width: auto;
    height: 3px;
    bottom: 0;
    left: 20%;
    right: 20%;
    border-radius: 1px;
    content: "";
    z-index: 1;
    background: #e6e9ec;
}
section {
    padding-bottom: 30px;
    overflow: hidden;
    position: relative;
}
a,
a:link,
a:visited {
    color: #212121;
    text-decoration: none;
}
.micro-slider {
    height: 480px;
    /* margin: 10px 0; */
    position: relative;
    width: 100%;
}
.micro-slider.fullwidth {
    height: 480px;
    /* margin: 64px 0; */
}
.micro-slider.fullwidth .slider-item {
    height: 480px;
    line-height: 480px;
    width: 100%
}
.slider-wrapper {
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transform-origin: 0 50%;
}
.slider-item {
    background: #FFF;
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.12);
    color: #FFF;
    display: none;
    font-size: 72px;
    height: 320px;
    line-height: 320px;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 320px;
    cursor: pointer;
}
/*
.slider-item:not(.active) {cursor: pointer;}
*/
.indicators {
    bottom: 0px;
    left: 50%;
    list-style-type: none;
    margin: 0 0 0 -77px;
    padding: 0;
    position: absolute;
}
.indicators li {
    color: #fff;
    float: left;
    height: 16px;
    margin-right: 8px;
    text-align: center;
    width: 16px;
}
.indicators li:last-child {margin: 0;}
.indicators a {
    background: #FFF;
    border-radius: 8px;
    border: 1px solid #E6E9EC;
    color: #FFF;
    display: inline-block;
    height: 16px;
    width: 16px;
}
@media (max-width: 786px){
.indicator{
  display: none;
}
}

/*.indicators .active a {background: #E6E9EC;}
.s1 {background: #3f51b5;}
.s2 {background: #448aff;}
.s3 {background: #03a9f4;}
.s4 {background: #00bcd4;}
.s5 {background: #009688;}
.s6 {background: #4caf50;}*/

/*carousel contact button*/
.headcontact {
  color: #74125e;
  background-color: rgb(210, 210, 247);
  font-size: 20px;
}
.headcontact:hover{
  
  background-color: #74125e;
}
/*Service section*/
.Serve {
  color: #74125e;
 
  
}
.Serve:hover{
  color: #74125e;
  background-color: rgb(205, 205, 248);
  box-shadow: 4px 4px rgb(216, 216, 218);
}

.icons a {
      
  background-color: lavender;
}
.icons .twitt{
  color: #00acee;
 ;
}
.icons .face{
     
      color: #3b5998;
     
}
.icons .lidin{
      color: #0072b1;
     
}

.icons .insta{
  color: rgb(150, 15, 109);
  
}
.icons .utube{
  color: rgb(177, 39, 39);
  
}

#aboutus{
  margin-top: 30px;
}
@media (max-width: 900px){
  #aboutus{
    margin-top: -20px;
  }
  #topDoctor{
    margin-top: -100px;
  }
   #topDoctor #micro-slider{
       margin-top:-50px;
   }
   .micro-slider{
       margin-top:-50px;
   }
  
}
#fact{
  margin-top: 20px;
}
@media (max-width: 786px){
  #fact{
    margin-top: -60px;
  }
}
#more {display: none;}

/**try animation/new sticky footer**/
.mobFooter {
  display: none;
}

.mobFooter .animated {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  0%, 100% {
      color: #fff;
  }

  50% {
      color: #1aa5e9;
  }

  80% {
      color: #F0F;
  }
}

@keyframes bounce {
  0%, 100% {
      color: #ffffff;
  }

  50% {
      color: #1aa5e9;
  }

  80% {
      color: #F0F;
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

/**media query**/
@media(max-width: 767px){
  .mobFooter {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    text-align: center;
    z-index: 9;
}

.mobFooter a {
    padding: 10px;
    display: block;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.mobFooter a strong {
    color: #ffc800;
}



.mobFooter a strong {
    display: block;
}
}

@media(min-width: 768px)
{
   .mobFooter{
       display:none;
   } 
}

