/*!// Contents
// ------------------------------------------------>
1. Global Styles
2. Typography
3. Color
4. Align
5. Grid
6. Background
7. Buttons
8. Forms
9. Heading
10. Header
11. Menu
12. Clients
13. Hero
14. Services
15. Testimonial
16. Feature
17. Action
18. Pricing
19. Carousel
20. Landing
/*------------------------------------*\
#GLOBAL STYLES
\*------------------------------------*/
:root {
    --global--font-body: 'Poppins', sans-serif;
    --global--font-heading: 'Poppins', sans-serif;
    --global--color-primary: #2582a1;
    --global--color-secondary: #f5811d;
    --global--color-body: #5b5b5b;
    --global--color-heading: #333;
    --global--color-subheading: #fefeff;
    --global--color-white: #fff;
    --global--color-gray: #FAF8FB;
    --global--color-pink: #FEFBFF;
    --main-color: #1f58a1;
    --main-light-color: #74c482;
    --second-color: #f5811d;
    --second-light-color: #ffdd79;
}

body,
html {
    overflow-x: hidden
}

html {
    font-size: 13px
}

body {
    background-color: var(--global--color-white);
    font-family: var(--global--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--global--color-body);
    line-height: 1.4;
    margin: 0
}

.wrapper {
    background-color: var(--global--color-white)
}

* {
    outline: 0
}

::-moz-selection {
    text-shadow: none
}

::selection {
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    text-shadow: none
}

a {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    color: var(--global--color-primary);
}

a:hover {
    color: rgba(var(--global--color-primary), 10%);
    text-decoration: none;
}

a:focus {
    color: rgba(var(--global--color-primary), 10%);
    outline: 0;
    text-decoration: none
}

a:active {
    color: rgba(var(--global--color-primary), 10%);
    outline: 0;
    text-decoration: none
}

button.btn {
    margin-bottom: 0
}

section {
    background-color: var(--global--color-white)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--global--color-heading);
    font-family: var(--global--font-heading);
    font-weight: 500;
    margin: 0 0 28px;
    line-height: 1
}

h1 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
}

h3 {
    font-size: 38px
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 24px
}

h6 {
    font-size: 18px
}

p {
    color: var(--global--color-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px
}

form,
p,
ul {
    margin-bottom: 20px;
    list-style-type: none;
}

section {
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: hidden
}

@media screen and (max-width:991px) {
    section {
        padding-top: 20px;
        padding-bottom: 20px
    }
}

.block {
    display: block
}

@media only screen and (max-width:767px) {
    section {
        padding-top: 20px;
        padding-bottom: 20px
    }
}

.bg-dark {
    background-color: var(--global--color-primary) !important
}

.bg-dark .heading .heading-title {
    color: #fff !important;
    padding-bottom: 15px;
}

.bg-dark .content_p {
    color: #fff !important;
}

.bg-parallax {
    background-attachment: fixed
}

.btn {
    font-family: var(--global--font-body);
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 0;
    width: 100%;
    height: 38px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    border-radius: 5px;
    overflow: hidden
}

.btn2 {
    max-width: 350px;
    height: 40px;
}

.rounded2 {
    border-radius: 0.85rem !important;
}

.btn:before {
    content: '';
    position: absolute;
    width: calc(100%);
    height: calc(100%);
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    transition: -webkit-transform .24s cubic-bezier(.37, .31, .31, .9);
    -webkit-transition: -webkit-transform .24s cubic-bezier(.37, .31, .31, .9);
    -o-transition: transform .24s cubic-bezier(.37, .31, .31, .9);
    transition: transform .24s cubic-bezier(.37, .31, .31, .9);
    transition: transform .24s cubic-bezier(.37, .31, .31, .9), -webkit-transform .24s cubic-bezier(.37, .31, .31, .9);
    border-radius: inherit
}

.btn-primary {
    color: #fff;
    background-color: var(--global--color-primary) !important;
    border-color: var(--global--color-primary) !important
}

.btn:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center
}

