/*
@File: Torado Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the template.

This files table contents are outlined below>>>>>>>>
****************************************************
* - DEFAULT AREA STYLE - *

** - Global Style

** - Top Header Area CSS
** - Navbar Area CSS
** - Preloader CSS

* - HOME PAGE STYLE - *

** - Banner Area CSS
** - Home Area Two CSS
** - Hero Area Three CSS

* - OTHER STYLE AREA - *

** - Preloader Area CSS
** - Go Top CSS

** - About Page CSS
** - Department Page CSS
** - Department Details Page CSS
** - Doctor Time Table Area CSS
** - Patients & Visitors Page CSS
** - Appointment Page CSS
** - Testimonials Page CSS
** - Emergency Services Page CSS
** - Gallery Page CSS
** - Blog Page CSS
** - Blog Details Page CSS
** - FAQ Page CSS
** - Pricing Page CSS
** - Contact Us Page CSS
** - Login Register Area Style
** - Privacy Policy Area CSS
** - 404 Error Page CSS
** - Our Terms & Conditions Page CSS

****************************************************
*/
/* Global  Style */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
.preview-floating-buttons{
    display:none !important;
}
.primary-bg-color{
    background-color : #1a191a !important;
}
.primary-text-color{
    color : #1a191a !important;
}
.secondary-text-color{
    color : #237afc !important;
}

body {
    color: #415674;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #415674;
    text-decoration: none;
    transition: all ease 0.5s;
}
a:hover {
    color: #01ca99;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: #1b2336;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #415674;
}
p:last-child {
    margin-bottom: 0;
}

.bg-color-1b2336 {
    background-color: #1b2336;
}

.bg-color-01ca99 {
    background-color: #01ca99;
}

.bg-color-0f1514 {
    background-color: #0f1514;
}

.bg-color-f7f7f7 {
    background-color: #f7f7f7;
}

.bg-color-237afc {
    background-color: #237afc;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.ptb-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

/*
Default Area Style
======================================================*/
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title .sub-title {
    display: block;
    font-size: 18px;
    color: #01ca99;
    margin-bottom: 10px;
}
.section-title .two-style {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #237afc;
    margin-bottom: 10px;
}
.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 42px;
}

.section-heading {
    margin-bottom: 40px;
}
.section-heading .sub-title {
    display: block;
    font-size: 18px;
    color: #01ca99;
    margin-bottom: 10px;
}
.section-heading .two-style {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #237afc;
    margin-bottom: 10px;
}
.section-heading h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 46px;
    margin-bottom: 15px;
}

.common-btn {
    display: inline-block;
    font-weight: 500;
    position: relative;
    background-color: #01ca99;
    color: #ffffff;
    border-radius: 5px;
    border: none;
    text-align: center;
    transition: all ease 0.5s;
    padding-top: 12px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 12px;
    z-index: 1;
}
.common-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #237afc;
    z-index: -1;
    opacity: 0;
    border-radius: 5px;
    transition: all ease 0.5s;
}
.common-btn:hover {
    color: #ffffff;
}
.common-btn:hover::before {
    opacity: 1;
    height: 100%;
    visibility: visible;
}

.read-more {
    display: inline-block;
    color: #1b2336;
    position: relative;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}
.read-more i {
    position: absolute;
    top: 3px;
    right: -22px;
    font-size: 20px;
    color: #1b2336;
    transition: all ease 0.5s;
}

/*
Search Button
======================================================*/
.search-can .offcanvas {
    --bs-offcanvas-height: 150px;
}
.search-can .offcanvas-header {
    position: relative;
}
.search-can .offcanvas-header .btn-close {
    position: absolute;
    top: 15px;
    right: 20px;
    opacity: 1;
}
.search-can .offcanvas-header .btn-close:focus {
    box-shadow: none;
    border-radius: 0;
    outline: 0;
}
.search-can .offcanvas-body {
    outline: 0;
}
.search-can .offcanvas-body .search-form {
    position: relative;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.search-can .offcanvas-body .search-form .form-control {
    box-shadow: none;
    border-radius: 5px;
    background-color: #f3f3f3;
    border: 1px solid #f3f3f3;
    padding: 12px 20px;
    height: 50px;
    transition: all ease 0.5s;
}
.search-can .offcanvas-body .search-form .form-control:focus {
    border: 1px solid #01ca99;
}
.search-can .offcanvas-body .search-form .search-button {
    position: absolute;
    top: 12px;
    right: 10px;
    border: none;
    font-size: 20px;
    color: #01ca99;
    background-color: transparent;
}

/*
Search Bar CSS
======================================================*/
.search-progress {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}
.search-progress .can-btn {
    border: none;
    background-color: transparent;
    font-size: 25px;
    position: relative;
    top: 4px;
}
.search-progress .phone {
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}
.search-progress .phone::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 25px;
    background-color: #1b2336;
    opacity: 0.24;
}
.search-progress .phone a {
    font-weight: 500;
    color: #237afc;
}
.search-progress .phone a:hover {
    color: #1b2336;
}
.search-progress .phone .phone-content {
    display: inline-block;
}
.search-progress .phone .phone-content a {
    color: #1b2336;
    margin-bottom: -2px;
    padding-left: 5px;
    position: relative;
    bottom: -1px;
}
.search-progress .phone .phone-content a:hover {
    color: #237afc;
}
.search-progress .menu {
    margin-left: 15px;
}

/*
Modal CSS
======================================================*/
.popup-modal .modal-dialog {
    max-width: 700px;
    position: relative;
}
.popup-modal .modal-dialog .modal-content {
    border: none;
    background-color: transparent;
}
.popup-modal .modal-dialog .background-video {
    width: 100%;
    height: 450px;
    display: block;
    border-radius: 10px;
}
.popup-modal .modal-dialog .modal-header {
    padding: 0;
    border: none;
}
.popup-modal .modal-dialog .modal-header .btn-close {
    right: 0px;
    top: -25px;
    position: absolute;
    filter: brightness(0) saturate(100%) invert(93%) sepia(0%) saturate(7473%) hue-rotate(56deg) brightness(108%) contrast(108%);
    opacity: 1;
}
.popup-modal .modal-dialog .modal-header .btn-close:focus {
    outline: 0;
    box-shadow: unset;
}
.popup-modal .modal-dialog .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0;
}
.popup-modal .modal-dialog .modal-body iframe {
    border: unset !important;
    width: 100%;
    height: 450px;
    display: block;
    border-radius: 10px;
}
.popup-modal .modal-dialog .modal-body .ytp-title-link.yt-uix-sessionlink {
    display: none !important;
}

/*
Go Top Button CSS
======================================================*/
.scrolltop-wrap a {
    position: fixed;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: all;
    outline: none;
    overflow: hidden;
    width: 50px;
    height: 50px;
    line-height: 54px;
    font-size: 35px;
    right: 15px;
    bottom: 15px;
    text-align: center;
    color: #ffffff;
    background-color: #01ca99;
    border: 1px solid #01ca99;
    border-radius: 50%;
    transition: all ease 0.5s;
    z-index: 3;
}
.scrolltop-wrap a:hover {
    background-color: #1b2336;
    color: #ffffff;
}
.scrolltop-wrap a #scrolltop-arrow {
    transform: scale(0.66);
    transform-origin: center;
}

/*
Preloader CSS
======================================================*/
.loader-wrapper {
    --line-width: 5px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
.loader-wrapper .loader {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: var(--line-width) solid transparent;
    border-top-color: #1b2336;
    border-radius: 100%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
    z-index: 1001;
}
.loader-wrapper .loader::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: var(--line-width) solid transparent;
    border-top-color: #01ca99;
    border-radius: 100%;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
.loader-wrapper .loader::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: var(--line-width) solid transparent;
    border-top-color: #237afc;
    border-radius: 100%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
.loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    background-color: #ffffff;
    width: 51%;
    height: 100%;
    z-index: 1000;
}
.loader-wrapper .loader-section.section-left {
    left: 0;
}
.loader-wrapper .loader-section.section-right {
    right: 0;
}

.loaded .loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded .loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded .loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded .loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}
.loaded .loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*
Top Header Area CSS
======================================================*/
.top-header-area {
    padding-top: 10px;
}
.top-header-area .container-fluid {
    max-width: 1620px;
}
.top-header-area .top-header-content {
    padding-bottom: 10px;
}
.top-header-area .top-header-content .header-info ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.top-header-area .top-header-content .header-info ul li {
    display: inline-block;
    position: relative;
    margin-right: 20px;
    padding-right: 20px;
    color: #e2e2e2;
    transition: all ease 0.5s;
    font-size: 14px;
    font-weight: 400;
}
.top-header-area .top-header-content .header-info ul li:last-child {
    margin-right: 0;
    padding-right: 0;
}
.top-header-area .top-header-content .header-info ul li:last-child::before {
    display: none;
}
.top-header-area .top-header-content .header-info ul li a {
    color: #e2e2e2;
}
.top-header-area .top-header-content .header-info ul li a:hover {
    color: #01ca99;
}
.top-header-area .top-header-content .header-info ul li b {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}
.top-header-area .top-header-content .header-info ul li::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 20px;
    background-color: #ffffff;
    opacity: 0.3;
}
.top-header-area .top-header-content .header-info ul li:hover {
    color: #01ca99;
}
.top-header-area .top-header-content .header-right {
    text-align: end;
}
.top-header-area .top-header-content .header-right .login {
    display: inline-block;
    margin-right: 12px;
    padding-right: 10px;
    position: relative;
}
.top-header-area .top-header-content .header-right .login::before {
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    width: 1px;
    height: 20px;
    background-color: #ffffff;
    opacity: 0.3;
}
.top-header-area .top-header-content .header-right .login .world-icon {
    position: absolute;
    top: 9px;
    left: -10px;
    width: 15px;
    height: 15px;
}
.top-header-area .top-header-content .header-right .login select.form-select {
    background: transparent;
    color: #e2e2e2;
    border: none;
    border-radius: 0;
    font-size: 14px;
    background-image: url("..//images/svg/down.svg");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 10px 12px;
    padding-right: 30px;
}
.top-header-area .top-header-content .header-right .login select.form-select:focus {
    border: 0;
    box-shadow: unset;
}
.top-header-area .top-header-content .header-right .login select.form-select option {
    color: #1b2336;
}
.top-header-area .top-header-content .header-right .flow {
    display: inline-block;
    position: relative;
}
.top-header-area .top-header-content .header-right .flow ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.top-header-area .top-header-content .header-right .flow ul li {
    display: inline-block;
    padding-right: 10px;
    line-height: 0;
}
.top-header-area .top-header-content .header-right .flow ul li:last-child {
    padding-right: 0;
}
.top-header-area .top-header-content .header-right .flow ul li p {
    font-size: 14px;
    color: #666666;
}
.top-header-area .top-header-content .header-right .flow ul li a {
    position: relative;
    bottom: 0px;
}
.top-header-area .top-header-content .header-right .flow ul li a img {
    max-width: 15px;
}

/* ==============
    Navbar CSS
==================================== */
.wile-navbar {
    background-color: #ffffff;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}
.wile-navbar .container-fluid {
    max-width: 1620px;
}
.wile-navbar.sticky {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    position: -webkit-sticky;
    position: sticky;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    border-bottom: 1px solid #ffffff;
}
.wile-navbar .navbar-brand {
    padding: 0;
    margin-right: 30px;
}
.wile-navbar .navbar-nav .nav-item a {
    font-size: 16px;
    color: #221638;
    line-height: 1;
    position: relative;
    font-weight: 500;
    padding: 0;
    margin-left: 15px;
    margin-right: 15px;
}
.wile-navbar .navbar-nav .nav-item a.dropdown-toggle {
    position: relative;
    padding-right: 16px;
}
.wile-navbar .navbar-nav .nav-item a.dropdown-toggle::after {
    display: none;
}
.wile-navbar .navbar-nav .nav-item a.dropdown-toggle::before {
    content: "\ea4a";
    position: absolute;
    top: -2px;
    right: -2px;
    font-family: boxicons !important;
    line-height: 1;
    font-size: 20px;
    font-weight: 500;
}
.wile-navbar .navbar-nav .nav-item a:hover, .wile-navbar .navbar-nav .nav-item a:focus, .wile-navbar .navbar-nav .nav-item a.active {
    color: #237afc;
}
.wile-navbar .navbar-nav .nav-item a i {
    font-size: 18px;
    line-height: 0;
    position: relative;
    top: 4px;
}
.wile-navbar .navbar-nav .nav-item .dropdown-menu {
    border: none !important;
}
.wile-navbar .navbar-nav .nav-item .dropdown-menu li {
    border-bottom: 1px dotted #f2f2f2;
}
.wile-navbar .navbar-nav .nav-item .dropdown-menu li a {
    padding-top: 16px;
    padding-left: 0;
    padding-right: 16px;
    padding-bottom: 16px;
    font-size: 15px;
    font-weight: 500;
}
.wile-navbar .navbar-nav .nav-link {
    text-transform: capitalize;
    color: #1b2336;
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 500;
    font-size: 16px;
}
.wile-navbar .navbar-nav .nav-link.active, .wile-navbar .navbar-nav .nav-link > .show, .wile-navbar .navbar-nav .nav-link:hover {
    color: #01ca99;
}
.wile-navbar .navbar-nav .dropdown-item {
    padding: 10px 15px;
}
.wile-navbar .navbar-nav .dropdown-item.active, .wile-navbar .navbar-nav .dropdown-item > .show, .wile-navbar .navbar-nav .dropdown-item:hover {
    color: #01ca99;
}
.wile-navbar .navbar-nav.active, .wile-navbar .navbar-nav > .show, .wile-navbar .navbar-nav:hover {
    color: #01ca99;
}
.wile-navbar .dropdown-menu {
    border: none !important;
}
.wile-navbar .dropdown-menu li a {
    padding: 16px;
    font-size: 15px;
    font-weight: 500;
}
.wile-navbar .dropdown-item {
    background-color: #ffffff;
    padding: 0px 0;
    margin: 0 0 0;
    border: 0px solid transition !important;
    border: 0px solid rgba(0, 0, 0, 0.15);
    border-radius: 0px;
    box-shadow: none !important;
}
.wile-navbar .dropdown-item.active {
    color: #01ca99;
}
.wile-navbar .collapse ul > li:hover > a {
    background-color: transparent;
}
.wile-navbar .collapse ul > ul > li:hover > a .show .dropdown-menu > li > a:focus .show .dropdown-menu > li > a:hover, .wile-navbar .collapse ul > ul > li:hover > a .show .dropdown-menu > li > a .navbar .show .dropdown-menu > li > a:hover, .wile-navbar .collapse ul > ul > li:hover > .navbar .show .dropdown-menu > li > a:focus .show .dropdown-menu > li > a:hover, .wile-navbar .collapse ul > ul > li:hover > .navbar .show .dropdown-menu > li > a .navbar .show .dropdown-menu > li > a:hover {
    background-color: #ffffff;
    color: #01ca99;
}

/* second level */
.wile-navbar .collapse ul ul ul > li:hover > a {
    background-color: #ffffff;
    color: #01ca99;
}

/* third level */
.wile-navbar .collapse ul ul {
    background-color: #ffffff;
}
.wile-navbar .collapse ul ul.dropdown-menu {
    background-color: #ffffff;
}

.wile-navbar .collapse ul ul ul {
    background: #f5f5f5;
}
.wile-navbar .collapse ul ul ul.dropdown-menu {
    background: #f5f5f5;
}

.wile-navbar .collapse ul ul ul ul {
    background: #f5f5f5;
}
.wile-navbar .collapse ul ul ul ul.dropdown-menu {
    background: #f5f5f5;
}

/* Drop-down menu work on hover */
@media only screen and (min-width: 991px) {
    .wile-navbar .dropdown > .dropdown-menu {
        transition: all 0.5s;
        overflow: hidden;
        transform-origin: top center;
        transform: scale(1, 0);
        display: block;
        margin-top: 20px;
        padding: 0;
    }
    .wile-navbar .dropdown:hover > .dropdown-menu {
        transform: scale(1);
    }
    .wile-navbar .dropdown ul li:hover > ul {
        display: block;
    }
    .wile-navbar .collapse ul li {
        position: relative;
    }
    .wile-navbar .collapse ul ul {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 250px;
        display: none;
    }
    .wile-navbar .collapse ul ul li {
        position: relative;
    }
    .wile-navbar .collapse ul ul li {
        position: relative;
    }
    .wile-navbar .collapse ul ul li:hover > ul {
        display: block;
    }
    .wile-navbar .collapse ul ul ul {
        position: absolute;
        top: 0;
        left: 100%;
        min-width: 250px;
        display: none;
    }
    .wile-navbar .collapse ul ul ul li {
        position: relative;
    }
    .wile-navbar .collapse ul ul ul li:hover ul {
        display: block;
    }
    .wile-navbar.collapse ul ul ul ul {
        position: absolute;
        top: 0;
        left: -100%;
        min-width: 250px;
        display: none;
        z-index: 1;
    }
}
.header-navbar {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    margin: auto;
    z-index: 2;
}
.header-navbar .wile-navbar.style {
    background-color: transparent;
}
.header-navbar .wile-navbar.style.sticky {
    position: fixed;
}
.header-navbar .wile-navbar.style.sticky {
    background-color: #ffffff;
}

/* ==============
    End Navbar CSS
==================================== */
/*
Banner Area CSS
======================================================*/
.banner-area {
    background: linear-gradient(66.78deg, rgba(240, 234, 252, 0.48) 9.51%, rgba(191, 230, 253, 0.28) 48.91%, rgba(140, 226, 255, 0.28) 84.99%);
    padding-top: 230px;
    padding-bottom: 100px;
}
.banner-area .container-fluid {
    max-width: 1620px;
}
.banner-area .banner-content {
    position: relative;
}
.banner-area .banner-content span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #01ca99;
    margin-bottom: 2px;
}
.banner-area .banner-content h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 82px;
    margin-bottom: 10px;
}
.banner-area .banner-content p {
    font-size: 18px;
    margin-right: -30px;
    margin-bottom: 28px;
}
.banner-area .banner-content .banner .banner-btn {
    display: inline-block;
    background-color: #237afc;
    border-radius: 5px;
    font-weight: 600;
    color: #ffffff;
    padding: 12px 30px;
    position: relative;
    z-index: 1;
}
.banner-area .banner-content .banner .banner-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #ffffff;
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.12);
    border-radius: 4px;
    transition: all ease 0.5s;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
