@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Poppins:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');


*{

    margin:0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;}
   



/**********  start preload ***********/
.loading-overlay{
    background:#25333c;
    color:#fff;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:99999;  	
}
.loader{
    background-image: url('../images/logo22.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40%;
width: 300px;
height: 300px;
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
overflow: hidden;
z-index: 9999;
animation: pulse 1s linear infinite;
}
.loader-div{
width: 100%;
height: 100%;
border: 8px solid #25333c;
border-radius: 50%;
border-top:8px solid #2fab97;
animation: rotate 5s linear infinite;
}
@keyframes rotate{
100%{
    transform: rotate(360deg);
}
}



 
.max-width{
    max-width: 100%;
    padding: 0 80px;
    margin: auto;
}
/*navbar styling*/
.navbar{
    position: fixed;
    width: 100%;
    padding: 10px 0;
   display: block;
    font-family: 'Caveat', cursive;
   
   letter-spacing: 1px;
    transition: all 0.3s ease;
    z-index: 999;
}

.navbar.sticky{
padding: 10px 0;
background: #25333c;
box-shadow: 0px 5px 25px rgba(0,0,0,0.8);
transition: all 0.3s ease-in-out;
}

.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
   

}

.navbar .logo{
    justify-content: space-between;
    align-items: center;
}
.navbar .logo img
{   
    width:120px;
    height:110px;
    line-height: 75px;
    transition: 0.4s ease-out;
    
}


.navbar .logo.sticky{
    content: url('../images/logo-sticky.png');
    width:90px;
    height:80px;
    line-height: 75px;
    transition: 0.4s ease-out;
}



.navbar .menu li{
    list-style: none;
    display: inline-block;
    text-decoration: none;
    opacity: 0;
    transform: scale(0);
    animation: fadeIn 0.5s linear forwards;
    transition: 0.5s ease-in;
    
     
}

@keyframes fadeIn{
    0%
    {
     opacity: 0;
     transform: scale(0);
     
    }
    100%{
        
        transform: scale(1);
        opacity: 1;

    }
}

.navbar .menu li:nth-child(1){ 
 animation-delay: 2.2s;
}

.navbar .menu li:nth-child(2){
    animation-delay: 2.5s;
   }

   .navbar .menu li:nth-child(3){
    animation-delay: 2.8s;
   }

   .navbar .menu li:nth-child(4){
    animation-delay: 3.1s;
   }

   .navbar .menu li:nth-child(5){
    animation-delay: 3.4s;
    
   }

   .navbar .menu li:nth-child(6){
    animation-delay: 3.7s;
    
   }

.navbar .menu li a{
 color:#fff;
 font-size: 20px;
 font-weight: 700;
 margin-left: 25px;
 text-decoration: none;
 transition: 0.4s ease-in;
 padding: 10px;
}

.navbar .menu li a.sticky{
    color:#fff;
    font-size: 16px;
    font-weight: 700;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.4s ease-in;
   }

.navbar .menu li a:hover{
    color:#2fab97;
    
   }




   
    .navbar .menu span a{
        display: inline-block;
        background: #2fab97;
        
        color: #25333c;
        font-size: 14px;
        font-family: 'Caveat', cursive;
        font-weight: 500;
        padding: 10px 30px;
        margin-top: 20px;
        margin-left: 20px;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        font-style: bold;
        border: 2px solid #2fab97;
        border-radius: 0 10px;
        transition: 0.5s;
        box-shadow: 0 5px 25px rgba(0,0,0,0.8);
        opacity: 0;
        animation: fadeIn 0.5s linear forwards;
        transition: 0.5s ease-in;
        animation-delay: 3.7s;
    
    }
    
    



.navbar .menu span a:hover{
    color:#2fab97;
    background: #25333c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
    scale:0.95;
}

/* menu btn styling */
.menu-btn{
    
    width: 70px;
    height: 70px;
    
    justify-content: center;
    align-items: center;
    cursor: pointer;
    display: none;
    overflow: hidden;
    
}

.menu-btn span{
    position: absolute;
    width: 40px;
    height: 4px;
    background: #fff;
    border-radius: 4px;
    transition: 0.5s;
}

.menu-btn span:nth-child(1){
    transform: translateY(-15px);
    width: 25px;
    left:15px;

}