.btn:active,
.btn:active:focus,
.btn:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn--secondary {
    background-color: var(--global--color-secondary);
    color: var(--global--color-white)
}

.btn--secondary:active,
.btn--secondary:focus,
.btn--secondary:hover {
    background-color: var(--global--color-primary);
    color: var(--global--color-white)
}

.btn-lg {
    padding: 0.5em 3.6em;
}

.form-control {
    color: var(--global--color-body);
    font-family: var(--global--font-body);
    font-size: 16px;
    font-weight: 400;
    height: 48px;
    text-transform: none;
    border: 0;
    border-bottom: 1px solid #dee2e6;
    background: 0 0;
    padding: 0;
    margin-bottom: 10px;
    position: relative;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.form-control:focus {
    border-color: var(--global--color-primary);
    -webkit-box-shadow: none;
    box-shadow: none;
    background: 0 0
}

.form-control::-webkit-input-placeholder {
    color: var(--global--color-body)
}

.form-control:-moz-placeholder {
    color: var(--global--color-body)
}

.form-control::-moz-placeholder {
    color: var(--global--color-body)
}

.form-control:-ms-input-placeholder {
    color: var(--global--color-body)
}

.heading {
    margin-bottom: 15px;
    position: relative
}

@media screen and (max-width:991px) {
    .heading {
        text-align: center
    }
}

.heading .heading-title {
    font-family: var(--global--font-heading);
    color: var(--global--color-heading);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 0
}

@media screen and (max-width:991px) {
    .counters {
        padding-bottom: 35px
    }
}

.header {
    height: 80px
}

.header.header-transparent {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001
}

.header .navbar {
    margin-bottom: 0;
    border-radius: 0;
    min-height: 80px;
    border: none;
    padding: 0
}

.header .navbar .navbar-brand {
    margin-right: 0
}

.header .navbar .navbar-brand .logo-dark {
    display: none
}

.header .navbar .navbar-brand .logo-light {
    display: inline-block;
    height: 50px;
}

.header .navbar .navbar-nav>li {
    margin-right: 30px;
    position: relative;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.header .navbar .navbar-nav>li:last-child {
    margin-right: 0
}

.header .navbar .navbar-nav>li>a {
    font-family: var(--global--font-body);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 22px;
    color: #333;
    padding: 0;
    position: relative;
    display: block;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    cursor: pointer
}

@media screen and (min-width:768px) {
    .header .navbar .navbar-nav>li>a::before {
        position: absolute;
        left: 0;
        bottom: -8px;
        content: '';
        height: 2px;
        width: 0;
        background-color: var(--global--color-white);
        -webkit-transition: width .3s ease-in-out;
        -o-transition: width .3s ease-in-out;
        transition: width .3s ease-in-out
    }
}

.header .navbar .navbar-nav>li.active>a,
.header .navbar .navbar-nav>li>a:focus,
.header .navbar .navbar-nav>li>a:hover {
    color: #333
}

@media screen and (min-width:992px) {

    .header .navbar .navbar-nav>li.active>a:before,
    .header .navbar .navbar-nav>li>a:focus:before,
    .header .navbar .navbar-nav>li>a:hover:before {
        background-color: var(--global--color-secondary);
        width: 50%
    }
}

@media screen and (max-width:991px) {
    .header .navbar .navbar-nav>li {
        margin-right: 0;
        margin-bottom: 15px;
        border-radius: 4px
    }

    .header .navbar .navbar-nav>li a {
        margin-right: 0;
        padding: 15px 10px;
        color: var(--global--color-heading);
        line-height: 1
    }

    .header .navbar .navbar-nav>li.active,
    .header .navbar .navbar-nav>li:active,
    .header .navbar .navbar-nav>li:focus,
    .header .navbar .navbar-nav>li:hover {
        background-color: var(--global--color-primary)
    }

    .header .navbar .navbar-nav>li.active a,
    .header .navbar .navbar-nav>li:active a,
    .header .navbar .navbar-nav>li:focus a,
    .header .navbar .navbar-nav>li:hover a {
        color: var(--global--color-white)
    }
}

@media only screen and (max-width:576px) {
    .navbar .navbar-brand {
        max-width: 250px;
    }

    .navbar .navbar-brand img {
        max-width: 100%;
        height: auto
    }
}

@media only screen and (max-width:991px) {
    .navbar .navbar-brand {
        margin-left: 15px;
        line-height: 80px
    }

    .navbar .navbar-brand img {
        max-width: 100%;
        height: auto
    }

    .navbar .navbar-toggler {
        width: 30px;
        height: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
        cursor: pointer;
        outline: 0;
        margin-right: 30px;
        padding: 0
    }
}

@media only screen and (max-width:991px) and (min-width:992px) {
    .navbar .navbar-toggler {
        display: none
    }
}

@media only screen and (max-width:991px) {

    .navbar .navbar-toggler .navbar-toggler-icon {
        width: 100%;
        height: 2px;
        background-color: var(--global--color-primary);
        position: relative;
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out
    }

    .navbar .navbar-toggler .navbar-toggler-icon:after,
    .navbar .navbar-toggler .navbar-toggler-icon:before {
        content: '';
        position: absolute;
        left: 0;
        height: 2px;
        width: 100%;
        background-color: var(--global--color-primary);
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out
    }

    .navbar .navbar-toggler .navbar-toggler-icon:before {
        top: -10px
    }

    .navbar .navbar-toggler .navbar-toggler-icon:after {
        top: 10px
    }

    .navbar .navbar-collapse {
        background-color: var(--global--color-white);
        padding: 15px;
        height: 100vh;
        top: -9px;
        position: relative;
    }

}

@media only screen and (min-width:992px) and (max-width:1200px) {
    .header .navbar .navbar-nav>li {
        margin-right: 16px
    }
}

@media only screen and (min-width:992px) {
    .navbar-collapse {
        padding-right: 0;
        padding-left: 0
    }
}

.feature-panel {
    padding: 21px 30px 22px;
    border-radius: 4px;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    background-color: rgba(255, 255, 255, .2);
    border: 1px dashed rgba(255, 255, 255, .2);
    height: 185px;
}

@media screen and (max-width:991px) {
    .feature-panel {
        max-width: 370px;
        margin: 0 auto 30px;
        padding: 15px;
        height: 170px;
    }
}

@media screen and (max-width:767px) {
    .feature-panel {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.feature-panel .feature-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 40px;
    color: var(--global--color-subheading)
}

@media screen and (max-width:767px) {
    .feature-panel .feature-icon {
        margin-right: 0;
        margin-bottom: 0px;
    }
}

.feature-panel .feature-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

@media screen and (max-width:767px) {
    .feature-panel .feature-content {
        text-align: center
    }
}

.feature-panel .feature-content h3 {
    font-family: var(--global--font-body);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 11px;
    text-transform: capitalize;
    color: var(--global--color-white)
}

.amenitiesWrapper h3 {
    font-size: 16px !important;
    line-height: inherit !important;
    padding-top: 10px
}

.video-modal {
    max-width: 800px !important;
}

.modal-content {
    border-radius: 0.9rem;
    border: none;
}

.modal-header {
    background: var(--global--color-primary) !important
}

.modal-body {
    padding-bottom: 0;
    text-align: center;
}

.modal-body h3,
.modal-body h4 {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.4;
    margin-top: 0.2em;
    margin-bottom: 0;
}

.modal-footer {
    border-top: 0 none !important
}

.modal-call {
    font-size: 1.8rem;
    margin-right: 0.5em;
}

.modal-title {
    color: #fff !important;
    font-family: inherit !important;
    font-size: initial !important;
    text-align: center;
}

@media only screen and (max-width:991px) {
    .grow-adjust {
        padding-top: 20px !important;
    }

    .carousel-item img {
        height: inherit !important
    }
}

.img_desk {
    display: block
}

.img_mob {
    display: none
}

@media only screen and (max-width:600px) {

    .img_desk {
        display: none !important
    }

    .img_mob {
        display: block !important
    }
}

.mainBannerSection {
    margin-top: 80px
}
 

.content_p {
    font-family: var(--global--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--global--color-body)
}

.demo-gallery .list-unstyled a .name h6 {
    background-color: var(--global--color-primary);
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    border-radius: 0 0 20px 20px;
    padding: 0.5em;
}

.btn1 {
    position: fixed;
    width: 212px;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px
}

.animation-bar-2 {
    width: 100%;
    position: relative;
    display: block;
    font-size: 7px;
    line-height: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .25), 0 1px rgba(255, 255, 255, .08)
}

.animation-bar-2 span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 5px;
    background-color: var(--global--color-secondary);
    background-size: 100%;
    border-radius: 8px;
    background-image: linear-gradient(to right, var(--global--color-secondary), var(--global--color-primary));
    animation: progress-anim-2 10s infinite ease
}

@-webkit-keyframes progress-anim-2 {
    0% {
        width: 0%
    }

    50% {
        width: 100%
    }

    100% {
        width: 0%
    }
}

.content_p {
    font-family: var(--global--font-body);
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0 15px 0;
    line-height: 24px;
    text-align: justify;
    color: var(--global--color-body)
}

.btn:active,
.btn:focus,
button:active,
button:focus {
    outline: 0 !important;
    box-shadow: none !important
}

.image-style {
    position: relative;
    z-index: 1;
    padding-top: 0px;
    padding-bottom: 15px;
    padding-left: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}


.image-style::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 75%;
    background-color: transparent;
    left: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 1.4rem !important;
    border: 1px solid var(--global--color-primary);
    margin-bottom: 1.38rem;
}