.banner-area .banner-content .banner .banner-btn.style {
    background-color: #ffffff;
    color: #1b2336;
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.12);
    margin-left: 20px;
    z-index: 1;
}
.banner-area .banner-content .banner .banner-btn.style::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #237afc;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
.banner-area .banner-content .banner .banner-btn.style:hover {
    color: #ffffff;
}
.banner-area .banner-content .banner .banner-btn.style:hover::before {
    opacity: 1;
    height: 100%;
    visibility: visible;
}
.banner-area .banner-content .banner .banner-btn:hover {
    color: #1b2336;
}
.banner-area .banner-content .banner .banner-btn:hover::before {
    opacity: 1;
    height: 100%;
    visibility: visible;
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.12);
}
.banner-area .banner-content .banner-shape-4 {
    position: absolute;
    top: -95px;
    left: 285px;
    z-index: -1;
}
.banner-area .banner-content .banner-shape-5 {
    position: absolute;
    bottom: -80px;
    right: 32px;
}
.banner-area .banner-image {
    position: relative;
    margin-left: 18px;
}
.banner-area .banner-image .banner-ten {
    display: none;
}
.banner-area .banner-image .banner-two {
    border-radius: 10px;
    margin-right: -88px;
    max-width: 240px;
}
.banner-area .banner-image .banner-three {
    border-radius: 10px;
    margin-right: -88px;
    max-width: 380px;
}
.banner-area .banner-image .banner-four {
    border-radius: 10px;
    margin-right: -150px;
    max-width: 315px;
}
.banner-area .banner-image .banner-five {
    border-radius: 10px;
    position: absolute;
    bottom: 112px;
    left: 145px;
}
.banner-area .banner-image .play-btn {
    position: relative;
}
.banner-area .banner-image .play-btn .banner-one {
    border-radius: 10px;
    max-width: 360px;
}
.banner-area .banner-image .play-btn .popup-btn {
    display: inline-block;
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    margin: auto;
    background: #237afc;
    color: #ffffff;
    width: 74px;
    height: 74px;
    line-height: 78px;
    border-radius: 50%;
    text-align: center;
    padding-left: 4px;
    transform: translateX(40px);
    transition: all ease 0.5s;
    z-index: 1;
}
.banner-area .banner-image .play-btn .popup-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 50%;
    transition: all ease 0.5s;
    background-color: #237afc;
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}
.banner-area .banner-image .play-btn .popup-btn i {
    font-size: 20px;
}
.banner-area .banner-image .play-btn .popup-btn:hover {
    background-color: #01ca99;
}
.banner-area .banner-image .play-btn .popup-btn:hover::before {
    background-color: #01ca99;
}
.banner-area .banner-image .banner-shape-1 {
    position: absolute;
    top: 40px;
    left: 150px;
}
.banner-area .banner-image .banner-shape-2 {
    position: absolute;
    bottom: 112px;
    left: 15px;
}
.banner-area .banner-image .banner-shape-3 {
    position: absolute;
    bottom: 25px;
    right: -30px;
    z-index: -1;
}

.general-card {
    position: absolute;
    right: 0;
    bottom: 55px;
    background-color: #ffffff;
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.12);
    border-radius: 10px;
    padding: 20px;
}
.general-card .banner-6 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.general-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}
.general-card .common-btn {
    font-size: 14px;
    margin-left: 35px;
    padding-top: 6px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 6px;
}

/*
Home Two Banner Area CSS
======================================================*/
.banner-area.banner-area-two {
    position: relative;
    padding-top: 165px;
    padding-bottom: 215px;
    background-color: transparent;
    background-image: url("..//images/banner/banner-7.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.banner-area.banner-area-two.bg-2 {
    background-image: url("..//images/banner/banner-9.jpg");
}
.banner-area.banner-area-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(240, 234, 252, 0.75) 34.56%, rgba(240, 234, 252, 0) 52.37%);
    z-index: -1;
}
.banner-area.banner-area-two .banner-content {
    max-width: 670px;
}
.banner-area.banner-area-two .banner-content span {
    color: #237afc;
}

.banner-two-slider-item {
    position: relative;
    z-index: 1;
}
.banner-two-slider-item .swiper-slider-arrow .swiper-button-prev {
    background-color: #1b2336;
    left: 0;
    width: 40px;
    height: 60px;
    line-height: 68px;
    border-radius: 0px 5px 5px 0px;
    transition: all ease 0.5s;
}
.banner-two-slider-item .swiper-slider-arrow .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    transition: all ease 0.5s;
}
.banner-two-slider-item .swiper-slider-arrow .swiper-button-prev:hover {
    background-color: #01ca99;
}
.banner-two-slider-item .swiper-slider-arrow .swiper-button-next {
    background-color: #1b2336;
    right: 0;
    width: 40px;
    height: 60px;
    line-height: 68px;
    border-radius: 5px 0px 0px 5px;
    transition: all ease 0.5s;
}
.banner-two-slider-item .swiper-slider-arrow .swiper-button-next::after {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    transition: all ease 0.5s;
}
.banner-two-slider-item .swiper-slider-arrow .swiper-button-next:hover {
    background-color: #01ca99;
}
.banner-two-slider-item .banner-shape-6 {
    position: absolute;
    top: 90px;
    right: 80px;
    z-index: 1;
}
.banner-two-slider-item .banner-shape-7 {
    position: absolute;
    bottom: 145px;
    left: 560px;
    z-index: 1;
}
.banner-two-slider-item .banner-shape-8 {
    position: absolute;
    top: 70px;
    left: 560px;
    z-index: 1;
}

/*
Home Three Banner Area CSS
======================================================*/
.banner-area.banner-area-three {
    padding-top: 25px;
    padding-bottom: 55px;
    background: linear-gradient(66.78deg, rgba(240, 234, 252, 0.48) 9.51%, rgba(191, 230, 253, 0.28) 48.91%, rgba(140, 226, 255, 0.28) 84.99%);
    position: relative;
}
.banner-area.banner-area-three .banner-content span {
    color: #237afc;
}
.banner-area.banner-area-three .banner-content p {
    margin-right: 0;
    padding-right: 100px;
}
.banner-area.banner-area-three .banner-image {
    text-align: end;
    position: relative;
}
.banner-area.banner-area-three .banner-image .rating-card {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding: 25px 55px 20px 25px;
    text-align: start;
}
.banner-area.banner-area-three .banner-image .rating-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}
.banner-area.banner-area-three .banner-image .rating-card p {
    margin-bottom: 10px;
}
.banner-area.banner-area-three .banner-image .rating-card ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.banner-area.banner-area-three .banner-image .rating-card ul li {
    display: inline-block;
    color: #f8b32e;
    margin-right: -2px;
}
.banner-area.banner-area-three .banner-image .rating-card ul li p {
    font-size: 14px;
    margin-bottom: 0;
    position: relative;
    top: -2px;
}
.banner-area.banner-area-three .banner-image .banner-shape-9 {
    position: absolute;
    top: 100px;
    right: 70px;
    z-index: -1;
}
.banner-area.banner-area-three .banner-shape-10 {
    position: absolute;
    top: 100px;
    right: 50px;
}
.banner-area.banner-area-three .banner-shape-11 {
    position: absolute;
    top: 70px;
    left: 590px;
    max-width: 598px;
    z-index: -1;
}
.banner-area.banner-area-three .banner-shape-12 {
    position: absolute;
    left: 680px;
    bottom: 80px;
}
.banner-area.banner-area-three .banner-shape-13 {
    position: absolute;
    top: 65px;
    left: 0;
}

/* Add Area CSS */
.add-area {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #237afc;
    border-radius: 10px 0 0 0;
    max-width: 925px;
    overflow: hidden;
}
.add-area .add-bg {
    padding-left: 15px;
    position: relative;
}
.add-area .add-bg::before {
    content: "";
    position: absolute;
    top: 0;
    right: -12px;
    bottom: 0;
    height: 100%;
    width: 0;
    background-color: #01ca99;
}
.add-area .add-bg .slide {
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
}
.add-area .add-bg .slide p {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}
.add-area .add-bg .slide h2 {
    font-size: 30px;
    color: #ffffff;
}
.add-area .swiper-wrapper {
    height: 120px;
}
.add-area .swiper-wrapper .swiper-slide {
    margin-bottom: 0 !important;
}
.add-area .add-ye {
    position: relative;
    margin-right: -12px;
    background-color: #01ca99;
    padding-top: 60px;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 60px;
}
.add-area .add-ye .epx h3 {
    font-size: 46px;
    color: #ffffff;
    position: relative;
}
.add-area .add-ye .epx h3::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -20px;
    width: 40px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1254901961);
    border-radius: 5px;
}
.add-area .add-ye .epx p {
    color: #ffffff;
    font-weight: 700;
    padding-left: 10px;
    line-height: 1.4;
}
.add-area .swiper-pagination-vertical.swiper-pagination-bullets {
    position: absolute;
    right: auto;
    left: 5px;
    top: 61%;
    transform: translateY(-50px);
}
.add-area .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    margin: 10px 0;
}
.add-area .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    padding: 2px;
    position: relative;
    transition: all ease 0.5s;
}
.add-area .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid #ffffff;
}

/*
Appointment Area CSS
======================================================*/
.appointment-area {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}
.appointment-area .appointment-top .section-heading h2 {
    color: #ffffff;
}
.appointment-area .appointment-top .appointment-btn {
    text-align: end;
}
.appointment-area .appointment-top .appointment-btn a {
    color: #ffffff;
    text-decoration: underline;
}
.appointment-area .appointment-top .appointment-btn a:hover {
    color: #237afc;
}
.appointment-area .appointment-form .form-control {
    border: none;
    box-shadow: unset;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 17px 20px;
    height: 60px;
}
.appointment-area .appointment-form .form-select {
    background-image: url("..//images/svg/down-1.svg");
    background-position: right 24px center;
    background-size: 12px 12px;
}
.appointment-area .appointment-form .common-btn {
    width: 100%;
    text-align: center;
    background-color: #1b2336;
    padding-top: 18px;
    padding-bottom: 18px;
}
.appointment-area .appointment-shape-1 {
    position: absolute;
    left: 65px;
    bottom: 5px;
    z-index: -1;
}

/*
Home Two Appointment Area CSS
======================================================*/
.appointment-area.appointment-area-two {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
}
.appointment-area.appointment-area-two::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 314px;
    background-color: #01ca99;
    z-index: -1;
}
.appointment-area.appointment-area-two .appointment-top {
    position: relative;
    margin-top: -55px;
}
.appointment-area.appointment-area-two .appointment-top .appointment-image {
    position: relative;
}
.appointment-area.appointment-area-two .appointment-top .appointment-image .newsletter-two {
    border-radius: 10px;
}
.appointment-area.appointment-area-two .appointment-top .appointment-image .popup-btn {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #ffffff;
    border: 1.5px solid rgba(1, 202, 153, 0.8);
    color: #01ca99;
    width: 85px;
    height: 85px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    padding-left: 4px;
    transform: translateY(-50%);
    transition: all ease 0.5s;
    z-index: 1;
}
.appointment-area.appointment-area-two .appointment-top .appointment-image .popup-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 50%;
    transition: all ease 0.5s;
    border: 1.5px solid rgba(1, 202, 153, 0.8);
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}
.appointment-area.appointment-area-two .appointment-top .appointment-image .popup-btn i {
    font-size: 30px;
    transition: all ease 0.5s;
}
.appointment-area.appointment-area-two .appointment-top .appointment-image .popup-btn:hover {
    background-color: #01ca99;
}
.appointment-area.appointment-area-two .appointment-top .appointment-image .popup-btn:hover::before {
    border: 1.5px solid rgba(1, 202, 153, 0.8);
}
.appointment-area.appointment-area-two .appointment-top .appointment-image .popup-btn:hover i {
    color: #ffffff;
}
.appointment-area.appointment-area-two .appointment-top .appointment-form {
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.2);
    border-radius: 10px;
    padding: 60px 50px;
}
.appointment-area.appointment-area-two .appointment-top .appointment-form .appointment {
    margin-bottom: 20px;
}
.appointment-area.appointment-area-two .appointment-top .appointment-form .appointment h2 {
    font-size: 36px;
    font-weight: 800;
}
.appointment-area.appointment-area-two .appointment-top .appointment-form .appointment a {
    font-weight: 600;
}
.appointment-area.appointment-area-two .appointment-top .appointment-form .form-control {
    background-color: #f9f9f9;
    border: 1px solid rgba(27, 35, 54, 0.1);
    border-radius: 5px;
    height: 50px;
    padding: 12px 15px;
    margin-bottom: 20px;
}
.appointment-area.appointment-area-two .appointment-top .appointment-form .common-btn {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #237afc;
}
.appointment-area.appointment-area-two .appointment-top .appointment-form .common-btn:hover {
    background-color: #01ca99;
}
.appointment-area.appointment-area-two .appointment-shape-2 {
    position: absolute;
    right: 90px;
    bottom: 190px;
}
.appointment-area.appointment-area-two .appointment-shape-3 {
    position: absolute;
    top: 125px;
    left: 95px;
}

