body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    position: relative;
    font-weight: 400;
}

header {
    width: 100%;
    position: fixed;
    z-index: 11;
    transition: all 0.6s ease;
}

header::before {
    position: absolute;
    content: "";
    height: 0%;
    width: 100%;
    left: 0;
    top: 0;
    background: #0E143D;
    transition: all 0.6s ease;
    z-index: 0;
}

header.sticky::before {
    height: 100%;
}

.logo {
    float: left;
    padding: 26px 0;
    color: #FFF;
    position: relative;
}

.logo img {
    float: left;
}

.logo-label {
    float: left;
    line-height: 40px;
    padding: 6px 17px;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #FFF;
    letter-spacing: 1px;
}

nav {
    float: right;
    padding: 8px 0 0 0;
}

.nav-trigger {
    display: none;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
}

.menu-glade {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    right: -100%;
    transition: all 0.3s ease;
}

nav.show .menu-glade {
    right: 0;
}

nav ul {
    margin: 0;
    padding: 0;
}

.mobile-menu-header {
    display: none;
    background: linear-gradient(to bottom right, #0E143D, #2093D1);
    white-space: nowrap;
    font-size: 18px;
    color: #FFF;
}

.mobile-menu-header i {
    background: rgba(51, 51, 51, 0.452);
    padding: 10px;
    color: #FFF;
    margin-right: 15px;
    cursor: pointer;
}

nav.show .mobile-menu-header {
    display: block;
}

nav ul li {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    /* display: inline-block; */
}

nav ul li a.list-group-item {
    background: none;
    box-shadow: unset;
    border: 0;
    padding: 20px 20px;
    display: block;
    text-decoration: none;
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: none;
    transition: all 0.6s ease;
}

nav ul li a.list-group-item:hover {
    color: #F1F1F1;
    text-decoration: none;
    /* text-shadow: 0 0 5px #aaa; */
}

nav ul li a.list-group-item:not(.active)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    z-index: -7;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    background-color: #FFF;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

nav ul li a.list-group-item:not(.active):hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

nav ul li a.list-group-item.active {
    background: rgba(255, 255, 255, 0);
    color: #2093D1;
}

.page-container {
    float: left;
    width: 100%;
    /* height: 100vh;
    padding: 0px 0px; */
    scroll-behavior: smooth;
    /* overflow-y: hidden; */
}

.slider {
    float: left;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.slider-inner {
    background-image: url(../images/banner-bg.jpg);
    float: left;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    color: #FFF;
    padding: 100px 0 0 0;
    background-size: 100%;
    background-position-y: -100px;
}

.slider-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    transition: all 0.6s ease;
    background: rgba(0, 30, 87, 0.94);
    background-size: cover;
    background-position: center bottom;
    top: 0;
}

.slider-inner::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    transition: all 0.6s ease;
    background: url(../images/back-img.png);
    background-size: 2784px;
    background-position: -509px center;
    top: 0;
    background-repeat: no-repeat;
}

.text-midle {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    z-index: 10;
    padding-top: 60px;
    ;
}

.slider-inner .container {
    position: relative;
    z-index: 10;
}

.slider-text h1 {
    font-size: 36px;
    margin-bottom: 30px;
    font-family: 'Limelight', cursive;
    color: #FFF;
    margin-bottom: 5px;
}

.slider-text p {
    padding: 20px 0 0 0;
    font-size: 14px;
    line-height: 30px;
}

.slider-text span {
    white-space: nowrap;
}

.mobi-download-section {
    float: left;
    width: 100%;
    padding: 20px 0 100px 0;
}

.text-right.mobile-slide-img {
    text-align: center !important;
    margin-top: 60px;
}

.app-download-label {
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin-top: 30px;
}

.app-links-title {
    float: left;
    width: 100%;
    font-weight: 600;
    color: #000;
}

.blue-color {
    color: #0E143D;
    ;
}

.orange-color {
    color: #2093D1;
    ;
}

.app-link-group {
    float: left;
    padding: 30px 0 0 0;
}

.app-link {
    float: left;
    margin-right: 40px;
}

.app-link-group .app-link:last-child {
    margin-right: 0px;
}

.download-link:hover {
    text-decoration: none;
    color: #0E143D;
}

.app-link img {
    height: 45px;
}

.download-link i {
    color: #0E143D;
    transition: all 0.6s ease;
}

.download-link:hover i {
    color: #2093D1;
    margin-right: 10px;
}

.section-1,
.section-2,
.section-3,
.section-4,
.section-5 {
    float: left;
    width: 100%;
    transition: all 0.6s ease;
}

.section-2 {
    background-color: #FFF;
    padding: 100px 0;
}

.section-3 {
    background: #0E143D url(../images/background-section.jpg);
    padding: 150px 0;
    background-size: cover;
}

.section-4 {
    background-color: #FFFFFF;
    padding: 150px 0;
}

.section-5 {
    background-color: #0E143D;
    padding: 150px 0;
}