.mainBannerSection .carousel-inner {
    height: 100%;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
}

.banner-content {
    padding-top: 15px;
    padding-bottom: 170px;
    z-index: 8;
}

@media only screen and (max-width:1448px) {
    .banner-content {
        padding-top: 15px;
        padding-bottom: 50px;
        z-index: 8;
    }
}

.form-top {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

.form-top h4 {
    text-align: center;
    background-color: var(--global--color-primary);
    padding: 5px 10px;
    margin-top: 5px;
    color: #fff;
}

.carousel-control-next,
.carousel-control-prev {
    z-index: 100 !important;
}

.carousel-control-next span i,
.carousel-control-prev span i {
    font-size: 40px;
    color: var(--global--color-primary)
}

@media only screen and (max-width:991px) {
    .banner-content {
        padding-top: 0px;
        padding-bottom: 0px;
        bottom: 0;
        position: relative;
        z-index: 8;
        top: 223px;
        margin-bottom: 15rem;
    }

    .col-auto {
        width: 100% !important;
    }
}

@media only screen and (max-width:844px) {
    .banner-content {
        padding-top: 40px;
        padding-bottom: 120px;
        bottom: 0;
        position: relative;
        z-index: 8;
        top: 360px;
        margin-bottom: 15rem;
    }

    .col-auto {
        width: 100% !important;
    }
}

/* ======================================================== 
                        Footer   
======================================================== */

footer {
    background-color: #fff0e4;
    padding: 50px 0 0;
}

footer .footer-logo {
    margin-bottom: 15px;
}

footer .footer-logo img {
    max-height: 65px;
}

.social-media-icon h4 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0;
}

