@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+CU:wght@100..400&family=Yeseva+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none !important;
}

:root {
    --blue: #005F88;
    --green: #19B525;
    --black: #606163;
    --white: #f9f9f9;
}

nav a {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px !important;
}

body {
    background-color: var(--white);
}

.primary-button {
    padding: 10px 25px;
    background-color: var(--green);
    color: var(--white);
    border: none;
    border-radius: 3px;
    transition: all .7s;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.primary-button::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: var(--blue);
    transition: all .5s;
}


.primary-button:hover::after {
    width: 100%;
}

.primary-button:hover {
    color: var(--white);
}

.topbar {
    background-color: var(--blue);
}

.topbar a {
    color: var(--white);
}

nav li a {
    color: var(--black) !important;
    position: relative;
    font-weight: 500 !important;
}

nav a.active {
    color: var(--green) !important;
    position: relative;
}

nav a.active::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    background-color: var(--green);
    transition: all .5s;
}

nav li a::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 0%;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    background-color: var(--green);
    transition: all .5s;
}

nav li a:hover::after {
    width: 100%;
}

nav li a:hover {
    color: var(--green) !important;
}


.carousel-indicators button {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
    background-color: var(--blue) !important;
}

h1,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--blue);
    position: relative;
}

.ButtonBase__Ellipsis-sc-p43e7i-5 {
    color: var(--white);
}

.es-review-background-container {
    background-color: white !important;
}

/* h1::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--blue);
    border-radius: 40px;
}

h1::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 3px;
    top: 120%;
    left: 55%;
    transform: translate(-50%, -50%);
    background-color: var(--green);
    border-radius: 40px;
} */


.line {
    width: 100px;
    margin: auto;
    height: 5px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    /* border: 1px solid #dadada; */
}

.line::after {
    content: '';
    width: 100%;
    height: 100%;
    left: 0%;
    background-color: var(--blue);
    position: absolute;
    animation: move1 1s infinite linear;
}

.line::before {
    content: '';
    width: 100%;
    height: 100%;
    left: 110%;
    background-color: var(--green);
    position: absolute;
    animation: move2 1s infinite linear;
}

@keyframes move1 {
    0% {
        left: 110%;
    }

    100% {
        left: -0%;
    }
}

@keyframes move2 {
    0% {
        left: 0%;
    }

    100% {
        left: -110%;
    }
}


span {
    color: var(--green);
}

small {
    color: var(--blue);
    font-weight: 600;
}

p {
    color: var(--black);
    letter-spacing: .5px;
    font-weight: 300;
}

.about p {
    transition: all .5s;
}

.about p:hover {
    transform: translateY(-10px);
    color: var(--white);
}

.about p:nth-child(even):hover {
    background-color: var(--blue);
}

.about p:nth-child(odd):hover {
    background-color: var(--green);
}

.doctor-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top center;
}

small:nth-child(2) {
    font-style: italic;
}

.footer li {
    list-style: none;
    padding-top: 10px;

    a {
        color: var(--black);
        letter-spacing: 1px;
        /* text-transform: uppercase; */
        font-size: 15px;
        font-weight: 500;
    }

    a:hover {
        color: var(--green);
    }
}

address {
    font-weight: 500;
    color: var(--black);
    font-size: 15px !important;
    letter-spacing: 1px;
}

.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--green);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.icon-box a {
    color: var(--green);
    transition: all .5s;
}

.icon-box::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    /* border: 2px solid var(--blue); */
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--green);
    transition: all .5s;
}

.icon-box:hover::after {
    width: 100%;
    height: 100%;
    z-index: -1;
}

.icon-box:hover a {
    color: var(--white);
}

.copyright {
    background-color: var(--blue);
}

.copyright a {
    /* color: var(--green) !important; */
    font-weight: 600;
}

.bredcrumb a:last-child {
    color: var(--black);
}

.bredcrumb a:first-child {
    color: var(--green);
}

.d-flex li {
    padding: 10px 20px;
    list-style: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 1s;
}

.d-flex li:nth-child(even) {
    color: var(--blue);
    border: 1px solid var(--blue);
}

.d-flex li:nth-child(odd) {
    color: var(--green);
    border: 1px solid var(--green);
}

.d-flex li:nth-child(even):hover {
    color: var(--white);
    background-color: var(--blue);
}

.d-flex li:nth-child(odd):hover {
    color: var(--white);
    background-color: var(--green);
}

.ciCnpO a:last-child {
    transform: translateX(-150%) !important;
}

.service-card {
    width: 200px;
    height: 200px;
}

.service-card img {
    width: 70px;
    transition: all .5s;
}

.service-card img:hover {
    transform: translateY(-10px);
}

.blog-card{
    position: relative;
}
.blog-card .strip{
    position: absolute;
    background-color: var(--green);
    right: 16px;
    top: 16px;
    color: var(--white);
    border-radius: 40px;
    padding: 7px 20px;
}

.navbar-brand{
    font-weight: 800;
    color: var(--blue);
    font-family: "Playwrite CU", cursive;
    text-transform: capitalize;
}