.menu-btn.active span:nth-child(1){
    
    width: 40px;
    transform: translateY(0) rotate(45deg);

}

.menu-btn span:nth-child(2){
    transform: translateY(15px);
    width: 15px;
    left:15px;
    
}

.menu-btn.active span:nth-child(2){
    
    width: 40px;
    transform: translateY(0) rotate(315deg);

}

.menu-btn.active span:nth-child(3){
    transform: translatex(60px);
    
    
}

/* banner section styling*/

.banner{
   
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/smile5.jpg');
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Caveat', cursive;;
}


.banner .banner-content{
    
    padding: 20px;
    background: rgba(255,255,255, .5);
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.8);
  
    
}

.banner .banner-content h2{
    font-size: 3em;
    color:#25333c;
    font-weight: 700;
    letter-spacing: 2px;
   
}

.banner .banner-content h3{
    font-size: 2em;
    color:#25333c;
}
        
         
.banner .banner-content p{
    font-size: 1.5em;
    color:#25333c;
   
}     

.banner .banner-content a{
    display: inline-block;
    background: #2fab97;
    color: #25333c;
    font-size: 1em;
    font-weight: 700;
    padding: 10px 30px;
    margin-top: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #2fab97;
    border-radius: 0 10px;
    transition: 0.5s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.8);
}

.banner .banner-content a:hover{
    color:#2fab97;
    background: #25333c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
    scale:0.95;
}
       
.scrolldown{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 10px;
    left:50%;
    width:30px;
    height: 30px;
    opacity: 1;
    transform: translateY(-80px) 
    rotate(45deg);
    
}

.scrolldown span{
    position: absolute;
    top:0;
    left:0;
    display: block;
    width:100%;
    height: 100%;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    animation: animate 1.5s linear infinite;
    opacity: 0;
}

.scrolldown span:nth-child(1){
    transform: translate(-15px, -15px);
    animation-delay: -0.4s;
}

.scrolldown span:nth-child(2){
    transform: translate(0, 0);
    animation-delay: -0.2s;
}

.scrolldown span:nth-child(3){
    transform: translate(15px, 15px);
    animation-delay: 0s;
}

.scrolldown.hide{
   display: none;
   
   
    
}

@keyframes animate{
    0%{
        top: -5px;
        left: -5px;
        opacity: 0;
    }

    25%{
        top: 0;
        left: 0;
        opacity: 1;
    }

    50%,100%{
        top: 5px;
        left: 5px;
        opacity: 0;
    }

}


/* about section 

.about{
    position: relative;
    width:100%;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.about-box{
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
   
    flex-wrap: wrap;
     
}

.about .about-imageBx{
    position: relative;
    width:50%;
   background: url('../images/ordinacija.jpg');
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
    border-radius: 0px 50px;
   box-shadow: 0 5px 25px rgba(0,0,0,0.8);
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   padding: 100px;
}


.about .about-imageBx img{
    position: absolute;
    top:0;
    left:0;
    margin-left: 50px;
    margin-top: 50px;
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}

.about .about-content-bx{
    width: 50%;
    padding: 100px;
    
     color:#25333c;
    font-family: 'Caveat', cursive;
    
    
}

.about .about-content-bx .sign{
    right: 50px;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-bottom:0 ;
    float: right;
}
 
.about .about-content-bx h2{
     
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-bottom:0 ;
}
.about .about-content-bx h3{
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 5px;
}

.about .about-content-bx h3 span{
    color:#2fab97;
}

.about .about-content-bx p{
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: 1px;
   
}

.about .about-content-bx a{
    display: inline-block;
    background: #2fab97;
    color: #25333c;
    font-size: 1em;
    font-weight: 700;
    padding: 10px 30px;
    margin-top: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.8);
    border-radius: 0 10px;
    transition: 0.5s;
}

.about .about-content-bx a:hover{
    color:#2fab97;
    background: #25333c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
    scale:0.95;
}*/

/* about */

.about{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/pictorial-map.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -2;
    position: relative;
}

.about-container{
position: relative;
max-width:100%;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}

.about-container .about-card{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin:100px 0;

}

.about-container .about-card .about-imgBx{
    position: relative;
    left: 25px;
    width: 600px;
    height: 500px;
    box-shadow: 0 5px 35px rgba(0,0,0,0.8);
    z-index: 1;
}