.social-media-icon a {
    background: #f5811d;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    margin-right: 6px;
}

.social-media-icon a:hover {
    background-color: var(--global--color-body);
}

footer .inner-ftc {
    margin-bottom: 2em;
}

footer .inner-ftc h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0.4em;
}

footer .useful-links ul,
.contact-info-ft ul,
.why-required ul {
    margin: 0;
    padding: 0;
}

footer .useful-links li,
.contact-info-ft ul li {
    list-style-type: none;
}

footer .useful-links li a {
    display: block;
    padding: 4px 0px;
    color: var(--global--color-body);
    font-size: 16px;
    line-height: 1.4;
}

.contact-info-ft ul li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.contact-info-ft ul li:before {
    content: "\f1b8";
    position: absolute;
    font-family: 'Flaticon';
    font-weight: 600;
    left: 0px;
    top: 0px;
    font-size: 18px;
    color: #f5811d;
}

.contact-info-ft ul li.contact-number:before {
    content: '\f095';
    font-family: 'Font AwesomeFree';
}

.contact-info-ft ul li.email-address:before {
    content: '\f0e0';
    font-weight: normal;
    font-family: 'Font AwesomeFree';
}

footer .contact-info-ft ul li a {
    margin-right: 10px;
    color: var(--global--color-body);
}