.section-5 {
    background-color: #FFF;
    padding: 150px 0;
}

.section-title {
    text-align: center;
    float: left;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}


/* .section-title::after {
    position: absolute;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    color: rgba(0, 0, 0, 0.06);
    right: 30px;
    top: -130px;
    z-index: 0;
    transition: all 0.6s ease;
    font-weight: 900;
    font-size: 200px;
} */

.section-title h1 {
    color: #0E143D;
    margin-bottom: 20px;
    position: relative;
    padding: 0 0 20px 0;
    font-size: 36px;
    font-family: 'Limelight', cursive;
}


/* .section-title h1::after {
    position: absolute;
    content: "";
    height: 6px;
    width: 100px;
    background: linear-gradient(to right, #0E143D, #2093D1);
    left: calc(50% - 50px);
    bottom: 0px;
    z-index: 0;
    border-radius: 10px;
} */

.section-title h5 {
    color: #666;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.color-white h1 {
    color: #FFF;
}

.color-white h5 {
    color: rgba(255, 255, 255, 0.842);
}

.special-card {
    float: left;
    width: 100%;
    -webkit-box-shadow: 0 15px 30px 0 rgba(3, 82, 83, 0.253);
    box-shadow: 0 15px 30px 0 rgba(3, 82, 83, 0.253);
    border-radius: 6px;
    color: #666;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease;
}

.special-card:hover {
    color: #FFF;
}