/*
Home Three Appointment Area CSS
======================================================*/
.appointments-area {
    background: linear-gradient(66.78deg, rgba(240, 234, 252, 0.48) 9.51%, rgba(191, 230, 253, 0.28) 48.91%, rgba(140, 226, 255, 0.28) 84.99%);
    position: relative;
}
.appointments-area .appointments-info {
    position: relative;
}
.appointments-area .appointments-info .appointments-image {
    position: relative;
}
.appointments-area .appointments-info .appointments-image .newsletter-six {
    border-radius: 10px;
}
.appointments-area .appointments-info .appointments-image .popup-btn {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    background: #01ca99;
    color: #ffffff;
    width: 74px;
    height: 74px;
    line-height: 78px;
    border-radius: 50%;
    text-align: center;
    padding-left: 4px;
    transform: translateY(-50%);
    transition: all ease 0.5s;
    z-index: 1;
}
.appointments-area .appointments-info .appointments-image .popup-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 50%;
    transition: all ease 0.5s;
    background-color: #01ca99;
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}
.appointments-area .appointments-info .appointments-image .popup-btn i {
    font-size: 20px;
}
.appointments-area .appointments-info .appointments-image .popup-btn:hover {
    background-color: #237afc;
}
.appointments-area .appointments-info .appointments-image .popup-btn:hover::before {
    background-color: #237afc;
}
.appointments-area .appointments-info .section-heading {
    padding-top: 30px;
    max-width: 570px;
    margin-bottom: 15px;
}
.appointments-area .appointments-info .section-heading .sub-title {
    color: #237afc;
    margin-bottom: 5px;
}
.appointments-area .appointments-info ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.appointments-area .appointments-info ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.appointments-area .appointments-info ul li:last-child {
    margin-bottom: 0;
}
.appointments-area .appointments-info ul li i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: #01ca99;
}
.appointments-area .appointments-info .testimonials-shape-2 {
    position: absolute;
    right: 85px;
    bottom: 0;
}
.appointments-area .need-appointment {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 64px;
    position: relative;
    z-index: 1;
}
.appointments-area .need-appointment::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 150px;
    background-color: #237afc;
    border-radius: 10px 10px 0 0;
    z-index: -1;
}
.appointments-area .need-appointment .section-heading {
    padding-bottom: 20px;
}
.appointments-area .need-appointment .section-heading .sub-title {
    color: #ffffff;
}
.appointments-area .need-appointment .section-heading h2 {
    color: #ffffff;
}
.appointments-area .need-appointment form .form-control {
    box-shadow: none;
    border-radius: 5px;
    background-color: #f7f7f7;
    border: 1px solid rgba(65, 86, 116, 0.1);
    height: 50px;
    padding: 12px 20px;
    margin-bottom: 20px;
}
.appointments-area .need-appointment form .form-control::-moz-placeholder {
    color: #1b2336;
    -moz-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.appointments-area .need-appointment form .form-control:-ms-input-placeholder {
    color: #1b2336;
    -ms-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.appointments-area .need-appointment form .form-control::placeholder {
    color: #1b2336;
    transition: all ease 0.5s;
}
.appointments-area .need-appointment form .form-control:focus {
    border: 1px solid #237afc;
}
.appointments-area .need-appointment form .form-control:focus::-moz-placeholder {
    color: transparent;
}
.appointments-area .need-appointment form .form-control:focus:-ms-input-placeholder {
    color: transparent;
}
.appointments-area .need-appointment form .form-control:focus::placeholder {
    color: transparent;
}
.appointments-area .need-appointment form .textarea {
    height: 200px;
}
.appointments-area .need-appointment form .common-btn {
    width: 100%;
    background-color: #237afc;
}
.appointments-area .need-appointment form .common-btn:hover {
    background-color: #01ca99;
}

/*
About Area CSS
======================================================*/
.need-card {
    position: absolute;
    top: 195px;
    left: -50px;
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding: 35px 18px;
    max-width: 245px;
}
.need-card h4 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}
.need-card form .form-select {
    outline: 0;
    box-shadow: unset;
    font-size: 14px;
    height: 45px;
    background-image: url("..//images/svg/down-1.svg");
    background-position: right 15px center;
    background-size: 10px 10px;
    border: 1px solid rgba(18, 21, 33, 0.0823529412);
    border-radius: 5px;
    margin-bottom: 15px;
}
.need-card form .common-btn {
    width: 100%;
    font-size: 14px;
}

.about-area {
    padding-top: 100px;
    padding-bottom: 140px;
    position: relative;
    z-index: 1;
}
.about-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 460px;
    height: 100%;
    background: linear-gradient(66.78deg, rgba(240, 234, 252, 0.48) 9.51%, rgba(191, 230, 253, 0.28) 48.91%, rgba(140, 226, 255, 0.28) 84.99%);
    z-index: -1;
}
.about-area .about-image {
    position: relative;
}
.about-area .about-image .about-one {
    max-width: 385px;
    border-radius: 10px;
}
.about-area .about-image .about-two {
    position: absolute;
    top: 190px;
    right: 30px;
    max-width: 350px;
    border-radius: 10px;
}
.about-area .about-image .about-shape-4 {
    position: absolute;
    top: 95px;
    right: 165px;
    z-index: -1;
}
.about-area .about-content .doctor-card {
    margin-bottom: 30px;
}
.about-area .about-content .doctor-card i {
    font-size: 35px;
    color: #237afc;
    background-color: #ffffff;
    width: 70px;
    height: 70px;
    line-height: 78px;
    text-align: center;
    display: inline-block;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 100px;
    margin-bottom: 20px;
}
.about-area .about-content .doctor-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
}
.about-area .about-content .doctor-card:hover i {
    -webkit-animation: rotate-vertical 1.1s ease-out;
    animation: rotate-vertical 1.1s ease-out;
}
.about-area .about-content .common-btn {
    background-color: #237afc;
}
.about-area .about-content .common-btn:hover {
    background-color: #01ca99;
}
.about-area .about-shape-1 {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.about-area .about-shape-2 {
    position: absolute;
    right: 420px;
    bottom: 0;
}
.about-area .about-shape-3 {
    position: absolute;
    top: 50%;
    left: 85px;
    transform: translateY(-50%);
}

/*
Home Two About Area CSS
======================================================*/
.about-us-area {
    position: relative;
}
.about-us-area .about-info {
    max-width: 605px;
    position: relative;
}
.about-us-area .about-info .check-icon {
    position: relative;
    margin-bottom: 20px;
}
.about-us-area .about-info .check-icon:last-child {
    margin-bottom: 0;
}
.about-us-area .about-info .check-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    text-align: center;
    background-color: rgba(1, 202, 153, 0.0823529412);
}
.about-us-area .about-info .check-icon i {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 22px;
    background-color: #01ca99;
    color: #ffffff;
    width: 50px;
    height: 50px;
    line-height: 56px;
    border-radius: 50%;
    text-align: center;
}
.about-us-area .about-info .check-icon .experience {
    max-width: 520px;
    padding-left: 90px;
}
.about-us-area .about-info .check-icon .experience h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
.about-us-area .about-info .common-btn {
    margin-top: 10px;
    background-color: #237afc;
}
.about-us-area .about-info .common-btn:hover {
    background-color: #01ca99;
}
.about-us-area .about-us-image {
    position: relative;
}
.about-us-area .about-us-image .newsletter-three {
    border-radius: 10px;
}
.about-us-area .about-us-image .eight-plus {
    position: absolute;
    right: -92px;
    bottom: -55px;
    background-color: #ffffff;
    width: 185px;
    height: 185px;
    padding-top: 34px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.2);
}
.about-us-area .about-us-image .eight-plus h3 {
    font-size: 60px;
    color: #237afc;
    margin-bottom: 5px;
}
.about-us-area .about-us-image .eight-plus p {
    font-weight: 500;
    color: #1b2336;
}
.about-us-area .about-us-image .about-shape-5 {
    position: absolute;
    left: -100px;
    bottom: -8px;
    z-index: -1;
}
.about-us-area .about-shape-6 {
    position: absolute;
    top: 55%;
    left: 80px;
    transform: translateY(-50%);
}

/*
Home Three about Area CSS
======================================================*/
.about-three-area {
    position: relative;
}
.about-three-area .about-image {
    position: relative;
}
.about-three-area .about-image .shape-icon {
    position: absolute;
    left: 40px;
    right: 0;
    bottom: 30px;
    margin: auto;
    width: 140px;
    height: 140px;
    line-height: 140px;
    border-radius: 50%;
    text-align: center;
    background-color: #01ca99;
    z-index: 0;
}
.about-three-area .about-image .shape-icon::before {
    content: "";
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    background-color: #ffffff;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    z-index: -1;
}
.about-three-area .about-image .shape-icon .about-shape-8 {
    max-width: 48px;
    transition: all ease 0.5s;
}
.about-three-area .about-image .shape-icon .about-shape-7 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.about-three-area .about-image .shape-icon:hover .about-shape-8 {
    -webkit-animation: full-circle 1.1s ease-out;
    animation: full-circle 1.1s ease-out;
}
.about-three-area .about-image .about-shape-9 {
    position: absolute;
    top: 70px;
    left: 0;
}
.about-three-area .about-info {
    margin-left: 20px;
    position: relative;
}
.about-three-area .about-info .icon {
    position: relative;
}
.about-three-area .about-info .icon::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    width: 1px;
    height: 34px;
    background-color: rgba(27, 35, 54, 0.1411764706);
}
.about-three-area .about-info .icon i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 50px;
    color: #01ca99;
}
.about-three-area .about-info .icon i::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    background-color: rgba(27, 35, 54, 0.062745098);
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.about-three-area .about-info .icon .icon-info {
    padding-left: 70px;
    margin-bottom: 30px;
}
.about-three-area .about-info .icon .icon-info h3 {
    font-size: 30px;
    margin-bottom: 5px;
}
.about-three-area .about-info .common-btn {
    background-color: #237afc;
}
.about-three-area .about-info .common-btn:hover {
    background-color: #01ca99;
}
.about-three-area .about-info .col-lg-5:nth-child(2) .icon::before {
    display: none;
}
.about-three-area .about-info .about-shape-10 {
    position: absolute;
    right: -85px;
    bottom: 0;
}

/*
Department Area CSS
======================================================*/
.department-area {
    position: relative;
}
.department-area .department-shape {
    position: absolute;
    top: 180px;
    left: 280px;
    z-index: -1;
}

.recent-slider-content {
    position: relative;
}
.recent-slider-content .swiper-slider-arrow .swiper-button-prev {
    left: -60px;
    right: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    transition: all ease 0.5s;
    z-index: 1;
}
.recent-slider-content .swiper-slider-arrow .swiper-button-prev::after {
    content: "\eb33";
    position: absolute;
    font-family: boxicons !important;
    font-size: 25px;
    color: #1b2336;
    transition: all ease 0.5s;
}
.recent-slider-content .swiper-slider-arrow .swiper-button-prev:hover {
    background-color: #01ca99;
}
.recent-slider-content .swiper-slider-arrow .swiper-button-prev:hover::after {
    color: #ffffff;
}
.recent-slider-content .swiper-slider-arrow .swiper-button-next {
    right: -60px;
    left: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    transition: all ease 0.5s;
    z-index: 1;
}
.recent-slider-content .swiper-slider-arrow .swiper-button-next::after {
    content: "\ebe6";
    position: absolute;
    font-family: boxicons !important;
    font-size: 25px;
    color: #1b2336;
    transition: all ease 0.5s;
}
.recent-slider-content .swiper-slider-arrow .swiper-button-next:hover {
    background-color: #01ca99;
}
.recent-slider-content .swiper-slider-arrow .swiper-button-next:hover::after {
    color: #ffffff;
}

.department .local p {
    text-align: center;
}
.department .local p a {
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #01ca99;
    text-decoration: underline;
}
.department .local p a:hover {
    color: #237afc;
}

.department-card {
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 30px;
}
.department-card .department-image {
    position: relative;
}
.department-card .department-image img {
    border-radius: 10px;
}
.department-card .department-image .icon-style {
    position: absolute;
    right: 30px;
    bottom: -20px;
    background-color: #01ca99;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    width: 85px;
    height: 85px;
    line-height: 98px;
    border-radius: 72% 28% 53% 47%/44% 38% 62% 56%;
    text-align: center;
    transition: all ease 0.5s;
}
.department-card .department-image .icon-style i {
    font-size: 40px;
    color: #ffffff;
}
.department-card .department-content {
    padding-top: 30px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 30px;
}
.department-card .department-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
}
.department-card .department-content h4 a {
    color: #1b2336;
}
.department-card .department-content h4 a:hover {
    color: #237afc;
}
.department-card .department-content p {
    margin-bottom: 15px;
}
.department-card .department-content .read-more:hover {
    color: #237afc;
}
.department-card:hover .department-image .icon-style {
    background-color: #237afc;
}

/*
Home Two Departments Area CSS
======================================================*/
.departments-area {
    position: relative;
}
.departments-area .choose-shape-1 {
    position: absolute;
    top: 50%;
    right: 80px;
}

.departments-card {
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding: 40px 35px;
    margin-bottom: 30px;
}
.departments-card .icon-plastic {
    margin-bottom: 20px;
}
.departments-card .icon-plastic i {
    font-size: 40px;
    background-color: #01ca99;
    color: #ffffff;
    width: 70px;
    height: 70px;
    line-height: 82px;
    border-radius: 50%;
    text-align: center;
    transition: all ease 0.5s;
}
.departments-card .icon-plastic h3 {
    font-size: 22px;
    margin-left: 20px;
}
.departments-card p {
    margin-bottom: 15px;
}
.departments-card .read-more:hover {
    color: #237afc;
}
.departments-card .read-more:hover i {
    color: #237afc;
}
.departments-card:hover .icon-plastic i {
    background-color: #237afc;
    -webkit-animation: pop 1.1s ease-out;
    animation: pop 1.1s ease-out;
}

/*
Home Three Departments Area CSS
======================================================*/
.department-area.department-area-two {
    position: relative;
    overflow: hidden;
    background: linear-gradient(66.78deg, rgba(240, 234, 252, 0.48) 9.51%, rgba(191, 230, 253, 0.28) 48.91%, rgba(140, 226, 255, 0.28) 84.99%);
}
.department-area.department-area-two .container-fluid {
    padding-right: 0;
}
.department-area.department-area-two .recent-slider-content {
    margin-left: 300px;
}
.department-area.department-area-two .recent-slider-content .section-heading .sub-title {
    color: #237afc;
}
.department-area.department-area-two .swiper-slide .department-card {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
}
.department-area.department-area-two .swiper-slide .department-card .department-image img {
    border-radius: 10px 10px 0 0;
}
.department-area.department-area-two .swiper-slide .department-card .department-content {
    padding-top: 25px;
    padding-bottom: 25px;
}
.department-area.department-area-two .swiper-slide .department-card .department-content p {
    margin-bottom: 10px;
}
.department-area.department-area-two .department-shape-1 {
    position: absolute;
    left: 94px;
    bottom: 215px;
}
.department-area.department-area-two .see-btn {
    text-align: end;
}

