/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: 'Hind Siliguri', sans-serif;
    color: #444;
}

a {
    color: #4fa6d5;
    text-decoration: none;
}

a:hover {
    color: #45beff;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {

}

* {
    outline: 0;
}

.required {
    border: 1px solid #FF0000;
    background-color: #fffdee;
}

.global-button {
    background-color: #00a99d;
    font-weight: normal;
    font-size: 16px;
    display: inline-block;
    padding: 16px 25px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #ffffff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: none;
    margin-top: 29px;
    text-transform: uppercase;
}

.global-button:hover {
    background-color: #63B9E8;
    color: #fff;
    text-decoration: none;
}

h1, h2 {
    color: #262626;
    font-weight: bold;
    font-size: 45px;
    margin-bottom: 40px;
}

p {
    line-height: 26px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background-color: #FFFFFF;
    z-index: 997;
    transition: all 0.5s;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0px 5px 20px #4646464f;
    -moz-box-shadow: 0px 5px 20px #4646464f;
    -webkit-box-shadow: 0px 5px 20px #4646464f;
}

#header.header-scrolled {
    background: rgb(255 255 255);
    height: 75px;
    top: 0;
    box-shadow: 0 0 5px #262626;
}

#header.header-scrolled.header-transparent img.img-fluid {
    width: 200px;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 4px 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 15px 0;
    margin: 0;
    width: 235px;
}

#header.header-scrolled.header-transparent {
    top: 0;
}

.header-inner {
    top: 40px;
}

@media (max-width: 1024px) {
    section.admin-menu {
        background-color: #262626;
        position: relative;
        top: 0;
        z-index: 9999;
        width: 100%;
        padding: 0;
    }


}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
    font-size: 15px;
    color: #262626;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 0 2px;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar li a:hover, .navbar .active a, .navbar .active a:focus, .navbar li:hover > a, ul.navbar-nav li.active a {
    color: #262626;
    background-color: #f5f5f5;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #1c3745;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #262626;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #262626;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle-admin {
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}


@media (max-width: 991px) {
    .mobile-nav-toggle,
    .mobile-nav-toggle-admin {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    .admin-menu .navbar li.dropdown:hover ul.dropdown-menu {
        display: inline-block;
        position: absolute;
        width: 300px;
        background-color: #fff;
        height: 200px;
        left: 0;
        margin: 0;
    }

    .navbar-mobile {
        position: fixed;
        overflow: hidden;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(17, 38, 48, 0.9);
        transition: 0.3s;
        z-index: 99;
    }


    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile .mobile-nav-toggle,
    .navbar-mobile .mobile-nav-toggle-admin {
        position: absolute;
        top: 29px;
        right: 15px;
        opacity: 1;
        color: #fff;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a {
        padding: 10px 20px;
        font-size: 15px;
        color: #1e4356;
    }

    .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
        color: #68A4C4;
    }

    .navbar-mobile .getstarted {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

    .navbar-mobile .dropdown ul li {
        min-width: 200px;
    }

    .navbar-mobile .dropdown ul a {
        padding: 10px 20px;
    }

    .navbar-mobile .dropdown ul a i {
        font-size: 12px;
    }

    .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
        color: #68A4C4;
    }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

    .admin-menu .navbar-mobile ul {
        background-color: #262626;
    }

    .admin-menu .navbar-mobile ul li {
        display: inline-block;
    }

}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section.welcome {
    padding: 130px 0;
}

.section-bg {
    background-color: #f3f8fa;
}

