@import url("//fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --primary-color: #e5aa8f;
    --secondary-color: #241e5e;
}

a,
a:hover,
a:active,
a:focus {
    color: var(--secondary-color);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-decoration: none;
    outline: none;
    border: none;
}

p {
    margin-bottom: 10px;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    border: none;
}

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

.form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.container-mid {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}


/* ---------------------------- Theme Heading --------------------------- */

.main-heading {
    position: relative;
    margin-bottom: 25px;
    z-index: 1;
}

.main-heading h2 {
    font-size: 36px;
    line-height: 1.25;
    letter-spacing: 2px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .main-heading h2 {
        font-size: 24px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .main-heading h2 {
        font-size: 28px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .main-heading h2 {
        font-size: 32px;
    }
}

.main-heading h2::before,
.main-heading h2::after {
    position: absolute;
    content: "";
    bottom: 0px;
    height: 3px;
    width: 35px;
    z-index: -1;
    background-color: var(--primary-color);
    margin: 0 auto !important;
}

.main-heading h2::before {
    left: 0px;
}

.main-heading h2::after {
    left: 40px;
}

.main-heading h5 {
    text-transform: capitalize;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
    margin: 0 0 10px;
    background-color: rgba(229, 170, 143, 0.25);
    padding: 2px 10px;
    border-radius: 2px;
    display: inline-block;
}

.main-heading p {
    margin-bottom: 20px;
}

.main-heading.heading-dark h2 {
    color: #000;
}

.main-heading.heading-dark h5 {
    color: #000;
}

.main-heading.heading-dark p {
    color: #000;
}

.main-heading.heading-light h2 {
    color: #fff;
}

.main-heading.heading-light h2::before {
    background-color: #fff;
}

.main-heading.heading-light h2::after {
    background-color: #fff;
}

.main-heading.heading-light h5 {
    color: #fff;
}

.main-heading.heading-light p {
    color: #fff;
}


/* ------------------------------------ Import Fonts ---------------------------- */

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
    letter-spacing: 0;
    color: #000;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0;
    margin: 0;
    color: #000;
}

.site-header {
    background: #fff;
    position: relative;
    z-index: 11;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.site-header .header-top {
    background-color: var(--primary-color);
    padding: 5px 0;
}

@media (max-width: 991px) {
    .site-header .header-top {
        display: none;
    }
}

.site-header .header-top .header-hospital-info li {
    display: inline-block;
}

.site-header .header-top .header-hospital-info li a {
    font-size: 13px;
    line-height: 39px;
    display: block;
    color: #fff;
    margin-right: 10px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.site-header .header-top .header-hospital-info li a:hover {
    color: #fff;
    opacity: .75;
}

.site-header .header-top .header-hospital-info li a i {
    position: relative;
    top: 1px;
    margin-right: 3px;
    font-size: 16px;
}

.site-header .header-top .header-hospital-info li:last-child a {
    margin-right: 0;
}

.site-header .header-top .dealer-social {
    text-align: right;
}

.site-header .header-top .dealer-social ul.wp-block-social-links {
    display: block;
}

.site-header .header-top .dealer-social ul.wp-block-social-links li.wp-social-link {
    margin: 0px 5px 0px 0px;
}

.site-header .header-top .dealer-social ul.wp-block-social-links li.wp-block-social-link:hover {
    transform: scale(1);
}

@media (max-width: 991px) {
    .site-header .header-bottom {
        padding: 10px 0px;
    }
}

.site-header .header-bottom.header-bottom-active {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
    box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
    -webkit-animation: smoothScroll 1s forwards;
    animation: smoothScroll 1s forwards;
}

@-webkit-keyframes smoothScroll {
    0% {
        -webkit-transform: translate3d(0, 0, 0) translateY(-35px);
        transform: translate3d(0, 0, 0) translateY(-35px);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0) translateY(0px);
        transform: translate3d(0, 0, 0) translateY(0px);
    }
}

@keyframes smoothScroll {
    0% {
        -webkit-transform: translate3d(0, 0, 0) translateY(-35px);
        transform: translate3d(0, 0, 0) translateY(-35px);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0) translateY(0px);
        transform: translate3d(0, 0, 0) translateY(0px);
    }
}

.site-header .navbar-brand {
    margin: 0;
    padding: 0;
}

.site-header .navbar-brand img {
    max-width: 225px;
    width: 100%;
}

@media (max-width: 991px) {
    .site-header .navbar-brand img {
        max-width: 200px;
    }
}

.site-header .navbar {
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
}

@media (max-width: 991px) {
    .site-header .navbar {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .site-header .navbar .navbar-nav {
        margin: 0;
    }
}

.site-header .navbar .navbar-nav li {
    display: inline-block;
}

@media (max-width: 767px) {
    .site-header .navbar .navbar-nav li {
        display: block;
    }
}

.site-header .navbar .navbar-nav li a {
    text-transform: capitalize;
    padding: 15px;
    font-size: 14px;
    line-height: 49px;
    color: #000;
    display: block;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.site-header .navbar .navbar-nav li a:hover,
.site-header .navbar .navbar-nav li a:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent!important;
    color: var(--primary-color)!important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .site-header .navbar .navbar-nav li a {
        color: var(--secondary-color);
        font-size: 16px;
        line-height: 26px !important;
        border-top: 1px solid #eee;
    }
    .site-header .navbar .navbar-nav li a:hover,
    .site-header .navbar .navbar-nav li a:active,
    .site-header .navbar .navbar-nav li a:focus {
        outline: 0 !important;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

@media (max-width: 991px) {
    .site-header .navbar .navbar-nav li:last-child a {
        border-bottom: 1px solid #eee;
    }
}

.site-header .navbar .navbar-toggler {
    background: transparent;
    border-radius: 0;
    outline: none;
    padding: .25rem;
}

.site-header .navbar .navbar-toggler .icon-bar {
    width: 22px;
    height: 2px;
    background-color: var(--primary-color);
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin: 4px 0;
}

.site-header .navbar .navbar-toggler .top-bar {
    -webkit-transform: rotate(-42deg);
    transform: rotate(-42deg);
    -webkit-transform-origin: 90% 90%;
    transform-origin: 90% 90%;
}

.site-header .navbar .navbar-toggler .middle-bar {
    opacity: 0;
}

.site-header .navbar .navbar-toggler .bottom-bar {
    -webkit-transform: rotate(42deg);
    transform: rotate(42deg);
    -webkit-transform-origin: 90% 10%;
    transform-origin: 90% 10%;
}

.site-header .navbar .navbar-toggler.collapsed .top-bar {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.site-header .navbar .navbar-toggler.collapsed .middle-bar {
    opacity: 1;
}

.site-header .navbar .navbar-toggler.collapsed .bottom-bar {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

@keyframes smoothScroll {
    0% {
        -webkit-transform: translate3d(0, 0, 0) translateY(-35px);
        transform: translate3d(0, 0, 0) translateY(-35px);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0) translateY(0px);
        transform: translate3d(0, 0, 0) translateY(0px);
    }
}

.site-header .navbar-collapse {
    position: relative;
}

@media (max-width: 991px) {
    .site-header .navbar-collapse {
        position: absolute;
        top: 61px;
        left: -100%;
        padding: 0;
        width: 100%;
        text-align: center;
        overflow-y: scroll;
        height: calc(100vh - 61px);
        display: block;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        overflow-y: scroll;
    }
    .site-header .navbar-collapse.collapsing {
        height: calc(100vh - 61px);
        margin-right: 50%;
        display: block;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }
    .site-header .navbar-collapse.show {
        left: 0;
        background: #fff;
    }
}

.site-header .menu-main-menu-container {
    margin-left: auto;
}


/* -------------------------------------- Header Drop Down Menu ---------------------------- */

@media(min-width:992px) {
    .site-header .sub-menu {
        display: none
    }
}

#header .sub-menu.dropdown-menu {
    border: none;
    border-top: none;
    border-bottom: none;
    border-radius: 0;
    padding: 0;
    top: 79px;
    background-color: #fff;
    min-width: 15rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 0px;
}

#header .sub-menu li {
    cursor: pointer;
    display: block;
}

#header .navbar .navbar-nav li.dropdown:nth-last-child(2) .dropdown-menu,
#header .navbar .navbar-nav li.dropdown:last-child .dropdown-menu {
    left: auto;
    right: 0;
}

#header .sub-menu li:last-child a,
#header .sub-menu li:last-child a:hover {
    border-bottom: 0px dotted transparent;
}

#header .sub-menu li a {
    background: var(--primary-color);
    color: #fff;
    border-bottom: 1px dotted #fff;
    width: 100%;
    font-size: 14px;
    line-height: 1;
    padding: 15px;
    border-radius: 0;
    display: inline-block;
    text-align: left;
    text-transform: capitalize;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

.site-header .navbar .navbar-collapse .navbar-nav a.dropdown-toggle::after {
    border: none;
    position: relative;
    top: 1px;
    margin-left: 8px;
    height: 6px;
    width: 6px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

@media (max-width: 991px) {
    #header .sub-menu li a {
        text-align: center;
    }
}

#header .sub-menu li a::before {
    background: transparent;
    height: 0;
}