.about-container .about-card .about-imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-container .about-card .about-contentBx{
    position: relative;
    right: 25px;
    width: 600px;
    height: 500px;
    background: #25333c;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 60px 20px 100px;
    
}

.about-container .about-card .about-contentBx::before{
    content: '';
    position: absolute;
    top:-50px;
    bottom: -50px;
    left: 0;
    right: 0;
    background: #25333c;
    z-index: -1;
    box-shadow: 0 5px 35px rgba(0,0,0,0.8);
}

.about-container .about-card .about-contentBx h2{
    font-size: 1.5em;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-bottom:0;
    font-family: 'Caveat', cursive;
}

.about-container .about-card .about-contentBx p{
    margin-top: 10px;
    font-size: 1.4em;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    font-family: 'Caveat', cursive;
}

.about-container .about-card .about-contentBx a{
    display: inline-block;
    background: #2fab97;
    color: #25333c;
    font-size: 1em;
    font-weight: 700;
    padding: 10px 30px;
    margin-top: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.8);
    border-radius:0 10px;
    transition: 0.5s; 
    font-family: 'Caveat', cursive;
}

.about-container .about-card .about-contentBx a:hover{
    color:#2fab97;
    background: #25333c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
    scale:0.95;
}

/* check-list section */

.check-list{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/brushes.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Caveat', cursive;;
}

.check-list .check-list-content{
   background: rgba(255,255,255, .5);
   box-shadow: 0 5px 35px rgba(0,0,0,0.8);
   padding: 20px;
    text-align: center;
   
    
}

.check-list .check-list-content h2{
    font-size: 3em;
    color:#25333c;
    font-weight: 700;
   
}


         
.check-list .check-list-content li{
    font-size: 2em;
    color:#25333c;
    font-weight: 700;
    list-style: none;
   
}   

.check-list .check-list-content li:not(:last-child){
    margin-bottom: 15px;

}

.check-list .check-list-content li::before{
content: '\1F5F9';
color:#2fab97;
margin-right: 10px;
}


.check-list .check-list-content a{
    display: inline-block;
    background: #2fab97;
    color: #25333c;
    font-size: 1em;
    font-weight: 700;
    padding: 10px 30px;
    margin-top: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.8);
    border-radius:0 10px;
    transition: 0.5s;
}

.check-list .check-list-content a:hover{
    color:#2fab97;
    background: #25333c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
    scale:0.95;
}

/*service section*/

.service{
    padding: 100px 0;
}
.title{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
    margin-bottom: 50px;
    font-family: 'Caveat', cursive;
}


.title::before{
    content: '';
    position: absolute;
    bottom: 0px;
    left:50%;
    width: 200px;
    height: 3px;
    background: #25333c;
    
    transform: translateX(-50%);
   
    
}

.titleText{
    text-transform: none;
}
.service .service-content{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service .service-content .service-box{
    width:550px;
    margin: 20px;
    border: 15px solid #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.8);
    transition: .5s ease-in-out;
}

.service .service-content .service-box:hover{
    transform: scale(1.05) ;
    transition: .5s ease-in-out;
}

.service .service-content .service-box .service-imgBx{
    position: relative;
    width:100%;
    height: 300px;
    
}

.service .service-content .service-box .service-imgBx img{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}



.service .service-content .service-box .text{
    padding: 15px 0 5px;
   
    
    color: #25333c;
    
}

.service .service-content .service-box h3{
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 2em;
}

.service .service-content .service-box p{
 font-size: 1.6em;
 font-family: 'Caveat', cursive;
    font-weight: 500;
}

.service .service-content .service-box .details{
 display: flex;
 justify-content: space-between;
 align-items: center;
 width:100%;
 
 padding: 20px;
}

.service .service-content .service-box .details a{
    display: inline-block;
    background: #2fab97;
    color: #25333c;
    font-family: 'Caveat', cursive;
    font-size: 1em;
    font-weight: 700;
    padding: 10px 30px;
    margin-top: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.8);
    border-radius:0 10px;
    transition: 0.5s;
}

.service .service-content .service-box .details a:hover{
    color:#2fab97;
    background: #25333c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
    scale:0.95;
}