.section-title {
    text-align: center;
    padding-bottom: 15px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #68A4C4;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Welcome
--------------------------------------------------------------*/

section.welcome {
    clip-path: polygon(0 0, 100% 0, 100% 65%, 50% 100%, 0 65%);
    padding: 140px 0 110px 0;
    background-image: linear-gradient(to top, #63b9e8 0%, #00a99d 100%);
    color: #FFFFFF;
}
section.welcome a{
    color: #FFFFFF;
}
section.welcome a:hover{
    color: #f2f2f2;
}
.counter-section i {
    display: block;
    margin: 0 0 10px
}
.counter-section span.counter {
    font-size: 40px;
    line-height: 60px;
    display: block;
    letter-spacing: 2px;
    font-weight: 600;
}
.counter-title {
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}
.counter-icon {
    top: 25px;
    position: relative
}

.counter-subheadline span {
    float: right;
}

.medium-icon {
    font-size: 45px !important;
    margin-bottom: 15px !important;
}

.services-box {
    background-color: #fff;
    padding: 25px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

.services-box img {
    width: 100%;
}

.services-box h3 {
    margin-top: 20px;
}

/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/
.services {
    padding-bottom: 20px;
}

.services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 0 0 40px 0;
    background: #fff;
    box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
    transition: all 0.3s ease-in-out;
    text-align: center;
    border: 1px solid #fff;
}

.services .icon {
    margin: 0 auto 20px auto;
    padding-top: 17px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 72px;
    height: 72px;
}

.services .icon i {
    font-size: 36px;
    line-height: 1;
}

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .title a {
    color: #111;
}

.services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.services .icon-box-pink .icon {
    background: #fceef3;
}

.services .icon-box-pink .icon i {
    color: #ff689b;
}

.services .icon-box-pink:hover {
    border-color: #ff689b;
}

.services .icon-box-cyan .icon {
    background: #e6fdfc;
}

.services .icon-box-cyan .icon i {
    color: #3fcdc7;
}

.services .icon-box-cyan:hover {
    border-color: #3fcdc7;
}

.services .icon-box-green .icon {
    background: #eafde7;
}

.services .icon-box-green .icon i {
    color: #41cf2e;
}

.services .icon-box-green:hover {
    border-color: #41cf2e;
}

.services .icon-box-blue .icon {
    background: #e1eeff;
}

.services .icon-box-blue .icon i {
    color: #2282ff;
}

.services .icon-box-blue:hover {
    border-color: #2282ff;
}

.services {
    background-color: #f5f5f5;
}

/*coockie css*/

#Cookie {
    background-color: #262626;
    color: #FFFFFF;
    cursor: pointer;
    padding: 10px 36px;
    display: inline-block;
    text-transform: uppercase;
}

#cookie_bar a {
    color: #ffffff;
    text-decoration: underline;
}

#cookie_bar a.ctcc-more-info-link {
    color: #262626;
    border: 1px solid #262626;
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
}

.privacy-box h3 {
    text-transform: capitalize;
    margin-bottom: 15px;
}

#cookie_bar p {
    color: #262626;
}

#cookie_bar .col-sm-8 p {
    color: #262626;
    font-size: 18px;
    line-height: 30px;
}

.cookie-content {
    background: #FFF;
    position: fixed;
    bottom: 0;
    padding: 30px 30px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0px -5px 15px #d0d0d0;
}

#cookie_bar-privacy {
    height: auto;
}

#cookie_bar-privacy .cookie-content.clearfix {
    padding: 11px 50px;
}

#cookie_bar-privacy a.ctcc-more-info-link {
    color: #6c00a1;
    border: 1px solid #6c00a1;
    text-decoration: none;
    display: inline-block;
    padding: 15px 93px;
}

/*coockie css end*/

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
    padding-bottom: 10px;
}

.service-details .card {
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
}

.service-details .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
}

.service-details .card-img img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

.service-details .card-body {
    z-index: 10;
    background: #fff;
    border-top: 4px solid #fff;
    padding: 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    transition: 0.3s;
}

.service-details .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.service-details .card-title a {
    color: #1e4356;
    transition: 0.3s;
}

.service-details .card-text {
    color: #5e5e5e;
}

.service-details .read-more a {
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.3s;
}

.service-details .read-more a:hover {
    color: #68A4C4;
}