#header .sub-menu li a:hover {
    background: #fff;
    color: var(--primary-color);
    border-bottom: 1px dotted #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

@media (min-width:990px) {
    #top_menu li.menu-item-has-children:hover ul.sub-menu.dropdown-menu {
        display: block;
    }
}

@media (min-width: 992px) {
    .site-header .navbar .navbar-collapse .navbar-nav li a:hover.dropdown-toggle::after {
        top: 4px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
}

@media (max-width: 991px) {
    .site-header .navbar .navbar-nav .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
    }
    .site-header .navbar .navbar-collapse .navbar-nav li.show .dropdown-toggle::after {
        transform: rotate(228deg);
        top: 3px;
    }
    .site-header .navbar .navbar-collapse .navbar-nav li a:hover.dropdown-toggle::after {
        top: 1px;
    }
}

.site-footer {
    position: relative;
    background-color: #fbf2ee;
    padding-bottom: 40px;
    z-index: 1;
}

.site-footer .site-footer-logo {
    padding: 40px 0;
}

.site-footer .site-footer-logo a {
    display: block;
}

.site-footer .site-footer-logo img {
    max-width: 300px;
    width: 100%;
}

.site-footer .footer-content p {
    line-height: 31px;
    color: #000;
    padding: 5px 0;
    margin-bottom: 15px;
}

.site-footer .footer-content .dealer-social {
    text-align: left;
}

@media (max-width: 1199px) {
    .site-footer .footer-content .dealer-social {
        margin-bottom: 25px;
    }
}

.site-footer .pre-footer {
    border-top: 1px solid #f6e7e1;
    padding: 50px 0 50px;
}

.site-footer .pre-footer h4 {
    color: #000;
    text-transform: capitalize;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 0.5px;
    z-index: 1;
    position: relative;
}

@media (max-width: 991px) {
    .site-footer .pre-footer h4 {
        margin-bottom: 8px;
    }
}

@media (max-width: 1499px) {
    .site-footer .pre-footer h4 {
        font-size: 16px;
    }
}

.site-footer .pre-footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 60px;
    background: #000;
    display: block;
    z-index: -1;
}

@media (max-width: 1199px) {
    .site-footer .footer-menu {
        margin: 15px 0;
    }
}

.site-footer .footer-menu ul {
    padding-left: 15px;
}

.site-footer .footer-menu ul li {
    padding: 5px 0;
    list-style: square;
    color: #000;
}

.site-footer .footer-menu ul li:hover {
    color: var(--secondary-color);
}

