@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
    margin:0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #404040;
    background: url(../images/body-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
p,h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}
a, a:hover {
    text-decoration: none;
}
button:focus, input:focus, select:focus {
    outline: none !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance:textfield;
}
h1 {
    font-size: 32px;
    font-weight: 600;
    color: #404040;
}
.title {
    text-align: center;
    margin-bottom: 30px;
}
.primary_btn {
    background: #2b918f;
    border: none;
    color: #404040;
    font-weight: 500;
    width: initial;
    border-radius: 7px;
    font-size: 14px;
    padding: 10px 30px;
    display: inline-block;
}
.primary_btn:hover {
    color: #404040;
}

/*hero area css start here*/
.hero_area {
    background: url(../images/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    z-index: 1;
    padding: 35px 0px;
}
.hero_area::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(269.89deg, #FFFFFF -1.55%, #FFFFFF -1.55%, rgba(255, 255, 255, 0.57) -1.54%, rgba(255, 255, 255, 0) 99.89%);
    z-index: -1;
}
.hero_area .logo img {
    width: 250px;
}
.hero_area .row {
    align-items: center;
    justify-content: center;
    height: calc(100vh - 100px);
}
.hero_left h1 {
    font-weight: 600;
    font-size: 38px;
    color: #404040;
    margin-bottom: 15px;
}
.hero_left p {
    font-weight: 500;
    font-size: 18px;
}
.hero_left ul {
    margin-top: 15px;
}
.hero_left ul li {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
}
.hero_right {
    background: #003a70;
    backdrop-filter: blur(2px);
    border-radius: 20px;
    padding: 30px 20px;
}
.single_input {
    padding: 15px 0px;
}
.single_input label {
    display: block;
    padding: 0;
    margin: 0;
}
.single_input input, .single_input select {
    width: 100%;
    background: transparent;
    border-radius: 10px;
    border: 2px solid #F5F5F5;
    padding: 11px 20px;
    font-size: 14px;
    color: #fff;
    font-weight: 300;
}
.single_input select option {
    background: #f5f5f5;
    color: #404040;
}
.single_input input::placeholder {
    color: #F5F5F5;
}
.submit_btn {
    text-align: center;
    padding-top: 15px;
}
/*hero area css end here*/

/*experience area css start here*/
.experience_area {
    background: url(../images/ex-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0px;
}
.experience_area .row {
    align-items: center;
}
.experience_left h1 {
    color: #fff;
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
}
.experience_right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    padding-left: 50px;
}
.experience_right .single_experience h1 {
    color: #F5F5F5;
    padding: 15px 0px 5px 0px;
}
.experience_right .single_experience p {
    font-weight: 600;
    color: #F5F5F5;
    font-size: 16px;
}
/*experience area css end here*/

/*why choose area css start here*/
.why_choose {
    padding: 50px 0px;
}
.why_choose .choose_title {
    text-align: center;
    position: relative;
    z-index: 1;
}
.why_choose .choose_title::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    width: 100%;
    background: #2D94C6;
    transform: translateY(-50%);
    z-index: -1;
}
.why_choose .choose_title h1 {
    border: 1px solid #2D94C6;
    display: inline-block;
    border-radius: 50px;
    padding: 10px 45px;
    background: #F5F5F5;
}
.choose_content {
    margin-top: 20px;
    text-align: center;
}
.choose_content p {
    color: #727376;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
}
/*why choose area css end here*/