.service-details .card:hover img {
    transform: scale(1.1);
}

.service-details .card:hover .card-body {
    border-color: #68A4C4;
}

.service-details .card:hover .card-body .card-title a {
    color: #68A4C4;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    padding-bottom: 30px;
}

.contact .info-box {
    color: #444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    margin-bottom: 30px;
}

.contact .info-box i {
    font-size: 32px;
    color: #68A4C4;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #a2cce3;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #666;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px;
    margin-bottom: 20px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .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;
}

.contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
    background-color: #68A4C4;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
    padding: 0;
    margin-bottom: -6px;
}

.map iframe {
    width: 100%;
    height: 380px;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
    padding: 40px 0 20px 0;
}

.blog .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
    max-height: 440px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog .entry-img img.img-fluid {
    width: 100%;
}

.blog .entry .entry-title {
    font-size: 28px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
    color: #1e4356;
    transition: 0.3s;
}

.blog .entry .entry-title a:hover {
    color: #68A4C4;
}

.blog .entry .entry-meta {
    margin-bottom: 15px;
    color: #72afce;
}

.blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog .entry .entry-meta ul li + li {
    padding-left: 20px;
}

.blog .entry .entry-meta i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
}

.blog .entry .entry-meta a {
    color: #777777;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog .entry .entry-content p {
    line-height: 24px;
}

.blog .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}

.blog .entry .entry-content .read-more a {
    display: inline-block;
    background: #68A4C4;
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 14px;
}

.blog .entry .entry-content .read-more a:hover {
    background: #7aafcb;
}

.blog .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #1e4356;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
    color: #4c99c1;
    display: inline;
}

.blog .entry .entry-footer a {
    color: #255269;
    transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
    color: #68A4C4;
}

.blog .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog .entry .entry-footer .cats li {
    display: inline-block;
}

.blog .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog .entry .entry-footer .tags li {
    display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.blog .entry .entry-footer .share {
    font-size: 16px;
}

.blog .entry .entry-footer .share i {
    padding-left: 5px;
}

.blog .entry-single {
    margin-bottom: 30px;
}

.blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
    width: 120px;
    margin-right: 20px;
}

.blog .blog-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #1e4356;
}

.blog .blog-author .social-links {
    margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
    color: rgba(30, 67, 86, 0.5);
    margin-right: 5px;
}

.blog .blog-author p {
    font-style: italic;
    color: #b7b7b7;
}

.blog .blog-comments {
    margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
    font-weight: bold;
}

.blog .blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog .blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
    width: 60px;
}

.blog .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
    font-weight: bold;
    color: #444;
    transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
    color: #68A4C4;
}

.blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #1e4356;
    cursor: pointer;
}

.blog .blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog .blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: #2b607c;
    margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
    padding-left: 40px;
}

.blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.blog .blog-comments .reply-form p {
    font-size: 14px;
}

.blog .blog-comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #b1d0e1;
}

.blog .blog-comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #b1d0e1;
}

.blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #1e4356;
}

.blog .blog-comments .reply-form .btn-primary:hover {
    background-color: #255269;
}

.blog .blog-pagination {
    color: #387ea2;
}

.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog .blog-pagination li a {
    color: #1e4356;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
    background: #68A4C4;
}

.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
    color: #fff;
}


.blog-pagination {
    color: #387ea2;
}

.blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog-pagination li a {
    color: #1e4356;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-pagination li.active, .blog-pagination li:hover {
    background: #68A4C4;
}

.blog-pagination li.active a, .blog-pagination li:hover a {
    color: #fff;
}


.blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #1e4356;
    position: relative;
}

.blog .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #68A4C4;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.blog .sidebar .search-form form button i {
    line-height: 0;
}

.blog .sidebar .search-form form button:hover {
    background: #77adca;
}

.blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .categories ul li + li {
    padding-top: 10px;
}

