@import '../../node_modules/bootstrap/dist/css/bootstrap.min.css';
@import url('https://fonts.googleapis.com/css2?family=Barlow: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');

::-moz-selection {
    background-color: #0132b4 !important;
    color: white;
}

::selection {
    background-color: #0132b4 !important;
    color: white;
}


html {
    font-size: 16px;
    scroll-behavior: smooth !important;
}

body {
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Barlow', sans-serif;
    font-style: normal;
    font-size: 16px;
    color: #424242;
}

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: #0132b4 !important;
    outline: 1px solid #0132b4 !important;
}


h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

h2 {
    font-size: 1.5rem !important;
}

h3 {
    font-size: 1.3rem !important;
}

h4 {
    font-size: 1.2rem !important;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

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

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

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

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

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

.section {
    padding: 50px 0px;
}

button:focus {
    outline: 0;
    box-shadow: none;
}

/* Backgrounds Starts */
.bg-blue {
    background-color: #0132b4 !important;
}

.bg-blue-gradient {
    background-image: linear-gradient(120deg, #052784 0%, #2955ce 100%) !important;
}

.bg-green-gradient {
    background-image: linear-gradient(120deg, #3bb496 0%, #035843 100%);
}

.bg-gray {
    background-color: rgb(238, 243, 247) !important;
}

/* Backgrounds Ends */

/* Text Starts */
.text-blue {
    color: #0132b4 !important;
}

.text-green {
    color: #3bb496 !important;
}

.text-orange {
    color: #ffa500 !important;
}

/* Text Ends */

/* Image Colors */
.image-white {
    filter: invert(97%) sepia(97%) saturate(0%) hue-rotate(73deg) brightness(104%) contrast(104%);
    -webkit-filter: invert(97%) sepia(97%) saturate(0%) hue-rotate(73deg) brightness(104%) contrast(104%);
}

.image-green {
    filter: invert(72%) sepia(6%) saturate(3873%) hue-rotate(115deg) brightness(82%) contrast(91%);
    -webkit-filter: invert(72%) sepia(6%) saturate(3873%) hue-rotate(115deg) brightness(82%) contrast(91%);
}

.image-blue {
    filter: invert(13%) sepia(72%) saturate(4061%) hue-rotate(219deg) brightness(100%) contrast(115%);
    -webkit-filter: invert(13%) sepia(72%) saturate(4061%) hue-rotate(219deg) brightness(100%) contrast(115%);
}

.image-orange {
    filter: invert(60%) sepia(100%) saturate(1284%) hue-rotate(359deg) brightness(101%) contrast(106%);
    -webkit-filter: invert(60%) sepia(100%) saturate(1284%) hue-rotate(359deg) brightness(101%) contrast(106%);
}

/* Image Ends */


/* Navbar Starts */
.navbar {
    margin-top: 40.96px;
}

.nav-link {
    font-weight: 500;
    color: #424242;
}

/* Navbar Ends */

/* Form Starts */
.form-control {
    outline: 0 !important;
    box-shadow: none !important;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

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

/* Form Ends */


/* Buttons Starts */
.btn {
    transition: all 0.5s linear;
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -ms-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    position: relative;
    overflow: hidden !important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 15px 50px;
}

.btn-sm {
    padding: 8px 20px;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: white;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-green {
    background-color: #3bb496 !important;
    color: white;
    border-color: transparent;
    border: 0px;
}

.btn-green:hover {
    color: white;
}


.btn-green-gradient {
    background-image: linear-gradient(120deg, #3bb496 0%, #035843 100%);
    border: 0px;
    color: white;
}

.btn-green-gradient:hover {
    color: white;
}

.btn-blue-gradient {
    background-image: linear-gradient(120deg, #052784 0%, #2955ce 100%) !important;
    border: 0px;
    color: white;
}

.btn-blue-gradient:hover {
    color: white;
}

.btn-orange {
    background-color: #ffa500 !important;
    border: 0px;
    color: white;
}

.btn-orange:hover {
    color: white;
}

/* Buttons Ends */


/* Borders Starts */
.border-radius-10 {
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
    overflow: hidden;
}

.border-radius-15 {
    border-radius: 15px !important;
    -webkit-border-radius: 15px !important;
    -moz-border-radius: 15px !important;
    -ms-border-radius: 15px !important;
    -o-border-radius: 15px !important;
}

.border-radius-20 {
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    -ms-border-radius: 20px !important;
    -o-border-radius: 20px !important;
}

/* Borders Ends */


/* Banner Starts */
.banner-section {
    margin-top: 126.96px;
    position: relative;
}

.banner-content-wrapper {
    position: relative;
}

.banner-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, #3bb496ad 0%, transparent 50%);
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 10;
}

.banner-form {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 10;
}

.banner-content img {
    z-index: 8;
}

.desktop-banner-image {
    height: 60vh;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Banner Ends */

/* Doctor Starts */
.doctor-image img {
    width: 100%;
    height: 295px;
    object-fit: cover;
    object-position: top;
}

/* Doctor Ends */


/* Testimonials Starts */
.feedback-content {
    min-height: 348px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    overflow-y: scroll;
}

/* Testimonials Ends */

.mobile-fixed {
    display: none;
}

.footer-fixed a {
    font-size: 12px;
    color: white;
}

.footer-fixed-one {
    border-right: 1px solid white;
}

.btn-footer {
    border-radius: 4px !important;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    -ms-border-radius: 4px !important;
    -o-border-radius: 4px !important;
    font-size: 12px !important;
    height: 32px !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}





/* Media Quries Starts */
@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {}

@media (max-width: 768px) {}

@media (max-width: 575.98px) {
    html {
        font-size: 14px;
    }

    .topbar-links a {
        font-size: 12px;
    }

    .topbar-links a img {
        max-height: 12px;
    }

    .navbar {
        margin-top: 38px;
    }

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

    .banner-form {
        position: relative;
        top: initial;
        right: initial;
        transform: initial;
        -webkit-transform: initial;
        -moz-transform: initial;
        -ms-transform: initial;
        -o-transform: initial;
        z-index: initial;
        background-color: #3bb49640 !important
    }

    .banner-form .col-md-12 {
        background-color: #3bb49605 !important
    }

    .desktop-banner-image {
        height: 40vh;
    }

    .banner-content h1 {
        color: #0132b4 !important;
        font-size: 1.4rem;
    }

    .banner-content .lead {
        font-size: 1rem;
        color: #424242 !important;
    }

    .btn {
        padding: 10px 29px;
    }

    .banner-content {
        position: relative;
        top: initial;
        left: initial;
        transform: initial;
        -webkit-transform: initial;
        -moz-transform: initial;
        -ms-transform: initial;
        -o-transform: initial;
        padding: 30px;
    }

    .banner-content a {
        margin-top: 10px !important;
    }

    .banner-content-wrapper::before {
        background: none;
        display: none;
    }

    .lead {
        font-size: 1.1rem;
    }

    .doctor-image img {
        height: 315px;
    }

    .nabh-image img {
        width: 150px !important;
        margin-bottom: 20px;
    }

    .mobile-fixed {
        display: block;
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
        z-index: 500;
    }

    body {
        margin-bottom: 46px;
    }
}

/* Media Quries Ends */