.special-card::before {
    width: 80px;
    height: 80px;
    position: absolute;
    content: "";
    background: linear-gradient(to bottom right, #0E143D, #2093D1);
    left: 10px;
    top: 10px;
    z-index: 0;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.special-card:hover::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0%;
}

.special-card::after {
    position: absolute;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    color: rgba(0, 0, 0, 0.1);
    right: 0px;
    bottom: -30px;
    z-index: 0;
    transition: all 0.6s ease;
    font-weight: 900;
    font-size: 100px;
    opacity: 0;
}

.special-card:hover::after {
    opacity: 1;
}

.special-card-header {
    float: left;
    width: 100%;
    padding: 10px;
    position: relative;
    z-index: 2;
}

.special-icon {
    float: left;
    width: 80px;
    height: 80px;
    font-size: 48px;
    padding: 4px 0px;
    color: #FFF;
    background: linear-gradient(to bottom right, #0E143D, #2093D1);
    text-align: center;
    border-radius: 6px;
}

.special-card:hover .special-icon {
    background: none;
}

.special-card-header h4 {
    float: left;
    width: calc(100% - 100px);
    padding: 9px 20px;
    font-size: 28px;
}

.special-card p {
    width: 100%;
    padding: 20px;
    position: relative;
    z-index: 2;
}


/*   About Block   */

.about-section {
    position: relative;
    overflow: hidden;
}

.about-content {
    float: left;
    width: 100%;
    text-align: justify;
}

.points-style-1 {
    margin: 0;
    padding: 0;
}

.points-style-1 li {
    margin: 0;
    padding: 5px 0 5px 30px;
    list-style: none;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    position: relative;
}

.points-style-1 li::before {
    position: absolute;
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    left: 0;
    top: 8px;
    font-size: 14px;
}

.about-image {
    float: left;
    width: 100%;
    text-align: center;
    position: relative;
}

.about-img-inner {
    position: absolute;
    width: 500px;
    top: 60px;
}

.about-img-inner img {
    position: relative;
    z-index: 5;
    width: 100%;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    -webkit-animation-name: bounce_fountainY;
    animation-name: bounce_fountainY;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    animation-direction: reverse alternate-reverse;
}

.about-img-inner::before {
    position: absolute;
    content: "";
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(94, 49, 219, 0.747);
    top: -60px;
    right: -80px;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    -webkit-animation-name: bounce_fountainX;
    animation-name: bounce_fountainX;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    animation-direction: normal;
}

.about-img-inner::after {
    position: absolute;
    content: "";
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(0, 179, 182, 0.856);
    top: -40px;
    right: -50px;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    -webkit-animation-name: bounce_fountainX;
    animation-name: bounce_fountainX;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    animation-direction: normal;
}

@-webkit-keyframes bounce_fountainX {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    50% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes bounce_fountainX {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    50% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@-webkit-keyframes bounce_fountainY {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounce_fountainY {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


/* Features Section  */

.features-section {
    float: left;
    width: 100%;
    position: relative;
    padding: 0px 0 50px 0;
    background: #fff;
}

.features-title {
    padding: 10px 20px;
    text-align: center;
    color: #FFF;
    background-color: #2093D1;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.features-section-block {
    float: left;
    width: 100%;
    min-height: calc(100vh - 231px);
    display: flex;
    align-items: center;
}

.feature-list {
    margin: 0;
    padding: 0;
    color: #000;
}

.feature-list>li {
    float: left;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    list-style: none;
    border-bottom: 1px solid #DDD;
    cursor: pointer;
}

.feature-list>li:hover {
    color: #2093D1;
}

.feature-list>li.active {
    color: #2093D1;
}

.feature-options:hover li.active {
    color: #000000;
}

.feature-options:hover li.active:hover {
    color: #2093D1;
}

.feature-list>li:last-child {
    border-bottom: 0px solid #aaaaaa;
}

.feature-title {
    display: block;
}

.feature-icon {
    float: left;
    width: 40px;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.05);
    text-align: center;
    border-radius: 6px;
    color: #0E143D;
}

.feature-title h5 {
    float: right;
    width: 100%;
    padding: 0px 0;
    font-weight: 600;
}

.feature-content {
    float: left;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    min-height: 75px;
}

.image-show {
    position: absolute;
    width: 220px;
    top: 20px;
    left: calc(50% - 115px);
    display: none;
}

.feature-list li.active .image-show {
    display: block;
}

.feature-list li:hover .image-show {
    display: block;
    z-index: 10;
    ;
}

.image-show img {
    width: 100%;
    position: relative;
    z-index: 1;
    /* padding: 27px 18px 34px 18px; */
}


/* .image-show::before {
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    right: 0;
    height: 100%;
    background-image: url(../images/feauturesMobile.png);
    z-index: 2;
    background-size: cover;
} */

.mobile-slide {
    width: 300px;
    position: relative;
    height: 530px;
    padding: 17px 10px;
    margin: 60px auto 0 auto;
}

.mobile-slide::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../images/mobile-slider-bg.png);
    z-index: 9;
    background-size: 100%;
    box-shadow: 0 0 5px #aaa;
    border-radius: 45px;
}

.slick-arrow {
    display: none !important;
}


/* Doctors section  */

.doctors-section {
    float: left;
    width: 100%;
    height: calc(100vh - 76px);
    position: relative;
    padding: 120px 0;
    background: url(../images/DoctorBanner.jpg);
    background-size: cover;
    color: #FFF;
    display: flex;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.doctors-title {
    font-size: 36px;
    font-family: 'Limelight', cursive;
    color: #fff;
}

.sub-text {
    margin-bottom: 30px;
}

.doctors-btn {
    background: #2093D1;
    padding: 6px 30px 5px 30px;
    color: #FFF;
    font-weight: 600;
    text-transform: uppercase;
    font-weight: 12px;
    border-radius: 30px;
    margin-top: 20px;
    transition: all 0.6s ease;
    cursor: pointer;
}

.doctors-btn:hover {
    color: #0E143D;
    text-decoration: none;
}


/* Download section  */

.download-section {
    float: left;
    width: 100%;
    position: relative;
    padding: 30px 0 60px 0;
    background: url(../images/bg-dot.jpg);
    background-size: 13px;
    color: #FFF;
    border-top: 8px solid #2093D1;
}


/* Steps section  */

.steps-section {
    float: left;
    width: 100%;
    height: calc(100vh - 80px);
    position: relative;
    padding: 60px 0 60px 0;
    background: #0E143D;
    color: #FFF;
    border-top: 4px solid #2093D1;
    border-bottom: 4px solid #2093D1;
    display: flex;
    align-items: center;
}

.step-title {
    padding: 20px 0 0 0;
}


/* Tab section  */

.tab-content {
    padding: 60px 0 60px 0;
}


/*  contact section   */

.contact-section {
    float: left;
    width: 100%;
    position: relative;
    padding: 0px 0 50px 0;
    overflow: hidden;
    border-top: 4px solid #2093D1;
    background: url(../images/bg-dot.jpg);
    background-size: auto;
    background-size: 13px;
}

.contact-title {
    font-family: 'Limelight', cursive;
    margin-bottom: 20px;
    font-size: 30px;
}

.contact-title span,
.contact-text span {
    float: left;
    width: 100%;
    ;
}


/* .contact-section::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 200%;
    background-color: #f9f9f9;
    top: -59%;
    left: 0px;
    transform: rotate(45deg);
} */

.sub-section-title {
    padding: 5px 0 5px 0px;
    text-align: left;
    margin-bottom: 20px;
    font-family: 'Limelight', cursive;
    font-size: 24px;
    color: #0E143D;
}

.bg-blue {
    background: #0E143D !important;
}

.faq-section {
    float: left;
    width: 100%;
    position: relative;
    padding: 0px 0 50px 0;
    overflow: hidden;
    border-top: 4px solid #2093D1;
    background: #FFF url(../images/faq-bg.png);
}

.faq {
    overflow: visible;
}

.faq-item {
    background: none;
}

.faq .container {
    background: #fff;
    position: relative;
    border-radius: 5px;
    margin-top: -100px;
    padding: 100px 30px;
}

.faq-title {
    margin-bottom: 60px;
}

#faq-tab-accordion .card-header {
    padding: 0px;
    background: #f1f1f1;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    border-radius: 5px;
    border: none;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
    background-size: 200% auto;
    -webkit-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.3);
}

#faq-tab-accordion .card {
    border: 0;
}

#faq-tab-accordion .card-header a {
    color: #000;
    font-weight: 600;
}