footer .contact-info-ft ul li a:hover,
footer .useful-links li a:hover {
    color: var(--global--color-primary);
}

.footer-bottom {
    padding-top: 10px;
    background-color: #f5e4d7;
}

/* Appointment */

.btn-appointment {
    background-color: var(--global--color-secondary);
    padding: 2px 10px !important;
    border-radius: 10px;
    color: #fff !important;
}

.btn-appointment i {
    margin-right: 0.3em;
}

@media only screen and (max-width:991px) {
    .btn-appointment {
        padding: 10px 10px !important;
    }

    .dr-warning {
        position: relative;
        top: 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .about-contact {
        margin-bottom: 2.5em;
    }

    .rating_wrap ul {
        padding: 1em 0.3em;
        padding-top: 10px;
    }

}

.btn-appointment:hover {
    background-color: var(--global--color-primary) !important;
}

.dr-warning {
    background-color: red;
}

.dr-warning marquee p {
    color: #fff;
    margin-bottom: 0;
}

.rounded2 {
    border-radius: 1.4rem !important;
}

.social-media-icon a i {
    padding: 10px 5px;
}

.why-required {
    background-color: #fff2f2;
}

section.level2-sec {
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(37, 130, 161, 0.41780462184873945) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(37, 130, 161, 0.41780462184873945) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(37, 130, 161, 0.41780462184873945) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#2582a1", GradientType=1);
}

section.level2-sec .great-bg {
    background: #fff;
    padding: 1em 1.5em;
    border-radius: 0.9em;
}

.level2-sec ul {
    padding-left: 0.5em;
}

.why-required ul li,
.level2-sec ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.why-required ul li:before,
.level2-sec ul li:before {
    content: "\f12e";
    font-family: 'Flaticon';
    position: absolute;
    font-weight: 600;
    margin-right: 5px;
    left: 0px;
    top: 0px;
    font-size: 18px;
    color: #f5811d;
}

/* Video Gallery */

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
    border-radius: 0
}

.card .card-body {
    padding: 0.45rem 0.85rem;
}

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem
}

.card .card-title {
    color: #000000;
    margin-bottom: 0.625rem;
    text-transform: capitalize;
    font-size: 1.56rem;
    font-weight: 500
}

.card .card-title a {
    color: #000;
    line-height: 1.4;
}

.card .card-title a:hover {
    color: var(--global--color-primary)
}

.card .footer {
    background-color: #2582a1;
    padding: 2px 10px;
    color: #fff;
    border-radius: 0 0 0.25rem 0.25rem;
}

.card .footer p {
    margin: 0 !important;
    color: #fff;
}

.card .footer p.txt3 i {
    margin-right: 0.2em;
}

