/* 
Name: Kacovid
Author Name: Fullsky
Author URL: https://www.templatemonster.com/authors/fullsky/
Version: 1.0

/////////////////////

--------------------*
Table of Contents 
--------------------*

1.0 Reset
    1.1 Google Font Family Import URL
    1.2 Typography
    1.3 Links
    1.4 Buttons
    1.5 Basic Reset
2.0 Navbar
3 Header
4 Symptoms
5 Prevention
6 FAQ 
7 Blog
8 Help
9 Footer
10 Appointment Page
11 Contact Page
12 Blog Grid
13 Blog Single
14 Keyframes

/////////////////////


*/


/* 1.0 Reset */

/* 1.1 Google Font Family */

@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&display=swap');


/* @font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url(../fonts/fa-regular-400.eot);
    src: url(../fonts/fa-regular-400d41d.eot?#iefix) format("embedded-opentype"), url(../fonts/fa-regular-400.woff2) format("woff2"), url(../fonts/fa-regular-400.woff) format("woff"), url(../fonts/fa-regular-400.ttf) format("truetype"), url(../fonts/fa-regular-400.svg#fontawesome) format("svg")
} */

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Philosopher', sans-serif;
    overflow-x: hidden !important;
    color: #1e2226;
}

/* img {
    height: auto;
    width: 100%;
} */

ul {
    padding: 0;
    margin: 0;
}

ul>li {
    list-style: none;
}

/* 1.2 Typography  */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.6;
}

@media screen and (min-width: 768px) {
    h1 {
        line-height: 1.2;
        margin-bottom: 1rem;
    }
}

h2 {
    font-size: 1.75rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.3;
}

h5 {
    font-size: 1rem;
    font-weight: 400;
}

h6 {
    font-size: .87rem;
    font-weight: 400;
    line-height: 1.5;
}

p {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .5px;
}

:root {
    --colorOne: #0f60fe;
    --colorTwo: #007bff12;
}

.text-muted {
    color: #798897 !important;
}

.para-dec {
    font-size: 18px;
    letter-spacing: .5px;
}

.space {
    letter-spacing: .5px;
}