/* our team section */
.our-team{
    
    padding: 50px 0;
   background: url('../images/brushes2.jpg');
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   background-attachment: fixed;
   min-height: 100vh;
}
.our-team-container{
    
   
    width: 100%;
    height: 100%;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    
    flex-wrap: wrap;
    background:rgba(255,255,255, .5);
    
}

.our-team-container .our-team-contentBx{
    
    padding: 50px;
    width:50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.our-team-container .our-team-contentBx h2{
    color:#25333c;
    font-family: 'Caveat', cursive;
    font-size: 3em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.our-team-container .our-team-contentBx h3{
    color:#25333c;
    font-family: 'Caveat', cursive;
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 5px;
}

.our-team-container .our-team-contentBx p{
    color:#25333c;
    font-size: 1.5em;
    font-family: 'Caveat', cursive;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.our-team-container .our-team-contentBx li{
    width: 100%;
    margin:0;
    padding: 0;

}

.our-team-container .our-team-contentBx li{
    color:#25333c;
    font-size: 1.5em;
    font-family: 'Caveat', cursive;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}


 .our-team-container .our-team-contentBx a{
    display: inline-block;
    background: #2fab97;
    color: #25333c;
    font-family: 'Caveat', cursive;
    font-size: 1em;
    font-weight: 700;
    padding: 10px 30px;
    margin-top: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.8);
    border-radius:0 10px;
    transition: 0.5s;
}

.our-team-container .our-team-contentBx a:hover{
    color:#2fab97;
    background: #25333c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
    scale:0.95;
}


.our-team-container .our-team-imgBx{
    width:40%;
    background: url('../images/dule4.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 12px 25px 6px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}








/* Testimonials */

.testimonials{
    padding: 50px 0;
    
    
}



.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 30px;
  }

  

 .testimonials-box{
     
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width:70%;
    height: 100%;
    margin-bottom: 50px;
    background: url('../images/mirror.png');

    background-position:center;
    background-size: contain;
    background-repeat: no-repeat;
    background-origin: content-box;
    
}

.testimonials-box .testimonials-content{
    padding: 20px;
    text-align: center;
 background: rgba(255,255,255, .5);
    box-shadow: 0px 12px 25px 6px rgba(0,0,0,0.3);
}

.testimonials-box .testimonials-content .quote{
    max-width: 48px;
    color: #2fab97;
    z-index: 999;
}

.testimonials-box .testimonials-content p{
    padding: 20px 0;
    color: #25333c;
    font-family: 'Caveat', cursive;
    font-size: 1.5em;
}

.testimonials-box .testimonials-content .patient {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    box-shadow: 0px 5px 25px rgba(0,0,0,0.8);
    left: 100px;
    position: relative;
    
    bottom: 10px;
}
.testimonials-box .testimonials-content .patient img{
    padding: 20px 0;
    
}








.swiper-button-prev{
    left:20px;
    
    color: #25333c;
    
    scale:1;
    transition: 0.5s;
}


.swiper-button-next{
    right:20px;
    
    color: #25333c;
   
    scale: 1;
    transition: 0.5s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover{
    scale:0.90;
  
}



/* contact section*/

.contact{
    
    height: 100vh;
    padding: 50px 0; 
    background: url('../images/brush2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.contact-content{
    position: relative;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   
}

.contact-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    background: rgba(255,255,255, .5);
    box-shadow:0px 5px 25px rgba(0,0,0,0.8)
    ;
}

.contact-container .contact-info{
    width: 50%;
    display: flex;
    flex-direction: column;
    
}

.contact-container .contact-info .contact-box{
    position: relative;
    padding: 20px 0;
    display: flex;
    
    
}

.contact-container .contact-info .contact-box .contact-icon{
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    margin-left: 20px;
}
.contact-container .contact-info .contact-box .contact-text{
    
    display: flex;
    margin-left: 20px;
    font-size: 18px;
    color:#25333c;
    flex-direction: column;
    font-weight: 500;
    font-family: 'Caveat', cursive;
}

.contact-container .contact-info .contact-box .contact-text h3{
    
    font-weight: 500;
    color:#25333c;
    
}

.contact-form{
    width:50%;
    padding: 40px;
    background: #fff;

}

.contact-form h2{
    font-size: 30px;
    color: #25333c;
    font-weight: 500;
    font-family: 'Caveat', cursive;
}

.contact-form .input-box{
    position: relative;
    width: 100%;
    margin-top: 10px;

}

.contact-form .input-box input,
.contact-form .input-box textarea
{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #25333c;
    outline: none;
    resize: none;
}

.contact-form .input-box span{
    position: absolute;
    left:0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color:#666
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box input:valid ~ span,
.contact-form .input-box textarea:focus ~ span,
.contact-form .input-box textarea:valid ~ span{
    color:#2fab97;
    font-size: 14px;
    transform: translateY(-20px);
}

.contact-form .input-box input[type="submit"]{
    width:200px;
    display: inline-block;
    background: #2fab97;
    color: #25333c;
    font-family: 'Caveat', cursive;
    font-size: 1em;
    font-weight: 700;
    padding: 10px 30px;
    margin-top: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.8);
    border-radius:0 10px;
    border: none;
    transition: 0.5s;
    cursor: pointer;
    
}

/* map section */
.map{
    
    padding: 50px 0;
   background:rgba(255,255,255, .5);
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   background-attachment: fixed;
   min-height: 100vh;
}
.map-container{
    
   
    width: 100%;
    height: 100%;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    
    flex-wrap: wrap;
    background:rgba(255,255,255, .5);
    
}

.map-container .map-contentBx{
    
    padding: 50px;
    width:50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}


.map-container .map-contentBx h2{
    color:#25333c;
    font-family: 'Caveat', cursive;
    font-size: 3em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.map-container .map-contentBx h3{
    color:#25333c;
    font-family: 'Caveat', cursive;
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
    
}

.map-container .map-contentBx p{
    color:#25333c;
    font-size: 1.5em;
    font-family: 'Caveat', cursive;
    font-weight: 500;
    letter-spacing: 1px;
    
    text-align: center;
}

#work{
    margin-top: 50px;
}

.our-team-container .our-team-contentBx li{
    width: 100%;
    margin:0;
    padding: 0;

}

.map-container .map-contentBx li{
    color:#25333c;
    font-size: 1.5em;
    font-family: 'Caveat', cursive;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}


 .map-container .map-contentBx a{
    display: inline-block;
    background: #2fab97;
    color: #25333c;
    font-family: 'Caveat', cursive;
    font-size: 1em;
    font-weight: 700;
    padding: 10px 30px;
    margin-top: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.8);
    border-radius:0 10px;
    transition: 0.5s;
}

.map-container .map-contentBx a:hover{
    color:#2fab97;
    background: #25333c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
    scale:0.95;
}


.map-container .map-imgBx{
    width:50%;
    background: url('../images/mapa.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 12px 25px 6px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.map-container .map-imgBx img{
     
     
    box-shadow: 0px 12px 25px 6px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}


/*scroll up btn */
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width:42px;
    background: #25333c;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color:#fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;

}

.scroll-up-btn.show{
  opacity: 1;
  pointer-events: auto;
  bottom: 30px;
}


/* O NAMA page */

/*banner*/

.about-banner{
    
   
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
            background: rgba(37, 51, 60, 0.6) url('../images/onama-banner3.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        font-family: 'Caveat', cursive;;
    }

   
.about-banner .about-banner-content{
    
   width: 100%;
   -webkit-box-pack: justify;
   -webkit-box-align: center; 
display: flex;
justify-content: space-between;
align-items: center;
    
  text-align: center;
 position: relative;
 
    
}
.line-right{
    -webkit-box-flex: 1;
    height: 2px;
    flex: 1;
   
    background-color: #fff;
    opacity: 1;
    z-index: 1;
    

}
.line-left{
    -webkit-box-flex: 1;
    height: 2px;
    flex: 1;
   
    background-color: #fff;
    opacity: 1;
    z-index: 1;
    

}

.about-banner .about-banner-content .banner-heading{
    font-size: 6em;
    color:#fff;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 1;
    margin-left: 60px;
    margin-right: 60px;
   
}




/*footer*/

footer{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px 100px;
    background: #25333c;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0px 0px 10px 6px rgba(0,0,0,0.3);
}

footer .footer-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    
}

footer .footer-container .footer-logo{
    
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

footer .footer-container .footer-logo img{
    width: 150px;
    height: 150px;

}
footer .footer-container .footer-sci{
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

}

footer .footer-container .footer-sci li{
    list-style: none;
    
}

footer .footer-container .footer-sci li a{
   display: inline-block;
    width: 60px;
    height: 60px;
    background: #2fab97;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 10px;
    color: #25333c;
    border: 2px solid #2fab97;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

footer .footer-container .footer-sci li a:hover  
{
    color:#2fab97;
    background: #25333c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
    scale:0.95;
  
}

footer .footer-container .footer-sci li a .fab,
footer .footer-container .footer-sci li a .fas

{
    
    
    font-size: 30px;
}

/* responsive design */



@media (max-width:991px){

  
    .max-width{
        padding: 10px 35px;
        background: #25333c;
        box-shadow: 0px 5px 25px rgba(0,0,0,0.8);
        z-index: 999;
        width: 100%;
        height: 100px;
    }

    .title{
       
        font-size: 20px;
        text-align: center;
    }

/* navbar */

.navbar .logo img
{   
    width:90px;
    height:80px;
    line-height: 60px;
    transition: 0.4s ease-out;
    z-index: 999;
}


.navbar{
    padding: 0;
}

.navbar.sticky{
    padding: 0;
}

    .menu-btn{
        display: flex;
        z-index: 999;
       
       
    }

    
     
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left:0;
        top:0;
        
        background: rgba(37, 51, 60, 0.9);
        display: none;
        
       
        text-align: center;
        padding-top: 120px;
        opacity: 0;
      
        animation: fade 0.8s linear forwards;
        transition: all 0.5s ease-in;
       z-index: -1;
        
    }

    @keyframes fade {
        0%{
            opacity: 0;
          
        }

        100%{
            opacity: 1;
            
        }
    }

   
    .navbar .menu.active{
      opacity: 1;
      display: block;
       
       
       

    }

    .navbar .menu li{
       
        display: block;
        
        opacity: 0;
        transform: scale(0);
        animation: fadeInMedia 0.5s linear forwards;
        transition: 0.5s ease-in;
         
    }
    
    @keyframes fadeInMedia{
        0%
        {
         opacity: 0;
         transform: scale(0);
         
        }
        100%{
            
            transform: scale(1);
            opacity: 1;
    
        }
    }
    
    .navbar .menu li:nth-child(1){ 
     animation-delay: 0.7s;
    }
    
    .navbar .menu li:nth-child(2){
        animation-delay: 1.0s;
       }
    
       .navbar .menu li:nth-child(3){
        animation-delay: 1.3s;
       }
    
       .navbar .menu li:nth-child(4){
        animation-delay: 1.6s;
       }
    
       .navbar .menu li:nth-child(5){
        animation-delay: 1.9s;
        
       }
    
       .navbar .menu li:nth-child(6){
        animation-delay: 2.2s;
        
       }
  

    .navbar .menu li a{
        display: inline-block;
        width:290px;
        margin:20px 0;
        font-size: 1.2em;
        border: 1px solid #fff;
        padding: 10px;
        border-radius: 0 15px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.8);
    }
     
    .navbar .menu li a:hover{
        box-shadow: 0 2px 10px rgba(0,0,0,0.8);
        scale:0.95;
    }

    



    .navbar .menu span a{
        width:290px;
        
        font-size: 1.2em;
        border: 1px solid #fff;
        padding: 10px;
        border-radius: 0 15px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.8);
        opacity: 0;
        animation: fadeInMedia 0.5s linear forwards;
        transition: 0.5s ease-in;
        animation-delay: 1.9s;
    

    }
    
    /* banner */
    /*.banner .banner-content h2{
        font-size: 3em;
        
    }

    .banner .banner-content h3{
        font-size: 2em;
      
    }

    .banner .banner-content p{
        font-size: 1.5em;
        
    }     */

    .banner{
   
        width: 100%;
        height: 100vh;
        display: flex;
       
        background: url('../images/smile5.jpg');
        
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: scroll;
        background-size: cover;
        background-attachment: fixed;
        font-family: 'Caveat', cursive;;
    }
    
    .scrolldown{
        
        bottom: 5px;
     
        width:20px;
        height: 20px;
       
        
    }

   

     /* about section*/
    
     .about-container{
         padding: 20px;

     }
     .about-container .about-card{
         flex-direction: column;
         max-width: 350px;

     }

.about-container .about-card .about-imgBx{
         width: 100%;
         height: 250px;
         left:0;
         box-shadow: 0 5px 25px rgba(0,0,0,0.8);
     }
     
     .about-container .about-card .about-contentBx{
         width: 100%;
         height: auto;
         right: 0;
         padding: 30px;
         text-align: center;

     }

     .about-container .about-card .about-contentBx::before{
         top: 0;
         bottom: 0;
         box-shadow: 0 5px 25px rgba(0,0,0,0.8);
     }

     .about-container .about-card .about-contentBx h2{
         font-size: 1.3em;

     }
     .about-container .about-card .about-contentBx{
         font-size: 1.1em;
     }

/* check-list section */

.check-list{
    width: 100%;
    height: 100vh;
    display: flex;
    
    background: url('../images/brushes.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    font-family: 'Caveat', cursive;
    padding: 20px;
}



/* service */
.service{
    padding: 20px 0;
}
.service .service-content .service-box .text{
    text-align: center;
    align-items: center;
    
}

.service .service-content .service-box .details{
    
    justify-content: center;
    
    
    padding: 20px;
   }
     
/*our-team-section*/

.our-team{
    
   width: 100%;
   background: url('../images/brushes2.jpg');
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   background-attachment: scroll;
   min-height: 100vh;
}

.our-team-container{
    flex-direction: column-reverse;
    
}
.our-team-container .our-team-contentBx h2{
    font-size: 2em;
    
 }

.our-team-container .our-team-contentBx h3{
   font-size: 1.5em;
   
}


.our-team-container .our-team-imgBx,
.our-team-container .our-team-contentBx

{
    width: 100%;
    padding: 20px;
    min-height: 400px;
    text-align: center;
}
.our-team-container .our-team-contentBx p,
.our-team-container .our-team-contentBx li{
    font-size: 1.2em;
    
}
/*testimonials*/
.testimonials-box .testimonials-content .patient {
    left: 145px;
    position: relative;
    bottom: 0;
    width: 150px;
    height: 150px;
}


/*contact-section*/

.contact{
    height: 100%;
    padding: 50px;

}
.contact .contact-content{
    padding: 0;
}
.contact-container{
    flex-direction: column;
}

.contact-container .contact-info{
    margin-bottom: 40px;
    
}

.contact-container .contact-info .contact-box .contact-icon {
    min-width: 40px;
    height: 40px;}

.contact-container .contact-info,
.contact-form{
    width: 100%;
}
/*map*/

.map{
    
    width: 100%;
    
    min-height: 100vh;
 }
 
 .map-container{
     flex-direction: column;
     
 }
 .map-container .map-contentBx h2{
     font-size: 2em;
     
  }
 
 .map-container .map-contentBx h3{
    font-size: 1.5em;
    
 }
 
 
 .map-container .map-imgBx,
 .map-container .map-contentBx
 
 {
    width: 100%;
    padding: 20px;
    min-height: 600px;
    text-align: center;
 }
 

 .map-container .map-contentBx p,
 .map-container .map-contentBx li{
     font-size: 1.2em;
     
 }
 .map-container .map-imgBx img{
    
    
    
   height: 100%;
   
    width: 100%;
    
 }

}





/*css for alert messages*/

.alert-success{
    z-index: 1;
    background: #2fab97;
    font-size: 18px;
    font-family: 'Caveat', cursive;
    padding: 20px 40px;
    min-width: 420px;
    position: fixed;
    right: 0;
    top: 150px;
    border-left: 8px solid #25333c;
    border-radius: 4px;
    
  }
  
  .alert-error{
    z-index: 1;
    background: #FFF3CD;
    font-size: 18px;
    padding: 20px 40px;
    min-width: 420px;
    position: fixed;
    right: 0;
    top: 10px;
    border-left: 8px solid #FFA502;
    border-radius: 4px;
  }

  @media (max-width:420px){.testimonials-box .testimonials-content .patient {
    left: 0;
    position: relative;
    bottom: 0;
    width: 100px;
    height: 100px;
    top: 2px;
}}