/*Common stle*/

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: transparent;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
}

a:focus,
a:hover {
    text-decoration: none;
}

img {
    width: 100%;
}

i {
    font-weight: normal;
}

p {
    font-size: 16px;
    line-height: 32px;
    color: #383838;
    font-weight: 400;
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
}

html {
    scroll-behavior: smooth;
}

/*Fonts*/

h1 {
    font-size: 38px;
    line-height: 46px;
}

h2 {
    font-size: 32px;
    line-height: 50px;
    margin-top: -5px;
}

.heading {
    font-family: 'Museo', Georgia, serif;
}

.sub-head-h5 {
    font-family: 'Museo', Georgia, serif;
    font-size: 20px;
    margin-bottom: 12px;
}

h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

.f12 {
    font-size: 12px;
    line-height: 20px;
}

.f14 {
    font-size: 14px;
    line-height: 22px;
}

.f18 {
    font-size: 18px;
    line-height: 26px;
}

/*Font Weight*/

.f400 {
    font-weight: 400;
}

.f500 {
    font-weight: 500;
}

.f600 {
    font-weight: 600;
}

.f700 {
    font-weight: 700;
}

.f800 {
    font-weight: 800;
}

.f900 {
    font-weight: 900;
}

.btn {
    padding: 8px 20px;
    border-radius: 5px;
}

.btn-green {
    background-color: #0EB7A2;
}

.btn-orange {
    /*background-color: #EF9F00;*/
}

.bg-green {
    background-color: #0EB7A2;
}

.text-green {
    color: #0EB7A2;
}

.bg-orange {
    background-color: #EF9F00;
}

.text-orange {
    color: #EF9F00;
}

.text-black {
    color: #000;
}

.text-gray {
    color: #a9a9a9;
}

.sub-title {
    letter-spacing: 1px;
    padding-bottom: 40px;
}

/*HEADER
--------------------------------------*/

.navbar.fixed-top {
    top: 0;
}

.navbar-brand {
    width: 300px;
    padding: 0px 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: black;
    padding: 18px 24px;
    font-size: 18px;
    text-transform: capitalize;
}

.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link,
.navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: #EF9F00;
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
    background-color: #006A67;
    color: #fff;
}

.navbar .navbar-nav li>a {
    transition: background-color .2s, color .2s;
    &:hover,
    &:focus {
        color: #036D99;
    }
}

.navbar .navbar-nav li.active>a {
    color: #036D99;
}

/*FOOTER
--------------------------------------*/

.footer {
    background-color: #111;
    /*background: linear-gradient(to left, rgb(171 170 170 / 82%) 0%, rgb(16 16 16 / 77%) 100%);*/
    padding: 40px 0;
}

.footer ul li {
    border-bottom: 1px dotted #ececec;
    margin-bottom: 5px;
}

.footer .footer-contact p {
    position: relative;
    padding-left: 30px;
    border-bottom: 1px dotted #ececec;
    margin-bottom: 10px;
}

.footer .footer-contact p i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    line-height: 18px;
}

.footer .social-icons i {
    font-size: 28px;
    line-height: 22px;
}

.footer a:hover {
    color: #fff;
}

.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}

.copyright-content {
    background-color: #1c1e20;
    padding: 8px 0;
}

.copyright-content p {
    color: #b1b1b1;
}

/*HOME
--------------------------------------*/

/*Banner*/

.carousel {
    margin-top: 85px;
}

.carousel .banner-caption {
    margin-top: -400px;
}

.carousel .banner-left .btn-orange {
    margin: 0px 20px 0 0;
}

/*Home page media*/

.pricingTable {
    background: #fff;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 100px 0 80px 0;
}

.pricingTable .pricingTable-header {
    background: #003161;
    padding: 22px 25px 20px;
    margin: 0 0 30px;
    border-radius: 100px 0;
    position: relative;
    min-height: 126px;
}

.pricingTable .title {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
}

.pricingTable .price-value {
    color: #ff062e;
    background: #fff;
    width: 85px;
    height: 85px;
    padding: 21px 0;
    border: 5px solid #ff062e;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    bottom: -40px;
    right: 15px;
}

.pricingTable .price-value .amount {
    font-size: 21px;
    font-weight: 700;
    line-height: 21px;
    margin-bottom: 3px;
    display: block;
}

.pricingTable .price-value .duration {
    font-size: 11px;
    line-height: 11px;
    font-weight: 400;
    display: block;
}

