@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('owl.css');
@import url('fontawesome-all.css');
@import url('flaticon.css');
/***
====================================================================
	Reset
====================================================================
***/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}
:root {
    --color-default: #353535;
    --color-primary: #134868;
    --color-secondary: #db4848;
}
/*** 
====================================================================
	Global Settings
====================================================================
***/
body {
    font-size: 16px;
    color: #202020;
    line-height: 1.6em;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
}
a {
    text-decoration: none;
    cursor: pointer;
    color: var(--color-secondary);
}
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-weight: 600;
    margin: 0px;
    background: none;
    line-height: 1.2em;
}
img {
    max-width: 100%;
    height: auto;
}
ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}
ol,
li {
    margin: 0;
    padding: 0;
}
.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}
.page-wrapper {
    margin: 0 auto;
    width: 100%;
    min-width: 320px;
    overflow: hidden;
    position: relative;
}
.page-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../gallery/bg-7.jpg);
    opacity: .6;
    background-repeat: repeat;
    z-index: -1;
}
.page-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    filter: grayscale(1);
    height: 100%;
    opacity: 0.04;
    background-image: url(../gallery/logo-bg.png);
    top: 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}
.top-wrap {
    position: relative;
    height: 100vh;
    background: linear-gradient(45deg, #ffffff, transparent);
}
.header-main {
    position: absolute;
    width: 100%;
    z-index: 5;
}
.header-one {
    position: relative;
}
.header-one .container {
    position: relative;
    max-width: 1200px;
}
.header-one .lower-box {
    position: relative;
    height: 100%;
    border-radius: 5px;
}
.lower-box .logo {
    top: 20px;
    position: absolute;
    display: inline-block;
    z-index: 999;
    width: 320px;
}
.lower-box .nav-outer {
    position: relative;
    display: inline-block;
    text-align: right;
    margin-left: 0;
    width: 100%;
    padding: 0;
    margin-top: 0;
}
.nav-outer .mobile-nav-toggler {
    position: relative;
    display: none;
    float: right;
    cursor: pointer;
    padding: 25px 0;
}
.nav-outer .mobile-nav-toggler .inner {
    position: relative;
    display: block;
    padding: 3px 5px;
}
.main-menu {
    position: relative;
    display: inline-block;
    text-align: center;
    margin: 56px -37px 0 0px;
    top: 0;
}
.main-menu .navbar-collapse {
    padding: 0px;
    display: block !important;
}
.main-menu .navigation {
    position: relative;
    display: block;
    padding: 0 11px;
    border-radius: 24px 0 1px 24px;
}
.main-menu .navigation>li {
    position: relative;
    display: inline-table;
}
.main-menu .navigation>li>a {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    border-right: 0px;
    padding: 8px 15px;
    opacity: 1;
    color: #000000;
}
.logins_section {
    position: absolute;
    right: 34px;
    z-index: 99;
    display: inline-block;
    top: 20px;
}
.logins_section span {
    display: inline-block;
    color: #fff;
    padding: 4px 10px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    border-radius: 20px;
    background: var(--color-primary);
}
.main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0;
    width: 50px;
    height: 42px;
    border-left: 1px solid #04102a;
    text-align: center;
    font-size: 16px;
    line-height: 42px;
    color: #ffffff;
    cursor: pointer;
    display: none;
    z-index: 5;
}
/*** 
========================================
    Mobile Menu
========================================
***/
.nav-outer .mobile-nav-toggler {
    position: relative;
    display: none;
    float: right;
    cursor: pointer;
    padding: 25px 0;
}
.nav-outer .mobile-nav-toggler .inner {
    position: relative;
    display: block;
    padding: 3px 5px;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    padding-right: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}
.mobile-menu .menu-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    z-index: 1;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.70;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu .mCSB_inside>.mCSB_container {
    margin-right: 5px;
}
.mobile-menu .navbar-collapse {
    display: block !important;
}
.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}
.mobile-menu .nav-logo a {
    position: relative;
    display: inline-block;
}
.mobile-menu-visible {
    overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}
.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: var(--color-primary);
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}
.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}
.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}
.mobile-menu .close-btn:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
}
.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    padding: 10px 25px;
    color: #ffffff;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.mobile-menu .navigation li.current>a:before {
    height: 100%;
}
.mobile-menu .navigation li ul li>a {
    font-size: 15px;
    font-weight: 400;
    margin-left: 20px;
    text-transform: capitalize;
    position: relative;
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 32px;
    background: var(--color-secondary);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}
.main-menu .navigation>li>a:hover {
    color: var(--color-secondary);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}