.site-footer .footer-menu ul li a {
    font-size: 14px;
    position: relative;
    color: #000;
    display: inline-block;
    text-transform: capitalize;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.site-footer .footer-menu ul li a::before {
    position: absolute;
    content: '';
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    display: inline-block;
}

.site-footer .footer-menu ul li a:hover {
    color: var(--secondary-color);
}

.site-footer .footer-menu ul li a:hover::before {
    width: 100%;
}

.site-footer .copyright-footer {
    border-radius: 5px;
    background: #f9ebe4;
    padding: 20px 15px;
}

.site-footer .copyright-footer p {
    margin-bottom: 0;
    color: #000;
    line-height: 30px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 767px) {
    .site-footer .copyright-footer p {
        line-height: 25px;
    }
}

.site-footer .copyright-footer p a {
    color: var(--primary-color);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.site-footer .copyright-footer p:hover a {
    color: var(--secondary-color);
    opacity: .75;
    text-decoration: underline;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.site-footer ul.wp-block-social-links {
    display: block;
}

.dealer-social li {
    display: inline-block;
}

.site-footer .dealer-social ul.wp-block-social-links li.wp-social-link {
    margin: 0px 5px 0px 0px;
}

.site-footer .dealer-social ul.wp-block-social-links li.wp-block-social-link:hover {
    transform: scale(1);
}

.dealer-social li a {
    display: block;
    color: #fff !important;
    border-radius: 0%;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.theme-btn a,
.theme-btn-inverse a {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 20px;
    min-width: 165px;
    border-radius: 2px;
    text-transform: capitalize;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.theme-btn a {
    color: #fff!important;
    background-color: var(--primary-color)!important;
    border: 1px solid var(--primary-color)!important;
}

.theme-btn-inverse a {
    color: #fff!important;
    background-color: var(--secondary-color)!important;
    border: 1px solid var(--secondary-color)!important;
}

.theme-btn a:hover,
.theme-btn a:focus,
.theme-btn a:active {
    color: #fff!important;
    background-color: var(--secondary-color)!important;
    border: 1px solid var(--secondary-color)!important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.theme-btn-inverse a:hover,
.theme-btn-inverse a:focus,
.theme-btn-inverse a:active {
    color: #fff!important;
    background-color: var(--primary-color)!important;
    border: 1px solid var(--primary-color)!important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.recent-articles-wrapper {
    position: relative;
    -webkit-box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.1);
    background: #fcfcfc;
    border-radius: 5px;
    padding: 10px;
    margin-top: 15px;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.recent-articles-wrapper a {
    display: block;
}

.recent-articles-wrapper::before {
    content: '';
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: -1;
}

.recent-articles-wrapper a {
    display: block;
}

.recent-articles-wrapper .recent-articles-bg {
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border-bottom: 5px solid var(--primary-color);
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.recent-articles-wrapper .recent-articles-bg .recent-articles-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 200px;
    width: 100%;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.recent-articles-wrapper .recent-articles-category {
    position: absolute;
    top: 25px;
    left: 10px;
    color: var(--secondary-color);
    text-transform: capitalize;
    font-size: 13px;
    background: #fff;
    z-index: 1;
    padding: 7px 20px;
    text-transform: capitalize;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.recent-articles-wrapper .recent-articles-content {
    padding: 25px 10px 15px;
    position: relative;
    z-index: 1;
}

.recent-articles-wrapper .recent-articles-content .recent-articles-date {
    color: #000;
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.recent-articles-wrapper .recent-articles-content .recent-articles-title>a {
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 1.5;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .recent-articles-wrapper .recent-articles-content .recent-articles-title>a {
        font-size: 16px;
    }
}

.recent-articles-wrapper .recent-articles-content .articles-text {
    font-size: 15px;
    margin-bottom: 15px;
}

.recent-articles-wrapper .recent-articles-content .articles-link {
    color: var(--primary-color);
    display: block;
}

.recent-articles-wrapper:hover {
    -webkit-box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.recent-articles-wrapper:hover::before {
    width: 90%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.recent-articles-wrapper:hover .recent-articles-img {
    -webkit-transform: translate3d(0, 0, 0) scale(1.05);
    transform: translate3d(0, 0, 0) scale(1.05);
}

.recent-articles-wrapper:hover .recent-articles-img::before {
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.recent-articles-wrapper:hover .recent-articles-category {
    background-color: var(--primary-color);
    color: #fff;
}

.recent-articles-wrapper:hover .recent-articles-title a {
    color: var(--primary-color);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.recent-articles-wrapper:hover .articles-link {
    color: var(--secondary-color);
}


/* ----------------------------- Slider Arrows CSS Start --------------------------*/

#recent-articles-section .slick-prev,
#recent-articles-section .slick-next {
    top: 50%;
    height: 45px;
    width: 45px;
    padding-bottom: 2px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 1;
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: 2px 5px 5px rgba(25, 41, 61, 0.26);
    box-shadow: 2px 5px 5px rgba(25, 41, 61, 0.26);
}

@media (max-width: 767px) {
    #recent-articles-section .slick-prev,
    #recent-articles-section .slick-next {
        top: 45%;
        height: 30px;
        width: 30px;
    }
}

#recent-articles-section .slick-prev:hover,
#recent-articles-section .slick-next:hover {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

#recent-articles-section .slick-prev::before,
#recent-articles-section .slick-next::before {
    font-family: "FontAwesome";
    color: var(--primary-color);
    opacity: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 32px;
}

@media (max-width: 767px) {
    #recent-articles-section .slick-prev::before,
    #recent-articles-section .slick-next::before {
        font-size: 24px;
    }
}

#recent-articles-section .slick-prev:hover::before,
#recent-articles-section .slick-next:hover::before {
    color: #fff;
}

#recent-articles-section .slick-prev {
    left: -15px;
}

#recent-articles-section .slick-prev::before {
    content: "\f104";
}

#recent-articles-section .slick-next {
    right: -15px;
}

#recent-articles-section .slick-next::before {
    content: "\f105";
}

.testimonial-grid-wrapper {
    position: relative;
    z-index: 1;
}

.testimonial-grid-wrapper::after {
    font-family: FontAwesome;
    content: '\f10e';
    font-size: 30px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.testimonial-grid-wrapper .testimonial-grid-content {
    padding: 65px 0px;
}

.testimonial-grid-wrapper .testimonial-grid-content p {
    margin-bottom: 0;
    color: #fff;
}

.testimonial-grid-wrapper .testimonial-grid-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.testimonial-grid-wrapper .testimonial-grid-author .testimonial-grid-author-image {
    max-width: 75px;
    width: 100%;
    margin-right: 15px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.testimonial-grid-wrapper .testimonial-grid-author-name h5 {
    text-transform: uppercase;
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
}

.testimonial-grid-wrapper .testimonial-grid-author-name p {
    color: #fff;
    margin-bottom: 0;
}


/* ----------------------------- Testimonial Slider Arrows CSS Start --------------------------*/

#testimonial-grid-section .slick-prev,
#testimonial-grid-section .slick-next {
    top: unset;
    bottom: 50px;
    height: 45px;
    width: 45px;
    padding-bottom: 2px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 1;
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: 2px 5px 5px rgba(25, 41, 61, 0.26);
    box-shadow: 2px 5px 5px rgba(25, 41, 61, 0.26);
}

@media (max-width: 767px) {
    #testimonial-grid-section .slick-prev,
    #testimonial-grid-section .slick-next {
        top: 45%;
        height: 30px;
        width: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #testimonial-grid-section .slick-prev,
    #testimonial-grid-section .slick-next {
        bottom: 25px;
    }
}

#testimonial-grid-section .slick-prev:hover,
#testimonial-grid-section .slick-next:hover {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

#testimonial-grid-section .slick-prev::before,
#testimonial-grid-section .slick-next::before {
    font-family: "FontAwesome";
    color: var(--primary-color);
    opacity: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 32px;
}

@media (max-width: 767px) {
    #testimonial-grid-section .slick-prev::before,
    #testimonial-grid-section .slick-next::before {
        font-size: 24px;
    }
}

#testimonial-grid-section .slick-prev:hover::before,
#testimonial-grid-section .slick-next:hover::before {
    color: #fff;
}

#testimonial-grid-section .slick-prev {
    left: auto;
    right: 95px;
}

#testimonial-grid-section .slick-prev::before {
    content: "\f104";
}

@media (max-width: 767px) {
    #testimonial-grid-section .slick-prev {
        left: -5px;
        right: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #testimonial-grid-section .slick-prev {
        right: 65px;
    }
}

#testimonial-grid-section .slick-next {
    left: auto;
    right: 45px;
}

#testimonial-grid-section .slick-next::before {
    content: "\f105";
}

@media (max-width: 767px) {
    #testimonial-grid-section .slick-next {
        right: -5px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #testimonial-grid-section .slick-next {
        right: 15px;
    }
}


/* ------------------------------------- Home Banner Slider CSS Start  ---------------------------------*/

.home-slider-section {
    position: relative;
    z-index: 0;
}

.home-slider-section .carousel-fade {
    opacity: 1;
}

.home-slider-section .carousel-fade .carousel-item {
    top: 0;
    z-index: 1;
    opacity: 0;
    width: 100%;
    position: absolute;
    left: 0 !important;
    display: block !important;
    -webkit-transition: opacity ease-in-out 1s;
    transition: opacity ease-in-out 1s;
}

.home-slider-section .carousel-fade .carousel-item:first-child {
    top: auto;
    position: relative;
}

.home-slider-section .carousel-fade .carousel-item.active {
    opacity: 1;
    z-index: 2;
    -webkit-transition: opacity ease-in-out 1s;
    transition: opacity ease-in-out 1s;
}