.pricingTable .pricing-content {
    text-align: left;
    padding: 0 30px;
    margin: 0 0 20px;
    list-style: none;
    display: inline-block;
    min-height: 445px;
}

.pricingTable .pricing-content li {
    color: #aaa;
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px 15px 45px;
    margin: 0 0 14px;
    border-bottom: 1px solid #d2d2d2;
    position: relative;
}

.pricingTable .pricing-content li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.pricingTable .pricing-content li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 free";
    color: #009432;
    font-size: 15px;
    font-weight: 900;
    position: absolute;
    top: 1px;
    left: 15px;
}

.pricingTable .pricing-content li.disable:before {
    content: "\f00d";
    color: #EA2027;
}

.pricingTable .pricingTable-signup {
    background: #003161;
    padding: 25px 0;
    border-radius: 100px 0;
}

.pricingTable .pricingTable-signup a {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

.pricingTable .pricingTable-signup a:hover {
    letter-spacing: 2px;
    text-shadow: 3px 3px rgba(0, 0, 0, 0.6);
}

.pricingTable.blue .pricingTable-header,
.pricingTable.blue .pricingTable-signup {
    background: linear-gradient(#034EAF, #003F87);
}

.pricingTable.green .pricingTable-header,
.pricingTable.green .pricingTable-signup {
    background: linear-gradient(#009A8A, #1B867C);
}

@media only screen and (max-width: 990px) {
    .pricingTable {
        margin: 0 0 40px;
    }
}

/*--------------RESPONSIVE---------------
--------------------------------------*/

/*Large devices (desktops, less than 1200px)*/

@media (max-width: 1199.98px) {
    .section-sevices .card {
        min-height: 324px;
    }
    .carousel .banner-caption {
        margin-top: -240px;
    }
    .testimonial-wrap .owl-nav button.owl-next {
        bottom: 0;
        right: 240px;
    }
    .testimonial-wrap .owl-nav button.owl-prev {
        bottom: 0;
        left: 240px;
    }
    .testimonial-wrap .owl-dots {
        margin-top: -12px;
    }
}

/*Medium devices (tablets, less than 992px)*/

@media (max-width: 991.98px) {
    .navbar .container {
        max-width: 100%;
    }
    .navbar-brand {
        width: 95px;
        padding: 5px 15px;
    }
    .navbar-toggler {
        padding: 0 15px;
    }
    .navbar-expand-lg .navbar-nav .nav-item {
        border-top: 1px solid #f3f3f3;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 8px 15px;
    }
    .section-sevices .card {
        min-height: 295px;
    }
    .testimonial-wrap #section-review {
        height: auto;
        top: 50px;
    }
    .testimonial-wrap .owl-icon {
        top: 20px;
    }
    .testimonial-wrap .owl-nav button.owl-next {
        bottom: 25px;
        right: 130px;
    }
    .testimonial-wrap .owl-nav button.owl-prev {
        bottom: 25px;
        left: 130px;
    }
    .testimonial-wrap .owl-dots {
        margin-top: -8px;
    }
}

@media (min-width: 768px) {
    .carousel .banner-caption h2 {
        padding-bottom: 18px;
        font-size: 35px;
        line-height: 46px;
    }
    .navbar {
        padding: 0px;
        position: fixed;
        top: 45px;
        z-index: 99;
        width: 100%;
        /*background-image:url('../images/hader-1.png');*/
        /*height: 200px;*/
        background-color: #fff;
        box-shadow: 0px 2px 7px 2px #00000057;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgb(160 160 160) 100%);
    }
    .carousel .banner-right .btn-orange {
        margin: 0px 0 0 20px;
    }
    .heading-bottom2 {
        position: relative;
        width: 100%;
        display: inline-block;
        background: url(../images/index-page/heading-img.png) no-repeat;
        padding: 0px 0 40px 0;
        margin: 0px 0px 10px 0px;
        margin-left: 43%;
    }
    .spec-bx {
        border: 2px dotted #003161;
        /* box-shadow: 2px 2px 8px 4px #4e4e4e24; */
        /* border: 1px solid black; */
        top: 50px;
        background: white;
        display: inline-block;
        width: 350px;
        min-height: 300px;
        /* background: #1ba0b1cf; */
        border-radius: 0px;
        margin: 0 14px;
        vertical-align: top;
        position: relative;
        -webkit-transition: all 300ms ease-out;
        -moz-transition: all 300ms ease-out;
        -ms-transition: all 300ms ease-out;
        -o-transition: all 300ms ease-out;
        transition: all 300ms ease-out;
    }
    #Specialty-container {
        /*background: url(../images/index-page/consulting-h-background.jpg);*/
        background-size: cover;
    }
    .google-view-h2 {
        margin-left: -52px;
    }
    .google-view-h2 .google-view-img {
        margin-top: 40px;
        width: 10%;
    }
    .google-view-h2 .google-view-span {
        margin-left: 20px
    }
    .google-view-h4 {
        margin-top: -60px;
        margin-left: 20px
    }
    .spec-bx span {
        margin: -43px 79px 50px 74px;
        position: relative;
        /* width: 191px; */
        height: 87px;
        display: block;
    }
}

/*Small devices (landscape phones, less than 768px)*/

@media (max-width: 767.98px) {
    .google-view-h2 .google-view-img {
        display: none;
        margin-top: 40px;
        width: 20%;
    }
    .google-view-h2 .google-view-span {
        margin-left: 10px;
    }
    .google-view-h4 {
        margin-top: 10px;
        margin-left: 0;
        margin-bottom: -50px;
    }
    .google-view-h2 {
        margin-left: -8px;
        margin-top: 30px;
    }
    #Specialty-container {
        /*background: url(../images/index-page/consulting-h-background.jpg);*/
        background-size: cover;
        margin-bottom: -70px;
        margin-top: 40px;
    }
    .spec-bx span {
        margin: -45px 66px 47px 50px;
        position: relative;
        /* width: 191px; */
        height: 87px;
        display: block;
    }
    .spec-bx {
        border: 2px dotted #003161;
        /* box-shadow: 2px 2px 8px 4px #4e4e4e24; */
        /* border: 1px solid black; */
        top: 50px;
        background: white;
        display: inline-block;
        width: 300px;
        min-height: 300px;
        /* background: #1ba0b1cf; */
        border-radius: 0px;
        margin: 0 14px;
        vertical-align: top;
        position: relative;
        -webkit-transition: all 300ms ease-out;
        -moz-transition: all 300ms ease-out;
        -ms-transition: all 300ms ease-out;
        -o-transition: all 300ms ease-out;
        transition: all 300ms ease-out;
        margin-bottom: 70px;
    }
    .heading-bottom2 {
        position: relative;
        width: 87%;
        display: inline-block;
        background: url(../images/index-page/heading-img.png) no-repeat;
        padding: 0px 0 40px 0;
        /* margin: 0px 0px 10px 0px; */
        margin-left: 31%;
    }
    .carousel .banner-right .btn-orange {
        margin: 0px 0 0 8px;
        padding: 0px 8px;
    }
    .carousel .banner-right .btn-orange p {
        font-size: 13px;
    }
    .carousel .banner-caption .banner-p {
        display: none;
    }
    .carousel .banner-caption h2 {
        /* padding-bottom: 18px; */
        font-size: 14px;
        line-height: 18px;
    }
    .navbar {
        padding: 0px;
        position: fixed;
        top: 0px;
        z-index: 99;
        width: 100%;
        /*background-image:url('../images/hader-1.png');*/
        /*height: 200px;*/
        background-color: #fff;
        box-shadow: 0px 2px 7px 2px #00000057;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgb(160 160 160) 100%);
    }
    h1 {
        font-size: 24px;
        line-height: 32px;
    }
    h2 {
        font-size: 30px;
        line-height: 28px;
    }
    h3 {
        font-size: 18px;
        line-height: 26px;
    }
    section {
        padding: 40px 0;
    }
    .sub-title {
        padding-bottom: 20px;
    }
    .navbar-brand {
        width: 280px;
    }
    .carousel {
        margin-top: 92px;
    }
    .carousel .view img {
        min-height: 150px;
    }
    .carousel .banner-caption h1 {
        padding-bottom: 20px;
        font-size: 16px;
        line-height: 24px;
    }
    .carousel .banner-caption {
        margin-top: -130px;
        width: 62%;
        margin-left: 39%;
    }
    .carousel .btn {
        padding: 5px;
        font-size: 12px;
        line-height: 20px;
    }
    .carousel-indicators {
        display: none;
    }
    .sec-media h2.heading {
        margin-top: 20px;
        font-size: 20px;
    }
    .section-choose-us .choose-us-wrap {
        margin-bottom: 30px;
    }
    .section-choose-us,
    .section-gallery {
        padding-bottom: 10px;
    }
    .section-team .team-wrap {
        margin-top: 20px;
        padding: 15px 15px;
    }
    .section-team .img-clinic {
        background-color: #fff;
        position: relative;
        top: 0;
        right: 0;
        width: auto;
    }
    .testimonial-wrap .owl-nav button.owl-prev {
        bottom: 25px;
        left: 70px;
    }
    .testimonial-wrap .owl-nav button.owl-next {
        bottom: 25px;
        right: 70px;
    }
    .testimonial-wrap {
        margin-bottom: 40px;
    }
    .page-banner {
        min-height: 110px;
        margin-top: 115px;
        background: #B783AA;
    }
    .page-banner .page-title {
        padding: 27px 0;
    }
    .section-mission .mission-wrap {
        margin-bottom: 30px;
    }
    .section-mission {
        padding-bottom: 10px;
    }
    .section-diseases .diseases-img {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 0;
    }
    /*Diseases And condition Page*/
    .section-diseases {
        padding-bottom: 20px;
    }
    .section-diseases .condition-img {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 0;
    }
    .section-diseases .diseases-cover {
        padding: 20px;
        margin-right: 0;
    }
    .section-diseases .condition-cover {
        padding: 20px;
        margin-left: 0;
    }
    .section-diseases .diseases-wrap {
        margin-bottom: 30px;
    }
    /*Treatment Page*/
    .section-diseases .condition-img.treatment-img,
    .section-diseases .diseases-img.treatment-img {
        margin-top: 0;
    }
    /*Gallery*/
    .modal {
        left: 10px;
        top: 80px;
        width: 300px;
        height: 300px;
        margin-left: 0;
    }
    /*Contact Page*/
    .contact-info .info-icon {
        left: 50%;
        top: 0;
        margin-left: -30px;
    }
    .contact-info {
        padding: 30px 30px 30px 30px;
        margin-bottom: 50px;
    }
    .contact-thei {
        padding-bottom: 0;
    }
    .contact-thei .form-wrap {
        margin-bottom: 70px;
    }
    /*Footer*/
    .footer {
        padding: 40px 0;
    }
    .footer .footer-wrap {
        padding-bottom: 30px;
    }
}