.blog .sidebar .categories ul a {
    color: #1e4356;
    transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
    color: #68A4C4;
}

.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
    margin-top: 15px;
}

.blog .sidebar .recent-posts img {
    width: 80px;
    float: left;
}

.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
    color: #1e4356;
    transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
    color: #68A4C4;
}

.blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #aaaaaa;
}

.blog .sidebar .tags {
    margin-bottom: -10px;
}

.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .tags ul li {
    display: inline-block;
}

.blog .sidebar .tags ul a {
    color: #3f8db5;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #e4eff5;
    display: inline-block;
    transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #68A4C4;
    background: #68A4C4;
}

.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: #bedae8;
    font-size: 14px;
}

.blog-content.group-box {
    padding: 30px;
}

.section-blog .swiper-slide .item-box {
    background-color: #fff;
}

.section-blog .blog-content.group-box a {
    color: #2d3192;
    font-size: 25px;
    margin-bottom: 4px;
}

.section-blog .blog-content.group-box h3 {
    margin-bottom: 10px;
}

.section-blog .blog-content.group-box .date {
    margin-bottom: 10px;
}

.section-blog .blog-content.group-box a.global-button {
    color: #fff;
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 0;
}

.latest-blog a.global-button.allnewsblog {
    margin-top: 60px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #262626;
    color: #fff;
    font-size: 14px;
}

#footer .copyright {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #4e4e4e;
}

#footer .logo img {
    max-width: 250px;
    margin: 30px;
}

.footer-top ul.navbar-nav li {
    padding: 15px;
    color: #FFFFFF;
}
.footer-top ul.navbar-nav li.active a, .footer-top ul.navbar-nav li a:hover {
    color: #00A99D;
    border-bottom: 1px solid #63B9E8;
    background-color: transparent;
}
.footer-top ul.navbar-nav li a {
    color: #FFFFFF;
}
section.page {
    padding-top: 125px;
    min-height: calc(100vh - 269px);
}
section.page h2 {
    font-size: 32px;
}


/* Home Contact */
.home-contact {
    background-image: url(../images/homecontact-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.home-contact h2 {
    color: #fff;
    margin-bottom: 8px;
}

.home-contact p {
    color: #fff;
}

.home-contact .php-email-form {
    margin-top: 50px;
}

.home-contact .php-email-form label {
    color: #fff;
    margin-bottom: 6px;
}

.home-contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.home-contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.home-contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.home-contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.home-contact .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;
}

.home-contact.php-email-form .form-group {
    margin-bottom: 20px;
}

.home-contact .php-email-form input, #contact .php-email-form textarea {
    padding: 10px 14px;
    border-radius: 5px;
    box-shadow: none;
    font-size: 15px;
}

.home-contact .php-email-form input::focus, #contact .php-email-form textarea::focus {
    background-color: #18d26e;
}

.home-contact .php-email-form button[type=submit] {
    background: #03c4eb;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
    border-radius: 45px;
    text-transform: uppercase;
    margin-top: 20px;
}