.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}
.mobile-menu .social-links {
    position: relative;
    text-align: center;
    padding: 30px 25px;
}
.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 5px 10px;
}
.mobile-menu .social-links li a {
    position: relative;
    color: #ffffff;
    font-size: 20px;
    line-height: 32px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.mobile-menu .social-links li a:hover {
    color: #dddddd;
}
.main-menu .navigation>li>ul {
    position: absolute;
    top: 100%;
    visibility: hidden;
    border-top: 3px solid var(--color-secondary);
    left: 0;
    width: 300px;
    opacity: 0;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 0px 0px 5px #a5a5a5;
}
.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    top: 0;
    visibility: hidden;
    border-top: 3px solid var(--color-secondary);
    left: 100%;
    width: 245px;
    opacity: 0;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 0px 0px 5px #a5a5a5;
}
.main-menu .navigation>li.dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all .5s ease;
}
.main-menu .navigation>li>ul>li.dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all .5s ease;
}
.main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #929292;
}
.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #929292;
}
.main-menu .navigation>li>ul>li>a:hover {
    background: var(--color-primary);
    color: #fff;
}
.main-menu .navigation>li>ul>li>ul>li>a:hover {
    background: var(--color-primary);
    color: #fff;
}
.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    padding: 5px 20px;
    line-height: 24px;
    font-size: 15px;
    text-transform: capitalize;
    color: #000000;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 5px 20px;
    line-height: 24px;
    font-size: 15px;
    text-transform: capitalize;
    color: #000000;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.main-menu .navigation>li>ul>li:last-child {
    border-bottom: none;
}
.main-menu .navigation>li>ul>li>ul>li:last-child {
    border-bottom: none;
}
.main-menu .navigation .cstm-width {
    width: 160px;
}
.main-menu .navigation .cstm-width1 {
    width: 235px;
}
.main-menu .navigation li .active {
    color: var(--color-secondary);
}
/***
====================================================================
	Banner section
====================================================================
***/
.banner-wrapper {
    position: relative;
}
.banner-one__slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.slide-one {
    background-image: url(../gallery/main-slider/banner1.jpg);
}
.slide-two {
    background-image: url(../gallery/main-slider/banner2.jpg);
}
.slide-three {
    background-image: url(../gallery/main-slider/banner3.jpg);
}
.slide-four {
    background-image: url(../gallery/main-slider/banner4.jpg);
}
.slide-five {
    background-image: url(../gallery/main-slider/banner5.jpg);
}
/***
====================================================================
	Scroll To Top style
====================================================================
***/
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 40px;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    display: none;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.scroll-to-top:hover {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}
/***
====================================================================
	top-bar section
====================================================================
***/
.top-bar .container-fluid {
    padding-right: 0px;
}
@media (max-width: 480px) {
    .top-bar .container-fluid {
        padding-right: 15px;
    }
}
@media (max-width: 480px) {
    .top-bar .wt-topbar-outer {
        display: block !important;
    }
}
@media (max-width: 480px) {
    .top-bar .wt-topbar-right {
        display: block !important;
    }
}
.container {
    position: relative;
}
.top-bar .wt-topbar-left-info {
    margin: 0px;
    background: #ffd0d0;
    position: absolute;
    left: 420px;
    top: 20px;
    z-index: 99;
    border-radius: 30px;
}
.top-bar .wt-topbar-left-info li {
    display: inline-block;
    color: #000000;
    padding: 7px 15px;
    border-right: 1px dotted #7d7a7a;
    line-height: inherit;
    font-size: 14px;
}
.top-bar .wt-topbar-left-info li:last-child {
    border-right: 0px;
}
.top-bar .wt-topbar-left-info li i {
    color: #fff;
}
.top-bar .wt-topbar-left-info li span {
    font-weight: 600;
    color: #545353;
}
@media (max-width: 991px) {
    .top-bar .container-fluid {
        padding-right: 0px;
    }
    @media (max-width: 480px) {
        .top-bar .container-fluid {
            padding-right: 15px;
        }
    }
    @media (max-width: 480px) {
        .top-bar .wt-topbar-outer {
            display: block !important;
        }
    }
    @media (max-width: 480px) {
        .top-bar .wt-topbar-right {
            display: block !important;
        }
    }
    .top-bar .wt-topbar-left-info {
        margin: 0px;
        position: absolute;
        left: 181px;
        top: 19px;
        z-index: 99;
        border-radius: 30px;
    }
    .top-bar .wt-topbar-left-info li {
        display: inline-block;
        color: #000000;
        padding: 9px 15px;
        border-right: 1px solid #7d7a7a;
        line-height: inherit;
        font-size: 14px;
    }
    .top-bar .wt-topbar-left-info li:last-child {
        border-right: 0px;
    }
    .top-bar .wt-topbar-left-info li i {
        color: #fff;
    }
    .top-bar .wt-topbar-left-info li span {
        font-weight: 600;
        color: #545353;
    }
    @media (max-width: 991px) {
        .top-bar .wt-topbar-left-info li {
            display: block;
            border: 0px;
            padding-left: 0px;
        }
    }
    .top-bar .wt-topbar-right-info {
        margin: 0px;
        display: initial;
        position: absolute;
        right: 0;
        top: 23px;
        z-index: 99;
    }
    @media (max-width: 991px) {
        .top-bar .wt-topbar-right-info {
            display: block;
        }
    }
    @media (max-width: 480px) {
        .top-bar .wt-topbar-right-info {
            display: flex;
            justify-content: space-between;
            padding-bottom: 10px;
        }
    }
    .top-bar .wt-topbar-right-info ul {
        margin: 0px 19px 0px 0px;
        display: inline-block;
        list-style: none;
    }
    .top-bar .wt-topbar-right-info ul li {
        display: inline-block;
    }
    .ap-btn-outer {
        display: inline-block;
    }
    @media (max-width: 480px) {
        .top-bar .wt-topbar-right-info ul {
            border: 1px solid #dcdcdc;
        }
    }
    .top-bar .wt-topbar-right-info ul li a {
        list-style: none;
        display: block;
        position: relative;
        width: 40px;
        height: 40px;
        line-height: 38px;
        border: 1px solid;
        text-align: center;
        color: #404040;
        font-size: 19px;
        border-radius: 50%;
        margin: 0 3px;
    }
    .top-bar .wt-topbar-right-info ul li a:hover {
        background-color: #40887d;
        color: #fff;
    }
    .top-bar .wt-topbar-left-info li {
        display: block;
        border: 0px;
        padding-left: 0px;
    }
}
.top-bar .wt-topbar-right-info {
    margin: 0px;
    display: initial;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 99;
}
@media (max-width: 991px) {
    .top-bar .wt-topbar-right-info {
        display: block;
    }
}
@media (max-width: 480px) {
    .top-bar .wt-topbar-right-info {
        display: flex;
        justify-content: space-between;
        padding-bottom: 10px;
    }
}
.top-bar .wt-topbar-right-info ul {
    margin: 0px 19px 0px 0px;
    display: inline-block;
    list-style: none;
}
.top-bar .wt-topbar-right-info ul li {
    display: inline-block;
}
.ap-btn-outer {
    display: inline-block;
}
@media (max-width: 480px) {
    .top-bar .wt-topbar-right-info ul {
        border: 1px solid #dcdcdc;
    }
}
.top-bar .wt-topbar-right-info ul li a {
    list-style: none;
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 38px;
    border: 1px solid;
    text-align: center;
    color: #404040;
    font-size: 19px;
    border-radius: 50%;
    margin: 0 3px;
}
.top-bar .wt-topbar-right-info ul li a:hover {
    background-color: #40887d;
    color: #fff;
}
.ap-btn2 {
    position: relative;
    padding: 0px 15px;
    color: #fff;
    cursor: pointer;
    background-color: var(--color-primary);
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 42px;
    border-radius: 30px;
}
@media (max-width: 480px) {
    .ap-btn2 {
        font-size: 0px;
        padding: 0px;
        display: none;
        line-height: 0px;
    }
}
.ap-btn2:hover {
    color: white;
}
.ap-btn2 i {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: var(--color-secondary);
    color: #fff;
    margin-left: 0px;
}
@media (max-width: 480px) {
    .ap-btn2 i {
        font-size: 18px;
        margin: 0px;
        line-height: 43px;
        height: 42px;
        width: 42px;
        border-radius: 0px;
        background: none;
    }
}
.slide-right {
    animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate both;
}
@keyframes slide-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(5px);
    }
}
.top-bar .wt-topbar-left-info li i {
    color: #ffffff;
    width: 30px;
    height: 30px;
    background: var(--color-secondary);
    font-weight: 500;
    text-align: center;
    padding: 0;
    display: inline-block;
    line-height: 31px;
    border-radius: 50%;
}
/***
====================================================================
	side buttons section
====================================================================
***/
.right-sidebar {
    position: fixed;
    z-index: 99;
    right: 36px;
    width: 55px;
    top: 40%;
}
.side-buttons {
    position: relative;
}
.button-img {
    background: #ffff;
    width: 48px;
    padding: 6px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 5px #6f6e6e;
    border: 2px solid #ffd0d0;
    cursor: pointer;
    animation-duration: 1s;
    /* animation-iteration-count: 3; */
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
.c-tooltip {
    position: absolute;
    right: 123%;
    top: -5px;
    min-width: 86px;
    margin-left: 0;
    margin-top: 15px;
    text-align: center;
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.c-tooltip .tooltip-inner {
    position: relative;
    display: block;
    margin-bottom: 12px;
    min-width: 130px;
    padding: 3px 10px;
    line-height: 20px;
    font-size: 11px;
    color: #ffffff;
    background: #222222;
    text-transform: uppercase;
    border-radius: 7px;
}
.c-tooltip .tooltip-inner:before {
    content: '';
    position: absolute;
    right: -10px;
    margin-left: -5px;
    bottom: 9px;
    border: 5px solid transparent;
    border-left: 5px solid #222222;
}
.has-tooltip:hover .c-tooltip {
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
/***
====================================================================
    core values section
====================================================================
***/
.core-values-block {
    background: #fff4f4;
    padding: 43px 20px 50px;
    box-shadow: 0px 0px 5px #6f6e6e;
    border-radius: 50%;
    border: 7px solid #fff;
    text-align: center;
}
.cvs-block {
    padding-top: 35px;
}
.core-values-section {
    padding: 45px 0px;
}
.core-values-section .container {
    max-width: 1140px;
}
.core-values-block h3 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 20px;
    padding-top: 5px;
}
.core-values-block p {
    font-size: 14px;
}
.core-values-block img {
    width: 65px;
}
/* }
.counter{
    color: var(--color-primary);
    text-align: center;
    padding: 20px 15px 15px;
    position: relative;
    z-index: 1;
}
.counter:before,
.counter:after{
    content: "";
    background: var(--color-default);
    border-radius: 14px;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.counter:after{ 
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.3);
    top: 83px;
    left: 3px;
    right: 3px;
    bottom: 3px;
}
.counter .counter-icon{
    color: #fff;
    background-color: var(--color-default);
    font-size: 35px;
    text-align: center;
    line-height: 80px;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 10px;
    box-shadow: 0 0 0 5px #fff;
    transform: rotate(45deg);
}
.counter .counter-icon span{
    transform: rotate(-45deg);
    display: block;
}
.counter .counter-value{
    font-size: 38px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 0 15px;
    display: block;
}
.counter h3{
    color: #1f1f1f;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}
@media screen and (max-width:990px){
    .counter{ margin-bottom: 40px; }
} 
.counter-icon img {
    transform: rotate(-45deg);
    width: 61px;
    filter: brightness(0) invert(1);
} */
/***
====================================================================
 section headings
====================================================================
***/
.sec-title h2 {
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.sec-title h2 span {
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 60px;
}
.sec-title h5 {
    font-weight: 400;
    margin-bottom: 10px;
}
.sec-title {
    position: relative;
}
.sec-title::before {
    content: " ";
    position: absolute;
    width: 10%;
    height: 4px;
    background: var(--color-primary);
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: -14px;
    border-radius: 50px;
}
.sec-title::after {
    content: " ";
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--color-secondary);
    margin: auto;
    left: 0px;
    right: 0px;
    border: 2px solid #fff;
    transform: rotate(45deg);
}
/***
====================================================================
	about section
====================================================================
***/
.abt-sec {
    position: relative;
}
.abt-content p {
    padding-top: 21px;
    font-size: 16px;
    line-height: 30px;
}
/***
====================================================================
	doc section
====================================================================
***/
.doc-sec {
    position: relative;
    margin-bottom: 85px;
    padding-bottom: 30px;
}
.doc-block .doc-content {
    margin-top: 20px;
    padding-bottom: 10px;
}
.doc-block .doc-content h2 {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    border-bottom: 1px dashed #fff;
    display: inline;
}
.doc-block .doc-content h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 4px;
    line-height: 23px;
    color: #fff;
}
.doc-block .doc-content a {
    background: var(--color-secondary);
    color: #fff;
    font-size: 13px;
    padding: 5px 9px;
    border-radius: 46px;
}
.doc-block .doc-img img {
    box-shadow: 8px 9px 5px #1c1a1a4a;
    border: 7px solid #fff;
}
.doc-sec::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background: var(--color-primary);
    bottom: 0;
    z-index: -1;
}
.doc-scroll {
    padding-top: 50px;
}
.doc-scroll .owl-carousel .owl-item .active .doc-img img {
    filter: grayscale(0);
    transform: scale(1.1);
}
.doc-scroll .owl-carousel .owl-item .doc-img img {
    width: auto;
    display: inline-block;
    filter: grayscale(1);
    transition: all ease-in-out .8s;
    transform: sc;
}
.doc-scroll .owl-dots {
    text-align: center;
    margin-top: 23px;
}
.doc-scroll .owl-dots .owl-dot {
    display: inline-block;
    width: 23px;
    height: 6px;
    margin: 0 4px;
    background: #fff;
}
.doc-scroll .owl-dots .owl-dot.active {
    background-color: var(--color-secondary);
}
/***
====================================================================
	stats section
====================================================================
***/
.stats-sec {
    position: relative;
    margin-bottom: 80px;
}
.stats-text h2 {
    font-weight: 400;
    display: inline;
    background: var(--color-primary);
    color: #fff;
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 30px;
}
.stats-text {
    position: relative;
    margin-bottom: 25px;
}
.stats-text::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 241%;
    top: -90px;
    background-color: var(--color-primary);
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}
.stats-sec .col-md-2:nth-child(even) .counter {
    bottom: -50px;
}
/***
====================================================================
	serv section
====================================================================
***/
.serv-sec {
    position: relative;
    margin-bottom: 90px;
}
.serv-sec .sec-title::after {
    bottom: -20px;
}
.serv-sec .box {
    text-align: center;
    overflow: hidden;
    margin: 11px;
    position: relative;
    border-radius: 30px;
}
.serv-scroll1 .col-md-3 {
    filter: drop-shadow(2px 4px 6px #ccc);
    padding-left: 10px;
    padding-right: 0px;
    position: relative;
}
.serv-sec .box:after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    transform: scaleX(0);
    transition: all 0.6s ease 0s;
}
.serv-sec .box:after {
    transform: scaleY(0);
}
.serv-sec .box:hover:before {
    transform: scaleX(1);
}
.serv-sec .box:hover:after {
    transform: scaleY(1);
}
.serv-sec .box img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease 0s;
    filter: grayscale(1);
}
.serv-sec .box:hover img {
    transform: scale(1.3);
    filter: grayscale(0);
}
.serv-sec .box .box-content {
    width: 100%;
    position: absolute;
    top: 35%;
    left: 0;
    z-index: 2;
}
.serv-sec .box .title {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px 0;
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.serv-sec .box:hover .title {
    opacity: 1;
}
.serv-sec .box .icon {
    padding: 0;
    margin: 0;
    list-style: none;
    transform: scaleX(0);
    transition: all 0.6s ease 0s;
}
.serv-sec .box:hover .icon {
    transform: scaleX(1);
}
.serv-sec .box .icon li {
    display: inline-block;
}
.serv-sec .box .icon li {
    padding: 0px 11px;
    line-height: 40px;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    border: 1px solid #fff;
    margin-right: 5px;
    transition: all 0.3s ease 0s;
}
.serv-sec .box .icon li:hover {
    background: #fff;
    color: #444;
}
@media only screen and (max-width:990px) {
    .serv-sec .box {
        margin-bottom: 20px;
    }
}
.serv-scroll1 {
    padding-top: 30px;
}
.serv-scroll1 .box:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    content: "";
    background: rgb(19, 19, 19);
    background: linear-gradient(0deg, rgba(19, 19, 19, 0.5634628851540616) 0%, rgba(19, 19, 19, 1) 0%, rgba(19, 19, 19, 1) 0%, rgba(19, 19, 19, 1) 3%, rgba(19, 19, 19, 1) 3%, rgba(19, 19, 19, 0) 45%);
    transition: all 500ms ease;
}
/***
====================================================================
	appointment blog section
====================================================================
***/
.appointment-block {
    text-align: center;
    padding: 27px 45px;
    box-shadow: 0px 0px 14px #d0d0d0;
    background: var(--color-primary);
    position: relative;
    border-radius: 32px 32px 32px 32px;
}
.appointment-block h2 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
}
.appointment-block .form-control {
    color: #fff;
    border-bottom: 1px dotted #fff;
}
.appointment-block .form-control::placeholder {
    color: #fff;
}
/* .appointment-block .form-control {
    height: 55px;
} */
.appointment-block textarea.form-control {
    height: 135px;
}
.select-items {
    color: #ffffff;
    padding: 4px 1px;
    border: 1px solid transparent;
    cursor: pointer;
    user-select: none;
    text-align: justify;
}
.form-control .color-hover:hover {
    background-color: #153b56 !important;
    color: #fff !important;
}
.appointment-block .btn {
    width: 110px;
    padding: 5px 5px;
    margin-top: 0;
}
.btn-danger {
    color: #fff;
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.btn-danger:hover {
    color: #fff;
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.blog-apptn-sec {
    position: relative;
    margin-bottom: 40px;
}
.testimonial-block {
    position: relative;
    background: #fff;
    border-radius: 32px;
    box-shadow: -1px 6px 21px #bdbcbc;
    padding: 40px 80px 90px;
}
.testimonial-block::before {
    content: "";
    position: absolute;
    width: 87%;
    height: 100%;
    background-color: var(--color-primary);
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 32px;
    transform: translate(0px, 0px) skew(-4deg, 3deg);
    z-index: -1;
}
.testimonials-sec {
    position: relative;
    margin-bottom: 90px;
}
.service-icon2 {
    position: absolute;
    top: 58px;
    font-size: 92px;
    color: #ccc;
    left: 45px;
}
.service_icon_btm {
    position: absolute;
    bottom: 58px;
    font-size: 92px;
    color: #ccc;
    right: 45px;
}
.testimonial-carousel {
    padding-top: 80px;
    position: relative;
}
.gg_review {
    position: absolute;
    top: 210px;
    right: 0;
    left: 0;
    bottom: 0px;
    margin: 0 auto 16px;
    text-align: center;
    padding: 11px 9px;
    border-radius: 5px;
    margin: auto;
    opacity: 0.2;
}
.gg_review i {
    display: inline-block;
    border-radius: 50%;
    font-size: 225px;
    line-height: 48px;
    margin: 0 0 99px;
    color: #a5a3a3;
}
.ratings {
    position: relative;
    margin: 0;
    color: #a5a3a3;
    font-size: 38px;
}
.testimonila_item {
    min-height: 200px;
}
.testimonila_item:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    border-left: 2px dotted var(--color-default);
    top: 0;
    right: -30px;
}
.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    width: 21px;
    border: 3px solid var(--color-primary);
    opacity: 1;
    margin: 0 2px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-carousel .owl-dot:hover,
.testimonial-carousel .owl-dot.active {
    opacity: 1;
    border: 3px solid var(--color-secondary);
}
.testimnila_box h3 {
    font-weight: 500;
}
/***
====================================================================
	top social section
====================================================================
***/
.top-social {
    position: absolute;
    z-index: 91;
    text-align: center;
    top: 26px;
    right: 239px;
    width: auto;
}
.top-social li {
    display: inline-block;
    margin-right: 1px;
}
.top-social li:nth-child(6) a {
    border-right: none;
}
.top-social li a {
    display: block;
    width: 36px;
    height: 36px;
    color: #134868;
    border-right: 1px dashed #000;
    text-align: center;
    line-height: 36px;
    font-size: 19px;
    margin: 0px 1px;
    padding-right: 6px;
}
/***
====================================================================
	news letter section
====================================================================
***/
.news-letter-section {
    max-width: inherit;
    margin: auto;
    margin-top: 0;
    position: relative;
    z-index: 2;
}
.newsletter-head h4 {
    text-transform: uppercase;
    font-size: 38px;
    color: #ffffff;
    font-weight: 400;
    line-height: 36px;
}
.newsletter-head .text {
    font-size: 14px;
    color: #fff;
}
.newsletter-form {
    position: relative;
    margin: auto;
}
.newsletter-form .form-control {
    height: 63px;
    background-color: transparent;
    border-bottom: 1px solid;
    color: #fff;
}
.newsletter-form .form-control::placeholder {
    color: #fff;
}
.newsletter-form .btn {
    position: absolute;
    top: 7px;
    right: 8px;
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 11px 16px;
    color: #091f3a
}
.subscribe {
    background: var(--color-primary);
    box-shadow: 0px 2px 10px #454545;
    padding: 50px 0px;
    position: relative;
}
/***
============================================================
Footer section
============================================================
***/
.main-footer {
    position: relative;
}
.social-icon-two {
    position: relative;
    text-align: center;
    margin-top: 0;
    display: inline-block;
    padding: 6px 4px;
    border-top: 1px dashed #000;
    border-bottom: 1px dashed #000;
    margin-bottom: 10px;
}
.social-icon-two li {
    position: relative;
    display: inline-block;
}
.social-icon-two li:last-child {
    border-right: 0px;
}
.social-icon-two li a img {
    width: 20px;
    top: -3px;
    position: relative;
    filter: brightness(0) invert(1);
}
.social-icon-two li a {
    position: relative;
    display: block;
    font-size: 18px;
    width: 35px;
    height: 35px;
    line-height: 34px;
    color: #ffffff;
    background: var(--color-primary);
    border-radius: 50%;
    font-weight: 400;
    text-align: center;
    margin: 0 5px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.social-icon-two li a:hover {
    color: #ffffff;
    background: var(--color-secondary);
}
.social-icon-two li a:first-child {
    margin-left: 0;
}
.user-links a:before {
    position: absolute;
    content: "\f101";
    font-family: 'FontAwesome';
    font-size: 17px;
    font-weight: 300;
    color: #000;
    left: 0px;
    top: -4px;
    transition: all 500ms ease;
}
.user-links a:hover {
    color: var(--color-secondary);
}
.user-links a {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    padding-left: 15px;
    -webkit-transition: all .3s;
    transition: all .3s;
    color: #000;
    line-height: 30px;
}
.main-footer .footer-bottom {
    position: relative;
}
.main-footer .footer-bottom .copyright {
    position: relative;
    display: block;
    padding: 9px 0px 13px;
    color: #fff;
}
.footer-bottom::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: var(--color-primary);
    left: 0;
    right: 0;
}
.footer-upper {
    padding: 50px 0px;
}
.f-logo img {
    width: 350px;
    margin-bottom: 10px;
}
.main-footer .widget-title {
    position: relative;
    font-size: 27px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 30px;
    padding-bottom: 6px;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 2px solid;
}
.addr-row i {
    background: var(--color-primary);
    padding: 10px;
    border-radius: 32px;
    font-size: 20px;
    color: #fff;
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}
.footer_about {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 20px;
}
.footer-widget iframe {
    border: 8px solid #f5f5f5;
    box-shadow: 0px 2px 10px #c5c5c5;
}
.addr-row .one {
    border: 2px solid var(--color-primary);
    padding: 15px;
    border-radius: 17px;
}
/***
======================================================
 why choose us section
====================================================== 
***/
.why-choose-us-sec {
    position: relative;
    margin-bottom: 50px;
}
.why-img img {
    width: 70px;
}
.why-choose-us-sec .first-row {
    padding-top: 50px;
}
.why-choose-us-sec .tick img {
    width: 30px;
    color: var(--color-primary);
}
.serviceBox1 {
    text-align: center;
}
.serviceBox1 .service-icon1 {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-default);
    line-height: 95px;
    margin-bottom: 15px;
}
.serviceBox1 .service-icon1 i {
    font-size: 35px;
    color: #fff;
    line-height: 100px;
    transition: all 0.3s ease 0s;
}
.serviceBox1:hover .service-icon1 i {
    transform: rotateY(180deg);
}
.serviceBox1 .title {
    display: block;
    width: 190px;
    font-size: 24px;
    color: #433b3b;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 20px;
    margin: 0 auto 20px;
    position: relative;
}
.serviceBox1 .title:before,
.serviceBox1 .title:after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
    margin: 0 -5px 0 0;
    position: absolute;
    bottom: -5px;
    right: 50%;
    transition: all 0.4s ease 0s;
}
.serviceBox1 .title:before {
    left: 50%;
    margin: 0 0 0 -5px;
}
.serviceBox1:hover .title:before {
    left: 100%;
}
.serviceBox1:hover .title:after {
    right: 100%;
}
.serviceBox1 .description {
    font-size: 15px;
    color: var(--color-default);
    line-height: 27px;
    padding: 0 15px;
    margin: 0;
}
@media only screen and (max-width:990px) {
    .serviceBox1 {
        margin-bottom: 30px;
    }
}
.service-icon1 img {
    width: 60px;
    filter: brightness(0) invert(1);
}
/***
====================================================================
  Blog Section
====================================================================
***/
.blog-section {
    position: relative;
    padding: 35px 0 70px;
}
.news-block-three {
    position: relative;
    margin-bottom: 40px;
}
.news-block-three .inner-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    background-color: #ececec;
    box-shadow: 0 0px 8px rgb(0 0 0 / 38%);
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.news-block-three .inner-box.left {
    border: 5px solid #fff;
    min-height: 250px;
}
.news-block-three .inner-box.right {
    border: 5px solid #fff;
    text-align: right;
}
.news-block-three .image-box {
    position: relative;
    width: 35%;
}
.news-block-three .image-box .image {
    position: relative;
    margin-bottom: 0;
    margin-top: -156px;
}
.news-block-three .image-box .image img {
    position: relative;
    display: block;
    width: 100%;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.news-block-three .image-box .date {
    position: absolute;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: var(--color-primary);
    padding: 3px 20px;
    border-radius: 0px;
    z-index: 1;
}
.news-block-three .image-box.right .date {
    padding: 5px 16px;
    right: 0;
}
.news-block-three .image-box .date strong {
    color: inherit;
    font-size: 16px;
}
.news-block-three .content-box {
    position: relative;
    padding: 16px 19px 16px;
    width: 65%;
}
.news-block-three .content-box h4 {
    position: relative;
    font-size: 21px;
    font-weight: 600;
    margin-top: 5px;
}
.news-block-three .content-box h4 a {
    display: inline-block;
    color: inherit;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.news-block-three .content-box .text {
    color: #4c4c4d;
    margin-top: 10px;
}
.news-block-three .content-box .read-more {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1.2em;
    padding: 10px 30px;
    min-width: auto;
    border-radius: 5px;
    margin-top: 20px;
}
.news-block-three .content-box .post-info {
    position: relative;
    font-size: 16px;
    line-height: initial;
    margin-top: 20px;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: -10px;
}
.news-block-three .content-box .post-info a {
    color: #1370b5;
}
.news-block-three .post-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.news-block-three .post-author a {
    display: inline-block;
    margin: 0 5px;
}
.news-block-three .post-author img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin-right: 10px;
}
.news-block-three .post-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.news-block-three .post-option li {
    position: relative;
    margin-left: 15px;
}
.news-block-three .post-option li a {
    color: inherit;
    font-size: 16px;
}
.news-block-three .post-option li i {
    margin-right: 5px;
    font-size: 14px;
}
.news-block-three.even .image-box {
    order: 2;
}
.news-block-three.even .content-box {
    text-align: right;
}
.news-block-three.even .image-box .date {
    left: auto;
    right: 0;
    border-radius: 10px 0 0 0;
}
.btn-style-one {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    background: var(--color-secondary);
    overflow: hidden;
    min-width: 150px;
    border-radius: 30px;
}
.btn-style-one:hover {
    color: #fff;
}
.blog-checkerboard {
    padding-top: 50px;
}
.box-up {
    margin-top: -170px;
}
/***
=================================================
 APPT-STYLE 
=================================================
***/
.blog-apptn-sec .main-timeline .timeline {
    width: 100%;
    padding: 0 0 0 80px;
    margin-bottom: 20px;
    border: 5px solid var(--color-primary);
    border-radius: 90px;
    float: right;
    position: relative;
}
.blog-apptn-sec .main-timeline .timeline:before {
    content: '';
    height: 115%;
    width: 10px;
    background-color: #fff;
    transform: translateY(-50%);
    position: absolute;
    left: 70px;
    top: 50%;
}
.blog-apptn-sec .main-timeline .timeline-content {
    background-color: var(--color-primary);
    text-align: left;
    border-radius: 0 90px 90px 0;
    display: block;
    position: relative;
}
.blog-apptn-sec .main-timeline .timeline-content:hover {
    text-decoration: none;
}
.blog-apptn-sec .main-timeline .content {
    background-color: #fff;
    padding: 17px 40px 17px 80px;
    border-radius: 90px;
}
.blog-apptn-sec .main-timeline .timeline {
    margin-bottom: 30px;
}
.blog-apptn-sec .main-timeline .timeline-year {
    color: #fff;
    background-color: var(--color-primary);
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    line-height: 110px;
    height: 130px;
    width: 130px;
    border: 10px solid #eaeaea;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5) inset;
    border-radius: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: -92px;
    top: 50%;
}
.blog-apptn-sec .main-timeline .title {
    color: var(--color-primary);
    font-size: 25px;
    text-transform: uppercase;
    margin: 0 0 7px 0;
}
.blog-apptn-sec .main-timeline .description {
    color: #000;
    font-size: 15px;
    letter-spacing: 1px;
    text-align: justify;
    margin: 0 0 5px 0;
}
.blog-apptn-sec .main-timeline .timeline:nth-child(even) {
    float: left;
    padding: 0 80px 0 0;
}
.blog-apptn-sec .main-timeline .timeline:nth-child(even):before {
    left: auto;
    right: 70px;
}
.blog-apptn-sec .main-timeline .timeline:nth-child(even) .timeline-year {
    left: auto;
    right: -92px;
}
.blog-apptn-sec .main-timeline .timeline:nth-child(even) .timeline-content {
    border-radius: 90px 0 0 90px;
    text-align: right;
}
.blog-apptn-sec .main-timeline .timeline:nth-child(even) .content {
    padding: 17px 80px 17px 40px;
}
.blog-apptn-sec .timeline:nth-child(6n+2) {
    border-color: var(--color-secondary);
}
.blog-apptn-sec .timeline:nth-child(6n+2) .timeline-content {
    background-color: var(--color-secondary);
}
.blog-apptn-sec .timeline:nth-child(6n+2) .timeline-year {
    background-color: var(--color-secondary);
}
.blog-apptn-sec .timeline:nth-child(6n+2) .title {
    color: var(--color-secondary);
}
.blog-apptn-sec .timeline:nth-child(6n+3) {
    border-color: var(--color-primary);
}
.blog-apptn-sec .timeline:nth-child(6n+3) .timeline-content {
    background-color: var(--color-primary);
}
.blog-apptn-sec .timeline:nth-child(6n+3) .timeline-year {
    background-color: var(--color-primary);
}
.blog-apptn-sec .timeline:nth-child(6n+3) .title {
    color: var(--color-primary);
}
@media screen and (max-width:1200px) {
    .blog-apptn-sec .main-timeline .timeline {
        width: 59%;
    }
    .blog-apptn-sec .main-timeline .timeline-content {
        border-radius: 0 92px 92px 0;
    }
    .blog-apptn-sec .main-timeline .timeline:nth-child(even) .timeline-content {
        border-radius: 92px 0 0 92px;
    }
    .blog-apptn-sec .main-timeline .content {
        padding: 25px 40px 25px 80px;
    }
    .blog-apptn-sec .main-timeline .timeline:nth-child(even) .content {
        padding: 25px 80px 25px 40px;
    }
}
@media screen and (max-width:990px) {
    .blog-apptn-sec .main-timeline .timeline {
        width: 61.7%;
    }
}
@media screen and (max-width:767px) {
    .blog-apptn-sec .main-timeline .timeline {
        width: 100%;
    }
    .blog-apptn-sec .main-timeline .timeline:nth-child(even) {
        float: right;
        padding: 0 0 0 80px;
    }
    .blog-apptn-sec .main-timeline .timeline:nth-child(even):before {
        left: 70px;
    }
    .blog-apptn-sec .main-timeline .timeline:nth-child(even) .timeline-content {
        border-radius: 0 92px 92px 0;
        text-align: left;
    }
    .blog-apptn-sec .main-timeline .timeline:nth-child(even) .timeline-year {
        left: -70px;
    }
    .blog-apptn-sec .main-timeline .timeline:nth-child(even) .content {
        padding: 25px 40px 25px 80px;
    }
}
@media screen and (max-width:479px) {
    .blog-apptn-sec .main-timeline {
        padding-top: 30px;
    }
    .blog-apptn-sec .main-timeline .timeline,
    .blog-apptn-sec .main-timeline .timeline:nth-child(even) {
        padding: 0;
        margin-bottom: 60px;
        border-radius: 10px;
    }
    .blog-apptn-sec .main-timeline .timeline:before {
        display: none;
    }
    .blog-apptn-sec .main-timeline .timeline-content,
    .blog-apptn-sec .main-timeline .content {
        border-radius: 0 0 0 0;
    }
    .blog-apptn-sec .main-timeline .timeline-year,
    .blog-apptn-sec .main-timeline .timeline:nth-child(even) .timeline-year {
        top: -70px;
        left: 50%;
        transform: translateY(0) translateX(-50%) scale(0.7);
    }
    .blog-apptn-sec .main-timeline .timeline:nth-child(even) .content,
    .blog-apptn-sec .main-timeline .content {
        text-align: center;
        padding: 55px 20px 20px;
    }
    .blog-apptn-sec .main-timeline .title {
        font-size: 18px;
    }
}
.tick {
    padding-top: 20px;
}
.timeline-year img {
    filter: brightness(0) invert(1);
    width: 70px;
}
.blog-apptn-sec .sec-title {
    margin-bottom: 28px;
}
.blog-apptn-sec .sec-title::before {
    display: none;
}
.blog-apptn-sec .sec-title::after {
    display: none;
}
.blog-apptn-sec .sec-title h6 {
    font-size: 20px;
    border-top: 2px dotted black;
    border-bottom: 2px dotted black;
    padding: 12px 0;
    display: block;
}
.bgs {
    position: absolute;
}
.abtleftbg {
    left: 0px;
    width: 60%;
    top: 190px;
    opacity: 1;
    float: right;
}
.bgs img {
    width: 100%;
    opacity: 0.2;
}
.abtrightbg {
    right: -127px;
    width: 35%;
    top: -357px;
    opacity: 0.4;
    float: right;
    z-index: -1;
}
.tick {
    margin-top: 30px;
    padding: 25px 0px;
    border-top: 2px dotted var(--color-primary);
    border-bottom: 2px dotted var(--color-primary);
}
.tick p {
    margin-bottom: 0px;
}
.tick .col-md-4:nth-child(even) {
    border-left: 2px dotted var(--color-primary);
    border-right: 2px dotted var(--color-primary);
}
.timeline-year img {
    position: relative;
    top: -3px;
}
/*the container must be positioned relative:*/
.custom-select {
    position: relative;
}
.custom-select select {
    display: none;
    /*hide original SELECT element:*/
}
.select-selected {
    background-color: transparent;
}
/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000000 transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #000 transparent;
    top: 7px;
}
/*style the items (options), including the selected item:*/
.select-selected {
    color: #ffffff;
    padding: 0px 0px;
    border-color: transparent transparent rgba(0, 0, 0) transparent;
    cursor: pointer;
    user-select: none;
    text-align: left;
}
.select-items div {
    color: #fff;
    padding: 4px 12px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    text-align: left;
}
/*style items (options):*/
.select-items {
    position: absolute;
    background-color: var(--color-primary);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}