/*Extra small devices (portrait phones, less than 576px)*/

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

.header {
    background-color: #003161;
    color: white;
    padding-top: 6px;
    padding-bottom: 6px;
}

.top-header {
    display: none;
    height: 3px;
    background-color: #F9961F;
}

.header a {
    color: white;
}

.header a i {
    font-size: 26px;
    padding: 5px;
}

.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link,
.navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: #006A67;
    font-weight: 600;
}

.call-phone .call-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
}

.about {
    /*background: url(../images/index-page/doctor-bg.jpg) no-repeat;*/
    /*   background-size: cover;*/
}

.bg-gray {
    background-color: #ead6e6;
}

.about-doctor {
    border: 2px dotted #003161;
    padding: 20px;
    box-shadow: 2px 2px 8px 4px #00316145;
    border-radius: 20px;
    background: white;
}

.btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: white;
    letter-spacing: 0;
    padding: 10px 25px;
    position: relative;
    z-index: 1;
    border-radius: 3px 0 10px 0;
}

.btn p {
    font-size: 16px;
    line-height: 32px;
    color: #383838;
    font-weight: 400;
    margin-bottom: 5px;
}

.btn:before {
    content: '';
    position: absolute;
    left: 7px;
    top: 7px;
    z-index: -1;
    height: 100%;
    width: 100%;
    border-radius: 3px 0 10px 0;
    border: 1px solid #003161;
}

