﻿body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    padding:0px;
    margin:0px;    
    width:100%;
}
a {
    color: #3fbbc0;
}
.testimonial-item .noformat p {
    font-size: 14px;     
    margin:1px;
    padding:0px;
    background-color:white;
}

    a:hover {
        color: #65c9cd;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    font-weight:bold;
}
/*--------------------------------------------------------------
# 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 #3fbbc0;
        border-top-color: #ecf8f9;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: #3fbbc0;
        color: #fff;
        transition: all 0.4s;
    }

        .back-to-top i:hover {
            background: #5ec6ca;
            color: #fff;
            
            
        }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}





/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #3fbbc0;
    color: #fff;
    height: 40px;
    font-size: 13px;
    font-weight:900;    
    transition: all 0.5s;
}
    #topbar.topbar-scrolled {
        top: -40px;
    }
#topbar i {
        padding-left: 6px;
        font-size:25px;        
}

#topbar a
{
    color:white;
    font-size:small;
    padding-right:20px;

}
    #topbar a:hover {
        color: lawngreen;
        font-size: small;
        padding-right: 20px;
        text-decoration:none;
        color:red;
    }


#myanchor a:hover {

text-decoration:none;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    top: 40px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    #header {
        padding: 15px 0;
    }
}

#header.header-scrolled {
    top: 0;
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    #header .logo a {
        color: #555555;
    }

    #header .logo img {
        max-height: 70px;
        max-width: 320px;
        width: 320px;
        height: 70px;
    }


@media (max-width: 1200px) {
    #header {
        top: 0;
    }

        #header .logo {
            font-size: 28px;
        }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }

.nav-menu a {
    display: block;
    position: relative;
    color: #555555;
    transition: 0.3s;
    font-size: 13px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
}

    .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
        color: #3fbbc0;
    }

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 15px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #194b4d;
}

    .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
        color: #3fbbc0;
    }

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

    .nav-menu .drop-down .drop-down > a:after {
        content: "\eaa0";
        font-family: IcoFont;
        position: absolute;
        right: 15px;
    }

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Appointment Button */
.appointment-btn {
    margin-left: 25px;
    background: #3fbbc0;
    color: #fff;
    border-radius: 4px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

    .appointment-btn:hover {
        background: #65c9cd;
        color: #fff;
        text-decoration:none;
    }

@media (max-width: 1500px) {
    .appointment-btn {
        margin: 0 48px 0 0;
        padding: 6px 18px;
        display:none;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 20px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        color: #555555;
    }

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: #555555;
        padding: 10px 20px;
        font-weight: 500;
        outline: none;
    }

        .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
            color: #3fbbc0;
            text-decoration: none;
        }

    .mobile-nav .drop-down > a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\eaa1";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(60, 60, 60, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff;
    }
#notice a:hover, #noticeboard .row a:hover {
    color: blue;
    transition: all 0.4s;
    cursor: pointer;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: white;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    border-bottom-color: green;
    border-bottom-width: 4px;
}

#programdiv .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: white;
    background-color: #00a651;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    background-color: #fff;
    border-bottom-color: #00a651;
    border-width: 4px;
    color: blue;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #00a651;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #eeeeee;    
    color: #555555;
    font-size: 14px;
}

    #footer .footer-top {
        background: #f6f6f6;
        padding: 5px 0 5px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #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: "Roboto", sans-serif;
            }

        

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: 600;
            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: #3fbbc0;
                    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: #555555;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #3fbbc0;
                    }



        
    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
    }

    #footer .footer-top .php-email-form {
        box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
        padding: 20px;
        
    }

        #footer .footer-top .php-email-form .validate {
            display: none;
            color: red;
            margin: 0 0 15px 0;
            font-weight: 400;
            font-size: 13px;
        }

        #footer .footer-top .php-email-form .error-message {
            display: none;
            color: #fff;
            background: #ed3c0d;
            text-align: left;
            padding: 15px;
            font-weight: 600;
        }

            #footer .footer-top .php-email-form .error-message br + br {
                margin-top: 25px;
            }

        #footer .footer-top .php-email-form .sent-message {
            display: none;
            color: #fff;
            background: #18d26e;
            text-align: center;
            padding: 15px;
            font-weight: 600;
        }

        #footer .footer-top .php-email-form .loading {
            display: none;
            background: #fff;
            text-align: center;
            padding: 15px;
        }

            #footer .footer-top .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;
                -webkit-animation: animate-loading 1s linear infinite;
                animation: animate-loading 1s linear infinite;
            }

        #footer .footer-top .php-email-form input, #footer .footer-top .php-email-form textarea {
            border-radius: 4px;
            box-shadow: none;
            font-size: 14px;
        }

            
        #footer .footer-top .php-email-form input {
            padding: 20px 15px;
        }

        #footer .footer-top .php-email-form textarea {
            padding: 12px 15px;
        }

        #footer .footer-top .php-email-form button[type="submit"] {
            background: #3fbbc0;
            border: 0;
            padding: 10px 30px;
            color: #fff;
            transition: 0.4s;
            border-radius: 4px;
        }

    #footer .footer-top .social-links a {
        font-size: 18px;
        display: inline-block;
        background: #3fbbc0;
        color: #fff;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 4px;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }



/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

    .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50%;
        margin: -40px 0 0 40px;
        position: relative;
        z-index: 2;
        border: 6px solid #fff;
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 5px 45px;
        color: #111;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: #999;
        margin: 0 0 0 45px;
        margin-top:5px;
    }

    .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
        color: #b2e4e6;
        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;
    }    
    .testimonial-item p {
        font-style: italic;
        margin: 0 15px 0 15px;
        padding: 20px 20px 60px 20px;
        background: #f0fafa;
        position: relative;
        border-radius: 6px;
        position: relative;
        z-index: 1;
    }

