/* .nav-link {
    position: relative;
    text-decoration: none;
    font-family: 'Poppins' , sans-serif;
    color:white;
    font-size: 18px;
    letter-spacing: 0.5px;
} */
.navbar{
  transition: all ease 1s;

}
.fixed-top{
  transition: all ease 1s;
}
.bgcolor.scrolled{
    background-color: white;
    transition: all 2s ease;
    /* animation-delay: 2s; */
}
.fixed-top{
  opacity: 1;
  animation: fadeInUpx;
  animation-duration: 1s;
}
@keyframes fadeInUpx {
  from {
    opacity: 0;
    top: -150px;
  }
  
  to {
    opacity: 1;
    top: 0;
  }
}
.thf{
    font-family: 'Poppins', sans-serif;
}
.dropdown:hover .dropdown-menu{
    display: block;
}
.dropdown-menu a{
    color: black;
}
.mynav-item a{
    position: relative;
    text-decoration: none;
    font-family: 'Poppins' , sans-serif;
    color:white;
    font-size: 18px;
    letter-spacing: 0.5px;
    padding: 0 10px;
}
.bgcolor.scrolled .mynav-item a{
    color: gray;
}
.mynav-item a:hover{
    color:#8cc323;
}
.bgcolor.scrolled .mynav-item a:hover{
    color:#8cc323;
}
.bgcolor.scrolled .mynav-item .active{
    background-color: #8cc323;
    color: white;
    border-radius: 2px;
}
.bg-green{
  background-color:#8cc323 ;
}

.mynav-item a::after {
    content:"" ;
    position: absolute;
    background-color: #2596be;
    height: 3px;
    width:0;
    left: 0;
    bottom  :-10px;
    transition: 0.3s;
}
.mynav-item a:hover::after{
    width:100%;
}
.header{
    height: 90vh;
    width: 100%;
}
.parent{
    width: 100%;
    height: 90vh;
    overflow: hidden;
   
}
.child{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
   
    
}