/*
Why Choose Us Area CSS
======================================================*/
.choose-area {
    padding-bottom: 135px;
    background: linear-gradient(66.78deg, rgba(240, 234, 252, 0.48) 9.51%, rgba(191, 230, 253, 0.28) 48.91%, rgba(140, 226, 255, 0.28) 84.99%);
    position: relative;
    overflow: hidden;
}
.choose-area .choose-content {
    margin-top: 25px;
}
.choose-area .choose-content .scientific ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.choose-area .choose-content .scientific ul li {
    position: relative;
    background-color: #ffffff;
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.12);
    border-radius: 5px;
    padding: 12px 20px 12px 55px;
    margin-bottom: 20px;
}
.choose-area .choose-content .scientific ul li:last-child {
    margin-bottom: 0;
}
.choose-area .choose-content .scientific ul li i {
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 18px;
    color: #ffffff;
    background-color: #237afc;
    width: 25px;
    height: 25px;
    line-height: 22px;
    border-radius: 50%;
    text-align: center;
}
.choose-area .choose-image {
    position: relative;
    text-align: end;
}
.choose-area .choose-image .choose-one {
    max-width: 395px;
    border-radius: 10px;
}
.choose-area .choose-image .choose-two {
    position: absolute;
    top: 185px;
    left: 30px;
    max-width: 395px;
    border-radius: 10px;
}
.choose-area .choose-image .cardio {
    position: absolute;
    top: 215px;
    right: -50px;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
    padding: 30px;
}
.choose-area .choose-image .cardio .choose-three {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.choose-area .choose-image .cardio h4 {
    font-size: 18px;
    margin-bottom: 5px;
}
.choose-area .choose-image .cardio p {
    margin-bottom: 12px;
}
.choose-area .choose-image .cardio .common-btn {
    font-size: 14px;
    background-color: #237afc;
    padding: 8px 14px;
}
.choose-area .choose-image .cardio .common-btn:hover {
    background-color: #01ca99;
}
.choose-area .choose-image .choose-shape-1 {
    position: absolute;
    top: 55px;
    left: 80px;
}
.choose-area .choose-shape-2 {
    position: absolute;
    top: 53%;
    left: 0;
    transform: translateY(-50%);
    max-width: 100%;
    z-index: -1;
}

/*
Home Two Why Choose Us Area CSS
======================================================*/
.choose-us-area {
    position: relative;
}
.choose-us-area .choose-us-image {
    text-align: end;
    position: relative;
}
.choose-us-area .choose-us-image .newsletter-five {
    border-radius: 10px;
}
.choose-us-area .choose-us-image .need-card {
    top: 150px;
    left: -30px;
}
.choose-us-area .choose-us-image .need-card h4 {
    text-align: start;
}
.choose-us-area .choose-us-image .choose-shape-4 {
    position: absolute;
    top: 20px;
    left: 65px;
}
.choose-us-area .choose-us-content {
    margin-left: 25px;
}
.choose-us-area .choose-us-content ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.choose-us-area .choose-us-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}
.choose-us-area .choose-us-content ul li:last-child {
    margin-bottom: 0;
}
.choose-us-area .choose-us-content ul li i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: #01ca99;
}
.choose-us-area .choose-us-content .common-btn {
    margin-top: 30px;
    background-color: #237afc;
}
.choose-us-area .choose-us-content .common-btn:hover {
    background-color: #01ca99;
}
.choose-us-area .choose-shape-3 {
    position: absolute;
    right: 170px;
    bottom: 200px;
}

/*
Home Three Why Choose Us Area CSS
======================================================*/
.choose-us-area.choose-us-area-three {
    position: relative;
}
.choose-us-area.choose-us-area-three .choose-us-image {
    position: relative;
}
.choose-us-area.choose-us-area-three .choose-us-image .quantity {
    position: absolute;
    left: 150px;
    bottom: 45px;
    background-color: #ffffff;
    width: 155px;
    height: 155px;
    padding-top: 25px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid #01ca99;
}
.choose-us-area.choose-us-area-three .choose-us-image .quantity h3 {
    font-size: 50px;
    color: #01ca99;
    margin-bottom: 5px;
}
.choose-us-area.choose-us-area-three .choose-us-image .quantity p {
    font-weight: 500;
    color: #1b2336;
}
.choose-us-area.choose-us-area-three .choose-us-image .choose-shape-5 {
    position: absolute;
    top: 115px;
    left: 0;
    z-index: -1;
}
.choose-us-area.choose-us-area-three .choose-us-content .check-staff ul li {
    position: relative;
    background-color: #ffffff;
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.12);
    border-radius: 5px;
    padding: 12px 20px 12px 55px;
    margin-bottom: 20px;
}
.choose-us-area.choose-us-area-three .choose-us-content .check-staff ul li i {
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 18px;
    color: #ffffff;
    background-color: #237afc;
    width: 25px;
    height: 25px;
    line-height: 22px;
    border-radius: 50%;
    text-align: center;
}
.choose-us-area.choose-us-area-three .choose-us-content .common-btn {
    margin-top: 15px;
}
.choose-us-area.choose-us-area-three .choose-shape-6 {
    position: absolute;
    right: 160px;
    bottom: 200px;
}

/*
Fun Fact Area CSS
======================================================*/
.fun-fact-area {
    position: relative;
    z-index: 1;
}
.fun-fact-area .count {
    position: relative;
    margin-bottom: 30px;
}
.fun-fact-area .count i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 60px;
    color: #01ca99;
}
.fun-fact-area .count .info {
    padding-left: 70px;
}
.fun-fact-area .count .info h3 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3px;
}
.fun-fact-area .count .info p {
    font-weight: 500;
    color: #e2e2e2;
}
.fun-fact-area .col-lg-3:nth-child(2) .count {
    position: relative;
    margin-left: 20px;
}
.fun-fact-area .col-lg-3:nth-child(3) .count {
    position: relative;
    margin-left: 50px;
}
.fun-fact-area .col-lg-3:nth-child(3) .count .info {
    padding-left: 80px;
}
.fun-fact-area .col-lg-3:nth-child(4) .count {
    position: relative;
    margin-left: 85px;
    margin-right: -20px;
}
.fun-fact-area .col-lg-3:nth-child(4) .count .info {
    padding-left: 85px;
}
.fun-fact-area .count-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.fun-fact-area .fun-shape-2 {
    position: absolute;
    right: 80px;
    bottom: 40px;
}

/*
Solution Area CSS
======================================================*/
.solution-area {
    position: relative;
    z-index: 1;
}
.solution-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 75px;
    background-color: #1b2336;
    z-index: -1;
}
.solution-area .solution-card {
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding-top: 30px;
    padding-left: 95px;
    padding-right: 40px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    position: relative;
}
.solution-area .solution-card i {
    position: absolute;
    top: 30px;
    left: 25px;
    font-size: 50px;
    color: #237afc;
}
.solution-area .solution-card .solution-card-info h4 {
    font-size: 22px;
    margin-bottom: 8px;
}
.solution-area .solution-card .solution-card-info p {
    margin-bottom: 0;
}
.solution-area .quality p {
    text-align: center;
}
.solution-area .quality p a {
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #01ca99;
    text-decoration: underline;
}
.solution-area .quality p a:hover {
    color: #237afc;
}

/*
Gallery Area CSS
======================================================*/
.gallery-area {
    position: relative;
    z-index: 1;
}
.gallery-area .container-fluid {
    max-width: 1820px;
}
.gallery-area::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 215px;
    background: linear-gradient(66.78deg, rgba(240, 234, 252, 0.48) 9.51%, rgba(191, 230, 253, 0.28) 48.91%, rgba(140, 226, 255, 0.28) 84.99%);
    z-index: -1;
}

.gallery-slider-content {
    position: relative;
}
.gallery-slider-content .swiper-slider-arrow {
    position: absolute;
    top: -55px;
    left: 0;
    right: 0;
    z-index: 1;
    right: calc((100% - 1365px) / 2 + 15px);
}
.gallery-slider-content .swiper-slider-arrow .swiper-button-prev {
    left: auto;
    right: 70px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    transition: all ease 0.5s;
    z-index: 1;
}
.gallery-slider-content .swiper-slider-arrow .swiper-button-prev::after {
    content: "\eb33";
    position: absolute;
    font-family: boxicons !important;
    font-size: 25px;
    color: #1b2336;
    transition: all ease 0.5s;
}
.gallery-slider-content .swiper-slider-arrow .swiper-button-prev:hover {
    background-color: #01ca99;
}
.gallery-slider-content .swiper-slider-arrow .swiper-button-prev:hover::after {
    color: #ffffff;
}
.gallery-slider-content .swiper-slider-arrow .swiper-button-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    transition: all ease 0.5s;
    z-index: 1;
}
.gallery-slider-content .swiper-slider-arrow .swiper-button-next::after {
    content: "\ebe6";
    position: absolute;
    font-family: boxicons !important;
    font-size: 25px;
    color: #1b2336;
    transition: all ease 0.5s;
}
.gallery-slider-content .swiper-slider-arrow .swiper-button-next:hover {
    background-color: #01ca99;
}
.gallery-slider-content .swiper-slider-arrow .swiper-button-next:hover::after {
    color: #ffffff;
}

.gallery-card .gallery-image {
    position: relative;
}
.gallery-card .gallery-image::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #1B2336 4.64%, rgba(17, 17, 17, 0) 71.67%);
    opacity: 0.94;
    border-radius: 10px;
}
.gallery-card .gallery-image img {
    border-radius: 10px;
}
.gallery-card .gallery-image .icon-style {
    position: absolute;
    left: 0;
    bottom: 115px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.5s;
}
.gallery-card .gallery-image .icon-style i {
    font-size: 30px;
    color: #ffffff;
    background-color: #237afc;
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 50%;
    text-align: center;
    transition: all ease 0.5s;
}
.gallery-card .gallery-image .icon-style:hover i {
    background-color: #01ca99;
}
.gallery-card .gallery-content {
    position: absolute;
    left: 40px;
    bottom: 30px;
}
.gallery-card .gallery-content p {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
}
.gallery-card .gallery-content h4 {
    font-size: 22px;
    margin-bottom: 0;
}
.gallery-card .gallery-content h4 a {
    color: #ffffff;
}
.gallery-card .gallery-content h4 a:hover {
    color: #01ca99;
}
.gallery-card:hover .gallery-image .icon-style {
    left: 40px;
    opacity: 1;
    visibility: visible;
}

/*
Home Two Gallery Area CSS
======================================================*/
.style-two .gallery-card {
    margin-bottom: 50px;
}
.style-two .gallery-card .gallery-image::before {
    opacity: 0;
    visibility: hidden;
    height: 0%;
    transition: all ease 0.5s;
}
.style-two .gallery-card .gallery-content {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 20px 45px 20px 25px;
    left: 20px;
    bottom: 70px;
}
.style-two .gallery-card .gallery-content p {
    color: #01ca99;
}
.style-two .gallery-card .gallery-content h4 a {
    color: #1b2336;
}
.style-two .gallery-card .gallery-content h4 a:hover {
    color: #237afc;
}
.style-two .gallery-card .gallery-content .alt {
    position: absolute;
    top: 50%;
    right: -22px;
    font-size: 20px;
    background-color: #01ca99;
    color: #ffffff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
    transform: translateY(-50%);
    transition: all ease 0.5s;
}
.style-two .gallery-card .gallery-content:hover .alt {
    background-color: #237afc;
}
.style-two .gallery-card:hover .gallery-image::before {
    opacity: 1;
    visibility: visible;
    height: 100%;
}
.style-two .swiper-pagination {
    bottom: 0;
    display: block;
    text-align: center;
    z-index: 1;
}
.style-two .swiper-pagination .swiper-pagination-bullet {
    background-color: #1b2336;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all ease 0.5s;
}
.style-two .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #237afc;
    border: 1px solid #237afc;
    padding: 2px;
    position: relative;
    transition: all ease 0.5s;
}
.style-two .swiper-pagination .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid #237afc;
}

/*
Testimonial Area CSS
======================================================*/
.testimonial-area {
    background: linear-gradient(66.78deg, rgba(240, 234, 252, 0.48) 9.51%, rgba(191, 230, 253, 0.28) 48.91%, rgba(140, 226, 255, 0.28) 84.99%);
    position: relative;
    z-index: 1;
}
.testimonial-area .testimonials-item {
    position: relative;
}
.testimonial-area .testimonials-item .swiper-pagination {
    position: absolute;
    left: 0;
    bottom: 0;
    height: auto;
    text-align: start;
    z-index: 1;
}
.testimonial-area .testimonials-item .swiper-pagination .swiper-pagination-bullet {
    background-color: #237afc;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all ease 0.5s;
}
.testimonial-area .testimonials-item .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #237afc;
    border: 1px solid #237afc;
    padding: 2px;
    position: relative;
    transition: all ease 0.5s;
}
.testimonial-area .testimonials-item .swiper-pagination .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid #237afc;
}
.testimonial-area .testimonials-shape-5 {
    position: absolute;
    top: 280px;
    left: 100px;
}
.testimonial-area .testimonials-shape-6 {
    position: absolute;
    top: 50%;
    right: 120px;
}

.card-slide {
    background-color: #ffffff;
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.12);
    border-radius: 10px;
    padding: 35px 31px;
    position: relative;
    margin-bottom: 70px;
}
.card-slide ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.card-slide ul li {
    display: inline-block;
    color: #eba400;
    margin-bottom: 10px;
}
.card-slide .name img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
}
.card-slide .name h5 {
    font-size: 18px;
}
.card-slide .name span {
    font-size: 14px;
}
.card-slide .quotes {
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-size: 50px;
    color: #237afc;
    opacity: 0.25;
}

.testimonials-image {
    position: relative;
    margin-left: -110px;
}
.testimonials-image img {
    border-radius: 10px;
}

/*
Home Two Testimonial Area CSS
======================================================*/
.testimonials-area {
    position: relative;
}
.testimonials-area .testimonials-shape-1 {
    position: absolute;
    top: 0;
    left: 100px;
}

.testimonials-slider-content {
    position: relative;
}
.testimonials-slider-content .swiper-slider-arrow .swiper-button-prev {
    left: -60px;
    right: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    transition: all ease 0.5s;
    z-index: 1;
}
.testimonials-slider-content .swiper-slider-arrow .swiper-button-prev::after {
    content: "\eb33";
    position: absolute;
    font-family: boxicons !important;
    font-size: 25px;
    color: #1b2336;
    transition: all ease 0.5s;
}
.testimonials-slider-content .swiper-slider-arrow .swiper-button-prev:hover {
    background-color: #237afc;
}
.testimonials-slider-content .swiper-slider-arrow .swiper-button-prev:hover::after {
    color: #ffffff;
}
.testimonials-slider-content .swiper-slider-arrow .swiper-button-next {
    right: -60px;
    left: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    transition: all ease 0.5s;
    z-index: 1;
}
.testimonials-slider-content .swiper-slider-arrow .swiper-button-next::after {
    content: "\ebe6";
    position: absolute;
    font-family: boxicons !important;
    font-size: 25px;
    color: #1b2336;
    transition: all ease 0.5s;
}
.testimonials-slider-content .swiper-slider-arrow .swiper-button-next:hover {
    background-color: #237afc;
}
.testimonials-slider-content .swiper-slider-arrow .swiper-button-next:hover::after {
    color: #ffffff;
}

.testimonials-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding-top: 50px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 30px;
    margin-top: 50px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
}
.testimonials-card .testimonials-client .testimonial-img img {
    position: absolute;
    top: 0;
    max-width: 85px;
    border-radius: 5px;
    border: 1px solid rgba(27, 35, 54, 0.0705882353);
    padding: 5px;
    transition: all ease 0.5s;
}
.testimonials-card .testimonials-client .testimonials-content {
    position: relative;
    padding-top: 5px;
}
.testimonials-card .testimonials-client .testimonials-content ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.testimonials-card .testimonials-client .testimonials-content ul li {
    display: inline-block;
    color: #eba400;
    margin-bottom: 10px;
}
.testimonials-card .testimonials-client .testimonials-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
}
.testimonials-card .testimonials-client .testimonials-content span {
    font-size: 15px;
}
.testimonials-card .testimonials-client .testimonials-content .quotes {
    position: absolute;
    right: 0;
    bottom: -25px;
    font-size: 52px;
    color: rgba(27, 35, 54, 0.0705882353);
}
.testimonials-card:hover .testimonials-client .testimonial-img img {
    border: 1px solid #01ca99;
}