.home-contact .php-email-form button[type=submit]:hover {
    background: #13a456;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Card General
--------------------------------------------------------------*/
@media (max-width: 767px) {
    .card-box-a,
    .card-box-b,
    .card-box-c,
    .card-box-d {
        margin-bottom: 2.5rem;
    }
}

.card-box-a span,
.card-box-b span,
.card-box-c span,
.card-box-d span {
    line-height: 0;
}

@media (min-width: 768px) {
    .grid .card-box-a,
    .grid .card-box-b,
    .grid .card-box-c,
    .grid .card-box-d {
        margin-bottom: 2.5rem;
    }
}

.card-box-a,
.card-box-b,
.card-box-d {
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.card-box-a .img-a,
.card-box-a .img-b,
.card-box-b .img-a,
.card-box-b .img-b {
    transition: .8s all ease-in-out;
}

@media (min-width: 768px) {
    .card-box-a:hover .img-a,
    .card-box-a:hover .img-b,
    .card-box-b:hover .img-a,
    .card-box-b:hover .img-b {
        transform: scale(1.2);
    }
}

@media (min-width: 768px) {
    .card-box-a .price-a,
    .card-box-b .price-a {
        font-size: .9rem;
    }
}

@media (min-width: 992px) {
    .card-box-a .price-a,
    .card-box-b .price-a {
        font-size: 1rem;
    }
}

.card-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card-shadow {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.card-shadow:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
}

/*======================================
//--//-->   NEWS - CARD-B
======================================*/
.card-header-b {
    padding: 1rem;
    color: #ffffff;
    position: absolute;
    bottom: 20px;
    z-index: 2;
}

@media (min-width: 768px) {
    .card-header-b {
        bottom: 0;
    }
}

@media (min-width: 992px) {
    .card-header-b {
        bottom: 20px;
    }
}

.card-header-b .category-b {
    font-size: .9rem;
    background-color: #2eca6a;
    padding: .3rem .7rem;
    color: #313131;
    letter-spacing: 0.030em;
    border-radius: 50px;
    text-decoration: none;
}

.card-header-b .title-2 {
    margin-bottom: 0;
    padding: .6rem 0;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .card-header-b .title-2 {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .card-header-b .title-2 {
        font-size: 1.6rem;
    }
}

.card-header-b .title-2 a {
    color: #ffffff;
    text-decoration: none;
}

.card-header-b .date-b {
    color: #d8d8d8;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .card-header-b .date-b {
        font-size: .9rem;
    }
}

@media (min-width: 992px) {
    .card-header-b .date-b {
        font-size: 1rem;
    }
}

/*------/ News Single /------*/
.post-information {
    padding: 3rem 0;
}

.post-content {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
}

.post-content .post-intro {
    font-size: 1.7rem;
    font-weight: 300;
    margin-bottom: 4rem;
    line-height: 1.6;
    color: #262626;
    font-weight: 400;
}

.post-content p {
    margin-bottom: 1.7rem;
}

.post-content .blockquote {
    padding: 1rem 3rem 1.7rem 3rem;
    border-left: 3px solid #2eca6a;
    color: #262626;
}

.post-content .blockquote footer {
    text-align: left;
    padding: 0;
}

.post-footer {
    padding: 3rem 0 4rem;
}

.post-share .socials {
    display: inline-block;
}

.post-share .socials li {
    margin-left: .6rem;
}

/*------/ Comments /------*/
.box-comments .list-comments li {
    padding-bottom: 3.5rem;
}

.box-comments .list-comments .comment-avatar {
    display: table-cell;
    vertical-align: top;
}

.box-comments .list-comments .comment-avatar img {
    width: 80px;
    height: 80px;
}

.box-comments .list-comments .comment-author {
    font-size: 1.3rem;
}

.news-details {
    padding-bottom: 50px;
}

@media (min-width: 768px) {
    .box-comments .list-comments .comment-author {
        font-size: 1.5rem;
    }
}

.box-comments .list-comments .comment-details {
    display: table-cell;
    vertical-align: top;
    padding-left: 25px;
}

.box-comments .list-comments .comment-description {
    padding: .8rem 0 .5rem 0;
}

.box-comments .list-comments a {
    color: #262626;
}

.box-comments .list-comments span {
    display: block;
    color: #2B2A2A;
    font-style: italic;
}

.box-comments .comment-children {
    margin-left: 40px;
}

/*------/ Overlay /------*/
.overlay-a {
    text-decoration: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.carousel-pagination {
    margin-top: 10px;
    text-align: center;
}

.carousel-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 10px;
    background-color: #555;
    margin: 0 4px;
    border-radius: 0;
    opacity: 1;
    transition: 0.3s;
}

.carousel-pagination .swiper-pagination-bullet-active {
    background-color: #2eca6a;
    width: 36px;
}

.nav-arrow-a {
    text-decoration: none;
}

.nav-arrow-a .owl-arrow .owl-nav {
    font-size: 1.8rem;
    margin-top: -110px;
}

.nav-arrow-a .owl-arrow .owl-nav .owl-next {
    margin-left: 15px;
}

.nav-arrow-b .owl-arrow .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.2rem;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev,
.nav-arrow-b .owl-arrow .owl-nav .owl-next {
    padding: .7rem 1.5rem !important;
    display: inline-block;
    transition: all 0.6s ease-in-out;
    color: #ffffff;
    background-color: #2eca6a;
    opacity: .9;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev.disabled,
.nav-arrow-b .owl-arrow .owl-nav .owl-next.disabled {
    transition: all 0.6s ease-in-out;
    color: #ffffff;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev:hover,
.nav-arrow-b .owl-arrow .owl-nav .owl-next:hover {
    background-color: #26a356;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-next {
    margin-left: 0px;
}

.section-news .img-box-b .img-fluid {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.section-news .btn-get-started {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    color: #262626;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #68A4C4;
    margin: 50px 10px 10px;
}

.section-news .btn-get-started:hover {
    background: #68A4C4;
    color: #fff;
    text-decoration: none;
}

/*------/ Intro Single /------*/
.intro-single {
    padding: 12rem 0 3rem;
}

@media (max-width: 767px) {
    .intro-single {
        padding-top: 9rem;
    }
}

.intro-single .title-single-box {
    padding: 1rem 0 1rem 2rem;
}

.intro-single .title-single-box {
    border-left: 3px solid #2eca6a;
}

.intro-single .title-single-box .title-single {
    font-weight: 600;
    font-size: 2.2rem;
}

@media (min-width: 768px) {
    .intro-single .title-single-box .title-single {
        font-size: 2.1rem;
    }
}

@media (min-width: 992px) {
    .intro-single .title-single-box .title-single {
        font-size: 2.5rem;
    }
}

.intro-single .breadcrumb-box {
    padding: 1rem 0 0 .5rem;
}

.intro-single .breadcrumb {
    background-color: transparent;
    padding-right: 0;
    padding-left: 0;
}


/*------/ Pagination-a /------*/
.pagination-a {
    text-decoration: none;
}

.pagination-a .pagination .page-link {
    margin: 0 .2rem;
    border-color: transparent;
    padding: .5rem .8rem;
    color: #262626;
}

.pagination-a .pagination .page-link:hover, .pagination-a .pagination .page-link:active, .pagination-a .pagination .page-link:focus {
    background-color: #2eca6a;
}

.pagination-a .pagination .page-link span {
    font-size: 1.2rem;
}

.pagination-a .pagination .next .page-link {
    padding: .4rem .9rem;
}

.pagination-a .pagination .page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination-a .pagination .page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination-a .pagination .page-item.disabled .page-link {
    padding: .4rem .9rem;
    color: #555555;
}

.pagination-a .pagination .page-item.active .page-link {
    background-color: #2eca6a;
}


.page-item.active .page-link{
    background-color: #63b9e8;
    border-color: #63b9e8;
}
.page-link {
    color: #262626;
}
.page-link:hover{
    color: #00A99D;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .accordion-collapse {
    border: 0;
}

.faq .accordion-button:not(.collapsed) {
    background: none;
    color: #4b6978;
    border-bottom: 0;
    box-shadow: none;

}

.faq .accordion-button {
    padding: 0px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    color: #444444;
    text-align: left;
    background-color: #f7f7f7;
    margin-bottom: 0px;
}

.accordion-flush .accordion-item {
    border: 0;
    background-color: #f7f7f7;
    margin-bottom: 20px;
    padding: 20px;
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.faq .accordion-body {
    padding: 0 0 25px 0;
    border: 0;
    padding-top: 10px;
}

.faq-search-icon {
    right: 15px;
    top: 14px;
    cursor: pointer;
}


#quick_contact .form-group {
    display: inherit;
    margin-bottom: 10px;
}


.events {
    padding: 100px 0;
}

.events .nav-tabs {
    border: 0;
    text-align: center;
    display: inline-block;
    box-shadow: 0 0 20px #d4d4d4;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 0 60px;
}

.events .nav-tabs li {
    border: 0;
    color: #FFFFFF;
    font-size: 16px;
    display: inline-block;
    float: none;
}

.events .nav-tabs li a {
    background-color: transparent;
    border: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    padding: 15px 30px;
    display: block;
}

.events.nav-tabs > li.active > a,
.events .nav-tabs > li.active > a:focus,
.events .nav-tabs > li.active > a:hover,
.events .nav-tabs li a:hover {
    border: 0;
    color: #262626;
    cursor: pointer;
}

.events .nav-tabs li.active a {
    background: -webkit-linear-gradient(180deg, rgba(37, 172, 225, 1) 0%, rgba(31, 109, 173, 1) 100%);
    background: -moz-linear-gradient(270deg, rgba(37, 172, 225, 1) 0%, rgba(31, 109, 173, 1) 100%);
    background: linear-gradient(270deg, rgba(37, 172, 225, 1) 0%, rgba(31, 109, 173, 1) 100%);
    color: #FFFFFF;
    margin: 0;

}

.filter {
    margin-bottom: 30px
}

.filter .form-control {
    border-radius: 5px;
    font-weight: 400;
    line-height: 39px;
}

.filter .btn {
    border: 1px solid #D7D7D7;
    border-radius: 5px;
    color: #8C8C8C;
    text-transform: none;
    font-weight: 400;
    font-size: 18px;
    padding: 12px 20px;
    background: #ffffff;
}

.events .tab-content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.event-grid {
    border: 1px solid #E9E9E9;
    border-radius: 5px;
    overflow: hidden;
}

.event-grid .title {
    margin-bottom: 30px;
    margin-top: 0;
}

.event-grid .cat_name {
    background-color: #548AB7;
    position: absolute;
    top: 20px;
    left: 45px;
    border-radius: 25px;
    color: #FFFFFF;
    padding: 0 15px;
    font-weight: 700;
    font-size: 13px;
}

.event-grid .desc {
    padding: 30px;
    font-size: 18px;
}

.event-details {
    font-size: 18px;
}

.event-sidebar {
    background-color: #F6F6F6;
    border: 1px solid #EAEAEA;
    padding: 40px;
    font-size: 18px;
}

.event-sidebar li {
    background-image: url(../images/bullet.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
    padding-left: 30px;
    margin-bottom: 15px;
}

.event-details .btn-submit {
    margin: 20px 0;
}

#eventRegistration h2 {
    margin-bottom: 30px;
}

#eventRegistration .btn-submit {
    margin: 0;
}

.other-events {
    background-color: #F5F5F5;
    margin-top: 50px;
    padding: 60px 0;
}

.other-events h2 {
    margin-bottom: 30px;
    margin-top: 0;
}

.blog-row {
    padding-bottom: 15px;
    border-bottom: 2px solid #d7d7d778;
    padding-top: 15px;
}

/* Event */

.description-event {
    margin-top: 60px;
}

.eventdetailsnew h2 {
    font-size: 35px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.eventsummery p {
    font-size: 16px;
    margin-bottom: 10px;
}

.eventsummery .social.social-links {
    margin-top: 25px;
}

.eventsummery .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #f3f3f3;
    color: #191b22;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.eventsummery .social-links a:hover {
    background: #68A4C4;
    color: #fff;
    text-decoration: none;
}

.Eventgallery .gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.Eventgallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.Eventgallery .gallery-item:hover img {
    transform: scale(1.1);
}

.related-event-section .desc {
    background-color: #fff;
}

.related-event-section .event-grid .title {
    margin-bottom: 15px;
}

.related-event-section .desc p {
    margin-bottom: 1px;
    color: #414141;
    font-size: 16px;
}

.related-event-section .event-grid .title a {
    color: #222931;
    font-size: 25px;
}

.related-event-section .event-grid .title a:hover {
    color: #2d3192;
}

.page-banner img {
    width: 100%;
}

.page-banner .banner-text h2 {
    bottom: 40px;
    background-color: rgb(0 46 93 / 78%);
    position: absolute;
    color: #fff;
    text-transform: lowercase;
    border-bottom: 4px solid #ec4c50;
    padding: 10px 33px 10px 10px;
    margin-bottom: 0;
    line-height: 35px;
    font-size: 30px;
}


/*Write by imran*/

.doctor_list .items img {
    max-width: 140px;
    margin: 5px auto;
    border: 4px double #D7D7D7;
}

.doctor_list .items .card-title.name {
    color: #262626;
    font-size: 19px;
    font-weight: 700;
}

.doctor_list .items .card-text {
    font-size: 14px;
    line-height: 20px;
}

.doctor_list .items .card-text.specialist_on {
    font-size: 15px;
    font-weight: 600;
    color: #63b9e8;
}

.doctor_list .items .card-text.designation {
    font-weight: 600;
}

.doctor_list .items .last_update {
    font-size: 12px;
}

.doctor_list p.card-text {
    margin-bottom: 5px;
}


/*hospital list*/

.hospital_list .items img {
    max-width: 140px;
    margin: 5px auto;
    border: 4px double #D7D7D7;
}

.hospital_list .items .card-title.name {
    color: #262626;
    font-size: 16px;
    font-weight: 700;
}

.hospital_list .items .card-text {
    font-size: 14px;
    line-height: 20px;
}

.hospital_list .items .card-text.specialist_on {
    font-size: 15px;
    font-weight: 600;
    color: #63b9e8;
}

.hospital_list .items .card-text.designation {
    font-weight: 600;
}

.hospital_list .items .last_update {
    font-size: 12px;
}

.hospital_list p.card-text {
    margin-bottom: 5px;
}

.btn_view_chambers {
    background-color: #63b9e8;
    border-color: #63b9e8;
}

.btn_view_chambers:hover, .btn_view_chambers:focus {
    background-color: #00a99d;
    border-color: #00a99d;
}

.ads_item {
    margin-bottom: 5px;
}

.doctor_details_left .card-title.name {
    color: #00a99d;
    font-size: 20px;
    font-weight: 700;
}

.doctor_details_left .card-text {
    font-size: 14px;
    line-height: 20px;
}

.doctor_details_left .card-text.specialist_on {
    font-size: 15px;
    font-weight: 600;
    color: #63b9e8;
}

.doctor_details_left .card-text.designation {
    font-weight: 600;
}

.doctor_details_left .last_update {
    font-size: 12px;
}

.doctor_details_left p.card-text {
    margin-bottom: 5px;
}

.doctor_details_center h4.title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: 600;
}

.doctor_details_center hr {
    margin: 5px 0;
}

.card.chamber_item {
    margin-bottom: 15px;
}

.chamber_item h6 {
    color: #63B9E8;
    text-transform: uppercase;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da;
    border-radius: 3px;
}

.select2-container .select2-selection--single {
    height: 42px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}

.list_page_filter_area {
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 4px;
    padding: 10px;
}

/*doctors home start*/
section.doctors_home {
    padding: 30px 0;
}

section.doctors_home h2.title {
    padding: 0;
    font-size: 28px;
    text-transform: uppercase;
    color: #00a99d;
}
/*doctors home end*/

/* hospitals_home start */
section.hospitals_home {
    padding: 30px 0;
}
section.hospitals_home h2.title {
    padding: 0;
    font-size: 28px;
    text-transform: uppercase;
    color: #00a99d;
}
/* hospitals_home end */