/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}
.select-items div:hover,
.same-as-selected {
    background-color: var(--color-secondary);
    color: #fff !important;
}
.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background-color: transparent;
    border: none;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.top_wrap1 {
    position: relative;
}
.inner-section {
    position: relative;
    min-height: 47vh;
    padding: 110px 0px 80px;
    text-align: center;
}
.bread_cumb_wrap {
    position: relative;
    text-align: center;
    left: 0;
    right: 0;
    padding: 170px 0 60px
}
/* .bread_cumb_wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 425px;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(../gallery/bread-cumb.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .2
} */
.bread_cumb_wrap h1 {
    text-transform: capitalize;
    color: #fff;
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 600;
}
.bread_cumb_wrap ul {
    display: inline-block;
    padding: 4px 15px;
}
.bread_cumb_wrap ul li {
    display: inline-block;
    position: relative;
    padding: 0 7px;
    color: #2c2c2c
}
.bread_cumb_wrap ul li:nth-child(1) {
    border-right: 2px dotted #fff;
}
.bread_cumb_wrap ul li:nth-child(3) {
    border-left: 2px dotted #fff;
}
.bread_cumb_wrap ul li:nth-child(4) {
    border-left: 2px dotted #fff;
}
.bread_cumb_wrap ul li:last-child:before {
    display: none
}
.bread_cumb_wrap i {
    color: #ff5252;
}
.bread_cumb_wrap ul li a {
    display: block;
    color: #fff;
    font-size: 17px;
}
.inner-section1 {
    padding: 67px 0px;
}
.videos-section .col-md-3 {
    padding: 0px;
}
.videos-section .videos-box {
    padding: 5px;
    margin-bottom: 5px;
    padding-bottom: 3px;
    padding-top: 9px;
    padding-left: 9px;
    padding-right: 9px;
    border-radius: 8%;
}
.videos-section .videos-box iframe {
    border: 5px solid #e3e3e3;
}
.call-us {
    position: fixed;
    bottom: 85px;
    right: 23px;
    line-height: 48px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    padding: 10px 16px;
    align-items: center;
}
.call-us-i {
    color: green;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    font-size: 41px;
}
.call-us-i span {
    color: green;
}
.call-us h2 {
    margin-left: 10px;
    font-size: 20px;
}
.sticky-header .main-menu .navigation>li:before,
.sticky-header .main-menu .navigation>li.dropdown>a:before {
    display: none;
}
.sticky-header .main-menu .navigation>li:hover>a,
.sticky-header .main-menu .navigation>li.current>a {
    color: #00aa55;
}
.sticky-header .main-menu .navigation>li.dropdown {
    padding-right: 0px;
}
/*** 
====================================================================
				Sticky Header
====================================================================
***/
.sticky-header {
    display: none;
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px 0px;
    z-index: -1;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    -webkit-transition: top 300ms ease;
    -moz-transition: top 300ms ease;
    -ms-transition: top 300ms ease;
    -o-transition: top 300ms ease;
    transition: top 300ms ease;
}
.fixed-header .sticky-header {
    opacity: 1;
    z-index: 99901;
    visibility: visible;
}
.fixed-header .sticky-header .logo {
    padding: 10px 0px;
}
.sticky-header .main-menu .navigation>li {
    margin-left: 40px !important;
    padding: 0;
    margin-right: 0;
    background-color: transparent;
}
.sticky-header .main-menu .navigation>li.dropdown>a:after,
.sticky-header .main-menu .navigation>li:before {
    display: none;
}
.sticky-header .main-menu .navigation>li>a {
    padding: 21px 0px !important;
    line-height: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #25283a;
    text-transform: capitalize;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.sticky-header .main-menu .navigation>li>ul>li>ul {
    left: auto;
    right: 100%;
}
.sticky-header .main-menu .navigation>li:hover>a,
.sticky-header .main-menu .navigation>li.current>a,
.sticky-header .main-menu .navigation>li.current-menu-item>a {
    opacity: 1;
}
.fixed-header .header-one {
    position: fixed;
    -webkit-animation-name: slideInDown;
    -webkit-animation-duration: 700ms;
    -webkit-animation-timing-function: ease;
    -moz-animation-name: slideInDown;
    -moz-animation-duration: 700ms;
    -moz-animation-timing-function: ease;
    -ms-animation-name: slideInDown;
    -ms-animation-duration: 700ms;
    -ms-animation-timing-function: ease;
    animation-name: slideInDown;
    animation-duration: 700ms;
    animation-timing-function: ease;
    background-color: #fff;
    box-shadow: 0px 0px 10px;
    height: 105px;
    width: 100%;
}
.stats-section {
    position: relative;
    padding: 45px 0px;
    padding-top: 0px;
}
.stats-section .counter {
    color: #222;
    text-align: center;
    width: 215px;
    height: 215px;
    padding: 46px 30px;
    margin: 0 auto;
    border: 3px solid var(--color-secondary);
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    margin: auto;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.stats-section .counter:before,
.stats-section .counter:after {
    content: '';
    background: #ff2828;
    border-radius: 50%;
    box-shadow: 0 4px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    right: 10px;
    z-index: -1;
}
.stats-section .counter:after {
    background: #fff;
    left: 25px;
    top: 25px;
    bottom: 25px;
    right: 25px;
}
.stats-section .counter .counter-icon {
    color: #d1d1d1;
    font-size: 35px;
    line-height: 35px;
    margin: 0 0 13px;
}
.stats-section .counter h3 {
    color: #ff2828;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.stats-section .counter .counter-value {
    color: #555;
    font-size: 42px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    padding-top: 23px;
}
.stats-section .counter.blue {
    border-top-color: var(--color-primary);
}
.stats-section .counter.blue:before {
    background: var(--color-primary);
}
.stats-section .counter.blue h3 {
    color: var(--color-primary);
}
.stats-section .counter.green:before {
    background: var(--color-secondary);
}
.stats-section .counter.green h3 {
    color: var(--color-secondary);
}
@media screen and (max-width:990px) {
    .counter {
        margin-bottom: 40px;
    }
}
.cv-text {
    text-align: center;
    padding: 8px 0px;
    margin: 0 0px 20px;
    background: var(--color-default);
    position: relative;
    border: 1px solid #525252;
    border-radius: 42px;
}
.cv-text p {
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    font-size: 17px;
    text-align: center !important;
    font-weight: 500;
    line-height: 29px;
}
.right-sidebar .change-color {
    animation: BLINK 0.8s infinite;
}
@-webkit-keyframes BLINK {
    0%,
    50% {
        background-color: var(--color-primary);
    }
    51%,
    100% {
        background-color: #aa0b36;
    }
}
.call-us img {
    width: 55px;
    filter: drop-shadow(0 0px 8px rgb(0 0 0 / 38%));
}
.bcw-block {
    position: relative;
    background-color: var(--color-primary);
}
.bcw-d {
    position: relative;
    padding: 45px 0px;
}
.bcw-d::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -18px;
    left: 0;
    background-color: #dadada;
    z-index: -1;
}
.bcw-d::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -18px;
    background-color: #dadada;
    z-index: -1;
}
.stats-block {
    position: relative;
    padding-top: 45px;
}
:root {
    --main-color: #b877b1;
}
.pricingTable {
    background: linear-gradient(var(--main-color), #fff, #fff);
    text-align: center;
    padding: 30px 0 40px;
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1) inset;
    position: relative;
    z-index: 1;
    min-height: 690px;
}
.pricingTable:before {
    content: '';
    background-color: var(--main-color);
    /* height: 180px; */
    width: 100%;
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1) inset;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.pricingTable .pricingTable-header {
    color: #fff;
    margin: 0 0 30px;
}
.pricingTable .title {
    font-size: 33px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}