/*
Home Three Testimonial Area CSS
======================================================*/
.testimonials-patients-area {
    background: linear-gradient(66.78deg, rgba(240, 234, 252, 0.48) 9.51%, rgba(191, 230, 253, 0.28) 48.91%, rgba(140, 226, 255, 0.28) 84.99%);
    position: relative;
}
.testimonials-patients-area .testimonials-top .testimonials-btn {
    text-align: end;
}
.testimonials-patients-area .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    bottom: -3px;
}
.testimonials-patients-area .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal .swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}
.testimonials-patients-area .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(27, 35, 54, 0.5647058824);
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
}
.testimonials-patients-area .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #237afc;
    border: 1px solid #237afc;
    padding: 2px;
    position: relative;
    transition: all ease 0.5s;
}
.testimonials-patients-area .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid #237afc;
}
.testimonials-patients-area .testimonials-shape-3 {
    position: absolute;
    right: 278px;
    bottom: 125px;
    z-index: -1;
}

.single-patients-card {
    background-color: #ffffff;
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.1);
    padding: 35px;
    position: relative;
    border-radius: 10px;
    margin-bottom: 50px;
}
.single-patients-card .patients-client .testimonial-img {
    margin-bottom: 20px;
}
.single-patients-card .patients-client .testimonial-img img {
    max-width: 85px;
    border-radius: 5px;
    border: 1px solid #01ca99;
    padding: 5px;
    transition: all ease 0.5s;
}
.single-patients-card .patients-client .testimonial-img h4 {
    font-size: 18px;
}
.single-patients-card .patients-client .testimonial-img span {
    font-size: 15px;
}
.single-patients-card .patients-content p {
    margin-bottom: 12px;
}
.single-patients-card .patients-content ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.single-patients-card .patients-content ul li {
    display: inline-block;
    color: #eba400;
}
.single-patients-card .quotes {
    position: absolute;
    top: 35px;
    right: 35px;
    font-size: 52px;
    color: rgba(27, 35, 54, 0.0705882353);
    transition: all ease 0.5s;
}
.single-patients-card:hover .quotes {
    color: #01ca99;
}

/*
Partner Area CSS
======================================================*/
.partner-area {
    overflow: hidden;
}
.partner-area .swiper-slide {
    margin-right: 0;
}
.partner-area .partner-logo {
    margin-right: 50px;
    margin-bottom: 30px;
}
.partner-area .partner-logo:last-child {
    margin-right: 0 !important;
}

/*
Doctor Area CSS
======================================================*/
.doctor-card {
    position: relative;
    margin-bottom: 30px;
}
.doctor-card .doctor-image img {
    border-radius: 10px;
}
.doctor-card .doctor-content {
    position: relative;
    z-index: 1;
    margin-top: -50px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding: 25px;
}
.doctor-card .doctor-content::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: -55px;
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: all ease 0.5s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px 10px 0 0;
}
.doctor-card .doctor-content .title {
    transition: all ease 0.5s;
}
.doctor-card .doctor-content .title h4 {
    font-size: 22px;
    margin-bottom: 5px;
}
.doctor-card .doctor-content .title h4 a {
    color: #1b2336;
}
.doctor-card .doctor-content .title h4 a:hover {
    color: #237afc;
}
.doctor-card .doctor-content .title p {
    margin-bottom: 0;
}
.doctor-card .doctor-content .social-icon {
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.5s;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
}
.doctor-card .doctor-content .social-icon ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.doctor-card .doctor-content .social-icon ul li {
    display: inline-block;
    margin-right: 10px;
}
.doctor-card .doctor-content .social-icon ul li:last-child {
    margin-right: 0;
}
.doctor-card .doctor-content .social-icon ul li i {
    font-size: 18px;
    color: #1b2336;
    background-color: #ffffff;
    border: 1px solid rgba(15, 21, 20, 0.2);
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    transition: all ease 0.5s;
}
.doctor-card .doctor-content .social-icon ul li i:hover {
    background-color: #237afc;
    color: #ffffff;
}
.doctor-card:hover .doctor-content::before {
    opacity: 1;
    visibility: visible;
}
.doctor-card:hover .doctor-content .title {
    transform: translateY(-50px);
}
.doctor-card:hover .doctor-content .social-icon {
    opacity: 1;
    visibility: visible;
}

.doctor-slider-content {
    position: relative;
}
.doctor-slider-content .swiper-slider-arrow .swiper-button-prev {
    left: -60px;
    right: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    transition: all ease 0.5s;
    z-index: 1;
}
.doctor-slider-content .swiper-slider-arrow .swiper-button-prev::after {
    content: "\eb33";
    position: absolute;
    font-family: boxicons !important;
    font-size: 25px;
    color: #1b2336;
    transition: all ease 0.5s;
}
.doctor-slider-content .swiper-slider-arrow .swiper-button-prev:hover {
    background-color: #01ca99;
}
.doctor-slider-content .swiper-slider-arrow .swiper-button-prev:hover::after {
    color: #ffffff;
}
.doctor-slider-content .swiper-slider-arrow .swiper-button-next {
    right: -60px;
    left: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    transition: all ease 0.5s;
    z-index: 1;
}
.doctor-slider-content .swiper-slider-arrow .swiper-button-next::after {
    content: "\ebe6";
    position: absolute;
    font-family: boxicons !important;
    font-size: 25px;
    color: #1b2336;
    transition: all ease 0.5s;
}
.doctor-slider-content .swiper-slider-arrow .swiper-button-next:hover {
    background-color: #01ca99;
}
.doctor-slider-content .swiper-slider-arrow .swiper-button-next:hover::after {
    color: #ffffff;
}

/*
Home Three Doctor Area CSS
======================================================*/
.doctor-area.doctor-area-two .see-top .see-btn {
    text-align: end;
}
.doctor-area.doctor-area-two .doctor-card {
    margin-bottom: 40px;
}
.doctor-area.doctor-area-two .doctor-card .doctor-image {
    position: relative;
}
.doctor-area.doctor-area-two .doctor-card .doctor-image .social-card {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 12px 20px;
    max-width: 215px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.5s;
}
.doctor-area.doctor-area-two .doctor-card .doctor-image .social-card ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.doctor-area.doctor-area-two .doctor-card .doctor-image .social-card ul li {
    display: inline-block;
    margin-right: 7px;
}
.doctor-area.doctor-area-two .doctor-card .doctor-image .social-card ul li:last-child {
    margin-right: 0;
}
.doctor-area.doctor-area-two .doctor-card .doctor-image .social-card ul li i {
    font-size: 18px;
    color: #1b2336;
    background-color: #ffffff;
    border: 1px solid rgba(15, 21, 20, 0.2);
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    transition: all ease 0.5s;
}
.doctor-area.doctor-area-two .doctor-card .doctor-image .social-card ul li i:hover {
    background-color: #237afc;
    color: #ffffff;
}
.doctor-area.doctor-area-two .doctor-card .doctor-card-content {
    padding-top: 20px;
    text-align: center;
}
.doctor-area.doctor-area-two .doctor-card .doctor-card-content h4 {
    font-size: 22px;
}
.doctor-area.doctor-area-two .doctor-card .doctor-card-content h4 a {
    color: #1b2336;
}
.doctor-area.doctor-area-two .doctor-card .doctor-card-content h4 a:hover {
    color: #237afc;
}
.doctor-area.doctor-area-two .doctor-card:hover .doctor-image .social-card {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}
.doctor-area.doctor-area-two .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    bottom: -3px;
}
.doctor-area.doctor-area-two .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal .swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}
.doctor-area.doctor-area-two .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(27, 35, 54, 0.5647058824);
}
.doctor-area.doctor-area-two .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #01ca99;
    border: 1px solid #01ca99;
    padding: 2px;
    position: relative;
    transition: all ease 0.5s;
}
.doctor-area.doctor-area-two .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid #01ca99;
}

/*
Health Area CSS
======================================================*/
.health-area {
    position: relative;
    z-index: 1;
}
.health-area::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 115px;
    background: linear-gradient(66.78deg, rgba(240, 234, 252, 0.48) 9.51%, rgba(191, 230, 253, 0.28) 48.91%, rgba(140, 226, 255, 0.28) 84.99%);
    z-index: -1;
}
.health-area .health-image {
    position: relative;
}
.health-area .health-image .newsletter-one {
    border-radius: 10px 0 0 10px;
}
.health-area .health-image .popup-btn {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    background: #01ca99;
    color: #ffffff;
    width: 74px;
    height: 74px;
    line-height: 78px;
    border-radius: 50%;
    text-align: center;
    padding-left: 4px;
    transform: translateY(-50%);
    transition: all ease 0.5s;
    z-index: 1;
}
.health-area .health-image .popup-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 50%;
    transition: all ease 0.5s;
    background-color: #01ca99;
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}
.health-area .health-image .popup-btn i {
    font-size: 20px;
}
.health-area .health-image .popup-btn:hover {
    background-color: #237afc;
}
.health-area .health-image .popup-btn:hover::before {
    background-color: #237afc;
}
.health-area .health-bg {
    background-color: #237afc;
    border-radius: 10px;
}
.health-area .health-content {
    position: relative;
    padding-left: 20px;
}
.health-area .health-content .section-heading {
    margin-bottom: 0;
}
.health-area .health-content .section-heading h2 {
    color: #ffffff;
    margin-bottom: 0;
}
.health-area .health-content .health-shape {
    position: absolute;
    right: 95px;
    bottom: -45px;
}
.health-area .health-content .health-shape-5 {
    position: absolute;
    right: 50px;
    bottom: 0;
}
.health-area .health-btn .common-btn {
    background-color: #1b2336;
    border: 1px solid #1b2336;
}
.health-area .health-btn .common-btn:hover {
    background-color: #1b2336;
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
}

/*
Home Two Health Area CSS
======================================================*/
.health-area.health-area-two {
    position: relative;
}
.health-area.health-area-two::before {
    height: 0;
    background-color: transparent;
}
.health-area.health-area-two::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 200px;
    background-color: #1b2336;
    z-index: -1;
}
.health-area.health-area-two .health-bg .health-content {
    max-width: 660px;
}
.health-area.health-area-two .health-bg .health-content .section-heading {
    margin-bottom: 28px;
}
.health-area.health-area-two .health-bg .health-content .section-heading .sub-title {
    color: #ffffff;
}
.health-area.health-area-two .health-bg .health-content .section-heading h2 {
    margin-bottom: 15px;
}
.health-area.health-area-two .health-bg .health-content .section-heading p {
    color: #ffffff;
}
.health-area.health-area-two .health-bg .health-content .health-btn .common-btn {
    background-color: #01ca99;
    border: 1px solid #01ca99;
}
.health-area.health-area-two .health-bg .health-content .health-btn .common-btn:hover {
    border: 1px solid #ffffff;
}
.health-area.health-area-two .fun-shape-1 {
    position: absolute;
    top: 0;
    left: 80px;
}

/*
HealthCare Area CSS
======================================================*/
.healthcare-area {
    position: relative;
    background: linear-gradient(66.78deg, rgba(240, 234, 252, 0.48) 9.51%, rgba(191, 230, 253, 0.28) 48.91%, rgba(140, 226, 255, 0.28) 84.99%);
}
.healthcare-area .healthcare-image {
    position: relative;
}
.healthcare-area .healthcare-image .care-image-one {
    border-radius: 10px;
    margin-bottom: 30px;
}
.healthcare-area .healthcare-image .patients-card {
    position: absolute;
    top: 115px;
    left: -90px;
    background-color: #ffffff;
    box-shadow: 0px 4px 15px 1px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 25px 30px;
    text-align: center;
}
.healthcare-area .healthcare-image .patients-card .icon {
    background-color: rgba(1, 202, 153, 0.0823529412);
    width: 68px;
    height: 68px;
    margin: auto;
    line-height: 72px;
    border-radius: 50%;
    text-align: center;
    margin-bottom: 15px;
}
.healthcare-area .healthcare-image .patients-card .icon i {
    font-size: 34px;
    color: #01ca99;
}
.healthcare-area .healthcare-image .patients-card h4 {
    font-size: 30px;
    margin-bottom: 2px;
}
.healthcare-area .healthcare-image .patients-card p {
    font-size: 18px;
}
.healthcare-area .healthcare-content {
    max-width: 570px;
    margin-left: 25px;
    margin-top: -30px;
    position: relative;
}
.healthcare-area .healthcare-content .profile {
    position: relative;
    margin-bottom: 35px;
}
.healthcare-area .healthcare-content .profile .profile-icon {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0px 4px 15px rgba(79, 139, 173, 0.09);
    width: 70px;
    height: 70px;
    line-height: 84px;
    border-radius: 100px;
    text-align: center;
    transition: all ease 0.5s;
}
.healthcare-area .healthcare-content .profile .profile-icon i {
    font-size: 35px;
    color: #237afc;
    transition: all ease 0.5s;
}
.healthcare-area .healthcare-content .profile .profile-check {
    padding-left: 95px;
}
.healthcare-area .healthcare-content .profile .profile-check h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
.healthcare-area .healthcare-content .profile:hover .profile-icon {
    background-color: #237afc;
}
.healthcare-area .healthcare-content .profile:hover .profile-icon i {
    color: #ffffff;
}
.healthcare-area .healthcare-content .common-btn {
    background-color: #237afc;
}
.healthcare-area .healthcare-content .common-btn:hover {
    background-color: #01ca99;
}
.healthcare-area .healthcare-content .banner-shape-14 {
    position: absolute;
    right: -150px;
    bottom: -10px;
}

/*
home Three HealthCare Area CSS
======================================================*/
.healthcare-area.healthcare-area-two {
    background: linear-gradient(66.78deg, rgb(255, 255, 255) 9.51%, rgb(255, 255, 255) 48.91%, rgb(255, 255, 255) 84.99%);
    position: relative;
}
.healthcare-area.healthcare-area-two .healthcare-content {
    position: relative;
}
.healthcare-area.healthcare-area-two .healthcare-content .profile .profile-icon i {
    color: #01ca99;
}
.healthcare-area.healthcare-area-two .healthcare-content .profile:hover .profile-icon {
    background-color: #01ca99;
}
.healthcare-area.healthcare-area-two .healthcare-content .profile:hover .profile-icon i {
    color: #ffffff;
}
.healthcare-area.healthcare-area-two .healthcare-content .health-shape-3 {
    position: absolute;
    right: -160px;
    bottom: 68px;
}
.healthcare-area.healthcare-area-two .health-shape-4 {
    position: absolute;
    top: 40%;
    left: 100px;
    transform: translateY(-50%);
}

/*
Blog Area CSS
======================================================*/
.blog-area {
    position: relative;
}
.blog-area .blog-shape-1 {
    position: absolute;
    top: 52%;
    left: 100px;
}

.blog-card {
    margin-bottom: 30px;
}
.blog-card .blog-image {
    position: relative;
}
.blog-card .blog-image .blog-one {
    border-radius: 10px 10px 0 0;
}
.blog-card .blog-image .date {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background-color: #01ca99;
    border-radius: 5px;
    padding: 5px 12px;
    transition: all ease 0.5s;
}
.blog-card .blog-card-content {
    padding: 26px;
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 0px 0px 10px 10px;
}
.blog-card .blog-card-content ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.blog-card .blog-card-content ul li {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    margin-right: 25px;
}
.blog-card .blog-card-content ul li::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -16px;
    width: 1px;
    height: 15px;
    background-color: #415674;
    transform: rotate(30deg);
}
.blog-card .blog-card-content ul li:last-child {
    margin-right: 0;
}
.blog-card .blog-card-content ul li:last-child::before {
    display: none;
}
.blog-card .blog-card-content ul li i {
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 18px;
    color: #237afc;
}
.blog-card .blog-card-content h3 {
    font-size: 22px;
    line-height: 32px;
    margin-top: 12px;
    margin-bottom: 10px;
}
.blog-card .blog-card-content h3 a {
    color: #1b2336;
}
.blog-card .blog-card-content h3 a:hover {
    color: #237afc;
}
.blog-card .blog-card-content .read-more:hover {
    color: #237afc;
}
.blog-card:hover .blog-image .date {
    background-color: #237afc;
}