.btn:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    border-radius: 3px 0 10px 0;
    background: #003161;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.consulting-hospital-section {
    background-color: #2093C3;
}

.consulting-hospital-section .consulting-hospital {
    background: #0b6f9a;
    display: inline-block;
    width: 200px;
    min-height: 314px;
    background: #0b6f9a;
    border-radius: 6px;
    margin: 0 4px;
    vertical-align: top;
    position: relative;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.consulting-hospital-section .consulting-hospital:before {
    background: url(../images/index-page/knee-icon.png) no-repeat;
}

#Specilaty-main {
    min-height: 600px;
    padding: 32px 4px 25px 4px;
}

.specialty-head {
    margin-left: 40%;
    text-align: center;
    color: #fff;
    /*font: 300 45px/50px 'Barlow', sans-serif;
	text-transform: uppercase;*/
}

.spec-intro {
    text-align: center;
    color: #fff;
    font: 100 20px/25px 'Barlow', sans-serif;
    margin: 5px 0 18px 0;
}

.specialty-wrap {
    text-align: center;
    background: url(/images/flex-arrow-bg.png) no-repeat center bottom;
    margin-bottom: 80px;
    /*padding: 0 100px 0 100px;*/
}

.specialty-wrap .nbs-flexisel-ul {
    padding-top: 85px;
    padding-bottom: 70px;
}

