@import '../../node_modules/bootstrap/dist/css/bootstrap-grid.css';
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600;700&display=swap');


::-moz-selection {
    background-color: #0185cb !important;
    color: white;
}

::selection {
    background-color: #0185cb !important;
    color: white;
}


html {
    scroll-behavior: smooth !important;
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
}

textarea {
    font-family: "Poppins", sans-serif;
    font-size: inherit;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px white;
    box-shadow: inset 0 0 6px white;
}

body::-webkit-scrollbar-thumb {
    background-color: #0185cb !important;
    outline: 1px solid #0185cb !important;
}

a {
    text-decoration: none;
    font-size: 14px;
}

p {
    margin-top: 0px;
    margin-bottom: 21px;
}

h2 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 10px;
}

h5 {
    margin-top: 10px;
    margin-bottom: 12px;
    font-size: 18px;
}

.fixed-top {
    position: fixed;
    width: 100%;
    top: 0;
}


.section {
    padding: 50px 0px;
}

.bg-blue {
    background-color: #0185cb !important;
}

.bg-pink {
    background-color: #e94d85 !important;
}

.bg-gray {
    background-color: #ecebeb !important;
}

.bg-white {
    background-color: white !important;
}

.bg-yellow {
    background-color: #fbbb16 !important;
}

.bg-light-yellow {
    background-color: #ffebb587 !important;
}

.bg-light-blue {
    background-color: #94ceec !important;
}

.bg-light-blue2 {
    background-color: #94ceec52 !important;
}

.bg-light-pink {
    background-color: #ffe5ef !important;
}

.img-fluid {
    width: 100%;
}

.text-white {
    color: white !important
}

.text-blue {
    color: #0085cb !important;
}

.text-pink {
    color: #e94d85 !important;
}

.font-200 {
    font-weight: 200;
}

.font-400 {
    font-weight: 400;
}

.font-600 {
    font-weight: 600;
}

.font-700 {
    font-weight: 700;
}

.text-center {
    text-align: center !important;
}

.header-phone {
    background-color: white;
    color: #0185cb;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.header-phone a {
    color: #0185cb;
    font-size: 14px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 10px 38px -12px #222c31;
    background-color: white;
    z-index: 500;
}

.nav-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu li a {
    color: #6d84a4;
    font-weight: 600;
}

.border-left-right-gray {
    border-left: 0.8px solid #dfdfdf;
    border-right: 0.8px solid #dfdfdf;
}

.border-pink {
    border: 2px solid #e94d85;
}

.border-radius-6 {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    overflow: hidden;
}

.btn {
    height: 50px;
    background-color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 6px;
}

.btn-blue {
    background-color: #0085cb !important;
    color: white;
    border: 1px solid #0085cb;
}

.btn-outline-blue {
    background-color: transparent !important;
    color: #0085cb;
    border: 1px solid #0085cb;
    position: relative;
    overflow: hidden;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.btn-pink {
    background-color: #e94d85 !important;
    color: white;
    border: 1px solid #e94d85;
}

.btn-outline-pink {
    background-color: transparent !important;
    color: #e94d85;
    border: 1px solid #e94d85;
    position: relative;
    overflow: hidden;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.btn-outline-pink:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    bottom: 0px;
    left: 0px;
    background-color: #ffe5ef;
    z-index: -1;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    border-right: 5px solid #e94d85;
}

.btn-outline-pink:hover:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0px;
    background-color: #ffe5ef;
    z-index: -1;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    border-right: 0px solid #e94d85;
}

.btn-outline-blue:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    bottom: 0px;
    left: 0px;
    background-color: #94ceec;
    z-index: -1;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    border-right: 5px solid #0085cb;

}

.btn-outline-blue:hover:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0px;
    background-color: #94ceec;
    z-index: -1;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    border-right: 0px solid #0085cb;
}

.banner-section {
    background-image: url('../images/banner.jpg');
    height: 52vh;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0px;

    margin-top: 58px;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 40px;
}

.banner-content h1 {
    font-size: 30px;
    font-weight: 500;
}

.banner-content h2 {
    font-size: 19px;
    font-weight: 400;
    color: #6d84a4;
}

.mb-0 {
    margin-bottom: 0px;
}

.mt-0 {
    margin-top: 0px;
}

.mb-3 {
    margin-bottom: 20px
}

.mb-4 {
    margin-bottom: 30px
}

.p-0 {
    padding: 0px !important;
}

.p-2 {
    padding: 20px !important;
}

.p-3 {
    padding: 30px !important;
}

.p-4 {
    padding: 40px !important;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.mt-4 {
    margin-top: 20px;
}

.h-100 {
    height: 100%;
}

.heading-design {
    position: relative;
}

.heading-design::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 1px;
    background-color: #e94d85;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.why-box {
    padding: 20px 10px;
    border: 0.8px solid #94ceec;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-color: #94ceec;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.why-box:hover {
    background-color: white !important;
    border: 0.8px solid #94ceec;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    box-shadow: 0px 10px 38px -12px #dfdfdf;
}

.why-box h5 {
    font-size: 14px;
}

.speciality-box {
    padding: 20px 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-color: #ffe5ef;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.support-box img {
    filter: invert(1);
    -webkit-filter: invert(1);
}

.speciality-box h5 {
    font-size: 14px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    border: 1px solid #f1f1f1;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #0085cb;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flip-card-front h5 {
    font-size: 14px;
}

/* Style the back side */
.flip-card-back {
    background-color: #6d84a4;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.doctor-wrapper {
    min-height: 300px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.doctor-details {
    padding: 20px;
}

.doctor-details h5 {
    margin: 0px;
    margin-bottom: 10px;
    color: white;
    font-size: 14px;
}

.doctor-details p {
    margin: 0px !important;
    color: white;
}

iframe {
    width: 100% !important;
}


.footer {
    background-color: #ffc4d3 !important;
}


.footer-float {
    bottom: 0px;
    left: 0;
    width: 100% !important;
    z-index: 300;
    height: 42px;
    padding: 10px !important;
    position: fixed;
}

.footer-float-content a i {
    font-size: 25px;
}

.footer-bottom {}

.spacer {
    height: 40px;
}

.form-control {
    width: 100%;
    height: 50px;
    padding: 8px;
    border: 0.5px solid gray;
}

.form-group {
    margin-bottom: 10px;
}

.form-control:focus {
    box-shadow: none;
    outline: 0px;
}

.btn-block {
    display: block;
    width: 100%;
}


@media(max-width: 480px) {

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .menu-wrapper {
        display: none !important;

    }

    .banner-section {
        margin-top: 0px;
    }

    .banner-content {
        background-color: #ffffffb3;
    }

    .banner-content h1 {
        font-size: 23px;
        font-weight: 500;
    }

    iframe {
        width: 100% !important;
        height: 200px !important;
    }

    .fixed-top {
        position: initial;
    }

}

.new-footer-box
{
   padding-top: 15px !important;
    padding-bottom:45px !important;
}
.new-footer h3
{
    font-size: 13px !important;
    font-weight: 400 !important;
    margin-bottom: 20px;
}
.new-footer-para
{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 15px 25px !important;
}