@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');

:root {
    --primary-color: #06D6A0;
    --secondary-color: #A7C957;
    --third-color: #ADB5BD;
    --first-font: 'Jost', sans-serif;
    --second-font: 'Rubik', sans-serif;
}

* {
    margin: 0;
    font-family: var(--second-font);
}

/* Start Home Section */

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.language {
    border-color: var(--primary-color);

}
.dropdown{
    position: relative;
}

.dropdown-content{
    position: absolute;
    margin-top:10px;
    background-color: white;
    border: solid thin #aaa;
    padding: 10px;
}
.hide{
    display: none;
}
#schedule {
    width: 70%;
    background-color: white;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

@media (max-width:1000px) {
    #schedule {
        width: 100%;
        transform: translatex(-50%);

    }
}

.schedule {
    background-color: whitesmoke;
}

.scheduletitle {
    font-family: var(--first-font);
    font-weight: bold;
}

.scheduletime p {
    font-weight: 600;

}


#smile {
    background-color: whitesmoke;
    position: relative;
    
}

.viewbtn {
    border-color: var(--primary-color);
    font-weight: 600;
}

.viewbtn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.callbtn {
    background-color: var(--primary-color);
    color: #fff;
}

.callbtn:hover{
    border-color: var(--primary-color);
    
}
/* End Home Section */


#banner {
    height: 200px;
    background-color: #ecf1f0;

}

.abouttext {
    text-align: justify;
    line-height: 30px;
}

@media (max-width:1199px) {
    .abouttext {
        font-size: small;
        line-height: 28px;
    }
}

.servicesli {
    list-style-type: none;
}

.servicesli li {

    /* content: "\f5c9";
    font-family: Font Awesome 5 Free; */
    background-image: url('../image/tooth.svg');
    background-repeat: no-repeat;
    font-size: small;
    padding: 0.15em 0 0.5em 2.5em;

}

.form-control {
    padding: 10px 20px 10px 10px;
    font-size: small;
}

.links a {
    position: relative;
    padding-left: 25px;
}

/* .links .nav-link.active {
    border-bottom: 1px solid #fff;
} */

.links .nav-link.active:before {
    content: "\f144";
    font-family: 'Font Awesome 5 Free';
    margin-left: -25px;
    padding-right: 10px;
}

.links .nav-link.active:after {
    content: '';
    /* border: 1px solid #fff; */
    width: 40px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: 25px;

}

.icon .active {
    display: block;
}

.footer1 {
    background-color: var(--secondary-color);
}


.dropdown{
   
    position: relative;
    border: 1px solid #06D6A0;
    border-radius: 10px;
    padding: 0 10px;
}

.dropdown-content{
    position: absolute;
    
    background-color: #8aecd2;
    border: solid thin #aaa;
    border-radius: 10px;
    padding: 10px;
    z-index: 10;
}
.dropdown-content .nav-link{
    width: 100%;
    margin: 0;
   }
.dropdown-content .nav-link:hover{
    background-color: #06D6A0;
    color: #fff;
  
}
.hide{
    display: none;
}