.spec-bx:hover {
    /*background: #d4d2d2;*/
}

.spec-bx span::after {
    position: absolute;
    right: -10px;
    top: 3px;
    content: '';
    width: 76px;
    height: 68px;
    /*background: url(../images/index-page/knee-icon.png) no-repeat 0 0;*/
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

/*.spec-bx:hover span::after {
	background: url(../images/index-page/knee-icon.png) no-repeat 0 0;
}*/

.spec-bx.hip span {
    background: url(../images/index-page/terna-hospital-logo.jpg) no-repeat 0 0;
    border: 2px dotted #003161;
    width: 200px;
}

.spec-bx.hip1 span {
    background: url(../images/index-page/apollo-hospital-logo.JPG) no-repeat 0 0;
    border: 2px dotted #003161;
    width: 200px;
}

.spec-bx.knee span {
    background: url(../images/index-page/vitals-clinic.png) no-repeat 0 0;
    border: 2px dotted #003161;
    width: 200px;
    background-color: #fff;
}

.spec-caption {
    text-align: center;
    color: #fff;
    font: 700 20px/25px 'Barlow', sans-serif;
    /*text-transform: uppercase;*/
    padding-bottom: 10px;
    position: relative;
}

.spec-caption a {
    color: #353535;
}

.spec-bx:hover .spec-caption,
.spec-bx:hover li {
    color: #fff;
}

.doctor-subheading {
    line-height: 25px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #006A67;
}

.doctor-img {
    margin-top: 75px;
}

.doctor-img1 {
    margin: 30px 0px;
}

.spec-caption::after {
    bottom: 0;
    left: 46%;
    position: absolute;
    content: '';
    background: #003161;
    width: 40px;
    height: 4px;
    border-radius: 8px;
}

.spec-bx:hover .spec-caption::after {
    background: #006A67;
}

.spec-bx ul {
    padding: 15px 28px 10px 42px;
}

.spec-bx li {
    color: #b6d4e1;
    font: 400 15px/20px 'Barlow', sans-serif;
    text-align: left;
    margin-bottom: 9px;
    list-style: disc;
    padding-left: 5px;
}

.spec-bx li a {
    color: white;
}

.spec-bx p {
    color: #191818;
    font: 400 17px/20px 'Barlow', sans-serif;
    padding: 10px 10px 5px 10px;
}

.spec-more {
    font: 400 17px/17px 'Barlow', sans-serif;
    position: absolute;
    bottom: -19px;
    left: 22%;
}

.spec-more a {
    display: inline-block;
    color: #371718;
    text-transform: uppercase;
    padding: 10px 30px 13px 30px;
    border-radius: 28px;
    background: #c7e0eb;
}

.specialty-wrap .nbs-flexisel-nav-left,
.specialty-wrap .nbs-flexisel-nav-right {
    height: 15px;
    width: 13px;
    top: inherit;
    bottom: 8px;
}

.specialty-wrap .nbs-flexisel-nav-left {
    left: 49.2%;
}

.specialty-wrap .nbs-flexisel-nav-right {
    right: 49.1%;
}

.specialty-wrap .nbs-flexisel-nav-left::before,
.specialty-wrap .nbs-flexisel-nav-right::before {
    font: normal 12px/30px 'fontello';
    color: #fff;
}

.heading-bottom {
    position: relative;
    width: 100%;
    display: inline-block;
    background: url(../images/index-page/heading-img.png) no-repeat;
    padding: 0px 0 40px 0;
    margin: 0px 0px 10px 0px;
}

#Specilaty-main .heading-bottom1 {
    position: relative;
    width: 100%;
    display: inline-block;
    left: 45%;
    background: url(../images/index-page/heading-img.PNG) no-repeat;
    padding: 0px 0 40px 0;
    margin: 0px 0px 10px 0px;
}

.our-services {
    text-align: center;
    /*margin-left: 44%;*/
}