/*
Home Two Blog Area CSS
======================================================*/
.blogs-area .blog-card .blog-image .date {
    top: auto;
    left: auto;
    right: 20px;
    bottom: -15px;
}
.blogs-area .blog-card .blog-card-content h3 {
    margin-top: 12px;
    margin-bottom: 12px;
}
.blogs-area .blog-style .blog-card .blog-card-content {
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: none;
    background-color: #f7f7f7;
}
.blogs-area .blog-style .blog-card .blog-card-content h3 {
    margin-top: 15px;
    margin-bottom: 12px;
}

/*
Home Three Blog Area CSS
======================================================*/
.blog-area.blog-area-three .blog-top .blog-btn {
    text-align: end;
}
.blog-area.blog-area-three .blog-top .blog-btn .common-btn {
    background-color: #237afc;
}
.blog-area.blog-area-three .blog-top .blog-btn .common-btn:hover {
    background-color: #01ca99;
}
.blog-area.blog-area-three .blog-card .blog-image .date {
    top: auto;
    left: auto;
    right: 20px;
    bottom: 20px;
}
.blog-area.blog-area-three .blog-card .blog-card-content {
    padding: 22px;
}
.blog-area.blog-area-three .blog-card .blog-card-content h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

/*
Footer Area CSS
======================================================*/
.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.0705882353);
}
.footer-top .footer-top-heading {
    padding-top: 80px;
    padding-bottom: 80px;
}
.footer-top .footer-top-heading span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #01ca99;
    margin-bottom: 5px;
}
.footer-top .footer-top-heading h2 {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
}
.footer-top form .form-group {
    position: relative;
}
.footer-top form .form-group .form-control {
    border: none;
    box-shadow: unset;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
    border-radius: 5px;
    height: 70px;
    padding: 20px;
    transition: all ease 0.5s;
}
.footer-top form .form-group .form-control::-moz-placeholder {
    color: #415674;
    -moz-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.footer-top form .form-group .form-control:-ms-input-placeholder {
    color: #415674;
    -ms-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.footer-top form .form-group .form-control::placeholder {
    color: #415674;
    transition: all ease 0.5s;
}
.footer-top form .form-group .form-control:focus {
    border: 1px solid #237afc;
}
.footer-top form .form-group .form-control:focus::-moz-placeholder {
    color: transparent;
}
.footer-top form .form-group .form-control:focus:-ms-input-placeholder {
    color: transparent;
}
.footer-top form .form-group .form-control:focus::placeholder {
    color: transparent;
}
.footer-top form .form-group .common-btn {
    position: absolute;
    top: 11px;
    right: 10px;
    background-color: #237afc;
}
.footer-top form .form-group .common-btn:hover {
    background-color: #01ca99;
}

.footer-content {
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.0705882353);
}
.footer-content .footer-widget {
    position: relative;
}
.footer-content .footer-widget::before {
    content: "";
    position: absolute;
    top: 30px;
    right: 0;
    width: 1px;
    height: 220px;
    background-color: rgba(255, 255, 255, 0.0705882353);
}
.footer-content .footer-widget .logo-one {
    margin-bottom: 20px;
}
.footer-content .footer-widget ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.footer-content .footer-widget ul li {
    position: relative;
    color: #e2e2e2;
    padding-left: 25px;
    margin-bottom: 10px;
}
.footer-content .footer-widget ul li:last-child {
    margin-bottom: 0;
}
.footer-content .footer-widget ul li img {
    position: absolute;
    top: 8px;
    left: 0;
    max-width: 15px;
}
.footer-content .footer-widget ul li p {
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    margin-bottom: 5px;
}
.footer-content .footer-widget ul li a {
    color: #e2e2e2;
}
.footer-content .footer-widget ul li a:hover {
    color: #01ca99;
}
.footer-content .footer-in {
    position: relative;
}
.footer-content .footer-in::before {
    content: "";
    position: absolute;
    top: 30px;
    right: -25px;
    width: 1px;
    height: 220px;
    background-color: rgba(255, 255, 255, 0.0705882353);
}
.footer-content .footer-in h3 {
    font-size: 22px;
    color: #ffffff;
    padding-bottom: 14px;
    margin-bottom: 35px;
    position: relative;
}
.footer-content .footer-in h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 142px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.0705882353);
}
.footer-content .footer-in h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #01ca99;
}
.footer-content .footer-in ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.footer-content .footer-in ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}
.footer-content .footer-in ul li:last-child {
    margin-bottom: 0;
}
.footer-content .footer-in ul li a {
    color: #e2e2e2;
}
.footer-content .footer-in ul li a:hover {
    color: #01ca99;
}
.footer-content .footer-in ul li i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: #ffffff;
}
.footer-content .col-lg-3:nth-child(2) .footer-in {
    position: relative;
    margin-left: 45px;
}
.footer-content .col-lg-3:nth-child(3) .footer-in {
    position: relative;
    margin-left: 95px;
}
.footer-content .col-lg-3:nth-child(3) .footer-in::before {
    right: -40px;
}
.footer-content .col-lg-3:nth-child(4) .footer-in {
    position: relative;
    margin-left: 140px;
}
.footer-content .col-lg-3:nth-child(4) .footer-in::before {
    display: none;
}

.copy-area {
    padding-top: 23px;
    padding-bottom: 23px;
}
.copy-area .copy p {
    color: #e2e2e2;
}
.copy-area .copy p a {
    font-weight: 500;
    color: #01ca99;
}
.copy-area .copy p a:hover {
    color: #237afc;
}
.copy-area .copy .flow {
    text-align: end;
}
.copy-area .copy .flow ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.copy-area .copy .flow ul li {
    display: inline-block;
    margin-right: 10px;
}
.copy-area .copy .flow ul li:last-child {
    margin-right: 0;
}
.copy-area .copy .flow ul li a {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.0705882353);
    width: 30px;
    height: 30px;
    line-height: 33px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(17, 17, 17, 0.06);
    transition: all ease 0.5s;
}
.copy-area .copy .flow ul li a i {
    font-size: 15px;
    color: #ffffff;
}
.copy-area .copy .flow ul li a:hover {
    background-color: #01ca99;
}

/*
Pricing Area CSS
======================================================*/
.pricing-area {
    position: relative;
    z-index: 1;
    background-image: url("..//images/background/image-1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.pricing-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #1b2336;
    opacity: 0.92;
    z-index: -1;
}
.pricing-area .section-title h2 {
    color: #ffffff;
}
.pricing-area .pricing-shape-1 {
    position: absolute;
    bottom: 300px;
    left: 100px;
}
.pricing-area .pricing-shape-2 {
    position: absolute;
    top: 175px;
    right: 270px;
    z-index: -1;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
}
.pricing-card .pricing-head {
    position: relative;
    border-bottom: 1px solid rgba(27, 35, 54, 0.0705882353);
    padding-bottom: 20px;
    margin-bottom: 25px;
}
.pricing-card .pricing-head i {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    font-size: 38px;
    background-color: #f7f7f7;
    color: #01ca99;
    width: 75px;
    height: 75px;
    line-height: 82px;
    border-radius: 50%;
    text-align: center;
    transition: all ease 0.5s;
}
.pricing-card .pricing-head .starter {
    padding-left: 100px;
}
.pricing-card .pricing-head .starter h3 {
    font-size: 24px;
    font-weight: 800;
}
.pricing-card .pricing-head .starter p {
    font-size: 40px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    color: #01ca99;
    margin-top: -15px;
    transition: all ease 0.5s;
}
.pricing-card .pricing-head .starter p span {
    font-size: 14px;
    font-weight: 400;
    color: #415674;
    padding-left: 8px;
    position: relative;
}
.pricing-card .pricing-head .starter p span::before {
    content: "";
    position: absolute;
    left: 2px;
    bottom: 2px;
    width: 1px;
    height: 13px;
    background-color: #01ca99;
    transform: rotate(20deg);
}
.pricing-card ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.pricing-card ul li {
    position: relative;
    margin-bottom: 15px;
}
.pricing-card ul li:last-child {
    margin-bottom: 0;
}
.pricing-card ul li i {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    color: #237afc;
}
.pricing-card ul .icon-x {
    color: #ff0000;
}
.pricing-card .common-btn {
    width: 100%;
    margin-top: 25px;
}
.pricing-card:hover .pricing-head i {
    color: #237afc;
}
.pricing-card:hover .pricing-head .starter p {
    color: #237afc;
}
.pricing-card:hover .pricing-head .starter p span::before {
    background-color: #237afc;
}

/*
Different Area CSS
======================================================*/
.different-area {
    position: relative;
}
.different-area .different-content {
    position: relative;
}
.different-area .different-content i {
    position: absolute;
    top: 15px;
    left: 8px;
    font-size: 40px;
    color: #237afc;
    background-color: #ffffff;
    width: 80px;
    height: 80px;
    line-height: 86px;
    border-radius: 50%;
    text-align: center;
}
.different-area .different-content i::after {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: 0;
    bottom: 0;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.0823529412);
}
.different-area .different-content .different {
    padding-left: 110px;
}
.different-area .different-content .different h3 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 5px;
}
.different-area .different-content .different p {
    color: #ffffff;
}
.different-area .different-btn {
    text-align: end;
}
.different-area .different-btn .common-btn {
    border: 1px solid #01ca99;
}
.different-area .different-btn .common-btn.style {
    margin-right: 20px;
    border: 1px solid #1b2336;
    background-color: #1b2336;
}
.different-area .different-btn .common-btn.style:hover {
    border: 1px solid #ffffff;
}
.different-area .different-btn .common-btn:hover {
    border: 1px solid #ffffff;
}
.different-area .health-shape-1 {
    position: absolute;
    top: 50%;
    right: 115px;
    transform: translateY(-50%);
}
.different-area .health-shape-2 {
    position: absolute;
    top: 50%;
    left: 115px;
    transform: translateY(-50%);
}

/*
Features Area CSS
======================================================*/
.features-area .view p {
    text-align: center;
}
.features-area .view p a {
    font-weight: 600;
    color: #01ca99;
}
.features-area .view p a:hover {
    color: #237afc;
}

.features-card {
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding: 40px 35px;
    margin-bottom: 30px;
}
.features-card .icon {
    margin-bottom: 15px;
}
.features-card .icon i {
    display: inline-block;
    font-size: 38px;
    background-color: #01ca99;
    color: #ffffff;
    width: 65px;
    height: 70px;
    line-height: 76px;
    text-align: center;
    border-radius: 50%;
    transition: all ease 0.5s;
}
.features-card .icon h3 {
    font-size: 22px;
    margin-left: 22px;
}
.features-card p {
    margin-bottom: 0;
}
.features-card:hover .icon i {
    -webkit-animation: pop 1.1s ease-out;
    animation: pop 1.1s ease-out;
    background-color: #237afc;
}

/*
About Page CSS
======================================================*/
.page-banner-area {
    padding-top: 110px;
    padding-bottom: 110px;
    background-image: url("..//images/background/image-2.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.page-banner-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #1b2336;
    opacity: 0.9;
    z-index: -1;
}
.page-banner-area.bg-1 {
    background-image: url("..//images/background/image-4.jpg");
}
.page-banner-area.bg-2 {
    background-image: url("..//images/background/image-5.jpg");
}
.page-banner-area.bg-3 {
    background-image: url("..//images/background/image-6.jpg");
}
.page-banner-area.bg-4 {
    background-image: url("..//images/background/image-7.jpg");
}
.page-banner-area.bg-5 {
    background-image: url("..//images/background/image-8.jpg");
}
.page-banner-area.bg-6 {
    background-image: url("..//images/background/image-9.jpg");
}
.page-banner-area.bg-7 {
    background-image: url("..//images/background/image-10.jpg");
}
.page-banner-area.bg-8 {
    background-image: url("..//images/background/image-12.jpg");
}
.page-banner-area.bg-9 {
    background-image: url("..//images/background/image-13.jpg");
}
.page-banner-area.bg-10 {
    background-image: url("..//images/background/image-14.jpg");
}
.page-banner-area.bg-11 {
    background-image: url("..//images/background/image-15.jpg");
}
.page-banner-area.bg-12 {
    background-image: url("..//images/background/image-16.jpg");
}
.page-banner-area.bg-13 {
    background-image: url("..//images/background/image-17.jpg");
}
.page-banner-area .page-heading {
    text-align: center;
    position: relative;
}
.page-banner-area .page-heading h1 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}
.page-banner-area .page-heading ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.page-banner-area .page-heading ul li {
    display: inline-block;
    padding-right: 15px;
    font-weight: 500;
    color: #01ca99;
    position: relative;
}
.page-banner-area .page-heading ul li::before {
    content: "";
    position: absolute;
    top: 4px;
    right: 3px;
    width: 1px;
    height: 15px;
    background-color: #ffffff;
    transform: rotate(25deg);
}
.page-banner-area .page-heading ul li:last-child {
    padding-right: 0;
}
.page-banner-area .page-heading ul li:last-child::before {
    display: none;
}
.page-banner-area .page-heading ul li a {
    color: #ffffff;
}
.page-banner-area .page-heading ul li a:hover {
    color: #237afc;
}
.page-banner-area .page-heading .about-shape-11 {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}
.page-banner-area .page-heading .about-shape-12 {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
}

/**/
.about-area.style::before {
    height: 0;
}

.fun-fact-area.style .count .info h3 {
    color: #1b2336;
}
.fun-fact-area.style .count .info p {
    color: #415674;
}

/**/
.solution-area.style {
    position: relative;
    margin-bottom: -100px;
    z-index: 2;
}
.solution-area.style::before {
    height: 0;
}
.solution-area.style .solution-card {
    margin-bottom: 0;
}

/**/
.testimonial-area.testimonial-about {
    padding-top: 200px;
    background-image: url("..//images/background/image-3.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.testimonial-area.testimonial-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #1b2336;
    opacity: 0.9;
    z-index: -1;
}
.testimonial-area.testimonial-about .testimonials-info .section-heading h2 {
    color: #ffffff;
}
.testimonial-area.testimonial-about .testimonials-info .card-slide {
    margin-bottom: 60px;
}
.testimonial-area.testimonial-about .swiper-pagination {
    position: absolute;
    left: 0;
    bottom: 0;
    height: auto;
    text-align: start;
    z-index: 1;
}
.testimonial-area.testimonial-about .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.4392156863);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all ease 0.5s;
}
.testimonial-area.testimonial-about .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #237afc;
    border: 1px solid #237afc;
    padding: 2px;
    position: relative;
    transition: all ease 0.5s;
}
.testimonial-area.testimonial-about .swiper-pagination .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid #237afc;
}
.testimonial-area.testimonial-about .testimonials-shape-4 {
    position: absolute;
    top: 55%;
    left: 100px;
    z-index: -1;
}

/**/
.healthcare-area.two {
    background: linear-gradient(66.78deg, rgb(255, 255, 255) 9.51%, rgb(255, 255, 255) 48.91%, rgb(255, 255, 255) 84.99%);
}

/*
Testimonials Page CSS
======================================================*/
.service-pagination .pagination {
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 30px;
}
.service-pagination .pagination .page-item {
    margin-right: 10px;
    border-radius: 0;
}
.service-pagination .pagination .page-item .page-link {
    font-size: 18px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    border: none;
    color: #1b2336;
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    width: 40px;
    height: 40px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    transition: all ease 0.5s;
}
.service-pagination .pagination .page-item .page-link.active {
    background-color: #01ca99;
    color: #ffffff;
}
.service-pagination .pagination .page-item .page-link span {
    font-size: 30px;
    position: relative;
    top: -1px;
    right: 6px;
    color: #1b2336;
    transition: all ease 0.5s;
}
.service-pagination .pagination .page-item .page-link:hover {
    background-color: #01ca99;
    color: #ffffff;
}
.service-pagination .pagination .page-item .page-link:hover span {
    color: #ffffff;
}
.service-pagination.article-pagination .pagination {
    justify-content: start;
}