.pricingTable .price-value {
    color: #555;
    background-color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    height: 130px;
    width: 130px;
    padding: 42px 12px;
    margin: 0 auto 40px;
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
}
.pricingTable .price-value span {
    display: block;
}
.pricingTable .price-value span.amount {
    font-size: 38px;
    font-weight: 700;
    line-height: 44px;
}
.pricingTable .pricing-content {
    padding: 0;
    margin: 0px;
    list-style: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    width: 100%;
}
.pricingTable .pricing-content li {
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    padding: 1px 18px 0;
    margin: 0 10px 7px;
    border-bottom: 1px dashed #555;
    padding-bottom: 10px;
}
.pricingTable .pricing-content li:last-child {
    border-bottom: none;
}
/* .pricingTable .pricing-content li:nth-child(odd){
    color: #fff;
    background-color: #999;
} */
/* .pricingTable .pricing-content li:last-child{ margin: 0; } */
.pricingTable .pricingTable-signup a {
    color: #fff;
    background: var(--main-color);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 20px 4px;
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.pricingTable .pricingTable-signup a:hover {
    color: #fff;
    background-color: var(--main-color);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 0, 0, 0.3);
}
.pricingTable.gold {
    --main-color: #ca8c29;
}
.pricingTable.diamond {
    --main-color: #00a3c4;
}
.pricingTable.platinum {
    --main-color: #348743;
}
@media only screen and (max-width: 990px) {
    .pricingTable {
        margin: 0 0 40px;
    }
}
.phcc-cardio,
.phcc-neuro,
.phcc-nephro {
    margin-bottom: 39px;
}
.phcc-neuro .pricingTable {
    min-height: 711px;
}
.phcc-nephro .pricingTable {
    min-height: 692px;
}
.phcc-pulm .pricingTable {
    min-height: 649px;
}
.inner-section1 .h-title {
    margin-bottom: 15px;
    background-color: var(--color-primary);
    color: #fff;
    text-transform: uppercase;
    display: block;
    position: relative;
}
.stats-section .container {
    max-width: 1266px;
}
.inner-section1 .testi .main-timeline:after {
    content: '';
    display: block;
    clear: both;
}
.inner-section1 .testi .main-timeline .timeline {
    width: calc(50% + 58px);
    border-top: 2px solid #404247;
    float: left;
    position: relative;
    z-index: 1;
}
.inner-section1 .testi .main-timeline .timeline:before {
    content: "";
    background: #404247;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    position: absolute;
    top: -5px;
    right: 0;
}
.inner-section1 .testi .main-timeline .timeline-content {
    color: #404247;
    text-align: center;
    padding: 15px 80px 15px 10px;
    display: block;
    position: relative;
}
.inner-section1 .testi .main-timeline .timeline-content:hover {
    text-decoration: none;
}
.inner-section1 .testi .main-timeline .timeline-content:before {
    content: "";
    background: #00a6f9;
    width: 15px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 50px;
}
.inner-section1 .testi .main-timeline .timeline-year {
    font-size: 35px;
    line-height: 35px;
    font-weight: 700;
    transform: translateY(-50%) rotate(90deg);
    position: absolute;
    top: 50%;
    right: -15px;
}
.inner-section1 .testi .main-timeline .title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.inner-section1 .testi .main-timeline .description {
    font-size: 16px;
    margin: 0;
}
.inner-section1 .testi .main-timeline .timeline:nth-child(even) {
    float: right;
}
.inner-section1 .testi .main-timeline .timeline:nth-child(even):before {
    right: auto;
    left: 0;
}
.inner-section1 .testi .main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 15px 10px 15px 80px;
}
.inner-section1 .testi .main-timeline .timeline:nth-child(even) .timeline-content:before {
    right: auto;
    left: 51px;
}
.inner-section1 .testi .main-timeline .timeline:nth-child(even) .timeline-year {
    right: auto;
    left: -15px;
}
.inner-section1 .testi .main-timeline .timeline:nth-child(odd) .timeline-content .title {
    color: var(--color-primary);
}
.inner-section1 .testi .main-timeline .timeline:nth-child(even) .timeline-content .title {
    color: var(--color-secondary);
}
.inner-section1 .testi .main-timeline .timeline:nth-child(even) .timeline-content:before {
    background: var(--color-secondary);
}
.inner-section1 .testi .main-timeline .timeline:nth-child(odd) .timeline-content:before {
    background: var(--color-primary);
}
@media screen and (max-width:767px) {
    .inner-section1 .testi .main-timeline .timeline {
        width: 100%;
    }
}
.inner-section1 .doc-block .doc-content h2 {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    border-bottom: 1px dashed #000;
    display: inline;
}
.inner-section1 .doc-block .doc-content h3 {
    color: #000;
}
.inner-section1 .doc-block img {
    box-shadow: none;
}
.inner-section1 .doc-block {
    background-color: #f2f2f2;
    box-shadow: 8px 9px 5px #1c1a1a4a;
    margin-bottom: 35px;
    min-height: 700px;
}
/* Pop Up */
.modal-dialog {
    max-width: 750px;
    margin: 4rem auto;
}
.modal-content::-webkit-scrollbar-thumb {
    background-color: #08885d;
}
.modal-content::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}
.codecontents {
    border-top: 4px solid var(--color-primary);
}
.codecontents .close {
    position: absolute;
    color: #fff;
    background: var(--color-secondary);
    border-radius: 50%;
    padding: 10px;
    width: 50px;
    height: 50px;
    text-decoration: none;
    right: -25px;
    top: -25px;
    opacity: 1;
    text-shadow: none;
    font-size: 37px;
    z-index: 99;
    font-weight: 400;
}
.codecontents .close:hover {
    position: absolute;
    color: #fff;
    background: var(--color-primary);
    border-radius: 50%;
    padding: 10px;
    width: 50px;
    height: 50px;
    text-decoration: none;
    right: -25px;
    top: -25px;
    opacity: 1;
    text-shadow: none;
    transition: all .3s;
}
.close:not(:disabled):not(.disabled):hover {
    opacity: 1;
}
.modal-docabout {
    color: #fff;
}
.modal-docname h2 {
    color: #fff;
    /* color: var(--color-primary); */
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5a91b3;
}
@media only screen and (max-width:479px) {
    .team-mem h1 {
        padding-bottom: 0px;
    }
    .modal-dialog {
        max-width: 360px;
        margin: 4rem auto;
    }
}
@media only screen and (max-width:375px) {
    .modal-dialog {
        max-width: 320px;
        margin: 4rem auto;
    }
}
@media only screen and (max-width:320px) {
    .modal-dialog {
        max-width: 280px;
        margin: 4rem auto;
    }
}
.ol-styles li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
}
span.gi {
    color: #47a5ae;
    font-weight: 600;
}
.doc-ul span {
    font-weight: 600;
    /* color: var(--color-secondary); */
    color: #ff8484;
    border-bottom: 2px dotted #fff;
}
.doc-ul li {
    padding: 2px 0;
    margin-bottom: 2px;
}
/* Contact page */
.contact-sec .col-md-3:nth-child(2) {
    border-left: 2px dotted #575757;
    border-right: 2px dotted #575757;
}
.contact-sec .serviceBox .service-icon {
    color: #575757;
    background: #fff;
    font-size: 37px;
    line-height: 100px;
    width: 100px;
    height: 100px;
    margin: 0 auto 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), -14px -14px 0px #575757;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.contact-sec .col-md-3:nth-child(odd) .serviceBox .service-icon {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), -14px -14px 0px #13486870;
}
.contact-sec .col-md-3:nth-child(even) .serviceBox .service-icon {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), -14px -14px 0px #db484861;
}
.contact-sec .serviceBox .service-icon i.fa {
    transform: rotate(-45deg);
}
.contact-sec .serviceBox .title {
    color: #B53471;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.contact-sec .serviceBox .description {
    color: #202020;
    font-size: 15px;
    line-height: 25px;
    margin: 0 0 15px;
}
/* .contact-sec .serviceBox.purple .service-icon{
    color: #5758BB;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3),-14px -14px 0px #5758BB;
}
.contact-sec .serviceBox.blue .service-icon{
    color: #17a8d8;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3),-14px -14px 0px #17a8d8;
} */
@media only screen and (max-width:990px) {
    .contact-sec .serviceBox {
        margin: 0 0 57px;
    }
}
._cform {
    position: relative;
    padding: 23px 23px;
    max-width: 1000px;
    margin: auto;
    margin-top: 39px;
    text-align: center;
    box-shadow: 0 0 10px #ccc;
    border: 7px solid #f5f5f5;
    background-color: #fff;
}
._cform h3 {
    text-transform: capitalize;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 34px;
    color: #000;
    display: inline-block;
    border-bottom: 2px dashed #202020;
}
._cform .form-control {
    /* background-color: #f6f9f9; */
    height: 50px;
}
.c-map {
    margin-top: 39px;
}
iframe {
    box-shadow: 0 0 10px #ccc;
    border: 7px solid #f5f5f5;
}
._cform .form-control::placeholder {
    color: #000000;
    opacity: 1
}
._cform .form-control:focus {
    color: #000;
}
._cform .btn {
    background: var(--color-primary);
}
.contact-sec .btn-danger {
    border-color: transparent;
}
.contact-sec .btn-danger.focus,
.contact-sec .btn-danger:focus {
    box-shadow: none;
}
.contact-sec ._cform textarea {
    height: 100px;
}
.inner-section1 .box {
    position: relative;
    overflow: hidden
}
.inner-section1 .box-content:after,
.inner-section1 .box-content:before,
.inner-section1 .box:after,
.inner-section1 .box:before {
    content: '';
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all .3s;
}
.inner-section1 .box-content .lightboxed:hover {
    box-shadow: 0 0 32px #333;
    transform: scale(1.025);
}
.inner-section1 .box:after {
    top: 25%;
    transition-delay: .1s
}
.inner-section1 .box-content:before {
    top: 50%;
    transition-delay: .2s
}
.inner-section1 .box-content:after {
    top: 75%;
    transition-delay: .3s
}
.inner-section1 .box:hover .box-content:after,
.inner-section1 .box:hover .box-content:before,
.inner-section1 .box:hover:after,
.inner-section1 .box:hover:before {
    opacity: 1
}
.inner-section1 .box img {
    width: 100%;
    height: auto;
    border: 5px solid #e3e3e3;
    border-radius: 8%;
    box-shadow: -2px 7px 12px 0px #e3dce5;
}
.inner-section1 .box .box-content {
    width: 100%;
    height: 100%;
    transform: translateX(-50%) translateY(-50%) scale(1);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1
}
.inner-section1 .content {
    text-align: center;
    width: 100%;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: 58px;
    z-index: 2;
    transition: all .3s ease 0
}
.inner-section1 .box .title {
    color: #25567a;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 0 2px #fff;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    transform: translateX(-100px);
    transition: all .5s ease .3s
}
.inner-section1 .box .post {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    opacity: 0;
    transform: translateX(100px);
    transition: all .5s ease .3s
}
.inner-section1 .box:hover .post,
.inner-section1 .box:hover .title {
    opacity: 1;
    transform: translateX(0)
}
.inner-section1 .box .icon {
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transition: all .5s ease .3s
}
.inner-section1 .box:hover .icon {
    opacity: 1
}
.inner-section1 .box .icon li {
    margin: 0 4px;
    display: inline-block
}
.inner-section1 .box .icon li a {
    color: #fff;
    background-color: var(--color-primary);
    font-size: 18px;
    line-height: 35px;
    height: 35px;
    width: 35px;
    border-radius: 0 0 50%;
    display: block;
    transition: all .3s
}
.inner-section1 .box .icon li a:hover {
    color: #fff;
    background-color: var(--color-secondary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .8) inset
}
@media only screen and (max-width:479px) {
    .inner-section1 .box .title {
        font-size: 20px
    }
}
.list_style {
    padding: 0;
    padding-left: 20px;
    display: inline-grid;
}
.list_style li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    line-height: 28px;
    font-size: 15px;
}
.list_style li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
    line-height: 28px;
    color: #373434;
    font-weight: 900;
    content: "\f101";
    font-family: "FontAwesome";
}
.serv-matter p {
    font-size: 15px;
    margin-bottom: 7px;
    text-align: justify;
    line-height: 30px;
}
.serv-matter h2 {
    color: var(--color-secondary);
    font-size: 20px;
    margin: 7px 0px;
}
.serv-matter h3 {
    color: #34a7b2;
    font-size: 16px;
}
.serv-matter .serv-img img {
    border: 7px solid #f5f5f5;
    box-shadow: 0px 0px 10px #9f9f9f;
    margin-bottom: 15px;
}
.mileston-sec {
    position: relative;
}
.mileston-sec .milestone-text {
    position: relative;
}
.mileston-sec .milestone-text .m-num {
    position: relative;
    font-size: 104px;
    z-index: -1;
    opacity: 0.2;
    font-style: italic;
    font-weight: 800;
}
.mileston-sec .milestone-block {
    background: #fff;
    box-shadow: 0px 0px 10px #ccc;
    min-height: 506px;
}
.mileston-sec .milestone-text h3 {
    background-color: var(--color-primary);
    color: #fff;
    margin-bottom: 10px;
    font-size: 25px;
    padding: 10px 5px;
}
.mileston-sec p {
    padding: 0px 15px;
}
.mileston-sec .milestone-img {
    /* border: 2px solid var(--color-primary); */
    padding: 10px;
}
.mileston-sec .col-md-4 {
    margin-bottom: 25px;
}
.tpa-img img {
    box-shadow: 0px 0px 10px #ccc;
    border-radius: 20px;
    border: 8px solid #f5f5f5;
    width: 100%;
}
.tpa-content {
    margin-top: 10px;
    position: relative;
}
.tpa-content p {
    padding: 5px 8px;
    border-radius: 5px;
    display: inline-flex;
}
.tpa-block {
    margin-bottom: 10px;
}
.vertical-tab {
    display: table;
    padding-top: 15px;
}
.vertical-tab .nav-tabs {
    width: 20%;
    min-width: 27%;
    padding-left: 15px;
    border: none;
    vertical-align: top;
    display: table-cell;
}
.vertical-tab .nav-tabs li a {
    color: #fff;
    background-color: var(--color-primary);
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    padding: 12px 10px;
    border-radius: 0;
    border: 1px solid #e4e9f3;
    border-right: 0px;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.vertical-tab .nav-tabs li a.active,
.vertical-tab .nav-tabs li a.active a:hover {
    color: #f2f2f2;
    background-color: var(--color-secondary);
    border-right: none;
    font-weight: 500;
}
.vertical-tab .tab-content {
    color: #000000;
    background: rgb(251 251 251);
    font-size: 14px;
    /* border: 3px solid #ccc; */
    /* letter-spacing: 1px; */
    line-height: 23px;
    padding: 20px;
    padding-right: 0px;
    /* display: table-cell; */
    box-shadow: 0 0 10px #cacaca;
    margin-left: 10px;
}
.vertical-tab .tab-content h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px;
    color: var(--color-primary);
    padding: 8px 0px;
}
@media only screen and (max-width: 479px) {
    .vertical-tab .nav-tabs {
        width: 100%;
        padding-left: 0px;
        display: block;
    }
    .vertical-tab .nav-tabs li a {
        padding: 15px 10px 14px;
    }
    .vertical-tab .tab-content {
        font-size: 14px;
        display: block;
        width: 100%;
    }
}
.tab-content .ol_styles {
    margin-bottom: 0px
}
.tab-content .ol_styles li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 7px;
}
.tab-content .ol_styles li p {
    text-align: justify;
}
.tab-content .ol_styles li::before {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f111";
    font-weight: 600;
    left: 0;
    width: 24px;
    height: 24px;
    padding-left: 0PX;
    text-align: center;
    line-height: 25px;
    font-size: 8px;
}
.tab-pane h4 {
    color: #3c3b3b;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}
.tab-pane {
    height: 635px;
    overflow-y: auto;
    padding-right: 20px;
    padding-left: 10px;
    overflow-x: hidden;
}
.mobile-view {
    display: none;
}
.serv-matter1 p {
    font-size: 15px;
    margin-bottom: 7px;
}
.serv-matter1 h2 {
    color: var(--color-secondary);
    font-size: 24px;
    margin: 7px 0px;
    text-transform: uppercase;
}
.serv-matter1 .col-md-3:nth-child(even) {
    background-color: #fff;
}
.serv-matter1 .col-md-3:nth-child(odd) {
    background-color: #f0f0f0;
}
.serv-matter1 .col-md-3:nth-child(2) {
    border-left: 2px dotted var(--color-default);
    border-right: 2px dotted var(--color-default);
}
.serv-matter1 .col-md-3:nth-child(4) {
    border-left: 2px dotted var(--color-default);
}
.serv-matter1 b {
    font-size: 20px;
    text-transform: uppercase;
}
.mileston-sec .main-timeline .timeline {
    position: relative;
    margin-top: -129px;
}
.mileston-sec .main-timeline .timeline:first-child {
    margin-top: 0;
}
.mileston-sec .main-timeline .timeline:before,
.mileston-sec .main-timeline .timeline:after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
}
.mileston-sec .main-timeline .timeline:before {
    content: "";
    width: 100%;
    height: 100%;
    box-shadow: -8px 0 5px -5px rgba(0, 0, 0, 0.5) inset;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
.mileston-sec .main-timeline .timeline-icon {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 25px solid transparent;
    border-top-color: var(--color-primary);
    border-right-color: var(--color-primary);
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    transform: rotate(45deg);
}
.mileston-sec .main-timeline .year {
    display: block;
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    margin: auto;
    font-size: 30px;
    font-weight: bold;
    color: var(--color-primary);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: rotate(-45deg);
}
.mileston-sec .main-timeline .timeline-content {
    width: 35%;
    float: right;
    background: var(--color-primary);
    padding: 30px 20px;
    margin: 50px 0;
    z-index: 1;
    position: relative;
}
.mileston-sec .main-timeline .timeline-content:before {
    content: "";
    width: 20%;
    height: 15px;
    background: var(--color-primary);
    position: absolute;
    top: 50%;
    left: -20%;
    z-index: -1;
    transform: translateY(-50%);
}
.mileston-sec .main-timeline .title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 10px 0;
}
.mileston-sec .main-timeline .description {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    margin: 0;
}
.mileston-sec .main-timeline .timeline:nth-child(2n):before {
    box-shadow: 8px 0 5px -5px rgba(0, 0, 0, 0.5) inset;
}
.mileston-sec .main-timeline .timeline:nth-child(2n) .timeline-icon {
    transform: rotate(-135deg);
}
.mileston-sec .main-timeline .timeline:nth-child(2n) .year {
    transform: rotate(135deg);
}
.mileston-sec .main-timeline .timeline:nth-child(2n) .timeline-content {
    float: left;
}
.mileston-sec .main-timeline .timeline:nth-child(2n) .timeline-content:before {
    left: auto;
    right: -20%;
}
.mileston-sec .main-timeline .timeline:nth-child(2n) .timeline-icon {
    border-top-color: var(--color-secondary);
    border-right-color: var(--color-secondary);
}
.mileston-sec .main-timeline .timeline:nth-child(2n) .year {
    color: var(--color-secondary);
}
.mileston-sec .main-timeline .timeline:nth-child(2n) .timeline-content,
.mileston-sec .main-timeline .timeline:nth-child(2n) .timeline-content:before {
    background: var(--color-secondary);
}
.mileston-sec .main-timeline .timeline:nth-child(3n) .timeline-icon {
    border-top-color: var(--color-primary);
    border-right-color: var(--color-primary);
}
.mileston-sec .main-timeline .timeline:nth-child(3n) .year {
    color: var(--color-primary);
}
.mileston-sec .main-timeline .timeline:nth-child(3n) .timeline-content,
.mileston-sec .main-timeline .timeline:nth-child(3n) .timeline-content:before {
    background: var(--color-primary);
}
.mileston-sec .main-timeline .timeline:nth-child(4n) .timeline-icon {
    border-top-color: var(--color-secondary);
    border-right-color: var(--color-secondary);
}
.mileston-sec .main-timeline .timeline:nth-child(4n) .year {
    color: var(--color-secondary);
}
.mileston-sec .main-timeline .timeline:nth-child(4n) .timeline-content,
.mileston-sec .main-timeline .timeline:nth-child(4n) .timeline-content:before {
    background: var(--color-secondary);
}
@media only screen and (max-width: 1199px) {
    .mileston-sec .main-timeline .timeline {
        margin-top: -103px;
    }
    .mileston-sec .main-timeline .timeline-content:before {
        left: -18%;
    }
    .main-timeline .timeline:nth-child(2n) .timeline-content:before {
        right: -18%;
    }
}
@media only screen and (max-width: 990px) {
    .mileston-sec .main-timeline .timeline {
        margin-top: -127px;
    }
    .mileston-sec .main-timeline .timeline-content:before {
        left: -2%;
    }
    .mileston-sec .main-timeline .timeline:nth-child(2n) .timeline-content:before {
        right: -2%;
    }
}
@media only screen and (max-width: 767px) {
    .mileston-sec .main-timeline .timeline {
        margin-top: 0;
        overflow: hidden;
    }
    .mileston-sec .main-timeline .timeline:before,
    .mileston-sec .main-timeline .timeline:nth-child(2n):before {
        box-shadow: none;
    }
    .mileston-sec .main-timeline .timeline-icon,
    .mileston-sec .main-timeline .timeline:nth-child(2n) .timeline-icon {
        margin-top: -30px;
        margin-bottom: 20px;
        position: relative;
        transform: rotate(135deg);
    }
    .mileston-sec .main-timeline .year,
    .mileston-sec .main-timeline .timeline:nth-child(2n) .year {
        transform: rotate(-135deg);
    }
    .mileston-sec .main-timeline .timeline-content,
    .mileston-sec .main-timeline .timeline:nth-child(2n) .timeline-content {
        width: 100%;
        float: none;
        border-radius: 0 0 20px 20px;
        text-align: center;
        padding: 25px 20px;
        margin: 0 auto;
    }
    .mileston-sec .main-timeline .timeline-content:before,
    .mileston-sec .main-timeline .timeline:nth-child(2n) .timeline-content:before {
        width: 15px;
        height: 25px;
        position: absolute;
        top: -22px;
        left: 50%;
        z-index: -1;
        transform: translate(-50%, 0);
    }
}
.home-care-page .col-md-6 {
    border-bottom: 1px dashed #000;
    border-right: 1px dashed #000;
    padding: 25px 15px;
}
.home-care-page .col-md-6:nth-child(even) {
    border-right: 0px;
}
.home-care-page .col-md-6:nth-child(5) {
    border-bottom: 0px;
    border-right: 0px;
}
.home-care-page img {
    width: 55px;
}
.homecare-icon {
    display: inline-block;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0px 0px 5px #6f6e6e;
}
.home-care-page .col-md-6:nth-child(1),
.home-care-page .col-md-6:nth-child(4),
.home-care-page .col-md-6:nth-child(5) {
    background: #fef8f8;
}
.mileston-sec .main-timeline .timeline:nth-child(2) {
    position: relative;
    margin-top: -116px;
}
.mileston-sec .main-timeline .timeline:nth-child(3) {
    position: relative;
    margin-top: -153px;
}
.gallery_block .box {
    background-image: var(--color-primary);
    text-align: center;
    overflow: hidden;
    position: relative;
    /* box-shadow: 0 0 10px #767676;
    border-radius: 19px; */
}
.gallery_block .box:before {
    content: "";
    border: 1px solid var(--color-secondary);
    opacity: 0;
    transform: translateX(-20px);
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    transition: .5s;
    z-index: 1
}
.gallery_block .box:hover:before {
    opacity: 1;
    transform: translateX(0)
}
.gallery_block .box img {
    width: 100%;
    height: auto;
    transform: translateX(0px) scale(1.15);
    transition: .5s;
    height: 154px;
}
.gallery_block .box:hover img {
    opacity: .5;
    transform: translateX(20px) scale(1.15)
}
.gallery_block .box .box-content {
    color: #fff;
    text-align: left;
    opacity: 0;
    transform: scale(0);
    transform-origin: left bottom;
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 1;
    transition: .5s
}
.gallery_block .box:hover .box-content {
    opacity: 1;
    transform: scale(1)
}
.gallery_block .box .title {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0
}
.gallery_block .box .post {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: lowercase;
    margin: 0 0 11px;
    display: inline-block
}
.gallery_block .box .icon {
    padding: 0;
    margin: 0;
    list-style: none
}
.gallery_block .box .icon li {
    margin: 0 3px;
    display: inline-block
}
.gallery_block .box .icon li a {
    color: #fff;
    background: var(--color-primary);
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .9);
    display: block;
    transition: .3s
}
.gallery_block .box .icon li a:hover {
    color: #fff;
    background: var(--color-primary)
}
.gallery_block {
    margin-bottom: 50px;
    background: #fff;
    box-shadow: 0 0 10px #767676;
}
.events-page .container {
    max-width: 1300px;
}
.inner-section2 {
    padding: 50px 0px 90px;
}
.modal-body {
    padding: 0;
    background: linear-gradient(to right, transparent, #3b637b, var(--color-primary));
}
.p-textblock {
    padding: 45px 10px 15px;
}
:root {
    --main-color: var(--color-primary);
}
.serviceBox2 {
    color: var(--main-color);
    text-align: center;
    padding: 28px 25px 13px;
    border: 3px solid var(--main-color);
    border-radius: 20px;
    box-shadow: 0 0 0 10px #fff inset, 0 0 20px var(--main-color) inset;
    position: relative;
    display: inline-block;
    align-content: center;
}
.serviceBox2 .title {
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    text-transform: capitalize;
    margin: 0 0 10px;
    transition: all 0.3s;
    color: #2e2e2e;
}
.serviceBox2 .description {
    color: #202020;
    font-size: 15px;
    line-height: 25px;
    margin: 0 0 20px;
    text-align: center;
}
.serviceBox2 .service-icon {
    font-size: 40px;
    line-height: 40px;
}
.serviceBox2.red {
    --main-color: var(--color-secondary);
}
@media only screen and (max-width: 1199px) {
    .serviceBox2 {
        margin: 0 0 30px;
        display: block;
    }
}
.a-mvv {
    padding-top: 25px;
}
.a-mh {
    min-height: 256px;
}
.serviceBox2 .title {
    border: 2px dotted var(--color-default);
    padding: 5px 10px;
}
.events-page ::-webkit-scrollbar-track {
    /* -webkit-box-shadow: outset 0 0 6px rgba(0,0,0,0.3); */
    border-radius: 10px;
}
.events-page ::-webkit-scrollbar {
    width: 8px;
    /* background-color: #F5F5F5; */
}
.events-page ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); */
    background-color: #eaeaea;
}
.counter-value p {
    margin-bottom: 0px;
}
.form-group .col-md-12 {
    padding: 0px;
}
select.form-control:focus {
    color: #fff;
    background-color: var(--color-primary);
    border-color: none;
    outline: 0;
}
select {
    white-space: nowrap;
    text-overflow: ellipsis;
}
select option:hover {
    color: #000;
}
.right-side-book-btn button {
    background-color: #034ea1;
    font-size: 14px;
    color: #fff;
    border: 0;
    border-radius: 6px 6px 0 0;
    transform: rotate(-90deg);
    padding: 10px 30px 10px 20px;
    box-shadow: 0 0 10px #000;
    position: absolute;
    top: 28px;
    left: -67px;
    display: flex;
    align-items: center;
}
.right-side-book-btn {
    width: 172px;
    position: fixed;
    top: 150px;
    right: -174px;
    transition: .5s ease-in-out;
    z-index: 999;
}
.hm-book-btn-container {
    width: 200px;
    position: fixed;
    top: 150px;
    right: -200px;
    transition: .5s ease-in-out;
    z-index: 999
}
.hm-book-btn-div {
    position: relative;
    background: #fff
}
.hm-book-btn-container button:hover,
.rgtBox a {
    font-size: 14px
}
.rgtbox-show {
    right: 0 !important;
    transition: .5s ease-in-out
}
.rgtBox a {
    background: #fff;
    padding: 6px 10px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ccc;
}
.rgtBox a:last-child {
    border-bottom: 0px;
}
.rgtBox a:hover {
    background: var(--color-secondary);
    color: #fff;
}
.rgtBox a:hover img {
    filter: brightness(0) invert(1);
}
.hm-book-btn-container button:hover,
.rgtBox a {
    font-size: 14px;
    text-decoration: none !important;
    cursor: pointer;
}
.hm-book-btn-container button {
    background-color: var(--color-primary);
    font-size: 14px;
    color: #fff;
    border: 0;
    border-radius: 6px 6px 0 0;
    transform: rotate(-90deg);
    padding: 10px 30px 10px 20px;
    box-shadow: 0 0 10px #000;
    position: absolute;
    top: 43px;
    left: -86px;
    display: flex;
    align-items: center
}
.custom-chevron-right {
    display: inline-block;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    transition: transform .3s ease;
    position: relative;
    left: 10px;
    border-radius: 1px;
    top: 2px;
}
.rotate {
    transform: rotate(221deg)
}
.rotate-extra {
    transform: rotate(43deg);
    top: 0px;
}
.rgtBox img {
    width: 30px;
}
#homecaremessage .alert.alert-success {
    margin-bottom: 0;
    padding: 0 15px;
    border: none;
    border-radius: 0;
    padding-bottom: 8px
}
input#myFile {
    color: #b7384c
}
.homecare .formArea .inlineForm>div {
    width: 33.33%;
    padding-right: 15px;
    float: left;
    height: 48px
}
.formArea .form-group span {
    font-size: 10px;
    line-height: 8px
}
.formArea .form-group {
    margin-bottom: 7px
}
.homecare .formArea .form-control {
    width: 100% !important;
    outline: 0
}
.service-location {
    font-size: 11px !important;
    color: #b7384c !important;
    padding: 0;
    padding-bottom: 6px !important
}
.homecare .formArea .inlineForm>div:last-child {
    padding-right: 0
}
.homecare form textarea.form-control {
    height: 80px
}
.homecare .formArea .form-control {
    width: 100% !important;
    outline: 0;
    padding: 0 5px;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #ccc
}
.homecare form .form-control {
    font-size: 18px;
    line-height: 40px;
    height: 55px;
}
.homecare form .form-control textarea {
    height: 200px;
}
.homecare form input[type=submit] {
    background: var(--color-primary);
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 0 10px #0000004d;
    padding: 6px 12px;
    margin-top: 33px;
    margin-bottom: 10px;
}
select.form-control option {
    font-size: 15px;
    padding-bottom: 10px;
}
.home-care-page {
    position: relative;
    background: url(assets/images/search-page-bg.svg) left center no-repeat
}
.homecare-form {
    position: relative;
    top: 0;
    margin: auto;
    width: 450px;
    z-index: 1;
}
.homecare-form .formArea {
    background-color: #fff;
    padding: 0;
    position: relative;
    border-radius: 10px
}
.homecare-form .formArea form {
    padding: 20px;
    padding-top: 3px;
    box-shadow: 0 10px 61px -10px rgba(199, 201, 206, .74)
}
input[type=file] {
    color: #b7384c
}
.homecare-form .btn{
    background: var(--color-secondary);
    color: #fff;
}
.homecare-form .error,
.homecare-form .text-danger {
    color: #b7384c;
    font-size: 10px;
    display: block
}
.homecare-form h3 {
    padding-bottom: 7px;
    padding: 20px 0 20px 0;
    text-align: center;
    color: #fff;
    font-weight: 600;
    background: var(--color-secondary);
    font-size: 25px;
    margin-bottom: unset !important;
    letter-spacing: 0;
    text-transform: uppercase;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}