.bg-one{
    animation-name: zoom;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    background-image: linear-gradient(  rgba(0,0, 0,0.6), rgba(0,0,0,0.3) ),url(assets/Operation\ theatre.jpg);
}
.bg-two{
    animation-name: zoom;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    background-image: linear-gradient(  rgba(0,0, 0,0.6), rgba(0,0,0,0.3) ), url(assets/Post\ Operation.jpg);
    
}
.bg-three{
    animation-name: zoom;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    background-image: linear-gradient(  rgba(0,0, 0,0.6), rgba(0,0,0,0.3) ),url(assets/s3.jpeg);
}
@keyframes zoom {
    0%{
transform: scale(1);
    }
    100%{
        transform: scale(1.2);
    }
    
}
.masking{
    clip-path: url(#wavemask);
}

/* about section */
.prybtn{
    padding: 20px;
    font-family: 'Poppins',sans-serif;
    background-color: #8cc323;
    font-size: 20px;
    color: white;
    border-radius: 20px;
}
.green{
  padding: 20px;
    font-family: 'Poppins',sans-serif;
    background-color: #8cc323;
    font-size: 20px;
    color: white;
    border-radius: 20px;
}
.mybtn{
    padding: 10px;
    width: 200px;
    font-family: 'Poppins',sans-serif;
    background-color: #8cc323;
    font-size: 20px;
    color: white;
    border-radius: 10px;
    text-decoration: none;
}

/* product carusel */
.big .container .owl-carousel .item{
   width: 18rem;
}
.big{
    width: 100%;
    height: 100vh;
}
.catimg{
    display: block;
    width: 400px;
}

.creazycenter{
    display: none;
    /* position: absolute;  */
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */

    width: 380px;
    background: white;
    border-radius: 10px;
    /* box-shadow: 10px 10px 15px rgba(0,0,0,0.05); */
    z-index: 100;
    transition:all 2s ease;
  }
 
  .creazycenter h3{
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid silver;
  }
  .creazycenter form{
    padding: 0 40px;
    box-sizing: border-box;
  }
  .creazyform .txt_field{
    position: relative;
    border-bottom: 2px solid #adadad;
    margin: 30px 0;
  }
  .txt_field input{
    width: 100%;
    padding: 0 5px;
    height: 40px;
    font-size: 16px;
    border: none;
    background: none;
    outline: none;
  }
  .txt_field label{
    position: absolute;
    top: 50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    transition: .5s;
  }
  .txt_field span::before{
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #2691d9;
    transition: .5s;
  }
  .txt_field input:focus ~ label,
  .txt_field input:valid ~ label{
    top: -5px;
    color: #2691d9;
  }
  .txt_field input:focus ~ span::before,
  .txt_field input:valid ~ span::before{
    width: 100%;
  }
  .pass{
    margin: -5px 0 20px 5px;
    color: #a6a6a6;
    cursor: pointer;
  }
  .pass:hover{
    text-decoration: underline;
  }
  .creazyinput[type="submit"]{
    width: 100%;
    height: 50px;
    border: 1px solid;
    background: #2691d9;
    border-radius: 25px;
    font-size: 18px;
    color: #e9f4fb;
    font-weight: 700;
    cursor: pointer;
    outline: none;
  }
  .creazyinput[type="submit"]:hover{
    border-color: #2691d9;
    transition: .5s;
  }
  .signup_link{
    margin: 30px 0;
    text-align: center;
    font-size: 16px;
    color: #666666;
  }
  .signup_link a{
    color: #2691d9;
    text-decoration: none;
  }
  .signup_link a:hover{
    text-decoration: underline;
  }

  .para {
    /* width: 350px; */
    height: 480px;
    display: flex;
    justify-content: center;
   font-family:  Helvetica, sans-serif,Arial;
    padding: 20px;
    border-radius: 20px;
    font-size: 20px;
    overflow: auto;
    text-align: start;

}

.para::-webkit-scrollbar {
    display: none;
}

/* choose section start */
.layout_padding {
  padding-top: 30px;
  padding-bottom: 0px;
  position: relative;
}

.services_taital {
  width: 100%;
  font-size: 30px;
  color: #000;
  text-align: center;
  font-weight: bold;
  position: relative;
}
.services_taital::after {
  content: '';
  position: absolute;
  width: 85px;
  height: 5px;
  background-color: #000;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  bottom: -20px;
  border-radius: 100px;
}
.choose_section_2{
  
  width: 100%;
  float: left;
}
.choose_section {
  width: 100%;
  float: left;
}
.choose_box {
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  
  border-radius: 10px;
  background-color: #fafafa;
  transition: all ease 1s;
}
.choose_box:hover{
  background-color: #8cc323;
}
.choose_box:hover .number_text{
  color: #ffffff;
  border: 1px solid #ffffff;
}
.choose_box:hover .trusted_text{
  color: #ffffff;
}
.choose_box:hover .dummy_text{
  color: #ffffff;
}
.number_1{
  width: 100%;
  display: flex;
}
.number_text {
  width: 40px;
  height: 35px;
  font-size: 16px;
  color: #8cc323;
  border-radius: 100%;
  border: 1px solid #8cc323;
  text-align: center;
  padding: 5px 0px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;

}
.trusted_text {
  width: 100%;
  float: left;
  font-size: 16px;
  color: #8cc323;
  padding-left: 20px;
  padding-top: 5px;
  font-weight: 600;
}
.dummy_text {
  width: 100%;
  font-size: 18px;
  color: #000;
  margin: 0px;
}
.dot{
width: 10px;
height: 10px;
background-color: #8cc323;
border-radius: 50px;
}
/* choose section end */
  
@media  (max-width: 600px) { 
    
.catimg{
    width: 350px;
}
.mynav-item{
  margin-top: 20px;
}
.header{
  height: 30vh;
}
.parent{
  height: 30vh;
}
}