/*our strenghts area css start here*/
.our_strengths {
    padding: 30px 0px 50px 0px;
}
.our_strengths .single_strengths {
    text-align: center;
    background: #FBFBFB;
    box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.19);
    border-radius: 25px;
    padding: 35px 20px;
    margin: 12px 0px;
    position: relative;
    z-index: 1;
}
.our_strengths .single_strengths::after {
    position: absolute;
    content: "";
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(180deg, #2D94C6 0%, rgba(251, 251, 251, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.25s linear;
}
.our_strengths .single_strengths:hover::after {
    opacity: 1;
}
.our_strengths .single_strengths img {
    width: 40px;
    margin-bottom: 15px;
}
.our_strengths .single_strengths h4 {
    font-size: 20px;
}
/*our strenghts area css end here*/

/*imaging area css start here*/
.imaging_area {
    padding: 30px 0px;
}
.imaging_area .imaging_bg {
    background: url('../images/imaging-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 35px;
    border-radius: 20px;
}
.imaging_area .imaging_left h1 {
    color: #F5F5F5;
    font-size: 28px;
    padding-bottom: 12px;
}
.imaging_area .imaging_left p {
    color: #F5F5F5;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
}
.imaging_area .imaging_right img {
    width: 100%;
    border-radius: 15px;
}
/*imaging area css end here*/

/*excellence area start here*/
.excellence_area {
    padding: 30px 0px;
}
.excellence_area .excellence_left img {
    width: 100%;
}
.excellence_area .excellence_right h1 {
    font-size: 28px;
    padding-bottom: 5px;
}
.excellence_area .excellence_right ul {
    padding: 10px 0px;
}
.excellence_area .excellence_right ul li {
    font-size: 14px;
}
.excellence_area .excellence_right p {
    font-size: 14px;
    line-height: 24px;
}
/*excellence area end here*/

/*our values area start here*/
.our_values {
    padding: 50px 0px;
}
.single_values {
    display: flex;
    align-items: center;
    margin: 10px 0px;
}
.single_values .values_img img {
    width: 100px;
    margin-right: 8px;
}
.single_values .values_content h4 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 7px;
}
.single_values .values_content p {
    color: #727376;
    font-size: 14px;
}
/*our values area end here*/

/*mri scans area css start here*/
.mri_scans {
    padding: 40px 0px;
}
.mri_scans .single_mri {
    padding: 10px 0px;
}
.mri_scans .single_mri a {
    color: #F5F5F5;
    background: #404040;
    font-weight: 500;
    display: block;
    padding: 13px 20px;
    text-align: center;
    border-radius: 30px;
}
/*mri scans area css end here*/

/*testimonials area css start here*/
.testimonials_area {
    padding: 40px 0px 100px 0px;
}
.testimonials_area .title {
    text-align: left;
    margin-bottom: -30px;
}
.tesitimonials_slider .slider_item1 {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}
.tesitimonials_slider .slider_item1 iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.tesitimonials_slider .slider_item2 {
    font-weight: 500;
    font-size: 16px;
    margin-top: 50px;
}
.tesitimonials_slider .slider_item2 p {
    font-size: 14px;
    line-height: 24px;
}
.tesitimonials_slider .slider_item2 ul {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.tesitimonials_slider .slider_item2 ul li img {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}
.tesitimonials_slider.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
    position: absolute;
    right: 20px;
}
.tesitimonials_slider.owl-theme .owl-dots .owl-dot span {
    background: #C7C7C8;
    width: 20px;
    height: 20px;
    margin: 5px 6px;
}
.tesitimonials_slider.owl-theme .owl-dots .owl-dot.active span, .tesitimonials_slider.owl-theme .owl-dots .owl-dot:hover span {
    background: #2D94C6;
    border: 4px solid #95C9E1;
}
.tesitimonials_slider.owl-theme .owl-dots .owl-dot:first-child span {
    margin-left: 0;
}
.tesitimonials_slider.owl-theme .owl-dots .owl-dot:last-child span {
    margin-right: 0;
}
.testimonials_mobile {
    display: none;
}
/*testimonials area css end here*/

/*operating hours area start here*/
.operating_area {
    background: url('../images/oh-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0px;
    text-align: center;
}
.operating_content h1 {
    color: #F5F5F5;
    margin-bottom: 8px;
}
.operating_content p {
    color: #F5F5F5;
    font-size: 20px;
}
.operating_content .primary_btn {
    margin-top: 16px;
}
/*operating hours area end here*/

/*footer area start here*/
.footer_area {
    padding: 35px 0px;
}
.footer_area .address_item {
    text-align: center;
}
.footer_area .address_item h1 {
    font-size: 28px;
    margin-bottom: 5px;
}
.footer_area .address_item p {
    margin-bottom: 3px;
    font-size: 14px;
}
.footer_area .address_item span {
    font-size: 14px;
}
.footer_area .address_item span a {
    color: #404040;
}
.footer_area .footer_item {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}
.footer_area .footer_item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: #4F4F4F;
    z-index: -1;
}
.footer_area .copyright {
    margin-top: 5px;
}
.footer_area .copyright p {
    color: #727376;
    font-size: 14px;
}
.footer_area .copyright p a {
    color: #727376;
}
.footer_area .social_icon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin-top: 5px;
}
.footer_area .social_icon li a {
    padding: 5px 10px;
}
.footer_area .social_icon li img {
    width: 25px;
}
/*footer area end here*/

/*enquery area css start here*/
.enquery_area ul {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    writing-mode: vertical-lr;
}
.enquery_area ul li img {
    width: 40px;
    margin: 5px 0px;
}
.enquery_area ul li .primary_btn {
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 15px 0px;
    font-size: 12px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0;
}
/*enquery area css start here*/

/*back to top area css start here*/
.back_to_top {
    text-align: center;
    margin-top: -15px;
}
.back_to_top button {
    cursor: pointer;
    background: none;
    border: none;
}
.back_to_top button img {
    width: 60px;
}
/*back to top area css end here*/
.expert-card .content {
        text-align: center;
        padding: 20px 10px;
    }

    .font-18 {
        font-size: 18px !important;
    }

    .expert-card {
        border: 1px solid #c7c7c8;
        border-radius: 5px;
        margin-bottom: 20px;
        height: 100% !important;
        transition: .3s;
    }

    .expert-card:hover .view-more-btn {
        opacity: 1;
    }

    .expert-card, .panel, .pricing-card, .sidemenu, .theme-card {
        overflow: hidden;
    }

    .expert-card .view-more-btn {
        opacity: 0;
        transition: .3s;
    }

    .button-blue {
        background-color: #2d94c6 !important;
        border-color: #2d94c6 !important;
        padding: .375rem 1.75rem;
    }

    .card-why-choose {
        /*    background: #ffffffa1;*/
        background: #FBFBFB;
        box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.19);
        border-radius: 25px;
        margin-bottom: 25px;
    }
    .w-md-50{
        width: 50%;
    }
    label{
        color: #fff;
    }