.homecare .formArea .inlineForm>div {
    width: 100%;
    padding: 0;
    margin-bottom: 0
}
#homecaremobile-error {
    width: 191px
}
.msg-col {
    line-height: 15px;
    /* padding-left: 5px; */
}
.abt-dct p {
    font-size: 15px;
    line-height: 30px;
    text-align: justify;
}
.doc-block1 .doc-img img {
    border: 8px solid #f5f5f5;
    box-shadow: 0px 2px 10px #c5c5c5;
    /* width: 330px; */
}
.abt-dct h3 {
    margin-bottom: 20px;
    color: var(--color-secondary);
    border-left: 3px solid var(--color-primary);
    padding-left: 15px;
}
.abt-btm-doc {
    margin-top: 20px;
}
.abt-btm-doc img {
    border: 6px solid #f5f5f5;
    box-shadow: 0px 2px 10px #c5c5c5;
}
.page-book-form-show .page-book-form {
    opacity: 1;
    visibility: visible;
}
.page-book-form {
    position: absolute;
    /* top: 97px; */
    top:0px;
    right: 0px;
    width: fit-content;
    max-width: 100%;
    height: 100%;
    padding-right: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    left: 0px;
    margin: auto;
}
.page-book-btn {
    right: 0px;
    position: absolute;
    bottom: 12px;
}
.change-color1 {
    animation: BLINK1 0.8s infinite;
    cursor: pointer;
    color: #fff;
    padding: 6px 10px;
    border-radius: 30px;
}
@-webkit-keyframes BLINK1 {
    0%,
    50% {
        border: 1px solid #fff;
        background: var(--color-primary);
    }
    51%,
    100% {
        background-color: #aa0b36;
    }
}
.page-book-form .close-btn {
    position: absolute;
    top: 19px;
    right: 45px;
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}
.page-book-form .page-book-form-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-default);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    z-index: 1;
}
.page-book-form-show .page-book-form .page-book-form-backdrop {
    opacity: 0.70;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
select {
    --selectHoverCol: #999;
    --selectedCol: var(--color-secondary);
    width: 100%;
    font-size: 1em;
    padding: 0.3em;
    background-color: #fff;
}
select:focus {
    border-radius: 0px;
    border-color: var(--color-secondary);
    background: #fff;
    outline: none;
}
select:not(:-internal-list-box) {
    overflow: hidden;
}
.select-wrap {
    position: relative;
}
.select-wrap:focus-within select {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10
}
option:hover {
    background-color: var(--selectHoverCol);
    color: #fff;
}
select option {
    overflow-y: hidden;
    overflow-x: hidden;
}
select {
    overflow: hidden;
}
option:checked {
    box-shadow: 0 0 1em 100px var(--selectedCol) inset;
}
select option:hover {
    background-color: var(--color-secondary);
    color: #fff;
}
.testi .timeline-content img {
    width: 110px;
}
.timeline-content .testi-quotes {
    position: relative;
    float: left;
    top: -17px;
}
.timeline-content .testi-quotes-btm {
    position: relative;
    float: right;
    bottom: -17px;
}
#secondDropdown {
    display: none;
}
#packagesoneDropdown {
    display: none;
}
#packagestwoDropdown {
    display: none;
}
#packagesthreeDropdown {
    display: none;
}
#packagesfourDropdown {
    display: none;
}
.book-package-btn a {
    background: var(--color-primary);
    color: #fff;
    padding: 3px 10px;
    border-radius: 10px;
}
.modal-packages-info {
    background: #fff;
    padding: 30px 60px;
    box-shadow: inset 0px 0px 16px #a1a1a1;
}
.package-dialog {
    max-width: 520px;
    margin: 4rem auto;
    text-align: center;
}
.package-code-contents {
    border: 5px solid var(--color-primary);
}
.modal-packages-info h2 {
    color: var(--color-secondary);
    font-size: 27px;
    border-bottom: 1px solid;
    display: inline-block;
    padding-bottom: 3px;
    margin-bottom: 25px;
}
.modal-packages-info .book-corp {
    background: var(--color-secondary);
    color: #fff;
}
.top-social-items {
    position: absolute;
    z-index: 91;
    text-align: center;
    top: 26px;
    right: 369px;
    width: auto;
}
.top-social-items ul li {
    display: inline-block
}
.top-social-items li a {
    color: #000;
    border-right: 1px dashed #000;
    text-align: center;
    line-height: 36px;
    font-size: 17px;
    margin: 0px 1px;
    padding: 4px 9px 7px;
}
.top-social-items li a:hover {
    color: var(--color-secondary);
}
.home-care-page a {
    background: var(--color-primary);
    color: #fff;
    padding: 5px 8px;
    border-radius: 40px;
}
.location-offers h3 {
    font-size: 20px;
    display: inline-block;
    background: #db4848;
    color: #fff;
    padding: 5px 10px;
}
.location-offers h6 {
    margin: 10px 0px;
    font-size: 19px;
}
.ol_styles {
    padding: 0;
    display: inline-grid;
    padding-left: 20px;
}
.ol_styles li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    line-height: 30px;
    font-size: 15px;
    text-align: justify;
}
.ol_styles li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
    line-height: 28px;
    color: #373434;
    font-weight: 900;
    content: "\f101";
    font-family: "FontAwesome";
}
.ol_styles1 li {
    display: inline-block;
    padding: 10px;
}
.ol_styles1 li a {
    background: var(--color-primary);
    color: #fff;
    padding: 2px 5px;
}
.location-offers {
    background: #fff;
    padding: 35px;
    box-shadow: 0px 0px 14px #d0d0d0;
    margin-bottom: 30px;
}
.ol_styles1 li:nth-child(1) {
    font-weight: 800;
}
.location-head {
    text-align: center;
}
.pad-20 {
    padding-top: 30px;
}
.serviceBox2 img {
    width: 61px;
    display: block;
    margin: 0px auto 9px;
}
.table-bordered thead th {
    background: var(--color-primary);
    color: #fff;
}
.table td {
    font-size: 15px;
    background: #f5f5f5;
}
.file-upload {
    position: absolute;
    overflow: hidden;
    display: block;
    z-index: 1;
}
.file-upload input[type="file"] {
    position: absolute;
    font-size: 100px;
    opacity: 0;
    right: 0;
    top: 0;
}
.btn-upload {
    display: inline-block;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 6px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}