/*
Department Details Page CSS
======================================================*/
.surgeons-area .surgeons-bg {
    padding-top: 55px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 55px;
    background: linear-gradient(66.78deg, rgba(240, 234, 252, 0.48) 9.51%, rgba(191, 230, 253, 0.28) 48.91%, rgba(140, 226, 255, 0.28) 84.99%);
    border-radius: 10px;
}
.surgeons-area .surgeons-bg .surgeons-btn {
    text-align: end;
}
.surgeons-area .surgeons-bg .surgeons-btn .common-btn {
    background-color: #237afc;
}
.surgeons-area .surgeons-bg .surgeons-btn .common-btn:hover {
    background-color: #01ca99;
}

/**/
.department-overview-area .overview-info {
    margin-right: 30px;
}
.department-overview-area .overview-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.department-overview-area .overview-image {
    position: relative;
}
.department-overview-area .overview-image .department-ten {
    border-radius: 12px;
}
.department-overview-area .overview-image .popup-btn {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #ffffff;
    border: 1.5px solid rgba(1, 202, 153, 0.8);
    color: #01ca99;
    width: 85px;
    height: 85px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    padding-left: 4px;
    transform: translateY(-50%);
    transition: all ease 0.5s;
    z-index: 1;
}
.department-overview-area .overview-image .popup-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 50%;
    transition: all ease 0.5s;
    border: 1.5px solid rgba(1, 202, 153, 0.8);
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}
.department-overview-area .overview-image .popup-btn i {
    font-size: 30px;
    transition: all ease 0.5s;
}
.department-overview-area .overview-image .popup-btn:hover {
    background-color: #01ca99;
}
.department-overview-area .overview-image .popup-btn:hover::before {
    border: 1.5px solid #237afc;
}
.department-overview-area .overview-image .popup-btn:hover i {
    color: #ffffff;
}

/**/
.department-treated .treated-info {
    margin-right: 50px;
}
.department-treated .treated-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
}
.department-treated .joint ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.department-treated .joint ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 20px;
}
.department-treated .joint ul li:last-child {
    margin-bottom: 0;
}
.department-treated .joint ul li i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 22px;
    color: #237afc;
}

/**/
.department-test-area .test-image .department-12 {
    border-radius: 10px;
}
.department-test-area .test-info {
    margin-left: 25px;
}
.department-test-area .test-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

/*
FAQ Page CSS
======================================================*/
.faq-area .ask-content .faq-content .accordion-item {
    margin-bottom: 30px;
    border-radius: 10px;
    border: none;
    padding-bottom: 0;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
}
.faq-area .ask-content .faq-content .accordion-item:last-child {
    margin-bottom: 0;
}
.faq-area .ask-content .faq-content .accordion-item .accordion-body {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 0;
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 20px;
}
.faq-area .ask-content .faq-content .accordion-button {
    border: none;
    box-shadow: none;
    font-weight: 600;
    font-size: 18px;
    color: #1b2336;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 0;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 70px;
    padding-bottom: 20px;
    margin-top: -8px;
}
.faq-area .ask-content .faq-content .accordion-button::before {
    right: 30px;
    top: 50%;
    content: "\ebc1";
    font-size: 20px;
    position: absolute;
    transform: translateY(-50%);
    font-family: boxicons;
    color: #01ca99;
}
.faq-area .ask-content .faq-content .accordion-button::after {
    display: none;
}
.faq-area .ask-content .faq-content .accordion-button:not(.collapsed) {
    color: #1b2336;
    background-color: #ffffff;
}
.faq-area .ask-content .faq-content .accordion-button:not(.collapsed)::before {
    content: "\eb8d";
}
.faq-area .faq-image .newsletter-seven {
    border-radius: 10px;
}

/*
Gallery Page CSS
======================================================*/
.gallery-page-area .gallery-image {
    position: relative;
    margin-bottom: 30px;
}
.gallery-page-area .gallery-image .gallery .gallery-five {
    border-radius: 10px;
}
.gallery-page-area .gallery-image .gallery::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0%;
    background-color: #234afc;
    border-radius: 10px;
    opacity: 0.6;
    visibility: hidden;
    transition: all ease 0.5s;
}
.gallery-page-area .gallery-image .gallery .popup-know {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
    background-color: #ffffff;
    width: 70px;
    height: 70px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.5s;
}
.gallery-page-area .gallery-image .gallery .popup-know i {
    font-size: 35px;
    color: #237afc;
    transition: all ease 0.5s;
}
.gallery-page-area .gallery-image .gallery .popup-know:hover {
    background-color: #237afc;
}
.gallery-page-area .gallery-image .gallery .popup-know:hover i {
    color: #ffffff;
}
.gallery-page-area .gallery-image:hover .gallery::before {
    height: 100%;
    visibility: visible;
}
.gallery-page-area .gallery-image:hover .gallery .popup-know {
    opacity: 1;
    visibility: visible;
}

/*
Appointment Page CSS
======================================================*/
.appointment-form .form-group .form-label {
    margin-bottom: 10px;
}
.appointment-form .form-group .form-select {
    color: #415674;
}
.appointment-form .form-group .form-control {
    box-shadow: none;
    background-color: #f9f9f9;
    border: 1px solid rgba(27, 35, 54, 0.1);
    height: 60px;
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    transition: all ease 0.5s;
}
.appointment-form .form-group .form-control:focus {
    border: 1px solid #01ca99;
}
.appointment-form .form-group .textarea {
    height: 240px;
}
.appointment-form .form-check {
    min-height: 0;
    padding-left: 0;
    margin-bottom: 0;
}
.appointment-form .form-check .form-check-input {
    width: 25px;
    height: 25px;
    margin-top: -1px;
    margin-left: 0;
    border: 1px solid rgba(27, 35, 54, 0.1);
}
.appointment-form .form-check .form-check-input[type=checkbox] {
    border-radius: 5px;
}
.appointment-form .form-check .form-check-input:focus {
    border-color: #237afc;
    outline: 0;
    box-shadow: none;
}
.appointment-form .form-check .form-check-label {
    position: initial;
    padding-left: 10px;
    margin-right: -5px;
}

/*
Emergency Services Page CSS
======================================================*/
.surgeons-area.emergency {
    padding-bottom: 30px;
}
.surgeons-area.emergency .surgeons-bg {
    padding-top: 35px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 35px;
}
.surgeons-area.emergency .surgeons-bg .surgeons-btn .icon {
    position: relative;
    font-size: 28px;
    font-weight: 500;
    color: #1b2336;
}
.surgeons-area.emergency .surgeons-bg .surgeons-btn .icon i {
    position: absolute;
    top: 1px;
    left: -35px;
    font-size: 34px;
    color: #1b2336;
}

/**/
.ambulance-area .ambulance-card {
    background-color: #237afc;
    border-radius: 10px;
    padding: 30px 50px 30px 30px;
    margin-bottom: 30px;
    transition: all ease 0.5s;
}
.ambulance-area .ambulance-card h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}
.ambulance-area .ambulance-card a {
    display: inline-block;
    position: relative;
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    padding-left: 30px;
}
.ambulance-area .ambulance-card a i {
    position: absolute;
    top: 6px;
    left: 0;
}
.ambulance-area .ambulance-card .ambulance {
    font-size: 60px;
    color: #ffffff;
    opacity: 0.5;
    transition: all ease 0.5s;
    position: relative;
    top: 10px;
}
.ambulance-area .ambulance-card:hover {
    background-color: #01ca99;
}
.ambulance-area .ambulance-card:hover .ambulance {
    opacity: 1;
    transform: scale(1.1);
}
.ambulance-area .map {
    margin-bottom: 30px;
}
.ambulance-area .map iframe {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 10px;
}

.appointment-page-area.emergency .appointment-form .form-check .form-check-label a {
    color: #237afc;
}
.appointment-page-area.emergency .appointment-form .form-check .form-check-label a:hover {
    color: #01ca99;
}
.appointment-page-area.emergency .appointment-form .common-btn {
    margin-top: 30px;
    background-color: #237afc;
}
.appointment-page-area.emergency .appointment-form .common-btn:hover {
    background-color: #01ca99;
}

/*
Patients & Visitors Page CSS
======================================================*/
.visitors-area .visitors-info {
    margin-right: -5px;
}
.visitors-area .visitors-info .section-heading {
    margin-bottom: 25px;
}
.visitors-area .visitors-info .section-heading h2 {
    margin-bottom: 0;
}
.visitors-area .visitors-info .hospital-visitors {
    margin-bottom: 25px;
}
.visitors-area .visitors-info .hospital-visitors h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.visitors-area .visitors-info map iframe {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 10px;
}

.search-box {
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 40px 28px;
    margin-bottom: 40px;
}
.search-box .search-group {
    position: relative;
}
.search-box .search-group .form-control {
    box-shadow: none;
    background-color: #ffffff;
    border: 1px solid rgba(27, 35, 54, 0.13);
    border-radius: 5px;
    height: 50px;
    padding: 10px 15px;
}
.search-box .search-group .form-control:focus {
    border: 1px solid #237afc;
}
.search-box .search-group .search-btn {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background-color: #237afc;
    border-radius: 0 5px 5px 0;
    color: #ffffff;
    font-size: 24px;
    height: 50px;
    padding: 12px 16px;
}

.top-services {
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 40px 30px;
    margin-bottom: 40px;
}
.top-services h3 {
    font-size: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #237afc;
    margin-bottom: 30px;
}
.top-services ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.top-services ul li {
    position: relative;
    font-weight: 500;
    padding-left: 25px;
    margin-bottom: 12px;
}
.top-services ul li:last-child {
    margin-bottom: 0;
}
.top-services ul li i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 22px;
    color: #237afc;
}

.contact {
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 40px 30px;
}
.contact h3 {
    font-size: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #237afc;
    margin-bottom: 30px;
}
.contact form .form-control {
    box-shadow: none;
    background-color: #ffffff;
    border: 1px solid rgba(27, 35, 54, 0.13);
    border-radius: 5px;
    padding: 15px;
    height: 50px;
    margin-bottom: 20px;
    transition: all ease 0.5s;
}
.contact form .form-control:focus {
    border: 1px solid #237afc;
}
.contact form .textarea {
    height: 150px;
}
.contact form .common-btn {
    width: 100%;
    background-color: #237afc;
}
.contact form .common-btn:hover {
    background-color: #01ca99;
}

/*
Appointment Page CSS
======================================================*/
.appointment-page-area.find .section-heading {
    margin-bottom: 20px;
}
.appointment-page-area.find .section-heading h2 {
    font-size: 22px;
    margin-bottom: 0;
}
.appointment-page-area.find .appointment-form .form-control {
    color: #415674;
}
.appointment-page-area.find .appointment-form .common-btn {
    background-color: #237afc;
}
.appointment-page-area.find .appointment-form .common-btn:hover {
    background-color: #01ca99;
}

/*
Pricing Page CSS
======================================================*/
.pricing-plan {
    position: relative;
}
.pricing-plan .pricing-card {
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    transition: all ease 0.5s;
}
.pricing-plan .pricing-card:hover .pricing-head i {
    color: #237afc;
}
.pricing-plan .pricing-card:hover .starter p {
    color: #237afc;
}
.pricing-plan .pricing-shape-1 {
    position: absolute;
    left: 100px;
    bottom: 300px;
}
.pricing-plan .pricing-shape-2 {
    position: absolute;
    top: 175px;
    right: 270px;
    z-index: -1;
}

/*
Blog Details Page CSS
======================================================*/
.blog-details-area .blog-details .blog-card .blog-image .blog-one {
    border-radius: 10px;
}
.blog-details-area .blog-details .blog-card .blog-image .date {
    top: auto;
    left: auto;
    right: 20px;
    bottom: -15px;
}
.blog-details-area .blog-details .blog-card .blog-card-content {
    box-shadow: none;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}
.blog-details-area .blog-details .blog-card .blog-card-content h3 {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 12px;
}
.blog-details-area .blog-details .quote-card {
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
}
.blog-details-area .blog-details .quote-card .quote-icon {
    position: relative;
}
.blog-details-area .blog-details .quote-card .quote-icon i {
    position: absolute;
    top: -4px;
    left: 0;
    font-size: 60px;
    color: #237afc;
}
.blog-details-area .blog-details .quote-card .quote-icon p {
    font-size: 18px;
    font-weight: 600;
    color: #1b2336;
    padding-left: 90px;
}
.blog-details-area .blog-details .treatment {
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding: 18px 30px;
    margin-top: 25px;
    margin-bottom: 40px;
}
.blog-details-area .blog-details .treatment .tags {
    background-color: transparent;
    padding: 0;
}
.blog-details-area .blog-details .treatment .tags ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.blog-details-area .blog-details .treatment .tags ul li {
    display: inline-block;
    position: relative;
}
.blog-details-area .blog-details .treatment .tags ul li a {
    border: none;
    background-color: transparent;
    padding: 0;
}
.blog-details-area .blog-details .treatment .tags ul li a:hover {
    color: #237afc;
}
.blog-details-area .blog-details .treatment .tags ul li i {
    color: #237afc;
    background-color: #ffffff;
    width: 30px;
    height: 30px;
    line-height: 28px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
    margin-right: 10px;
}
.blog-details-area .blog-details .treatment .share {
    text-align: end;
}
.blog-details-area .blog-details .treatment .share ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.blog-details-area .blog-details .treatment .share ul li {
    display: inline-block;
    margin-right: 10px;
}
.blog-details-area .blog-details .treatment .share ul li:last-child {
    margin-right: 0;
}
.blog-details-area .blog-details .treatment .share ul li a {
    color: #237afc;
    background-color: #ffffff;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
}
.blog-details-area .blog-details .treatment .share ul li a:hover {
    background-color: #237afc;
    color: #ffffff;
}
.blog-details-area .blog-details .coup {
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding: 40px 50px 40px 35px;
    margin-bottom: 30px;
}
.blog-details-area .blog-details .coup .coup-image {
    position: relative;
}
.blog-details-area .blog-details .coup .coup-image .user-image-5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.blog-details-area .blog-details .coup .coup-info {
    padding-left: 120px;
}
.blog-details-area .blog-details .coup .coup-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
}
.blog-details-area .blog-details .coup .coup-info p {
    margin-bottom: 15px;
}
.blog-details-area .blog-details .coup .coup-info ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.blog-details-area .blog-details .coup .coup-info ul li {
    display: inline-block;
    margin-right: 10px;
}
.blog-details-area .blog-details .coup .coup-info ul li:last-child {
    margin-right: 0;
}
.blog-details-area .blog-details .coup .coup-info ul li a {
    color: #237afc;
    background-color: #ffffff;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
}
.blog-details-area .blog-details .coup .coup-info ul li a:hover {
    background-color: #237afc;
    color: #ffffff;
}
.blog-details-area .blog-details .comment {
    margin-bottom: 35px;
}
.blog-details-area .blog-details .comment h5 {
    font-size: 20px;
    margin-bottom: 20px;
}
.blog-details-area .blog-details .comment ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.blog-details-area .blog-details .comment ul li {
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 40px 35px;
}
.blog-details-area .blog-details .comment ul li:last-child {
    margin-bottom: 0;
}
.blog-details-area .blog-details .comment ul li .erat {
    position: relative;
    padding-left: 100px;
    padding-bottom: 12px;
}
.blog-details-area .blog-details .comment ul li .erat:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}
.blog-details-area .blog-details .comment ul li .erat .user-16 {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 80px;
    border-radius: 50%;
}
.blog-details-area .blog-details .comment ul li .erat h4 {
    font-size: 18px;
    margin-bottom: 8px;
}
.blog-details-area .blog-details .comment ul li .erat .date {
    margin-bottom: 10px;
}
.blog-details-area .blog-details .comment ul li .erat p {
    margin-bottom: 0;
}
.blog-details-area .blog-details .comment ul li .erat a {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    background-color: #f2f2f2;
    padding: 4px 15px;
}
.blog-details-area .blog-details .comment ul li .erat a:hover {
    background-color: #01ca99;
    color: #ffffff;
}
.blog-details-area .blog-details .comment ul li .erat .quote-5 {
    position: absolute;
    top: 0;
    left: 0;
}
.blog-details-area .blog-details .leave-comment {
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding: 40px 30px;
}
.blog-details-area .blog-details .leave-comment h5 {
    font-size: 30px;
    margin-bottom: 8px;
}
.blog-details-area .blog-details .leave-comment p {
    margin-bottom: 20px;
}
.blog-details-area .blog-details .leave-comment form .form-control {
    box-shadow: none;
    background-color: #f9f9f9;
    border: 1px solid rgba(27, 35, 54, 0.1);
    border-radius: 5px;
    height: 50px;
    font-size: 15px;
    color: #929292;
    margin-bottom: 20px;
    padding: 10px 15px;
    transition: all ease 0.5s;
}
.blog-details-area .blog-details .leave-comment form .form-control:focus {
    border: 0.5px solid #01ca99;
}
.blog-details-area .blog-details .leave-comment form .textarea {
    height: 150px;
}
.blog-details-area .blog-details .leave-comment form .common-btn {
    margin-top: 10px;
    background-color: #237afc;
}
.blog-details-area .blog-details .leave-comment form .common-btn:hover {
    background-color: #01ca99;
}