.home-slider-section .carousel-fade .carousel-item .carousel-caption {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}

.home-slider-section .carousel-fade .carousel-item .carousel-caption h5 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.home-slider-section .carousel-fade .carousel-item .carousel-caption h3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.home-slider-section .carousel-item {
    position: relative;
    height: 650px;
}

@media (max-width: 767px) {
    .home-slider-section .carousel-item {
        height: 350px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-section .carousel-item {
        height: 450px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home-slider-section .carousel-item {
        height: 600px;
    }
}

.home-slider-section .carousel-item .carousel-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-slider-section .carousel-item .carousel-img::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, color-stop(20%, rgba(0, 0, 0, 0.8)), color-stop(80%, transparent));
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8) 20%, transparent 80%);
    display: block;
}

@media (max-width: 767px) {
    .home-slider-section .carousel-item .carousel-img::before {
        background: rgba(0, 0, 0, 0.5);
    }
}

.home-slider-section .carousel-item .carousel-caption {
    left: auto;
    bottom: auto;
    top: 45%;
    right: 2%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: left;
    max-width: 625px;
    width: 100%;
}

@media (max-width: 767px) {
    .home-slider-section .carousel-item .carousel-caption {
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 10px 40px;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-section .carousel-item .carousel-caption {
        max-width: 400px;
    }
}

.home-slider-section .carousel-item .carousel-caption h3 {
    color: #fff;
    font-size: 75px;
    line-height: 1.1;
    letter-spacing: .25px;
    text-transform: capitalize;
    margin: 10px 0 25px;
}

@media (max-width: 767px) {
    .home-slider-section .carousel-item .carousel-caption h3 {
        font-size: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home-slider-section .carousel-item .carousel-caption h3 {
        font-size: 45px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home-slider-section .carousel-item .carousel-caption h3 {
        font-size: 50px;
    }
}

.home-slider-section .carousel-item .carousel-caption .theme-btn.black-btn {
    max-width: 250px;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.home-slider-section .carousel-item .carousel-caption .theme-btn.black-btn:hover,
.home-slider-section .carousel-item .carousel-caption .theme-btn.black-btn:active,
.home-slider-section .carousel-item .carousel-caption .theme-btn.black-btn:focus {
    opacity: .95;
}

.home-slider-section .carousel-control-prev,
.home-slider-section .carousel-control-next {
    top: 60px;
    width: 5%;
    color: #000;
    opacity: 1;
    z-index: 2;
}

@media (max-width: 767px) {
    .home-slider-section .carousel-control-prev,
    .home-slider-section .carousel-control-next {
        width: 10%;
    }
}

.home-slider-section .carousel-control-prev .carousel-control-prev-icon,
.home-slider-section .carousel-control-prev .carousel-control-next-icon,
.home-slider-section .carousel-control-next .carousel-control-prev-icon,
.home-slider-section .carousel-control-next .carousel-control-next-icon {
    background-image: none;
    height: 40px;
    line-height: 37px;
    width: 40px;
    background-color: #fff;
    border-radius: 0%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: 2px 5px 5px rgba(25, 41, 61, 0.26);
    box-shadow: 2px 5px 5px rgba(25, 41, 61, 0.26);
    position: relative;
}

.home-slider-section .carousel-control-prev .carousel-control-prev-icon::before,
.home-slider-section .carousel-control-prev .carousel-control-next-icon::before,
.home-slider-section .carousel-control-next .carousel-control-prev-icon::before,
.home-slider-section .carousel-control-next .carousel-control-next-icon::before {
    position: absolute;
    font-family: FontAwesome;
    display: block;
    color: #000;
    font-size: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.home-slider-section .carousel-control-prev .carousel-control-prev-icon::before,
.home-slider-section .carousel-control-next .carousel-control-prev-icon::before {
    content: "\f104";
}

@media (max-width: 767px) {
    .home-slider-section .carousel-control-prev .carousel-control-prev-icon,
    .home-slider-section .carousel-control-next .carousel-control-prev-icon {
        left: 5px;
    }
}

.home-slider-section .carousel-control-prev .carousel-control-next-icon::before,
.home-slider-section .carousel-control-next .carousel-control-next-icon::before {
    content: "\f105";
}

@media (max-width: 767px) {
    .home-slider-section .carousel-control-prev .carousel-control-next-icon,
    .home-slider-section .carousel-control-next .carousel-control-next-icon {
        right: 5px;
    }
}


/* ------------------------------------- Home Banner Slider CSS End  ---------------------------------*/


/* ------------------------------------- Malibu Hospice Banner Section CSS Start  ---------------------------------*/

.hospice-banner-section {
    padding-top: 0px!important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .hospice-banner-section {
        background-position: center bottom;
        background-size: contain;
        background-color: #e0e0e0;
    }
}

.hospice-banner-section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(100deg, #E7E7E7E0 27%, #FFFFFF00 63%);
    display: block !important;
    z-index: -1;
}

.hospice-banner-section .hospice-banner-section-inner {
    padding: 100px 0 225px;
    padding-top: 100px !important;
}

@media (max-width: 767px) {
    .hospice-banner-section .hospice-banner-section-inner {
        padding: 50px 0 225px;
        padding-top: 50px !important;
    }
}

.hospice-banner-section .main-heading {
    max-width: 565px;
    width: 100%;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .hospice-banner-section .main-heading {
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hospice-banner-section .main-heading {
        max-width: 420px;
    }
}

.hospice-banner-section .main-heading h1 {
    text-transform: capitalize;
    font-size: 45px;
    border-left: 5px solid var(--primary-color);
    padding-left: 25px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .hospice-banner-section .main-heading h1 {
        font-size: 24px;
        letter-spacing: 0px;
        padding-left: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hospice-banner-section .main-heading h1 {
        font-size: 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hospice-banner-section .main-heading h1 {
        font-size: 36px;
    }
}

.hospice-banner-section .main-heading p {
    font-size: 16px;
    margin-bottom: 20px!important;
}

.hospice-banner-section .theme-btn,
.hospice-banner-section .hospice-banner-btn {
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
}

@media (max-width: 767px) {
    .hospice-banner-section .theme-btn,
    .hospice-banner-section .hospice-banner-btn {
        display: none!important;
    }
}

.hospice-banner-section .hospice-banner-btn .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon {
    left: 0px!important;
}

.hospice-banner-section .hospice-banner-btn a {
    display: block;
    border: 0px solid transparent!important;
    background-color: #e0e0e0!important;
    color: var(--primary-color)!important;
    font-size: 16px;
    font-weight: 600;
}

.hospice-banner-section .hospice-banner-btn i {
    background-color: var(--primary-color) !important;
    width: 47px;
    height: 47px !important;
    line-height: 47px !important;
    display: block !important;
    border-radius: 50%;
    text-align: center;
    margin-right: 5px;
    position: relative;
    z-index: 1;
}

.hospice-banner-section .hospice-banner-btn .fa {
    color: #fff !important;
}

.hospice-banner-section .hospice-banner-btn i::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--primary-color)!important;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 currentColor;
    box-shadow: 0 0 0 0 currentColor;
    -webkit-animation: jkit-ripple 3s infinite;
    animation: jkit-ripple 3s infinite;
    opacity: .6;
    z-index: -1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@-webkit-keyframes jkit-ripple {
    70% {
        -webkit-box-shadow: 0 0 0 15px currentColor;
        box-shadow: 0 0 0 15px currentColor;
        opacity: 0;
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 currentColor;
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0;
    }
}

@keyframes jkit-ripple {
    70% {
        -webkit-box-shadow: 0 0 0 15px currentColor;
        box-shadow: 0 0 0 15px currentColor;
        opacity: 0;
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 currentColor;
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0;
    }
}

.hospice-care-benefits-section {
    padding-top: 0px!important;
    position: relative!important;
    z-index: 2;
    overflow: unset!important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 767px) {
    .hospice-care-benefits-section {
        padding-top: 50px!important;
    }
}

.hospice-care-benefits-section-inner {
    position: relative;
    z-index: 1;
    margin-top: -115px;
}

@media (max-width: 767px) {
    @media (max-width: 767px) {
        .hospice-care-benefits-section-inner {
            margin-top: 0;
        }
    }
}

.hospice-care-benefits-section .hospice-care-benefits-wrapper {
    padding: 30px 15px;
    background-color: rgba(255, 255, 255, 0.75);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
    .hospice-care-benefits-section .hospice-care-benefits-wrapper {
        background-color: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 991px) {
    .hospice-care-benefits-section .hospice-care-benefits-wrapper {
        padding: 30px 5px;
    }
}

.hospice-care-benefits-section .hospice-care-benefits-wrapper:hover {
    background-color: #fff;
}

.hospice-care-benefits-section .hospice-care-benefits-images {
    max-width: 85px;
    width: 100%;
    margin-right: 5px;
}

@media (max-width: 991px) {
    .hospice-care-benefits-section .hospice-care-benefits-images {
        max-width: 60px;
    }
}

.hospice-care-benefits-section .hospice-care-benefits-content {
    width: 100%;
}

.hospice-care-benefits-section .hospice-care-benefits-content h4 {
    font-size: 20px;
    text-transform: capitalize;
}

.hospice-care-benefits-section .hospice-care-benefits-content p {
    margin-top: 5px;
    font-size: 16px;
    margin-bottom: 0;
    color: var(--primary-color);
    line-height: 1.25;
}

@media (max-width: 767px) {
    .hospice-care-benefits-section .hospice-care-benefits-content p {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hospice-care-benefits-section .hospice-care-benefits-content p {
        font-size: 15px;
    }
}

.hospice-care-benefits-section .hospice-care-border {
    position: relative;
    z-index: 1;
}

.hospice-care-benefits-section .hospice-care-border::before,
.hospice-care-benefits-section .hospice-care-border::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 55px;
    display: block;
    background-color: var(--primary-color);
    top: 30px;
}

@media (max-width: 767px) {
    .hospice-care-benefits-section .hospice-care-border::before,
    .hospice-care-benefits-section .hospice-care-border::after {
        height: 3px;
        width: 75%;
        top: unset;
    }
}

.hospice-care-benefits-section .hospice-care-border::before {
    left: 0;
}

@media (max-width: 767px) {
    .hospice-care-benefits-section .hospice-care-border::before {
        right: 0;
        margin: 0 auto;
        top: 0;
    }
}

.hospice-care-benefits-section .hospice-care-border::after {
    right: 0;
}

@media (max-width: 767px) {
    .hospice-care-benefits-section .hospice-care-border::after {
        left: 0;
        margin: 0 auto;
        bottom: 0;
    }
}


/* ------------------------------------- Malibu Hospice Banner Section CSS End  ---------------------------------*/


/* ------------------------------------- Hospice About US Contact Section CSS Start  ---------------------------------*/

.hospice-aboutus-section {
    padding: 90px 0;
    padding-top: 90px !important;
    position: relative;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hospice-aboutus-section .vc_col-sm-5 {
        width: 100%;
    }
    .hospice-aboutus-section .vc_col-sm-4,
    .hospice-aboutus-section .vc_col-sm-3 {
        width: 50%;
    }
}

.hospice-aboutus-section .hospice-aboutus-image {
    position: relative;
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
}

.hospice-aboutus-section .hospice-aboutus-image img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.hospice-aboutus-section .hospice-aboutus-image:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .hospice-aboutus-section .hospice-aboutus-image {
        margin-top: 15px;
    }
}

.hospice-aboutus-section .hospice-aboutus-content {
    -webkit-box-shadow: 0px 3px 15px 0px rgba(18, 28, 82, 0.1);
    box-shadow: 0px 3px 15px 0px rgba(18, 28, 82, 0.1);
    margin: 0 20px;
    padding: 20px 5px;
    border-radius: 10px;
    position: relative;
    bottom: 20px;
    z-index: 2;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hospice-aboutus-section .hospice-aboutus-content .hospice-aboutus-content-image,
.hospice-aboutus-section .hospice-aboutus-content .hospice-aboutus-content-text {
    width: 100%;
}

.hospice-aboutus-section .hospice-aboutus-content .hospice-aboutus-content-image {
    max-width: 80px;
    width: 100%;
    margin-right: 15px;
}

.hospice-aboutus-section .hospice-aboutus-content h4 {
    text-transform: capitalize;
    font-size: 30px;
    position: relative;
    z-index: 1;
}

.hospice-aboutus-section .hospice-aboutus-content h4::after {
    font-family: FontAwesome;
    content: '\f067';
    position: absolute;
    right: 15px;
    top: 7px;
    font-size: 16px;
    color: var(--primary-color);
    display: block;
    z-index: -1;
}

.hospice-aboutus-section .hospice-aboutus-content p {
    font-size: 16px;
    color: #636A86;
}

.hospice-aboutus-section .main-heading p {
    font-size: 16px;
    margin-bottom: 10px!important;
}

.hospice-aboutus-section .main-heading h6 {
    padding: 9px 0;
    padding-left: 30px;
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 400;
}

.hospice-aboutus-section .main-heading h6::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 7px;
    font-family: FontAwesome;
    font-size: 20px;
    color: #000;
    display: block;
    z-index: -1;
}

.hospice-aboutus-section .main-heading .theme-btn {
    margin-top: 15px;
}


/* ------------------------------------- Malibu About US Contact Contact Section CSS End  ---------------------------------*/


/* ------------------------------------- Palliative Care Section CSS Start  ---------------------------------*/

.palliative-care-section {
    padding-top: 100px !important;
    padding-bottom: 200px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.palliative-care-section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: block !important;
    z-index: -1;
}

.palliative-care-section .main-heading h2::after {
    left: 40px;
    right: 0;
}

.palliative-care-section .main-heading h2::before {
    left: 0;
    right: 40px;
}

.palliative-care-section .main-heading p {
    max-width: 990px;
    width: 100%;
    margin: 0 auto;
}


/* ------------------------------------- Palliative Care Section CSS End  ---------------------------------*/


/* ------------------------------------- Jobs and Recent Testimonial Section CSS Start  ---------------------------------*/

.jobs-testimonial-section {
    position: relative!important;
    z-index: 2;
    overflow: unset!important;
}

.jobs-testimonial-section .vc_column_container>.vc_column-inner {
    padding-left: 0px!important;
    padding-right: 0px!important;
}

.jobs-testimonial-section .jobs-testimonial-section-inner {
    background-color: #F6F6F6;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    margin-top: -150px;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .jobs-testimonial-section .jobs-testimonial-section-inner {
        padding: 30px;
    }
}

.jobs-testimonial-section .main-heading {
    padding: 35px 40px;
    margin-bottom: 0;
}

.jobs-testimonial-section .main-heading h2 {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.jobs-testimonial-section .main-heading p {
    margin-bottom: 10px!important;
}

@media (max-width: 767px) {
    .jobs-testimonial-section .main-heading {
        padding: 25px 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .jobs-testimonial-section .main-heading {
        padding: 35px 15px 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .jobs-testimonial-section .main-heading {
        padding: 25px 15px;
    }
}


/* ------------------------------------- Jobs and Recent Testimonial Section CSS Start  ---------------------------------*/


/* ------------------------------------- Testimonial Section CSS Start  ---------------------------------*/

.testimonial-gridSlider {
    padding: 50px 40px;
    padding-top: 50px !important;
    background-color: var(--primary-color);
    position: relative;
}

@media (max-width: 767px) {
    .testimonial-gridSlider {
        padding: 25px 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-gridSlider {
        padding: 25px 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .testimonial-gridSlider {
        padding: 25px 15px;
    }
}


/* ------------------------------------- Testimonial Section CSS End  ---------------------------------*/


/* ------------------------------------- Palliative Care Provider Section CSS Start  ---------------------------------*/

.palliative-provider-section {
    padding-top: 75px !important;
    padding: 75px 0 75px;
    position: relative;
}

.palliative-provider-section .palliative-provider-slide {
    padding: 0 15px;
}

.palliative-provider-section .palliative-provider-logo {
    text-align: center;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
    padding: 15px 10px;
    position: relative;
    background: #fff;
    margin: 5px 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.palliative-provider-section .palliative-provider-logo a {
    display: block;
}

.palliative-provider-section .palliative-provider-logo h5 {
    border-radius: 3px;
    font-size: 16px;
    padding: 3px 10px;
    background: #f9f9f9;
    color: #000;
    display: inline-block;
    margin-top: 10px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.palliative-provider-section .palliative-provider-logo:hover {
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 1px 2px 8px -2px;
    box-shadow: rgba(0, 0, 0, 0.3) 1px 2px 8px -2px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.palliative-provider-section .palliative-provider-logo:hover h5 {
    background-color: var(--secondary-color);
    color: #fff;
}

#palliative-provider-section .slick-prev,
#palliative-provider-section .slick-next {
    top: 50%;
    height: 45px;
    width: 45px;
    padding-bottom: 2px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 1;
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: 2px 5px 5px rgba(25, 41, 61, 0.26);
    box-shadow: 2px 5px 5px rgba(25, 41, 61, 0.26);
}

@media (max-width: 767px) {
    #palliative-provider-section .slick-prev,
    #palliative-provider-section .slick-next {
        top: 45%;
        height: 30px;
        width: 30px;
    }
}

#palliative-provider-section .slick-prev:hover,
#palliative-provider-section .slick-next:hover {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

#palliative-provider-section .slick-prev::before,
#palliative-provider-section .slick-next::before {
    font-family: "FontAwesome";
    color: var(--primary-color);
    opacity: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 32px;
}

@media (max-width: 767px) {
    #palliative-provider-section .slick-prev::before,
    #palliative-provider-section .slick-next::before {
        font-size: 24px;
    }
}

#palliative-provider-section .slick-prev:hover::before,
#palliative-provider-section .slick-next:hover::before {
    color: #fff;
}

#palliative-provider-section .slick-prev {
    left: -15px;
}

#palliative-provider-section .slick-prev::before {
    content: "\f104";
}

#palliative-provider-section .slick-next {
    right: -15px;
}

#palliative-provider-section .slick-next::before {
    content: "\f105";
}


/* ------------------------------------- Palliative Care Provider Section CSS End  ---------------------------------*/


/* ------------------------------------- Recent Articles Section CSS Start  ---------------------------------*/

.recent-articles-section {
    background-color: #f9f9f9;
    position: relative;
    padding-top: 75px !important;
    padding-bottom: 75px;
}

.recent-articles-section .main-heading h2::after {
    left: 40px;
    right: 0;
}

.recent-articles-section .main-heading h2::before {
    left: 0;
    right: 40px;
}

.recent-articles-section .recent-articles-gridSlide {
    padding: 0 15px;
}

.recent-articles-section .recent-articles-wrapper-btn {
    text-align: center;
    margin-top: 50px;
    position: relative;
}

.recent-articles-section .recent-articles-wrapper-btn .theme-btn {
    display: inline-block;
    max-width: 225px;
    width: 100%;
}


/* ------------------------------------- Recent Articles Section CSS End  ---------------------------------*/


/* ------------------------------------- Hospice Services Section CSS Start  ---------------------------------*/

.hospice-services-section {
    padding: 75px 0 90px;
    padding-top: 75px !important;
    background-color: #fdfefe;
    background-position: 0 50px !important;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.hospice-services-section::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    background-color: #fff;
    display: block;
    z-index: -1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 767px) {
    .hospice-services-section::after {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hospice-services-section::after {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hospice-services-section>.vc_row>.vc_col-sm-4,
    .hospice-services-section>.vc_row>.vc_col-sm-8 {
        width: 100%;
    }
}

.hospice-services-wrapper>.vc_column-inner {
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-box-shadow: 0px 2px 20px #e8eaed;
    box-shadow: 0px 2px 20px #e8eaed;
    padding: 15px;
    margin: 0;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 767px) {
    .hospice-services-wrapper>.vc_column-inner {
        background-color: white;
        padding: 10px 5px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hospice-services-wrapper>.vc_column-inner {
        background-color: white;
        padding: 10px 5px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hospice-services-wrapper>.vc_column-inner {
        background-color: white;
        padding: 10px 5px;
    }
}

.hospice-services-wrapper>.vc_column-inner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    height: 3px;
    width: 0;
    background-color: var(--primary-color);
    display: block;
    z-index: -1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.hospice-services-wrapper .hospice-services-images {
    max-width: 75px;
    width: 100%;
    margin-right: 8px;
}

.hospice-services-wrapper>.vc_column-inner>.wpb_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hospice-services-wrapper>.vc_column-inner .hospice-services-images,
.hospice-services-wrapper>.vc_column-inner .hospice-services-content {
    width: 100%;
}

@media (max-width: 1199px) {
    .hospice-services-wrapper .hospice-services-images {
        max-width: 60px;
    }
}

.hospice-services-wrapper p {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
}

@media (max-width: 767px) {
    .hospice-services-wrapper p {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hospice-services-wrapper p {
        font-size: 15px;
    }
}

.hospice-services-wrapper>.vc_column-inner:hover {
    -webkit-box-shadow: 2px 4px 10px #e8eaed;
    box-shadow: 2px 4px 10px #e8eaed;
}

.hospice-services-wrapper>.vc_column-inner:hover::after {
    width: 90%;
}


/* ------------------------------------- Hospice Services Section CSS End  ---------------------------------*/


/* ------------------------------------- Theme Page Banner CSS Start ---------------------------------*/

.theme-page-banner {
    padding: 90px 0;
    padding-top: 90px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed!important;
    position: relative;
    z-index: 1;
}

.theme-page-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block !important;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.theme-page-banner h1 {
    font-size: 28px;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}

.theme-page-banner .vc_column-inner {
    padding: 0px !important;
}


/* ------------------------------------- Theme Page Banner CSS End ---------------------------------*/


/* ------------------------------------- Blog Page CSS Start ------------------------------------- */

.indexPage-blogSection {
    padding: 50px 0;
    position: relative;
}

.indexPage-blogSection .recent-articles-wrapper {
    margin: 10px 0;
}

.singlePage-heading {
    padding-top: 30px;
    padding-bottom: 30px;
}

.singlePage-heading h1 {
    font-size: 32px;
    line-height: 1.5;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: #000;
    position: relative;
    text-transform: capitalize;
}

.singlePage-heading h1::after {
    content: '';
    display: block;
    left: 0px;
    bottom: 0px;
    position: absolute;
    background-color: var(--primary-color);
    width: 60px;
    height: 5px;
}

.singlePage-postDate p {
    margin-bottom: 5px;
    text-align: center;
    padding: 5px 20px;
    display: inline-block;
    background: #000;
    color: #fff;
    border-radius: 10px;
}

.singlePage-leftSide {
    padding: 10px;
}

.blogpage-socialMedia {
    position: relative;
    margin: 0 0 15px;
}

.blogpage-socialMedia li {
    position: relative;
}

.blogpage-socialMedia li a {
    display: block;
    color: #fff;
    position: relative;
    border-radius: 5px;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
}

.blogpage-socialMedia .blogpage-social-facebook a {
    background: #244872;
}

.blogpage-socialMedia .blogpage-social-twitter a {
    background: #26C4F1;
}

.blogpage-socialMedia .blogpage-social-linkedin a {
    background: #007BB6;
}

.blogpage-socialMedia .blogpage-social-pinterest a {
    background: #B81621;
}

.singlePage-blogImg {
    position: relative;
    margin-bottom: 25px;
}

.singlePage-blogImg img {
    width: 100%;
    position: relative;
}

.singlePage-blogContent .vc_single_image-wrapper img {
    width: 100%;
    position: relative;
}

.singlePage-blogText h2,
.singlePage-blogText h3,
.singlePage-blogText h4,
.singlePage-blogText h5,
.singlePage-blogText h6 {
    text-transform: capitalize;
    font-size: 24px;
    padding: 5px 0;
}

.singlePage-relatedBlog {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding: 30px 0;
}

.singlePage-relatedBlog h2 {
    text-transform: capitalize;
    font-size: 32px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 35px;
}

.singlePage-relatedBlog h2::after {
    content: '';
    display: block;
    left: 0px;
    bottom: 0px;
    position: absolute;
    background-color: var(--primary-color);
    width: 60px;
    height: 2px;
}

.singlePage-relatedBlogWrapper {
    box-shadow: 0px 6px 30px rgba(0, 0, 0, .1);
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 2px;
    transition: 0.5s;
    position: relative;
}

.singlePage-relatedBlogImg a {
    display: block;
}

.singlePage-relatedBlog-Bg {
    background-size: cover !important;
    background-position: center !important;
    height: 100px;
    width: 100%;
    position: relative;
}

.singlePage-relatedBlogContent {
    padding-left: 10px;
    padding-right: 10px;
}

.singlePage-relatedBlogContent h4 {
    margin-bottom: 10px;
}

.singlePage-relatedBlogContent h4 a {
    font-size: 17px;
    color: #000;
    display: block;
    padding: 10px 0 0;
    text-transform: capitalize;
}

span.singlePage-relatedBlogDate {
    font-size: 15px;
    color: #000;
    text-transform: capitalize;
}

.blogSidebar-fixed {
    padding: 10px;
}

.blogSidebar-fixed {
    top: 100px !important;
    z-index: 5 !important;
}

.blogSidebar-fixed h4 {
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 400;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.blogSidebar-fixed h4::after {
    content: '';
    display: block;
    left: 0px;
    bottom: 0px;
    position: absolute;
    background-color: var(--primary-color);
    width: 60px;
    height: 2px;
}

.blogSidebar-findNearestDealer {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 2px;
}

.blogSidebar-findNearestDealer .select2-container .select2-selection--single {
    height: 38px;
}

.blogSidebar-findNearestDealer .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
}

.blogSidebar-findNearestDealer .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}

.blogSidebar-findNearestDealer .btn.btn-default {
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 4px;
    display: block;
    width: 100%;
}

.blogSidebar-blogTopTags {
    margin-bottom: 30px;
    background: #f9f9f9;
    border-radius: 2px;
    padding: 15px 15px 25px;
}

.blogSidebar-blogTopTags ul li {
    display: inline-block;
    margin-bottom: 8px;
}

.blogSidebar-blogTopTags ul li a {
    display: block;
    border: 1px solid #eee;
    padding: 3px 7px;
    color: #000;
    text-transform: capitalize;
    border-radius: 3px;
}

.blogSidebar-blogTopTags ul li:hover a {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.blogSidebar-dealerBrand {
    margin-top: 30px;
    margin-bottom: 30px;
    background: #f9f9f9;
    border-radius: 2px;
    padding: 15px;
}

.blogSidebar-dealerBrandContent .dealerBrandImg {
    max-width: 55px;
    width: 100%;
    margin-right: 15px;
}

.blogSidebar-dealerBrandContent .dealerBrandTitle {
    padding: 5px;
    font-weight: 600;
    color: #000;
    transition: 0.5s;
}

.blogSidebar-dealerBrandContent .dealerBrandTitle:hover {
    color: var(--primary-color);
    transition: 0.5s;
}

.blogSidebar-dealerBrandContent .BlogLoadMoreBtn button {
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 0;
    padding: 5px 30px;
    cursor: pointer;
}

.blogSidebar-categoriesBox {
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 0px;
}

@media (max-width:767px) {
    .blogSidebar-categoriesBox {
        margin-top: 30px;
    }
}

.blogSidebar-categoriesBox ul {
    margin-top: 15px;
    list-style: none;
}

.blogSidebar-categoriesBox ul li {
    margin: 4px 0 10px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 5px;
}

.blogSidebar-categoriesBox ul li:last-child {
    border-bottom: 0px solid #f1f1f1;
}

.blogSidebar-categoriesBox ul li a {
    display: block;
    color: #333;
}

.blogSidebar-categoriesBox ul li a span {
    float: right;
}

@media (max-width:767px) {
    .singlePage-heading h1 {
        font-size: 24px;
        line-height: 1.15;
        padding-bottom: 10px;
        margin-top: 10px;
    }
    .singlePage-blogText h2,
    .singlePage-blogText h3,
    .singlePage-blogText h4,
    .singlePage-blogText h5,
    .singlePage-blogText h6 {
        font-size: 20px;
    }
    .singlePage-relatedBlog h2 {
        font-size: 24px;
        padding-bottom: 10px;
    }
    .singlePage-relatedBlogContent {
        padding: 10px;
    }
    .blogSidebar-fixed h4 {
        font-size: 18px;
        padding-bottom: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .singlePage-heading h1 {
        font-size: 26px;
        line-height: 1.15;
        padding-bottom: 10px;
        margin-top: 10px;
    }
    .singlePage-blogText h2,
    .singlePage-blogText h3,
    .singlePage-blogText h4,
    .singlePage-blogText h5,
    .singlePage-blogText h6 {
        font-size: 21px;
    }
    .singlePage-relatedBlog h2 {
        font-size: 22px;
        padding-bottom: 10px;
    }
    .singlePage-relatedBlogContent {
        padding: 10px;
    }
    .blogSidebar-fixed h4 {
        font-size: 20px;
        padding-bottom: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .singlePage-heading h1 {
        font-size: 28px;
        line-height: 1.15;
        padding-bottom: 10px;
        margin-top: 10px;
    }
    .singlePage-blogText h2,
    .singlePage-blogText h3,
    .singlePage-blogText h4,
    .singlePage-blogText h5,
    .singlePage-blogText h6 {
        font-size: 22px;
    }
    .singlePage-relatedBlog h2 {
        font-size: 28px;
        padding-bottom: 10px;
    }
    .singlePage-relatedBlogContent {
        padding: 10px;
    }
    .blogSidebar-fixed h4 {
        font-size: 22px;
        padding-bottom: 10px;
    }
}


/* ------------------------------------- Theme Page CSS Start ------------------------------------- */

.themePage-section {
    padding: 75px 0;
    position: relative;
}

.themePage-section.contentBlock1 {
    background: #fff;
}

.themePage-section.contentBlock2 {
    background: #f9f9f9;
}

.themePage-section h2 {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 10px;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .themePage-section h2 {
        font-size: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .themePage-section h2 {
        font-size: 22px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .themePage-section h2 {
        font-size: 24px;
    }
}

.themePage-section p {
    font-size: 15px;
}

.themePage-section h4 {
    color: #000;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 400;
}

.themePage-section h4::before {
    content: "\f0a4";
    position: absolute;
    left: 0;
    top: 8px;
    font-family: FontAwesome;
    font-size: 20px;
    color: var(--primary-color);
    display: block;
    z-index: -1;
}

.themePage-section .theme-btn {
    margin-top: 20px;
}

.themePage-section-img>.wpb_wrapper.vc_figure {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .themePage-section-img>.wpb_wrapper.vc_figure {
        margin: 20px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .themePage-section-img>.wpb_wrapper.vc_figure {
        font-size: 22px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .themePage-section-img>.wpb_wrapper.vc_figure {
        font-size: 24px;
    }
}

.themePage-section-img img {
    transition: 0.8s ease-in-out;
}

.themePage-section-img:hover img {
    transform: scale(1.1);
}


/* ------------------------------------- Theme Page CSS End ------------------------------------- */


/* ------------------------------------- Contact Page CSS Start ------------------------------------- */

.contact-page-section {
    padding: 75px 0;
    padding-top: 75px!important;
    position: relative;
}

.contact-page-section .main-heading {
    max-width: 990px;
    width: 100%;
    margin: 0 auto!important;
}

.contact-page-section .main-heading h2::after {
    left: 40px;
    right: 0;
}

.contact-page-section .main-heading h2::before {
    left: 0;
    right: 40px;
}

.contact-page-section .contact-page-section-inner {
    max-width: 766px;
    width: 100%;
    margin: 0 auto !important;
    margin-top: 50px !important;
    background: #f9f9f9;
    padding: 50px 40px;
    border-radius: 5px;
    border-bottom: 3px solid var(--primary-color);
}

.contact-page-section .contact-page-info .form-control {
    border-radius: 0px !important;
    min-height: 40px !important;
    box-shadow: unset !important;
    margin-bottom: 20px !important;
}

.contact-page-section .contact-page-info .form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

.contact-page-section .contact-page-info textarea {
    height: 100px !important;
}

.contact-page-section .contact-page-info #submit_form {
    color: #fff !important;
    background: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
    padding: 10px 30px !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-transform: uppercase;
}

.contact-page-section .contact-page-info #submit_form:hover {
    color: #fff !important;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color) !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


/* ------------------------------------- Contact Page CSS Start ------------------------------------- */

.contact-page-section {
    padding: 75px 0;
    padding-top: 75px!important;
    position: relative;
}

.contact-page-section .main-heading {
    max-width: 990px;
    width: 100%;
    margin: 0 auto!important;
}

.contact-page-section .main-heading h2::after {
    height: 0;
}

.contact-page-section .main-heading h2::before {
    height: 0;
}

.contact-page-section .contact-page-section-inner {
    max-width: 766px;
    width: 100%;
    margin: 0 auto !important;
    margin-top: 50px !important;
    background: #f9f9f9;
    padding: 50px 40px;
    border-radius: 5px;
    border-bottom: 3px solid var(--primary-color);
}

.contact-page-info .form-control {
    border-radius: 0px !important;
    min-height: 40px !important;
    box-shadow: unset !important;
    margin-bottom: 20px !important;
}

.contact-page-info .form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

.contact-page-info textarea {
    height: 100px !important;
}

.contact-page-info #submit_form {
    color: #fff !important;
    background: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
    padding: 10px 30px !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-transform: uppercase;
}

.contact-page-info #submit_form:hover {
    color: #fff !important;
    background: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


/* ------------------------------------- Contact Page CSS End ------------------------------------- */


/* ------------------------------------- Model Popup CSS Start ------------------------------------- */

.theme-btn p>a {
    font-size: 14px;
    padding: 11px 15px;
    border-radius: 5px;
}

#contactPage_popup {
    padding: 0px!important;
    margin: 0 auto!important;
}

#contactPage_popup .modal-dialog {
    max-width: 600px;
    margin: 1.75rem auto;
}

#contactPage_popup .modal-dialog .modal-header {
    padding: 5px;
    display: block;
    text-align: center;
}

#contactPage_popup .modal-dialog .modal-header h4 {
    font-size: 24px;
}

@media (max-width: 767px) {
    #contactPage_popup .modal-dialog .modal-header h4 {
        font-size: 20px;
    }
}

#contactPage_popup .modal-dialog .modal-header .close {
    opacity: 1;
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 0;
    margin: 0;
    background-color: var(--primary-color);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

@media (max-width: 767px) {
    #contactPage_popup .modal-dialog .modal-header .close {
        top: 6px;
        right: 6px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #contactPage_popup .modal-dialog .modal-header .close {
        top: 10px;
        right: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    #contactPage_popup .modal-dialog .modal-header .close {
        top: 10px;
        right: 10px;
    }
}

#contactPage_popup .modal-dialog .modal-body {
    padding: 20px;
}

#contactPage_popup .modal-dialog .modal-body .dealerLeadsform .btn-submit {
    display: block;
    padding: 8px 40px;
}


/* -------------------------------------  Model Popup CSS End ------------------------------------- */

.grecaptcha-badge {
    z-index: 2!important;
}