.card-header h6 {
    float: left;
    width: calc(100% - 60px);
    font-size: 1.125rem;
    margin: 0;
    color: #666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card-header h6 span {
    height: 50px;
    width: 50px;
    margin-right: 10px;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    /* border-radius: 50%; */
    background: rgba(74, 79, 230, 0.1);
    color: #2093D1;
    font-size: 1.125rem;
}

#faq-tab-accordion .card-toggle-icon::after {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    height: 40px;
    width: 40px;
    margin-top: 5px;
    margin-left: 10px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    /* background: rgba(74, 79, 230, 0.1); */
    color: #2093D1;
    transition: all 0.25s linear;
}

#faq-tab-accordion .card-header[aria-expanded="true"] .card-toggle-icon::after {
    transform: rotate(180deg);
    content: "\f068";
}

#faq-tab-accordion .card-header[aria-expanded="true"] {
    background: #0E143D;
    border-bottom-color: transparent;
}

#faq-tab-accordion .card-header[aria-expanded="true"] .card-toggle-icon::after,
#faq-tab-accordion .card-header[aria-expanded="true"] h6 span {
    /* background: #fff; */
    color: #fff;
}

#faq-tab-accordion .card-header[aria-expanded="true"] h6 {
    color: #fff;
}


/* contact form style */

.site-form-control {
    color: #100e17;
    outline: none;
    padding: 10px 20px;
    border: none;
    width: 100%;
    border: 1px solid #999;
}

.form-btn {
    display: inline-block;
    overflow: hidden;
    padding: 4px 40px;
    border-radius: 20px;
    text-transform: capitalize;
    position: relative;
    color: #fff !important;
    background: #2093D1;
    -webkit-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    border: 0;
}


/** above footer **/

.semi-footer {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #001f58;
    background-size: 100%;
    color: rgba(255, 255, 255, 0.8);
}

.footer-box {
    float: left;
    width: 100%;
}

.semi-footer a {
    color: #FFF;
}

.semi-footer a:hover {
    color: #0E143D;
}

.footer-box h4 {
    float: left;
    width: 100%;
    padding: 0 0 10px 0;
    font-weight: 600;
    font-size: 18px;
    color: #FFF;
}

.footer-box p {
    padding: 20px 0 0 0;
    /* text-align: justify;
    word-break: break-all; */
}

.footer-social {
    float: left;
    width: 100%;
}

.footer-social a {
    font-size: 28px;
    margin-right: 10px;
    transition: all 0.6se ease;
}

.footer-nav {
    margin: 0;
    padding: 0 0 0 10px;
    /* column-count: 2; */
}

.footer-nav li {
    list-style: none;
}

.footer-nav li a {
    padding: 0px 0 5px 25px;
    position: relative;
    display: block;
    color: #FFF;
    font-weight: 700;
    transition: all 0.6s ease;
}

.footer-nav li a::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    content: "\f105";
    left: 0;
}

.footer-nav li a:hover {
    text-decoration: none;
    color: #2093D1;
}

.footer-contact {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    list-style: none;
}

.footer-contact li span {
    padding: 5px 0 5px 25px;
    position: relative;
    display: block;
}

.footer-contact li span::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    left: 0;
    color: #FFF;
}

.footer-contact li span.call::before {
    content: "\f87b";
}

.footer-contact li span.email::before {
    content: "\f0e0";
}

.footer-contact li span.address::before {
    content: "\f3c5";
}

.footer-contact li a {
    text-decoration: none;
    color: #FFF;
}

.footer-contact li a:hover {
    text-decoration: none;
    color: #0E143D;
}


/*   footer   */