.service-bg1 {
    background: url(../images/index-page/infectious-diseases.jpg) no-repeat;
    background-size: cover;
    min-height: 500px;
}

@media (min-width: 768px) {
    .page-banner {
        background: url(../images/banner-image.png);
        background-size: cover;
        margin-top: 86px;
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

.page-color-gray {
    background-color: #ead6e6;
}

.list-service li a {
    position: relative;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 25px;
    display: inline-block;
    padding: 10px 10px 10px 30px;
    border-left: 8px solid #003161;
    color: #000;
}

.list-service h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

.service-heading {
    margin-bottom: 24px;
    border: 3px solid #003161;
    padding: 10px;
    border-radius: 2px 30px;
}

.service {
    border: solid 1px lightgray;
    box-shadow: 0 0 5px #cacaca;
    padding: 20px 30px;
}

.li-pad {
    padding-left: 30px;
    padding-bottom: 10px;
}

.li-pad li {
    list-style-type: square;
    margin-bottom: 12px;
}

.map {
    margin: -52px 0 !important;
    background: #926284;
}

.about-head {
    font-size: 38px;
    line-height: 46px;
}

.footer-content .footer-heading-h6 {
    font-size: 14px;
    line-height: 24px;
}

.footer-content .footer-heading-h2 {
    font-size: 28px;
    line-height: 56px;
}

.appointment {
    background: #003161;
    padding: 4px 24px;
    border-radius: 20px;
    margin-top: -2px;
    border: 2px solid white;
    color: white;
}

@media (max-width: 768px) {
    .navbar-fixed-bottom a {
        z-index: 99999;
        position: fixed;
        left: 15px;
        bottom: 20px;
        background: #018f99;
        width: 54px;
        height: 54px;
        padding: 5px;
        border-radius: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        color: #ffffff;
        -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
        animation: cc-calto-action-ripple 0.6s linear infinite;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        justify-items: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-decoration: none;
        text-align: center;
    }
    .navbar-fixed-bottom a img {
        width: 45px;
    }
    @-webkit-keyframes cc-calto-action-ripple {
        0% {
            -webkit-box-shadow: 0 4px 10px rgba(1, 143, 153, 0.2), 0 0 0 0 rgba(1, 143, 153, 0.2), 0 0 0 5px rgba(1, 143, 153, 0.2), 0 0 0 10px rgba(1, 143, 153, 0.2);
            box-shadow: 0 4px 10px rgba(1, 143, 153, 0.2), 0 0 0 0 rgba(1, 143, 153, 0.2), 0 0 0 5px rgba(1, 143, 153, 0.2), 0 0 0 10px rgba(1, 143, 153, 0.2);
        }
        100% {
            -webkit-box-shadow: 0 4px 10px rgba(1, 143, 153, 0.2), 0 0 0 5px rgba(1, 143, 153, 0.2), 0 0 0 10px rgba(1, 143, 153, 0.2), 0 0 0 20px rgba(1, 143, 153, 0);
            box-shadow: 0 4px 10px rgba(1, 143, 153, 0.2), 0 0 0 5px rgba(1, 143, 153, 0.2), 0 0 0 10px rgba(1, 143, 153, 0.2), 0 0 0 20px rgba(1, 143, 153, 0);
        }
    }
    @keyframes cc-calto-action-ripple {
        0% {
            -webkit-box-shadow: 0 4px 10px rgba(1, 143, 153, 0.2), 0 0 0 0 rgba(1, 143, 153, 0.2), 0 0 0 5px rgba(1, 143, 153, 0.2), 0 0 0 10px rgba(1, 143, 153, 0.2);
            box-shadow: 0 4px 10px rgba(1, 143, 153, 0.2), 0 0 0 0 rgba(1, 143, 153, 0.2), 0 0 0 5px rgba(1, 143, 153, 0.2), 0 0 0 10px rgba(1, 143, 153, 0.2);
        }
        100% {
            -webkit-box-shadow: 0 4px 10px rgba(1, 143, 153, 0.2), 0 0 0 5px rgba(1, 143, 153, 0.2), 0 0 0 10px rgba(1, 143, 153, 0.2), 0 0 0 20px rgba(1, 143, 153, 0);
            box-shadow: 0 4px 10px rgba(1, 143, 153, 0.2), 0 0 0 5px rgba(1, 143, 153, 0.2), 0 0 0 10px rgba(1, 143, 153, 0.2), 0 0 0 20px rgba(1, 143, 153, 0);
        }
    }
}