p {
    font-size: 16px;
    margin-bottom: .5rem;
    line-height: 1.8rem
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

@media only screen and (max-width:991px) {

    .demo-gallery .list-unstyled a .name h6 {
        font-size: 14px;
        line-height: 1.2;
    }

}


.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blogs */

.blogs-section {
    background-color: #ebfff6;
}

.reviews-section {
    background-color: #fff6ee
}

.accordion>.card {
    margin-bottom: 10px;
}

.accordion>.card .card-header {
    background-color: rgb(245 129 29 / 11%);
}

.accordion>.card .card-header h6 {
    font-weight: 500 !important;
    line-height: 1.4;
}

.faq_area {
    width: 100%;
}

/* Testimonilas */

.reviews-section .card {
    background: #fff;
    box-shadow: 0 8px 30px -7px #c9dff0;
    margin: 0 20px;
    padding: 0 10px;
    border-radius: 20px;
    border: 0;
}

.card .card-img-top {
    max-width: 50px;
    border-radius: 50%;
    margin: 15px auto 0;
    box-shadow: 0 8px 20px -4px #95abbb;
    width: 100px;
    height: 50px;
}

h5.patient-name {
    font-size: 18px;
    line-height: 1.3;
}

.active {
    opacity: 1;
    transition: all 0.3s;
}

.reviews-section p.card-text {
    font-size: 14px;
}

.about-us {
    background-color: #eefbff;
    padding-top: 50px;
    margin-top: 20px;
}

.color-main {
    color: var(--global--color-primary) !important;
}

@media (max-width: 767px) {
    h1 {
        font-size: 24px;
        margin: 0 0 10px;
    }
}

.video-gallery .video-btn {
    position: relative;
}

.video-gallery .video-icon {
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 20%;
    left: 50%;
    max-width: 60px;
    width: 50px;
    min-width: 20px;
}


@media (max-width: 889px) {
    .video-gallery .video-icon {
        left: 40%;
        max-width: 60px;
        width: 32px;
        min-width: 20px;
    }
}

.photos-gallery a img {
    width: 100%;
}

.when-required .scans-wrapper {
    padding: 1.2em 1.5em;
    background-color: #dcf3fb;
    border-radius: 0.9rem;
}

.when-required .scans-wrapper h4 {
    margin-bottom: 0.5em;
    background-color: var(--global--color-primary);
    padding: 0.3em 0.2em;
    color: #fff;
}

.when-required .scans-wrapper ul {
    padding-left: 28px;
}

.when-required .scans-wrapper ul li {
    color: #000;
    line-height: 1.8;
    position: relative;
}

.when-required .scans-wrapper ul li::before {
    content: "\f12e";
    font-family: 'Flaticon';
    position: absolute;
    font-weight: 600;
    margin-right: 5px;
    left: -20px;
    top: 2px;
    font-size: 14px;
    color: #000
}

.when-required .scans-wrapper.bg-different {
    background-color: #fbf3d7;
}

.machine-pictures img {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.heading-title span {
    font-size: 36px;
    font-weight: 700;
}

.blogs-section img {
    width: 100%;
}

@media (max-width: 991px) {
    .machine-pictures img {
        width: 100%;
    }

    .heading .heading-title {
        font-size: 26px;
    }

}

.rating_wrap ul {
    padding-top: 20px;
    padding-bottom: 30px;

}

.rating_wrap ul {
    max-width: 724px;
    margin: auto;
    display: flex;
}

.rating_wrap ul li {
    display: inline-block;
    width: 36%;
    border: 1px solid #eee;
    text-align: center;
    margin: 0px 5px;
    border-radius: 10px;
    box-shadow: 3px 2px 2px #eee;
}

.rating_wrap ul li .ratinglist {
    padding: 1em 1.2em;
    background-color: #fff;
}

.rating_wrap ul li .ratinglist p {
    margin-bottom: 4px;
    color: #ed791f;
    font-size: 43px;
    line-height: 36px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

.rating_wrap ul li .ratinglist h6 {
    font-size: 13px;
    margin-bottom: 0px;
    font-weight: normal;
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 991px) {
    .rating_wrap ul li {
        width: 30%;
        margin: 0px 5px;
    }

    .rating_wrap ul li .ratinglist p {
        font-size: 26px;
    }

    .modal-body h3,
    .modal-body h4 {
        font-size: 1.2rem;
    }

    .heading-title span {
        font-size: 30px;
    }

}

.about-contact {
    background-color: #ffe7d6;
    margin-top: 1.2em;
    position: relative;
    padding: 1em 1.3em;
    padding-left: 28px;
    padding-right: 55px;
    margin-right: 105px;
    border-radius: 10px;
    color: #000;
    width: calc(100% - 40px) !important;
}

.about-contact:before {
    content: '\f095';
    position: absolute;
    right: -40px;
    top: calc(50% - 40px);
    width: 80px;
    height: 80px;
    line-height: 70px;
    background-color: #ffe7d6;
    color: #f5811d;
    font-family: 'Font AwesomeFree';
    font-weight: 600;
    border: 5px solid #f5811d;
    text-align: center;
    border-radius: 50%;
    font-size: 40px;
}

.about-contact a:hover,
.about-contact a:focus {
    color: #000;
}

.about-contact p {
    font-size: 16px;
    font-weight: 700;
}

.about-contact h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0.2em;
}

/* Chat Icon */

.chat-icon {
    transition: all .8s;
    -webkit-transition: all .8s;
    text-align: center;
    position: fixed;
    right: 1rem;
    bottom: 3rem;
    z-index: 20;
    transform: translateY(10rem)
}

.chat-icon.show {
    transform: translateY(0);
    display: flex;
}

.hero-scroll-wrapper {
    position: absolute;
    right: 7.5rem;
    bottom: -2rem
}

.hero-scroll {
    transition: all .3s;
    -webkit-transition: all .3s;
    position: relative;
    background-color: #35d766;
    border: 1px solid #7dffa5;
    border-radius: 50%;
    height: 4rem;
    width: 4rem;
    display: inline-block;
    margin-left: .5rem
}

.hero-scroll-icon {
    position: absolute;
    top: 47%;
    -moz-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
    text-decoration: none;
    color: #ecfff1;
    font-size: 3rem;
    overflow: hidden;
    left: 0;
    right: 0
}

.chat-icon .hero-scroll-icon {
    font-size: 2rem;
}

.chat-icon .hero-scroll-icon svg {
    width: 40px;
}

.chat-notification {
    background-color: var(--main-color);
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    top: 3px;
    right: 0
}

.hero-scroll-icon .fa {
    transition: all .3s;
    -webkit-transition: all .3s;
    display: block
}

.hero-scroll-icon .fa:last-child {
    opacity: 0;
    transform: translateY(-1.5rem)
}

.hero-scroll:hover {
    box-shadow: 0 0 .7rem .1rem #73ec98
}

.hero-scroll:hover .fa:first-child {
    transform: translateY(-1rem);
    opacity: 0
}

.hero-scroll:hover .fa:last-child {
    transform: translateY(-3rem);
    opacity: 1
}

.chat-icon .hero-scroll .fa {
    transform: translateY(0) !important;
    opacity: 1 !important;
    font-size: 1em;
}

.btn-enquiry {
    font-size: 1.4rem;
    background-color: var(--global--color-primary);
    color: #fff !important;
    padding: 3px 15px;
    position: relative;
    left: 50%;
    top: -150px;
    line-height: 2;
    border: none;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    cursor: pointer;
}

@media (max-width: 991px) {
    .chat-icon {
        right: 0rem;
    }

    .btn-enquiry {
        font-size: 1rem;
        height: 34px;
        left: 54%;
    }

}