.cta {
    position: relative;
    padding-top: 60px;
}
select.form-control:not([size]):not([multiple]) {
    padding: 7px 10px;
}
button .fa-trash {
    position: absolute;
    right: 68px;
    bottom: 15.4%;
    font-size: 26px;
}
button{
    background: transparent;
    cursor: pointer;
}
.dustbin-button {
    position: absolute;
    right: 0px;
    bottom: 11.8%;
    z-index: 1;
}
.ol_styles1 li span{
    color: red;
}
/* .modal-dialog {
    max-width: 500px;
    margin: 9.75rem auto
} */

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    /* background-color: #fbf4f4; */
    background-clip: padding-box;
    /* border: 1px solid rgba(0, 0, 0, .2); */
    border-radius: .3rem;
    outline: 0;
    /* height: 400px; */
    /* overflow-y: scroll; */
    /* border: 2px solid #333; */
}
button.close:hover {
    color: #fff;
    text-decoration: none;
    opacity: 1;
}
.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover{
    opacity: 1;
}
button.close {
    padding: 0px;
    width: 50px;
    background: var(--color-secondary);
    height: 50px;
    text-decoration: none;
    right: -25px;
    top: -25px;
    text-shadow: none;
    border-radius: 50%;
    opacity: 1;
    color: #fff;
    position: absolute;
    font-size: 45px;
    line-height: 0px;
}
.modal-content::-webkit-scrollbar {
    width: 10px
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1
}