footer {
    float: left;
    width: 100%;
    background-color: #00153e;
    padding: 15px 0;
    color: #FFF;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

footer a {
    color: #FFF;
    transition: all 0.6s ease;
}

footer a:hover {
    color: #2093D1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0 10px;
}
.semi-footer .footer-logo{
    background-color: #FFF;
    padding: 10px;
}

/* Dots Animations */

.ct-dot-animated {
    position: absolute;
    width: 100%;
    height: 102%;
    top: 0;
    left: 0
}

.ct-dot-animated.top-slider {
    height: calc(100% + 330px);
    height: -webkit-calc(100% + 330px);
    margin-top: -330px
}

.ct-dot-animated .ct-dot-item {
    background-color: rgba(255, 216, 155, .4);
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.ct-dot-animated .ct-dot-item span {
    width: 9px;
    height: 9px;
    -webkit-border-radius: 9px;
    -khtml-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    border-radius: 9px;
    background-color: #06ffdf;
    background-image: -webkit-gradient(linear, to left top, right top, from(#06ffdf), to(#0042ff));
    background-image: -webkit-linear-gradient(to left, #06ffdf, #0042ff);
    background-image: -moz-linear-gradient(to left, #06ffdf, #0042ff);
    background-image: -ms-linear-gradient(to left, #06ffdf, #0042ff);
    background-image: -o-linear-gradient(to left, #06ffdf, #0042ff);
    background-image: linear-gradient(to left, #06ffdf, #0042ff);
    position: absolute;
    bottom: 14%;
    left: -4px
}

.ct-dot-animated .ct-dot-item:nth-child(1) span {
    -webkit-animation: dotAnimatedBottomToTop1 30s infinite linear;
    -moz-animation: dotAnimatedBottomToTop1 30s infinite linear;
    -o-animation: dotAnimatedBottomToTop1 30s infinite linear;
    animation: dotAnimatedBottomToTop1 30s infinite linear
}

.ct-dot-animated .ct-dot-item:nth-child(2) {
    left: 20%
}

.ct-dot-animated .ct-dot-item:nth-child(2) span {
    background-color: #ffe712;
    background-image: -webkit-gradient(linear, to left top, right top, from(#ffe712), to(#ed585a));
    background-image: -webkit-linear-gradient(to left, #ffe712, #ed585a);
    background-image: -moz-linear-gradient(to left, #ffe712, #ed585a);
    background-image: -ms-linear-gradient(to left, #ffe712, #ed585a);
    background-image: -o-linear-gradient(to left, #ffe712, #ed585a);
    background-image: linear-gradient(to left, #ffe712, #ed585a);
    bottom: 64%;
    -webkit-animation: dotAnimatedBottomToTop2 30s infinite linear;
    -moz-animation: dotAnimatedBottomToTop2 30s infinite linear;
    -o-animation: dotAnimatedBottomToTop2 30s infinite linear;
    animation: dotAnimatedBottomToTop2 30s infinite linear
}

.ct-dot-animated .ct-dot-item:nth-child(3) {
    left: 40%
}

.ct-dot-animated .ct-dot-item:nth-child(3) span {
    background-color: #f798fe;
    background-image: -webkit-gradient(linear, to left top, right top, from(#f798fe), to(#612be1));
    background-image: -webkit-linear-gradient(to left, #f798fe, #612be1);
    background-image: -moz-linear-gradient(to left, #f798fe, #612be1);
    background-image: -ms-linear-gradient(to left, #f798fe, #612be1);
    background-image: -o-linear-gradient(to left, #f798fe, #612be1);
    background-image: linear-gradient(to left, #f798fe, #612be1);
    bottom: 5%;
    -webkit-animation: dotAnimatedBottomToTop3 30s infinite linear;
    -moz-animation: dotAnimatedBottomToTop3 30s infinite linear;
    -o-animation: dotAnimatedBottomToTop3 30s infinite linear;
    animation: dotAnimatedBottomToTop3 30s infinite linear
}

.ct-dot-animated .ct-dot-item:nth-child(4) {
    left: 60%
}

.ct-dot-animated .ct-dot-item:nth-child(4) span {
    background-color: #d8ff09;
    background-image: -webkit-gradient(linear, to left top, right top, from(#d8ff09), to(#4ba116));
    background-image: -webkit-linear-gradient(to left, #d8ff09, #4ba116);
    background-image: -moz-linear-gradient(to left, #d8ff09, #4ba116);
    background-image: -ms-linear-gradient(to left, #d8ff09, #4ba116);
    background-image: -o-linear-gradient(to left, #d8ff09, #4ba116);
    background-image: linear-gradient(to left, #d8ff09, #4ba116);
    bottom: 78%;
    -webkit-animation: dotAnimatedBottomToTop4 35s infinite linear;
    -moz-animation: dotAnimatedBottomToTop4 35s infinite linear;
    -o-animation: dotAnimatedBottomToTop4 35s infinite linear;
    animation: dotAnimatedBottomToTop4 35s infinite linear
}

.ct-dot-animated .ct-dot-item:nth-child(5) {
    left: 80%
}

.ct-dot-animated .ct-dot-item:nth-child(5) span {
    background-color: #ffe712;
    background-image: -webkit-gradient(linear, to left top, right top, from(#ffe712), to(#ed585a));
    background-image: -webkit-linear-gradient(to left, #ffe712, #ed585a);
    background-image: -moz-linear-gradient(to left, #ffe712, #ed585a);
    background-image: -ms-linear-gradient(to left, #ffe712, #ed585a);
    background-image: -o-linear-gradient(to left, #ffe712, #ed585a);
    background-image: linear-gradient(to left, #ffe712, #ed585a);
    bottom: 46%;
    -webkit-animation: dotAnimatedBottomToTop5 30s infinite linear;
    -moz-animation: dotAnimatedBottomToTop5 30s infinite linear;
    -o-animation: dotAnimatedBottomToTop5 30s infinite linear;
    animation: dotAnimatedBottomToTop5 30s infinite linear
}

.ct-dot-animated .ct-dot-item:nth-child(6) {
    left: auto;
    right: 0
}

.ct-dot-animated .ct-dot-item:nth-child(6) span {
    background-color: #6fd0ff;
    background-image: -webkit-gradient(linear, to left top, right top, from(#6fd0ff), to(#059af7));
    background-image: -webkit-linear-gradient(to left, #6fd0ff, #059af7);
    background-image: -moz-linear-gradient(to left, #6fd0ff, #059af7);
    background-image: -ms-linear-gradient(to left, #6fd0ff, #059af7);
    background-image: -o-linear-gradient(to left, #6fd0ff, #059af7);
    background-image: linear-gradient(to left, #6fd0ff, #059af7);
    bottom: 27%;
    -webkit-animation: dotAnimatedBottomToTop6 30s infinite linear;
    -moz-animation: dotAnimatedBottomToTop6 30s infinite linear;
    -o-animation: dotAnimatedBottomToTop6 30s infinite linear;
    animation: dotAnimatedBottomToTop6 30s infinite linear
}

.ct-dot-animated .ct-dot-container {
    max-width: 1004px;
    height: 100%;
    margin: 0 auto;
    position: relative
}

.error404 .site-content {
    padding-top: 195px !important;
    padding-bottom: 0 !important
}

@keyframes dotAnimatedBottomToTop1 {
    0% {
        bottom: 14%
    }
    50% {
        bottom: 100%
    }
    100% {
        bottom: 14%
    }
}

@keyframes dotAnimatedBottomToTop2 {
    0% {
        bottom: 64%
    }
    50% {
        bottom: 0
    }
    100% {
        bottom: 100%
    }
}

@keyframes dotAnimatedBottomToTop3 {
    0% {
        bottom: 5%
    }
    50% {
        bottom: 100%
    }
    100% {
        bottom: 5%
    }
}

@keyframes dotAnimatedBottomToTop4 {
    0% {
        bottom: 78%
    }
    50% {
        bottom: 0
    }
    100% {
        bottom: 78%
    }
}

@keyframes dotAnimatedBottomToTop5 {
    0% {
        bottom: 46%
    }
    50% {
        bottom: 0
    }
    100% {
        bottom: 46%
    }
}

@keyframes dotAnimatedBottomToTop6 {
    0% {
        bottom: 27%
    }
    50% {
        bottom: 100%
    }
    100% {
        bottom: 27%
    }
}

@keyframes dotAnimatedBottomToTop2 {
    0% {
        bottom: 64%
    }
    50% {
        bottom: 0
    }
    100% {
        bottom: 100%
    }
}

@keyframes dotAnimatedBottomToTop3 {
    0% {
        bottom: 5%
    }
    50% {
        bottom: 100%
    }
    100% {
        bottom: 5%
    }
}

@keyframes dotAnimatedBottomToTop4 {
    0% {
        bottom: 78%
    }
    50% {
        bottom: 0
    }
    100% {
        bottom: 78%
    }
}

@keyframes dotAnimatedBottomToTop5 {
    0% {
        bottom: 46%
    }
    50% {
        bottom: 0
    }
    100% {
        bottom: 46%
    }
}

@keyframes dotAnimatedBottomToTop6 {
    0% {
        bottom: 27%
    }
    50% {
        bottom: 100%
    }
    100% {
        bottom: 27%
    }
}

@keyframes dotAnimatedBottomToTop3 {
    0% {
        bottom: 5%
    }
    50% {
        bottom: 100%
    }
    100% {
        bottom: 5%
    }
}

@keyframes dotAnimatedBottomToTop4 {
    0% {
        bottom: 78%
    }
    50% {
        bottom: 0
    }
    100% {
        bottom: 78%
    }
}

@keyframes dotAnimatedBottomToTop4 {
    0% {
        bottom: 78%
    }
    50% {
        bottom: 0
    }
    100% {
        bottom: 78%
    }
}

@keyframes dotAnimatedBottomToTop5 {
    0% {
        bottom: 46%
    }
    50% {
        bottom: 0
    }
    100% {
        bottom: 46%
    }
}

@keyframes dotAnimatedBottomToTop6 {
    0% {
        bottom: 27%
    }
    50% {
        bottom: 100%
    }
    100% {
        bottom: 27%
    }
}


/* Custom popup */

.custom-popup {
    position: fixed;
    top: 2000px;
    left: 0;
    height: 0vh;
    width: 100vw;
    z-index: 999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    transition: all 01s cubic-bezier(0.64, 0.01, 0.07, 1.65);
    opacity: 0;
}

.custom-popup.active {
    top: 0px;
    height: 100vh;
    opacity: 1;
}

.pop-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #2093D1;
    font-weight: 600;
    cursor: pointer;
}

.custom-popup-content {
    width: calc(100% - 40px);
    background: #FFF;
    display: flex;
    position: relative;
    z-index: 1;
}

.pop-up-content-left {
    float: left;
    width: 40%;
    background-color: #001f58;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    padding: 20px;
}

.pop-up-content-right {
    float: left;
    width: 60%;
    background-color: #FFF;
    padding: 40px;
    max-height: 100vh;
    overflow-y: auto;
}

.pop-up-content-right h4 {
    color: #2093D1;
    margin-bottom: 20px;
}

.pop-up-content-right ul {
    margin-bottom: 0px;
}

.pop-up-content-right ul li {
    margin-bottom: 0px;
    padding: 5px 0;
}

.custom-popup-bg {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 0;
}


/* tabs  */

.section-tabs {
    float: left;
    width: 100%;
    background: #2093D1;
}

.section-tabs .nav-link {
    width: 50%;
    border: 0;
    border-radius: 0;
    letter-spacing: 2px;
    font-weight: 600;
    color: #FFF;
    cursor: pointer;
}

.section-tabs .nav-item.show .nav-link,
.section-tabs .nav-link.active {
    color: #000;
    background-color: #c96f57;
    border-color: transparent;
}


/*  Media querys */

@media (max-width:2800px) {
    .slider-inner::after {
        background-size: 2784px;
        background-position: -111px -226px;
    }
}

@media (max-width:2400px) {
    .slider-inner::after {
        background-size: 2784px;
        background-position: -111px -166px;
    }
}

@media (max-width:2200px) {
    .slider-inner::after {
        background-size: 2784px;
        background-position: -201px -166px;
    }
}

@media (max-width:2000px) {
    .slider-inner::after {
        background-size: 2784px;
        background-position: -371px -166px;
    }
}

@media (max-width:1600px) {
    .slider-inner::after {
        background-size: 2784px;
        background-position: -589px 40%;
    }
    .mobile-slide-img img {
        max-width: 300px;
    }
    .slider-text h1 {
        font-size: 30px;
    }
    .slider-text p {
        padding: 20px 0 0 0;
        font-size: 14px;
        margin-bottom: 0;
    }
}

@media (max-width:1500px) {
    .slider-inner::after {
        background-size: 2731px;
        background-position: -570px 36%;
    }
}

@media (max-width:1400px) {
    .slider-inner::after {
        background-size: 2650px;
        background-position: -591px 34%;
    }
}

@media (max-width:1300px) {
    .slider-inner::after {
        background-size: 2730px;
        background-position: -685px 38%;
    }
}

@media (max-width:1200px) {
    .slider-inner::after {
        background-size: 2730px;
        background-position: -685px 32%;
    }
}

@media (max-width:1100px) {
    .slider-inner::after {
        background-size: 2491px;
        background-position: -600px 37%;
    }
}

@media (max-width:992px) {
    .logo {
        padding: 10px 0;
    }
    .logo img {
        width: 200px;
    }
    img {
        max-width: 100%;
    }
    .logo-label {
        line-height: 24px;
        padding: 10px 17px;
        font-size: 20px;
    }
    .nav-trigger {
        display: block;
        position: relative;
        z-index: 10;
    }
    nav {
        padding: 10px 0 0 0;
    }
    nav ul {
        position: fixed;
        height: 100vh;
        width: 200px;
        background: rgba(255, 255, 255, 0.877);
        top: 0;
        right: -200px;
        transition: all 0.3s ease;
        box-shadow: 0 0 5px #666;
        z-index: 11;
    }
    nav.show ul {
        right: 0;
    }
    nav ul li {
        width: 100%;
    }
    nav ul li a.list-group-item {
        color: #0E143D;
        border-bottom: 1px solid rgba(255, 255, 255, 0.877) !important;
        padding: 10px 15px;
    }
    .slider {
        height: auto;
    }
    .slider-inner {
        height: auto;
    }
    .slider-inner::after {
        background-size: 2784px;
        background-position: -752px -315px;
    }
    .text-midle {
        padding-top: 0px;
    }
    .slider-text h1 {
        font-size: 30px;
        margin-bottom: 0px;
        margin-top: 30px;
    }
    .slider-text p {
        font-size: 16px;
    }
    .text-right.mobile-slide-img {
        margin-top: 0px;
    }
    .download-link {
        padding: 12px 20px 10px 20px;
        border-radius: 30px;
        font-size: 16px;
    }
    .special-card {
        margin-bottom: 30px;
    }
    .special-card.last-card {
        margin-bottom: 0px;
    }
    .about-img-inner {
        position: relative;
        margin-bottom: 80px;
        width: 100%;
    }
    .about-img-inner::before,
    .about-img-inner::after {
        width: 200px;
        height: 200px;
    }
    .doctors-section {
        height: auto;
    }
    .features-section-block,
    .steps-section {
        height: auto;
    }
    .accordion {
        margin-bottom: 30px;
    }
    .feature-list li {
        position: relative;
    }
    .features-section {
        padding: 0px 0 50px 0;
    }
    .feature-content {
        min-height: auto;
    }
    .image-show::before {
        top: 0;
        right: 0;
    }
    .feature-list li.active .image-show {
        display: none;
    }
    .feature-list li:hover .image-show {
        display: block;
    }
    .contact-title span,
    .contact-text span {
        float: unset;
        width: auto;
    }
}

@media (max-width:767px) {
    .logo {
        padding: 20px 0;
    }
    .logo img {
        width: 200px;
    }
    img {
        max-width: 100%;
    }
    .logo-label {
        line-height: 24px;
        padding: 10px 17px;
        font-size: 18px;
    }
    .nav-trigger {
        display: block;
        position: relative;
        z-index: 10;
    }
    nav {
        padding: 10px 0 0 0;
    }
    nav ul {
        position: fixed;
        height: 100vh;
        width: 200px;
        background: rgba(255, 255, 255, 0.877);
        top: 0;
        right: -200px;
        transition: all 0.3s ease;
        box-shadow: 0 0 5px #666;
        z-index: 11;
    }
    nav.show ul {
        right: 0;
    }
    nav ul li {
        width: 100%;
    }
    nav ul li a.list-group-item {
        color: #0E143D;
        border-bottom: 1px solid rgba(255, 255, 255, 0.877) !important;
        padding: 10px 15px;
    }
    .slider {
        height: auto;
    }
    .slider-inner {
        max-height: 2000px;
    }
    .slider-inner::after {
        background-size: 2784px;
        background-position: -752px -115px;
    }
    .slider-text h1 {
        font-size: 25px;
        margin-bottom: 0px;
        margin-top: -10px;
        text-align: center;
    }
    .slider-text p {
        font-size: 16px;
        text-align: center;
    }
    .more-link {
        float: left;
        width: 100%;
        padding-top: 20px;
    }
    .doctors-btn {
        float: unset;
    }
    .slide-links {
        text-align: center;
        margin-bottom: 30px;
        margin: 0 5px 30px 5px;
    }
    .app-link img {
        height: 35px;
    }
    .app-download-label {
        float: left;
        width: 100%;
        text-align: center;
    }
    .download-link {
        padding: 12px 20px 10px 20px;
        border-radius: 30px;
        font-size: 16px;
    }
    .text-right.mobile-slide-img {
        text-align: center !important;
        margin-bottom: 40px;
        margin-top: 60px;
    }
    .text-right.mobile-slide-img img {
        width: 80%;
    }
    .mobi-download-section {
        float: left;
        width: 100%;
        position: relative;
        background-size: 13px;
        color: #FFF;
        padding: 0px 0 50px 0;
        margin-top: -40px;
        ;
    }
    .app-links-title {
        text-align: center;
    }
    .section-2 {
        padding: 60px 0;
    }
    .app-link-group {
        float: left;
        padding: 30px 0 0 0px;
        width: 100%;
        text-align: center;
    }
    .app-link {
        float: unset;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .section-title::after {
        right: 10px;
        top: -80px;
        font-size: 80px;
    }
    .section-title h1 {
        font-size: 28px;
    }
    .section-title h5 {
        font-size: 16px;
    }
    .special-card {
        margin-bottom: 40px;
    }
    .special-card.last-card {
        margin-bottom: 0px;
    }
    .about-section {
        padding: 80px 0;
    }
    .about-content {
        text-align: left;
        font-size: 14px;
    }
    .about-img-inner {
        position: relative;
        margin-bottom: 80px;
        width: 100%;
    }
    .about-img-inner::before,
    .about-img-inner::after {
        width: 200px;
        height: 200px;
    }
    .features-section {
        padding: 0px 0 50px 0;
    }
    .mobile-slide {
        margin: 40px auto 40px auto;
    }
    .doctors-section {
        padding: 80px 0;
        background-size: cover;
    }
    .doctors-title {
        font-size: 26px;
    }
    .step-title {
        margin-bottom: 30px;
    }
    .features-title {
        font-size: 18px;
    }
    .admin-box-content {
        margin-bottom: 30px;
    }
    .contact-section {}
    .sub-section-title {
        font-size: 18px;
    }
    .card-header h6 {
        font-size: 14px;
        width: calc(100% - 45px);
    }
    .card-header h6 span {
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
    #faq-tab-accordion .card-toggle-icon::after {
        height: 35px;
        width: 35px;
        margin-top: 3px;
        margin-left: 10px;
        line-height: 35px;
    }
    .accordion {
        margin-bottom: 30px;
    }
    .image-show {
        top: unset;
        bottom: -393px;
    }
    .form-btn {
        display: inline-block;
        overflow: hidden;
        padding: 10px 40px;
        width: 100%;
    }
    .semi-footer {
        background-size: cover;
    }
    .footer-box {
        margin-bottom: 30px;
    }
    .custom-popup-content {
        width: 100%;
        display: unset;
        height: 100vh;
        overflow-y: auto;
    }
    .pop-up-content-left {
        width: 100%;
        padding: 0px;
    }
    .pop-up-content-right {
        width: 100%;
        height: auto;
        padding: 10px;
    }
}