.text-link {
    color: #fff;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}

.text-hover:hover {
    color: #53b9c7;
}

a.text-muted:hover {
    color: #53b9c7 !important;
}

@media (max-width: 767.98px) {
    p {
        font-size: 16px;
    }

    .para-dec {
        font-size: 16px;
    }
}

/* 1.3 Links */

a {
    color: black;
    transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    -ms-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    -webkit-transition: color .3s ease-in-out;
}

a:hover,
a:focus {
    color: var(--colorOne);
    text-decoration: none;
    outline: none;
}

/* 1.4 Btn */

.btn {
    background-color: var(--colorOne);
    font-weight: 500;
    padding: 12px 28px;
    border: none;
    color: white;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.btn.btn-sm {
    padding: 4px 12px;
    font-size: 12px;
}

.btn.btn-lg {
    padding: 12px 24px;
}

.btn.btn-round {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.btn.btn-round-outline {
    border: 2px solid var(--colorOne);
    background-color: transparent;
    color: grey;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.btn.btn-round-outline:hover {
    border-color: #53b9c7;
    background-color: #53b9c7;
    color: white;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.btn.btn-outline {
    border: 2px solid var(--colorOne);
    background-color: transparent;
    color: grey;
    border-radius: 2.5px;
    -webkit-border-radius: 2.5px;
    -moz-border-radius: 2.5px;
    -ms-border-radius: 2.5px;
    -o-border-radius: 2.5px;
}

.btn.btn-outline:hover {
    border-color: var(--colorOne);
    background-color: var(--colorOne);
    color: white;
    border-radius: 2.5px;
    -webkit-border-radius: 2.5px;
    -moz-border-radius: 2.5px;
    -ms-border-radius: 2.5px;
    -o-border-radius: 2.5px;
}

.btn:hover,
.btn:focus {
    background-color: #53b9c7;
    color: white;
    box-shadow: 0 3px 12px rgba(235, 69, 88, 0.3);
}

/* 1.5 Basic Reset */

.pd-120 {
    padding: 120px 0;
}

.pd-100 {
    padding: 100px 0;
}

.pd-80 {
    padding: 80px 0;
}

.mg-120 {
    margin: 120px 0;
}

.mg-100 {
    margin: 100px 0;
}

.mg-80 {
    margin: 80px 0;
}

.bg-image {
    background: rgba(0, 0, 0, 0.5);
    background-blend-mode: color-burn;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-color {
    background-color: #fbfbfc;
}

.dark-bg-color {
    background-color: #49555d;
}

.home-wrapper {
    padding: 20px 0 0px;
    position: relative;
}

.home-wrapper-full {
    height: 100vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.bg-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-center {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
}

.home-center-desc {
    display: table-cell;
    vertical-align: middle;
}

.opa {
    position: relative;
    z-index: 1;
}

.justify-vertical {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.no-gutter>.col,
.no-gutter>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
    margin-left: 0;
    margin-right: 0;
}

.section-title h2 {
    font-size: calc(100% + 2vw);
}

.section-title {
    margin-bottom: 1rem;
}

.color {
    color: var(--colorOne);
}

.rounded-50 {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

@media (min-width: 768px) {
    h2 {
        font-size: 3rem;
    }
}

.breadcrumb {
    background-color: transparent;
}

.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item.active {
    color: var(--colorOne);
}

/* 1.0 Reset end */

/* 2 Navbar */

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px 0px;
    z-index: 1030;
    margin-bottom: 0;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    background: var(--colorTwo);
}

.hero-1 .navbar .navbar-brand,
.hero-2 .navbar .navbar-brand {
    font-size: 28px;
    font-weight: 600;
    color: var(--colorOne);
}

.hero-1 .navbar .navbar-brand:hover,
.hero-2 .navbar .navbar-brand:hover {
    color: var(--colorOne);
}

.navbar .navbar-brand {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.navbar .navbar-brand:hover {
    color: #fff;
}

.navbar .navbar-brand img {
    width: 150px;
    /* height: 50px; */
}

.footer-item .footer-logo {
    width: 120px;
}

@media (max-width: 575.98px) {
    .navbar .navbar-brand img {
        width: 120px;
        height: auto;
    }
}

.hero-1 .navbar-nav .nav-item .nav-link,
.hero-2 .navbar-nav .nav-item .nav-link {
    color: var(--colorOne);
    font-size: 14px;
    margin-left: 5px;
    font-weight: 600;
}

.navbar-nav .nav-item .nav-link {
    color: var(--colorOne);
    font-size: 14px;
    margin-left: 5px;
    font-weight: 600;
}

.hero-1 .navbar .nav-item .nav-link.active,
.hero-1 .navbar .nav-item .nav-link:hover,
.hero-1 .navbar .nav-item .nav-link:focus,
.hero-2 .navbar .nav-item .nav-link.active,
.hero-2 .navbar .nav-item .nav-link:hover,
.hero-2 .navbar .nav-item .nav-link:focus {
    color: var(--colorOne);
}

.navbar .nav-item .nav-link.active,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link:focus {
    color: #000;
}

.navbar .nav-item .nav-link.active {
    color: var(--colorOne);
    border-bottom: 1px solid;
}

.sticky {
    background-color: #49555d;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    padding: 10px 15px;
}

.sticky .navbar-brand {
    color: #fff;
}

.sticky .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 14px;
    margin-left: 5px;
    font-weight: 600;
}

.sticky .nav-item .nav-link.active,
.sticky .nav-item .nav-link:hover,
.sticky .nav-item .nav-link:focus {
    color: var(--colorOne);
}

.dropdown-menu {
    margin-top: 17px;
}

@media (max-width: 991.98px) {
    .offcanvas-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -100%;
        width: 100%;
        padding: 1.5rem 1rem;
        overflow-y: auto;
        visibility: hidden;
        background-color: #1e2226;
        -webkit-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
        -webkit-transition-duration: .3s;
        transition-duration: .3s;
        -webkit-transition-property: left, visibility;
        transition-property: left, visibility;
        display: grid;
        align-items: center;
        justify-content: center;
    }

    .offcanvas-collapse.open {
        left: 0;
        visibility: visible;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        align-items: center;
    }
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: -webkit-box;
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    color: rgba(255, 255, 255, .75);
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.nav-underline .nav-link {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
    color: #6c757d;
}

.nav-underline .nav-link:hover {
    color: #03A9F4;
}

.nav-underline .active {
    font-weight: 500;
    color: #49555d;
}

.navbar-toggler {
    position: relative;
    z-index: 1111;
    border: solid 1px #f8f8f8;
    height: 42px;
    display: block;
    width: 50px;
    padding: 12px;
}

.navbar-toggler .hamburger {
    width: 24px;
    height: 15px;
    display: inline-block;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    border: none;
}

.hamburger .line {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--colorOne);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    top: 7px
}

.hamburger span:nth-child(4) {
    top: 14px
}

.hamburger.nav-open span:nth-child(1) {
    top: 9px;
    width: 0;
    left: 50%
}

.hamburger.nav-open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.hamburger.nav-open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.hamburger.nav-open span:nth-child(4) {
    top: 9px;
    width: 0;
    left: 50%
}

.hamburger:hover,
.hamburger:focus {
    cursor: pointer;
    border: none;
}

/* 3 Header */

.home-wrapper {
    position: relative;
}

.hero-2 .home-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/header-banner2.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: inherit;
}

@media (min-width: 992px) {
    .hero-2 .home-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        right: -44%;
        width: 100%;
        height: 100%;
        background-image: url(../img/header-banner2.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: bottom;
    }
}

@media (min-width: 768px) {
    .home-wrapper .sub-header h1 {
        font-size: 4.2rem;
    }

    .home-wrapper .sub-header {
        padding: 40px 0 0;
    }
}

/* 4 Symptoms */

.symptoms-item ul>li {
    margin: 12px 0;
}

/* Contagion */

.contagion-item {
    color: var(--colorOne);
    padding: 7px 0px 8px;
    margin: 3px 0;
    text-align: center;
    background: rgba(121, 136, 151, 0.4);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.contagion-item h5 {
    font-weight: bold;
}



.contagion-item:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    background: rgba(121, 136, 151, 0.4);
}

.contagion-item img {
    width: 100px !important;
    display: initial !important;
}



.contagion-item p {
    font-size: 14px;
    letter-spacing: .5px;
}

/* 5 Prevention */

.prevention-item {
    /* padding: 1.5rem 2rem; */
    text-align: center;
    transition: all .3s ease-in-out;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 1px solid #0665ff38;
}

.shadow-sm {
    box-shadow: 0 1px 5px rgb(73 85 93 / 20%);
}

.prevention-item:hover {
    box-shadow: 0 3px 20px rgba(73, 85, 93, 0.3);
}

.prevention-item img {
    width: 100px;
    height: 100px;
    margin: 1rem 0;
}

.prevention-item p {
    font-size: 16px;
    letter-spacing: .5px;
}

@media (max-width: 767.98px) {
    .prevention-item {
        padding: 1rem 1.25rem;
        text-align: center;
        transition: all .3s ease-in-out;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
    }
}

/* 6 FAQ */

.pd-40 {
    padding: 40px 0;
}

.faq [class*="col-"] p {
    font-size: 16px;
    margin: 12px 0;
}

/* 7 Blog */

.blog-item {
    display: flex;
    margin: 40px 0;
    align-items: end;
}

.blog-item img {
    width: 200px;
    height: 100px;
    margin-right: 25px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

@media (max-width: 767.98px) {
    .blog-item {
        display: block;
        margin: 20px 0;
    }
}

/* 8 Help */

.help {
    background-image: url(../../images/appointment-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--colorTwo);
}

.help h3 {
    font-style: 2.25rem;
}

/* .help p {
    letter-spacing: 1px;
    word-spacing: 1px;
} */

.help-doc {
    display: inline-grid;
}

/* 9 Footer */

footer,
footer p {
    font-size: 16px;
}

.footer-top {
    padding: 60px 0 0;
}

footer ul>li {
    margin: 10px 0;
}

footer h2 {
    font-size: 2.2rem;
}

footer a,
footer p {
    color: #798897;
}

footer a:hover {
    color: var(--colorOne);
}

/* 10 Appointment Page */

.appointment-form {
    padding: 20px 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.appointment-form input.form-control,
.appointment-form textarea.form-control {
    margin: 15px 0;
    border: 2.5px solid #798897;
    padding: 27px 15px;
    width: 100%;
}

.appointment-form textarea.form-control {
    width: 100%;
}

@media (min-width: 768px) {
    .appointment-form {
        padding: 40px 60px;
    }

    .appointment-form input.form-control,
    .appointment-form textarea.form-control {
        width: 90%;
        margin: 15px 10px;
    }
}

/* 11 Contact Page */

.contact-form {
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 0 3px 20px rgba(73, 85, 93, 0.3);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.contact-form input.form-control,
.contact-form textarea.form-control {
    margin: 15px 0;
    padding: 24px 14px;
}

.contact-item i {
    text-align: center;
    background-color: var(--colorOne);
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    border-radius: 50px;
}

@media (min-width: 768px) {
    .contact-form {
        padding: 40px 60px;
        border-radius: 10px;
        box-shadow: 0 3px 20px rgba(73, 85, 93, 0.3);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }
}

/* 12 Blog Grid */

.blog-gridPage ul.pagination>li {
    margin: 0 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.blog-gridPage ul.pagination>li.active a {
    background: var(--colorOne);
    color: #fff;
    border: none;
}

.blog-gridPage ul.pagination>li a {
    background: #798897;
    color: #fff;
}

/* 13 Blog Single */

.blog-singlePage p {
    font-size: 16px;
}

.blog-singlePage .blog-post {
    margin: 1.5rem 0;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 3px 20px rgba(73, 85, 93, 0.1);
}

.blog-singlePage .blog-single .categories span {
    margin: 8px 0;
}

.blog-singlePage .categories ul {
    padding-left: 40px;
}

.blog-singlePage .categories ul>li {
    list-style-type: disc;
    margin: 8px 0;
}

.sidebar {
    margin: 1rem 0;
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 3px 20px rgba(73, 85, 93, 0.1);
}

.sidebar.gallery img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    margin: 10px 0 5px;
    transition: all .3s ease-in-out;
}

.sidebar.gallery a:hover img {
    transform: scale(1.1);
}

.sidebar.tags a {
    padding: 4px 14px;
    margin: 5px 0;
    font-size: 14px;
    display: inline-block;
    border-radius: 15px;
    border: 1px solid #eeeeee;
}

.sidebar.tags a {
    color: #252525;
}

.sidebar.tags a:hover,
.sidebar.tags .active {
    color: white;
    background-color: royalblue;
}

.btn-tag {
    padding: 4px 12px;
    font-size: 14px;
    border-radius: 5px;
}

.blog-post-comments img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.blog-post-comments .comment-inner {
    padding: 20px 0;
    border-bottom: 1px solid rgba(73, 85, 93, 0.30);
}

.blog-post-comments .comment-content {
    padding: 20px 0 0;
}

.blog-post-comments .btn {
    background-color: transparent;
    color: #49555d;
    padding: 0;
}

.blog-post-comments .btn:hover {
    box-shadow: none;
    color: var(--colorOne);
}

@media (max-width: 767.98px) {
    .blog-singlePage .blog-single h1 {
        font-size: calc(100% + 4vw);
    }

    .blog-post-comments img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        margin-right: 20px;
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
    }
}

/* 14 Keyframes */

@keyframes shape {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

@-webkit-keyframes shape {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

@keyframes shape2 {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

@-webkit-keyframes shape2 {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

.owl-carousel .owl-stage-outer {
    padding: 7px 0px 0px 0px;
}

.filter-widget {
    margin-bottom: 20px;
}

.filter-widget h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.filter-widget .custom_check {
    line-height: 18px;
    display: block;
}


.custom_check {
    color: #666;
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-size: .9375rem;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom_check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #dcdcdc;
    background-color: #fff;
    border-radius: 3px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.custom_check input:checked~.checkmark:after {
    display: block;
}

.custom_check .checkmark::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    display: none;
    left: 4px;
    top: 0;
    color: var(--colorOne);
    font-size: 11px;
}

.find-doctor-sidebar {
    margin: 1rem 0;
    border-radius: 1rem;
}

.card-hover {
    margin: 1rem 0;
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 1rem;
    transition: all .3s ease-in-out;
}

.card-hover:hover {
    box-shadow: 0 3px 20px rgb(73 85 93 / 30%);
}

.fee {
    text-align: center;
}

.fee h4 {
    padding: 12px 0px 0px 0px;
}

.card-out-hover {
    margin: 1rem 0;
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 1rem;
    transition: all .3s ease-in-out;
}

.page-item.active .page-link {
    background-color: var(--colorOne);
    border-color: var(--colorOne);
}

.page-link {
    color: var(--colorOne);
}

.page-link:focus {
    box-shadow: 0 0 0 0.2rem rgb(30 255 15 / 38%);
}

.page-link:hover {
    color: var(--colorOne);
}

.dropdown-item:active {
    background-color: var(--colorOne);
}

.card-booking {
    margin: 5px;
    padding: 5px 0px 5px 0px;
    transition: all .3s ease-in-out;
}

.card-booking img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    padding: 7px;
}

.nav-side-menu {
    overflow: auto;
    font-size: 15px;
    font-weight: 200;
    top: 0px;
    width: 100%;
    color: #e1ffff;
}

.nav-side-menu .profile-name {
    background-color: var(--colorOne);
    line-height: 50px;
    display: block;
    text-align: center;
    font-size: 14px;
}

.nav-side-menu .profile-photo {
    width: 100px;
    height: 100px;
}

.nav-side-menu .profile-photo img {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--colorOne);
    text-align: center;
    width: 100%;
}

.nav-side-menu .toggle-btn {
    display: none;
}

.nav-side-menu ul,
.nav-side-menu li {
    list-style: none;
    padding: 0px;
    margin: 0px;
    line-height: 35px;
    cursor: pointer;
    /*    
.collapsed{
   .arrow:before{
             font-family: FontAwesome;
             content: "\f053";
             display: inline-block;
             padding-left:10px;
             padding-right: 10px;
             vertical-align: middle;
             float:right;
        }
 }
*/
}

.nav-side-menu ul :not(collapsed) .arrow:before,
.nav-side-menu li :not(collapsed) .arrow:before {
    font-family: FontAwesome;
    content: "\f078";
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: middle;
    float: right;
}

.nav-side-menu ul .active,
.nav-side-menu li .active {
    border-left: 3px solid var(--colorOne);
    background-color: var(--colorTwo);
}

.nav-side-menu ul .sub-menu li.active,
.nav-side-menu li .sub-menu li.active {
    color: #d19b3d;
}

.nav-side-menu ul .sub-menu li.active a,
.nav-side-menu li .sub-menu li.active a {
    color: #d19b3d;
}

.nav-side-menu ul .sub-menu li,
.nav-side-menu li .sub-menu li {
    background-color: #181c20;
    border: none;
    line-height: 28px;
    border-bottom: 1px solid #23282e;
    margin-left: 0px;
}

.nav-side-menu ul .sub-menu li:hover,
.nav-side-menu li .sub-menu li:hover {
    background-color: #020203;
}

.nav-side-menu ul .sub-menu li:before,
.nav-side-menu li .sub-menu li:before {
    font-family: FontAwesome;
    content: "\f105";
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: middle;
}

.nav-side-menu li {
    padding-left: 0px;
    border-left: 3px solid var(--colorTwo);
    border-bottom: 1px solid var(--colorOne);
}

.nav-side-menu li a {
    text-decoration: none;
    color: #000000ad;
}

.nav-side-menu li a i {
    padding-left: 10px;
    width: 20px;
    padding-right: 20px;
}

.nav-side-menu li:hover {
    border-left: 3px solid var(--colorOne);
    background-color: #4f5b6940;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

@media (max-width: 767px) {
    .nav-side-menu {
        position: relative;
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-side-menu .toggle-btn {
        display: block;
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 10px;
        z-index: 10 !important;
        padding: 3px;
        background-color: #ffffff;
        color: #000;
        width: 40px;
        text-align: center;
    }

    .profile-name {
        text-align: left !important;
        font-size: 22px;
        padding-left: 20px;
        line-height: 50px !important;
    }
}

@media (min-width: 767px) {
    .nav-side-menu .menu-list .menu-content {
        display: block;
    }
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    background-color: #d6d6d6;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--colorOne);
    border-radius: 10px;
}

body::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--colorTwo);
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

:root {
    scrollbar-color: var(--colorOne) var(--colorTwo);
    scrollbar-width: thin;
}

.dropdown-item.active {
    background-color: var(--colorOne);
}

.header-img {
    width: 100%;
}

.header-img img {
    height: auto;
    width: 100%;
}

.copyright a {
    color: var(--colorOne);
}

.shadow-sm img {
    width: 300px;
    height: 300px;
    margin: 1rem 0;
}

.ssl-logo {
    height: 160px;
}

.ssl-logo img {
    width: 100%;
}

.blog-post {
    box-shadow: 0 3px 20px rgb(73 85 93 / 10%);
    margin: 1rem 0;
    border-radius: 1rem;
    overflow: hidden;
    padding: 5px;
}

.blog-post-image {
    width: 100%;
}

.blog-post-image img {
    height: auto;
    width: 100%;
    border-radius: 1rem;
}

.find_doctor_photo img {
    width: 100%;
}