.modal-content::-webkit-scrollbar-thumb {
    background: #888
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #555
}
.home-modal .modal-dialog {
    max-width: 538px;
    margin: 4rem auto;
}

.togglepackages {
    text-decoration: none;
    color: #555;
    /* font-size: 13px; */
    padding: 10px 10px;
    line-height: 20px;
    /* display: block; */
    /* border: 1px solid #d0d0d0; */
    /* width: 590px; */
    margin-bottom: -1px;
}
.togglepackages:hover{
color:#555;
}
.fa-plus {
    color: var(--color-secondary);
    /* margin-right: 20px; */
    margin-top: 8px;
    position: relative;
    /* font-size: 20px; */
    float: right;
    left: -4px;
}

.fa-minus {
	color:var(--color-secondary);
    /* margin-right: 20px; */
    margin-top: 8px;
    position: relative;
    /* font-size: 20px; */
    float: right;
    left: -4px;
}
.sub-expand p {
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
    margin: 0 0 4px;
    padding: 0 0 4px;
    border-bottom: 1px solid #ccc;
}
.sub-expand {
	display: none;
	background: #fff;
	padding: 10px 15px 3px 15px;	
    box-shadow: 0px 0px 9px #00000038;
    margin: 10px 0px;
} 
.sub-expand p:last-child{
    border-bottom: 0px;
}