/**/
.tags {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 30px 30px 15px 30px;
}
.tags h5 {
    font-size: 20px;
    padding-bottom: 12px;
    margin-bottom: 30px;
    border-bottom: 1px solid #237afc;
}
.tags ul {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.tags ul li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
    transition: all ease 0.5s;
    font-family: "Inter", sans-serif;
}
.tags ul li:last-child {
    margin-bottom: 0;
    margin-bottom: -15px;
}
.tags ul li a {
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid rgba(27, 35, 54, 0.13);
    border-radius: 3px;
    padding: 6px 17px;
    font-size: 14px;
}
.tags ul li a:hover {
    background-color: #237afc;
    color: #ffffff;
    border-radius: 3px;
}

/**/
.popular-post {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.popular-post h4 {
    font-size: 20px;
    padding-bottom: 12px;
    margin-bottom: 30px;
    border-bottom: 1px solid #237afc;
}
.popular-post .single-recent-post {
    overflow: hidden;
    margin-bottom: 10px;
}
.popular-post .single-recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom-width: 0;
}
.popular-post .single-recent-post .thumb {
    width: 85px;
    height: 80px;
    margin-right: 5px;
    position: relative;
    display: inline-block;
}
.popular-post .single-recent-post .thumb .full-image {
    width: 85px;
    height: 80px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.popular-post .single-recent-post .thumb .full-image.bg-1 {
    background-image: url("..//images/user/user-image-10.jpg");
}
.popular-post .single-recent-post .thumb .full-image.bg-2 {
    background-image: url("..//images/user/user-image-11.jpg");
}
.popular-post .single-recent-post .thumb .full-image.bg-3 {
    background-image: url("..//images/user/user-image-12.jpg");
}
.popular-post .single-recent-post .single-recent-info {
    margin-left: 10px;
}
.popular-post .single-recent-post .single-recent-info p {
    color: #1b2336;
    margin-bottom: 5px;
}
.popular-post .single-recent-post .single-recent-info p i {
    position: relative;
    top: 2px;
    font-size: 18px;
    color: #01ca99;
    padding-right: 5px;
}
.popular-post .single-recent-post .single-recent-info h5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
}
.popular-post .single-recent-post .single-recent-info h5 a {
    display: inline-block;
    color: #1b2336;
}
.popular-post .single-recent-post .single-recent-info h5 a:hover {
    color: #01ca99;
}

/*
Doctor Time Table Area CSS
=================================================*/
.doctor-calendar-area {
    position: relative;
    z-index: 1;
}

.doctor-calendar-table {
    background-color: #ffffff;
    border: 1px solid rgba(27, 35, 54, 0.08);
    border-bottom-width: 0;
    border-radius: 5px;
}
.doctor-calendar-table table {
    margin-bottom: 0;
}
.doctor-calendar-table table thead tr th {
    vertical-align: middle;
    text-align: center;
    background-color: #237afc;
    border: none;
    color: #ffffff;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    padding-top: 17px;
    padding-bottom: 15px;
}
.doctor-calendar-table table tbody tr td {
    vertical-align: middle;
    text-align: center;
    border-top: none;
    white-space: nowrap;
    padding-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
    padding-bottom: 25px;
    border: 1px solid rgba(27, 35, 54, 0.08);
    transition: all ease 0.5s;
}
.doctor-calendar-table table tbody tr td:first-child {
    border-left: none;
}
.doctor-calendar-table table tbody tr td:last-child {
    border-right: none;
}
.doctor-calendar-table table tbody tr td h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    transition: all ease 0.5s;
}
.doctor-calendar-table table tbody tr td span {
    display: block;
    margin-top: 10px;
    transition: all ease 0.5s;
}
.doctor-calendar-table table tbody tr td span.time {
    display: inline-block;
    background-color: rgba(35, 122, 252, 0.0705882353);
    color: #237afc;
    font-weight: 500;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    transition: all ease 0.5s;
}
.doctor-calendar-table table tbody tr td:last-child td {
    border-bottom: none;
}
.doctor-calendar-table table tbody tr td:hover {
    background-color: #237afc;
    border-color: #237afc;
}
.doctor-calendar-table table tbody tr td:hover h3 {
    color: #ffffff;
}
.doctor-calendar-table table tbody tr td:hover span {
    color: #ffffff;
}
.doctor-calendar-table table tbody tr td:hover span.time {
    background-color: #01ca99;
    color: #ffffff;
}

/*
Contact Us Area CSS
=================================================*/
.contact-us-area {
    padding-top: 60px;
    padding-bottom: 30px;
    background: linear-gradient(66.78deg, rgba(240, 234, 252, 0.48) 9.51%, rgba(191, 230, 253, 0.28) 48.91%, rgba(140, 226, 255, 0.28) 84.99%);
}
.contact-us-area .number-card {
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding: 30px 40px;
    margin-bottom: 30px;
}
.contact-us-area .number-card .number {
    position: relative;
}
.contact-us-area .number-card .number .map-icon {
    position: absolute;
    top: 10px;
    left: 0;
    background-color: #f7f7f7;
    width: 70px;
    height: 70px;
    line-height: 65px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid rgba(27, 35, 54, 0.15);
}
.contact-us-area .number-card .number .map-icon img {
    max-width: 25px;
    transition: all ease 0.5s;
}
.contact-us-area .number-card .number .location {
    padding-left: 90px;
}
.contact-us-area .number-card .number .location h3 {
    font-size: 26px;
    margin-bottom: 8px;
}
.contact-us-area .number-card .number .location a {
    display: block;
}
.contact-us-area .number-card:hover .number .map-icon img {
    -webkit-animation: rotate-vertical 1.1s ease-out;
    animation: rotate-vertical 1.1s ease-out;
}

.contact-area .contact-map iframe {
    width: 100%;
    height: 540px;
    display: block;
    border-radius: 10px;
}
.contact-area .contact-form {
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding: 70px 50px;
}
.contact-area .contact-form .form-control {
    box-shadow: none;
    background-color: #f9f9f9;
    border: 1px solid rgba(27, 35, 54, 0.1);
    border-radius: 5px;
    height: 50px;
    padding: 10px 20px;
    margin-bottom: 20px;
    transition: all ease 0.5s;
}
.contact-area .contact-form .form-control:focus {
    border: 1px solid #237afc;
}
.contact-area .contact-form .textarea {
    height: 190px;
}
.contact-area .contact-form .common-btn {
    background-color: #237afc;
}
.contact-area .contact-form .common-btn:hover {
    background-color: #01ca99;
}

/*
Terms Condition Area CSS
=================================================*/
.visitors-info.terms .blog-image-10 {
    border-radius: 10px;
    margin-bottom: 30px;
}

/*
Privacy Policy Area Style
=======================================================*/
.privacy-policy-area .container {
    max-width: 875px;
    margin: auto;
}

.privacy-policy-wrap img {
    margin-bottom: 30px;
}
.privacy-policy-wrap .privacy-content {
    margin-bottom: 30px;
}
.privacy-policy-wrap .privacy-content h3 {
    margin-bottom: 15px;
}
.privacy-policy-wrap .privacy-content p {
    margin-bottom: 10px;
}
.privacy-policy-wrap .privacy-content ul {
    margin-left: 0;
    margin-bottom: 15px;
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
}
.privacy-policy-wrap .privacy-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.privacy-policy-wrap .privacy-content li:last-child {
    margin-bottom: 0;
}
.privacy-policy-wrap .privacy-content li i {
    position: absolute;
    left: 0;
    top: 1px;
    color: #01ca99;
    font-size: 20px;
}

/*
404 Error Page Style
=======================================================*/
.error-area {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 100px;
}
.error-area .d-table {
    width: 100%;
    height: 100%;
}
.error-area .d-table .d-table-cell {
    vertical-align: middle;
}
.error-area .error-content-wrap {
    z-index: 1;
    position: relative;
}
.error-area .error-content-wrap .error-image {
    max-width: 400px;
}
.error-area .error-content-wrap h3 {
    margin: 20px 0 0;
    position: relative;
    color: #1b2336;
}
.error-area .error-content-wrap p {
    margin: 15px 0 20px;
    font-size: 18px;
    font-weight: 500;
}

/*
Login Register Area Style
=======================================================*/
.login-form {
    padding: 35px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
    max-width: 650px;
    margin: auto;
    border: 1px solid rgba(27, 35, 54, 0.13);
}
.login-form h2 {
    font-size: 30px;
    margin-bottom: 30px;
}
.login-form form .form-group {
    margin-bottom: 25px;
}
.login-form form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.login-form form .form-group .form-control {
    height: 55px;
    padding: 20px;
    line-height: initial;
    color: #415674;
    background-color: #f9f9f9;
    border: 1px solid rgba(27, 35, 54, 0.13);
    border-radius: 5px;
    box-shadow: unset;
    font-size: 15px;
    transition: all ease 0.5s;
}
.login-form form .form-group .form-control:focus {
    border: 1px solid #01ca99;
}
.login-form form .lost-your-password {
    text-align: end;
}
.login-form form .lost-your-password a {
    display: inline-block;
    position: relative;
    font-weight: 500;
    font-size: 15px;
    color: #415674;
}
.login-form form .lost-your-password a::before {
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    transition: all ease 0.5s;
    background-color: #1b2336;
}
.login-form form .lost-your-password a::after {
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    transition: all ease 0.5s;
    bottom: 0;
    content: "";
    background-color: #01ca99;
}
.login-form form .default-btn {
    margin-top: 25px;
    padding: 15px 35px;
    border-radius: 5px;
    width: 100%;
    border: none;
    font-weight: 500;
    position: relative;
    background-color: #237afc;
    color: #ffffff;
    z-index: 1;
}
.login-form form .default-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    background-color: #01ca99;
    transition: all ease 0.5s;
    z-index: -1;
}
.login-form form .default-btn:hover::before {
    opacity: 1;
    height: 100%;
    visibility: visible;
    border-radius: 5px;
}

.register-form {
    padding: 35px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
    max-width: 650px;
    margin: auto;
    border: 1px solid #e1e1e1;
}
.register-form h2 {
    font-size: 30px;
    margin-bottom: 30px;
}
.register-form form .form-group {
    margin-bottom: 25px;
}
.register-form form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
}
.register-form form .form-group .form-control {
    height: 50px;
    padding: 20px;
    line-height: initial;
    background-color: #f9f9f9;
    border: 1px solid rgba(27, 35, 54, 0.13);
    border-radius: 5px;
    box-shadow: unset;
    transition: all ease 0.5s;
    font-size: 15px;
}
.register-form form .form-group .form-control:focus {
    border: 1px solid #01ca99;
}
.register-form form .description {
    font-style: italic;
    font-size: 14px;
    margin-top: -5px;
    margin-bottom: 15px;
}
.register-form form .default-btn {
    margin-top: 10px;
    padding: 15px 35px;
    border-radius: 5px;
    width: 100%;
    border: none;
    font-weight: 500;
    position: relative;
    background-color: #237afc;
    color: #ffffff;
    z-index: 1;
}
.register-form form .default-btn::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    background-color: #01ca99;
    transition: all ease 0.5s;
    z-index: -1;
}
.register-form form .default-btn:hover::before {
    opacity: 1;
    height: 100%;
    visibility: visible;
    border-radius: 5px;
}

/* Others CSS */
.FocuS {
    -webkit-animation: FocuS 1s linear 1s infinite;
    animation: FocuS 1s linear 1s infinite;
}

.rotate {
    -webkit-animation: rotation 20s infinite linear;
    animation: rotation 20s infinite linear;
}

.bounce {
    -webkit-animation: float 1500ms infinite ease-in-out;
    animation: float 1500ms infinite ease-in-out;
}

.moveVertical {
    -webkit-animation: moveVertical 3000ms infinite ease-in-out;
    animation: moveVertical 3000ms infinite ease-in-out;
}

.moveHorizontal {
    -webkit-animation: moveHorizontal 3000ms infinite ease-in-out;
    animation: moveHorizontal 3000ms infinite ease-in-out;
}

.animationFramesTwo {
    -webkit-animation: animationFramesTwo 15000ms infinite ease-in-out;
    animation: animationFramesTwo 15000ms infinite ease-in-out;
}

.moveHorizontal_reverse {
    -webkit-animation: moveHorizontal_reverse 3000ms infinite ease-in-out;
    animation: moveHorizontal_reverse 3000ms infinite ease-in-out;
}

@-webkit-keyframes pop {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}

@keyframes pop {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}
@-webkit-keyframes ripple {
    0% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.75);
        opacity: 0.6;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
@keyframes ripple {
    0% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.75);
        opacity: 0.6;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
@-webkit-keyframes full-circle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
@keyframes full-circle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
@-webkit-keyframes rotate-vertical {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}
@keyframes rotate-vertical {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}
@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}
@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}
@keyframes animationFramesTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }
    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
    }
    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }
    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}
@-webkit-keyframes animationFramesTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }
    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
    }
    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }
    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}
@keyframes waving_left {
    0% {
        -webkit-transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(3deg);
    }
    50% {
        -webkit-transform: rotate(6deg);
    }
    75% {
        -webkit-transform: rotate(-3deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}
@-webkit-keyframes waving_left {
    0% {
        -webkit-transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(3deg);
    }
    50% {
        -webkit-transform: rotate(6deg);
    }
    75% {
        -webkit-transform: rotate(-3deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}
@keyframes waving_right {
    0% {
        -webkit-transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(-3deg);
    }
    50% {
        -webkit-transform: rotate(-6deg);
    }
    75% {
        -webkit-transform: rotate(-3deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}
@-webkit-keyframes waving_right {
    0% {
        -webkit-transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(-3deg);
    }
    50% {
        -webkit-transform: rotate(-6deg);
    }
    75% {
        -webkit-transform: rotate(-3deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}
@-webkit-keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes animationFramesTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }
    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
    }
    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }
    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}
@-webkit-keyframes animationFramesTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }
    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
    }
    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }
    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}
@keyframes moveHorizontal {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(0px);
    }
}
@-webkit-keyframes moveHorizontal {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(0px);
    }
}
@keyframes moveHorizontal_reverse {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0px);
    }
}
@-webkit-keyframes moveHorizontal_reverse {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0px);
    }
}
@keyframes moveVertical {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}
@-webkit-keyframes moveVertical {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes FocuS {
    0% {
        opacity: 0;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes FocuS {
    0% {
        opacity: 0;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}/*# sourceMappingURL=style.css.map */