.testimonials .owl-nav, .testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

    .testimonials .owl-dot.active {
        background-color: #3fbbc0 !important;
        
    }

@media (max-width: 767px) {
    .testimonials {
        margin: 30px 10px;
    }
}


        #footer .footer-top .social-links a:hover {
            background: #65c9cd;
            text-decoration: none;
        }
            #footer .footer-top .php-email-form button[type="submit"]:hover {
                background: #65c9cd;
            }








/*Divider*/
.astrodivider {
    margin:20px auto 0px auto;
    width: 400px;
    max-width: 100%;
    position: relative;
}

.astrodividermask {
    overflow: hidden;
    height: 20px;
}

    .astrodividermask:after {
        content: '';
        display: block;
        margin: -25px auto 0;
        width: 100%;
        height: 25px;
        border-radius: 125px / 12px;
        box-shadow: 0 0 8px #049372;
    }

.astrodivider span {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 100%;
    margin-bottom: -25px;
    left: 50%;
    margin-left: -25px;
    border-radius: 100%;
    box-shadow: 0 2px 4px #4fb39c;
    background: #fff;
}

.astrodivider i {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    right: 4px;
    border-radius: 100%;
    border: 1px dashed #68beaa;
    text-align: center;
    line-height: 40px;
    font-style: normal;
    color: #049372;
}

#notice p
{
    margin:0;
}

#notice a, #noticeboard .row a {
    color: black;
    font-weight:bold;
}

    #notice a:hover,#noticeboard .row a:hover{
        color:red;
        transition: all 0.4s;
        cursor:pointer;
    }

#noticeboard .card-body
{
    margin:0px;
    padding:0px;
}




.btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: #3fbbc0;
}

    .btn-get-started:hover {
        background: #65c9cd;
        color: white;
    }



/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors .member {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
}

    .doctors .member .member-img {
        position: relative;
        overflow: hidden;
    }

    .doctors .member .social {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        height: 40px;
        opacity: 0;
        transition: ease-in-out 0.3s;
        text-align: center;
        background: rgba(255, 255, 255, 0.85);
    }

        .doctors .member .social a {
            transition: color 0.3s;
            color: #555555;
            margin: 0 10px;
            padding-top: 8px;
            display: inline-block;
        }

            .doctors .member .social a:hover {
                color: #3fbbc0;
                text-decoration:none;
            }

        .doctors .member .social i {
            font-size: 18px;
            margin: 0 2px;
        }

    .doctors .member .member-info {
        padding: 25px 15px;
    }

        .doctors .member .member-info h4 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 18px;
            color: #555555;
            text-align:left;
        }

        .doctors .member .member-info span {
            display: block;
            font-size: 16px;
            font-weight: 400;
            color: #aaaaaa;
            text-align: left;
        }

        .doctors .member .member-info p {
            font-style: italic;
            font-size: 14px;
            line-height: 26px;
            color: #777777;
        }

    .doctors .member:hover .social {
        opacity: 1;
    }

.probootstrap-cta {
    padding: 3em 0;
    background: #6a41ed;
    color: #ffffff;
}

    .probootstrap-cta h2 {
        margin: 12px 0 0 0;
        padding: 0;
        color: #ffffff;
        float: left;
        line-height: 1.5;
        font-weight: 300;
    }
.btn.btn-lg {
    line-height: 3;
}
.btn.btn-ghost {
    background: transparent;
    border: 1px solid white;
    color: #49D292;
}

/*for attractive button*/

.containerbtn { width: 500px; text-align: center; margin: auto;}
.button {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding-right: 30px;
    padding-left: 70px;
    position: relative;
    background-color: rgb(41,127,184);
    color: rgb(255,255,255);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    text-shadow: 0px 1px 0px rgba(0,0,0,0.5);
    -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#ff123852,Positive=true)";
    zoom: 1;
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#ff123852,Positive=true);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=2,Color=#33000000,Positive=true)";
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=2,Color=#33000000,Positive=true);
    bottom: 0px;
    right: 40%;
    position: relative;
    position: absolute;
    margin-bottom: 1%;
    
}

    .button span {
        position: absolute;
        left: 0;
        width: 50px;
        padding-left: 10px;
        background-color: rgba(0,0,0,0.5);
        -webkit-border-top-left-radius: 5px;
        -webkit-border-bottom-left-radius: 5px;
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-bottomleft: 5px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        border-right: 1px solid rgba(0,0,0,0.15);
        text-decoration:none;
    }
   

    .button:hover span, .button.active span {
        background-color: rgb(0,102,26);
        border-right: 1px solid rgba(0,0,0,0.3);
        text-decoration: none;
        
    }



.button.orange {
  background: #FF7F00;
}

.button.purple {
  background: #8e44ad;
}

.button.turquoise {
  background: #1abc9c;
}

.button.red {
  background: #e74c3c;
}

/* On screens that are 975px wide or less, the background color is blue */
.mymargin
{
    margin-top: 150px;    
}
@media screen and (max-width: 975px) {
    .mymargin {
        margin-top:90px;
    }
    
    }

.sliderpad {
    padding-top: 110px;
    padding-left: 0px;
    padding-right: 0px;
}

@media screen and (max-width: 975px) {
    .sliderpad {
        padding-top:80px;
    }
}
.mywidth {
    position: absolute;
    top: 20px;
    right: 0px;
    bottom: 0px;
    left: 230px;
    width: 85%;
    
}
@media screen and (max-width: 975px) {
    .mywidth {
        width:65%;
    }
}