@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap");
:root {
    --rv-primary: #671c17;
    --rv-secondary: #671c17;
    --rv-primary-light: #ffecea;
    --rv-secondary-light: #e0a59e;
    --rv-white: #fff;
    --rv-black: #671c17;
    --rv-font: "Montserrat", serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    font-size: 16px;
    font-family: var(--rv-font);
    color: var(--rv-text-color);
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #e0a59e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--rv-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rv-primary);
}

.text-line {
    display: -webkit-box;
    -webkit-line-clamp: var(--textline);
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn {
    color: var(--rv-white);
    border-radius: 2px;
    text-align: center;
    position: relative;
    padding: 6px 25px;
    font-weight: 600;
    display: flex;
    max-width: -moz-fit-content;
    max-width: fit-content;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rv-white);
}

.btn i {
    line-height: 0;
    margin-left: 5px;
}

.btn.btn-primary {
    background-color: var(--rv-primary);
}

.btn.btn-primary:hover {
    background-color: var(--rv-secondary);
    color: var(--rv-black);
}

.btn.btn-white {
    background-color: var(--rv-white);
    color: var(--rv-black);
}

.btn.btn-white:hover {
    background-color: var(--rv-secondary);
    color: var(--rv-black);
}

.btn.btn-secondary {
    background: var(--rv-secondary);
    color: var(--rv-white);
}

.btn.btn-secondary:hover {
    background: var(--rv-primary);
    color: var(--rv-white);
}

.main-heading {
    max-width: 650px;
    text-align: center;
    margin: 0 auto 50px;
    width: 100%;
}

.main-heading .title-box {
    font-size: 20px;
    font-weight: 600;
}

.main-heading .title-box span {
    position: relative;
}

.main-heading .title-box span::before,
.main-heading .title-box span::after {
    content: "";
    position: absolute;
    width: 50px;
    top: 50%;
    transform: translateY(50%);
    height: 2px;
    background-color: #7A7A7A;
}

.main-heading .title-box span::before {
    left: -60px;
}

.main-heading .title-box span::after {
    right: -60px;
}

.main-heading .main-title {
    color: var(--rv-secondary);
    font-size: 42px;
    font-family: "Playfair", serif;
}

body {
    font-family: var(--rv-font);
    font-size: 16px;
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--rv-font-heading);
    color: var(--rv-bg-dark);
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.section {
    padding: 80px 0;
}

.main-section {
    padding: 70px 0;
}

.ticker_section {
    padding: 5px 15px;
    background-color: var(--rv-white);
    display: flex;
}

.ticker_section .tickers {
    display: flex;
    margin: -10px;
    align-items: center;
    justify-content: center;
}

.ticker_section .tickers .ticker_item {
    padding: 10px;
    color: var(--rv-black);
    list-style: none;
    display: flex;
    position: relative;
    align-items: center;
}

.ticker_section .tickers .ticker_item .name {
    letter-spacing: 1px;
    font-size: 14px;
}

.ticker_section .tickers .ticker_item .price {
    font-size: 12px;
    padding: 4px 5px 0;
}

.ticker_section .tickers .ticker_item.mrdown .difference_percent {
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    padding-right: 30px;
    position: relative;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
    color: #ea0000;
}

.ticker_section .tickers .ticker_item.mrdown .difference_percent::after {
    content: "";
    width: 16px;
    height: 14px;
    position: absolute;
    right: 7px;
    top: 5px;
    background-image: url("../images/decrease.webp");
    background-size: 100%;
    /*  filter: brightness(0) invert(1);*/
    background-repeat: no-repeat;
}

.ticker_section .tickers .ticker_item .difference_percent {
    background: rgba(81, 201, 72, 0.2);
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 14px;
    border: 1px solid #51c948;
    font-weight: 600;
    padding-right: 30px;
    position: relative;
    color: #044408;
}

.ticker_section .tickers .ticker_item .difference_percent::after {
    content: "";
    width: 16px;
    height: 14px;
    position: absolute;
    right: 7px;
    background-image: url("../images/trend.webp");
    background-size: 100%;
    /*filter: brightness(0) invert(1);*/
    background-repeat: no-repeat;
    top: 5px;
}

.ticker_section .tickers .ticker_item::after {
    content: "";
    position: absolute;
    right: 0;
    height: 80%;
    width: 2px;
    background: var(--rv-white);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
}

.ticker_section .tickers .ticker_item:last-child::after {
    content: unset;
}

.disclaimer-sec {
    padding-top: 25px;
    text-align: center;
    border-bottom: 1px solid #888;
    border-top: 1px solid #888;
    /*padding-bottom: 25px;*/
}

.disclaimer-sec h5,
.disclaimer-sec h6,
.disclaimer-sec p {
    margin-bottom: 0;
    color: var(--rv-white);
    margin: 0;
}

.disclaimer-sec h5 a,
.disclaimer-sec h6 a,
.disclaimer-sec p a {
    color: #cf5757;
    font-weight: 600;
    text-decoration: none;
}

.disclaimer-sec h5 a:hover,
.disclaimer-sec h6 a:hover,
.disclaimer-sec p a:hover {
    color: var(--rv-secondary-light);
    font-weight: 600;
    text-decoration: none;
}

.disclaimer-sec .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin: -10px; */
    flex-wrap: wrap;
    /* padding-top: 20px; */
}

.disclaimer-sec .footer-content img {
    height: 67px;
}

.disclaimer-sec .footer-list {
    display: flex;
    padding: 10px;
    align-items: center;
}

.disclaimer-sec .footer-list .contentb {
    text-align: left;
    padding-left: 15px;
}

.social-list {
    display: flex;
    margin: -8px;
    flex-wrap: wrap;
    padding: 0;
}

.social-list li {
    list-style: none;
    padding: 8px;
}

.social-list li span,
.social-list li a {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    background-color: var(--rv-secondary);
    display: flex;
    justify-content: center;
    margin: 0;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    transition: 0.5s;
    color: var(--rv-black);
}

.social-list li span:hover,
.social-list li a:hover {
    transition: 0.5s;
    background: var(--rv-primary);
    color: var(--rv-white);
}

.form-group .captcha-code-form {
    display: flex;
    gap: 10px;
}

.form-group .captcha-code-form .btnRefresh {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-group .captcha-code-form .boxbtn {
    display: flex;
    position: relative;
    width: 100%;
}

.form-group .captcha-code-form .boxbtn #captcha {
    width: 100%;
    padding-right: 75px;
}

.form-group .captcha-code-form .boxbtn .btnRefresh {
    position: absolute;
    right: 0;
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 5px;
}

.modal-open .modalbody {
    z-index: 1;
    pointer-events: visible;
    visibility: visible;
    opacity: 1;
}

.showmodal .modalbody {
    z-index: 99;
    pointer-events: visible;
    visibility: visible;
    opacity: 1;
}

.modalbody {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modalbody .modalbg {
    background: rgba(0, 0, 0, 0.5411764706);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    cursor: pointer;
    top: 0;
}

.modalbody .Cmodalcard {
    max-width: 500px;
    width: 100%;
    z-index: 9;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.modalbody .Cmodalcard .maincontentmodal {
    background: #fff;
    position: relative;
    box-shadow: 0 0 15px 0 #bbb;
    border-radius: 10px;
}

.modalbody .Cmodalcard .maincontentmodal .cmodalclose {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #fff;
    box-shadow: 0 0 15px 0 #ddd;
    cursor: pointer;
    right: -15px;
    border: unset;
    font-size: 28px;
    top: -15px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    z-index: 9;
    align-items: center;
}

.modalbody .Cmodalcard .maincontentmodal .cmodalclose span {
    position: relative;
    transform: rotate(45deg);
}

.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::before,
.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::after {
    content: "";
    width: 15px;
    height: 2px;
    position: absolute;
    background: #000;
    top: -1px;
    left: -6px;
}

.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::after {
    transform: rotate(90deg);
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards {
    padding: 20px;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdForm .form-group:last-child {
    margin-bottom: 0;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify {
    text-align: center;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify div p {
    font-size: 16px;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify div:last-child {
    width: 100% !important;
    max-width: 90%;
    margin: 0 auto;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify label {
    display: block;
    -moz-text-align-last: left;
    text-align-last: left;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify button {
    background-color: var(--rv-primary);
    border: 1px solid var(--rv-primary);
    color: #fff;
    display: inline-block !important;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.5s;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify button :hover {
    transition: 0.5s;
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify #mobileOtp {
    display: block;
    width: 100%;
    background-color: #fff;
    outline: none;
    padding: 10px 15px;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    margin-bottom: 20px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.modalbody .Cmodalcard .maincontentmodal .modalheader {
    width: 100%;
    background: var(--rv-primary);
    border-radius: 10px 10px 0 0;
    padding: 8px 20px;
}

.modalbody .Cmodalcard .maincontentmodal .modalheader h4,
.modalbody .Cmodalcard .maincontentmodal .modalheader h3 {
    color: var(--rv-white);
    font-size: 20px;
    margin-bottom: 0;
}

.modalbody .Cmodalcard .maincontentmodal .modalheader h6 {
    color: var(--rv-white);
}

.modalbody .Cmodalcard .maincontentmodal .modaldatashow {
    display: none;
}

.modalbody .Cmodalcard .maincontentmodal .modaldatashow.show {
    display: block;
}

.modalbody .Cmodalcard .maincontentmodal .modaldatashow .image {
    margin-bottom: 15px;
    text-align: center;
}

.modalbody .Cmodalcard .maincontentmodal .modaldatashow .image img {
    width: 120px;
    height: 120px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    border-radius: 50%;
    margin: 0 auto;
}

.modalbody .Cmodalcard .maincontentmodal .modaldatashow .content {
    padding: 25px;
}

.iframe {
    position: relative;
    padding-top: 40%;
}

.iframe iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.home-contact {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 20px;
    background: var(--rv-white);
    border: 1px solid #bbb;
    transition: 0.5s;
}

.hover-text::before {
    content: "";
    position: absolute;
    left: 0;
    transition: 0.5s;
    top: 0;
    width: 100%;
    height: 100%;
    rotate: 50deg;
    background: linear-gradient(95deg, var(--rv-primary) 0%, rgba(133, 206, 228, 0.2) 95%);
    transform: translateY(-41px) translateX(-365px);
    z-index: 0;
}

.hover-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -60%;
    width: 100%;
    height: 100%;
    rotate: 50deg;
    background: linear-gradient(95deg, rgba(133, 206, 228, 0.2) 0%, var(--rv-secondary) 95%);
    transform: translateY(41px) translateX(365px);
    z-index: 0;
    transition: 0.5s;
}

.hover-text:hover {
    transition: 0.5s;
}

.hover-text:hover::before {
    transition: 0.5s;
    top: -60%;
}

.hover-text:hover::after {
    transition: 0.5s;
    bottom: 0%;
}

.top-banner-section {
    padding: 20px 0;
    position: relative;
    background-position: center right;
    background-size: cover;
    border-top: 1px solid #323232;
    background-repeat: no-repeat;
    background: #ffe7e4;
}

.top-banner-section .banner-box {
    position: relative;
    z-index: 1;
}

.top-banner-section .banner-box ul {
    display: flex;
    margin: -10px;
    justify-content: start;
    padding: 0;
    flex-wrap: wrap;
}

.top-banner-section .banner-box ul li {
    list-style: none;
    padding: 10px;
    position: relative;
    color: var(--rv-black);
}

.top-banner-section .banner-box ul li a {
    color: var(--rv-primary);
    font-weight: 600;
}

.top-banner-section .banner-box ul li::before {
    content: "";
    height: 30%;
    width: 2px;
    opacity: 0.3;
    top: 50%;
    transform: translateY(-50%);
    background: var(--rv-black);
    position: absolute;
    left: 0;
}

.top-banner-section .banner-box ul li:first-child::before {
    content: unset;
}

.top-banner-section .banner-box h1,
.top-banner-section .banner-box h2,
.top-banner-section .banner-box h3 {
    color: var(--rv-primary);
    margin: 0;
    font-size: 36px;
    font-weight: 600;
}

.nevdisc-box {
    display: none;
}

.nevdisc-box.show {
    display: block;
}

.text-lin-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.text-lin-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text-lin-2 p:last-child {
    margin-bottom: 0;
}

.text-lin-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.text-lin-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.text-lin-5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.text-lin-12 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
}

#error_msg span {
    background: rgba(255, 0, 0, 0.0509803922);
    color: #ff0000;
    border-radius: 5px;
    border: 2px solid #ff0000;
    font-size: 12px;
    padding: 10px;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

#mail-status .success {
    background: rgba(0, 128, 0, 0.1215686275);
    color: #008000;
    border-radius: 5px;
    border: 2px solid #008000;
    margin-bottom: 15px;
    font-size: 12px;
    padding: 10px;
    font-weight: 600;
}

#mail-status .error {
    background: rgba(255, 0, 0, 0.0509803922);
    color: #ff0000;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 2px solid #ff0000;
    font-size: 12px;
    padding: 10px;
    font-weight: 600;
}

.main_heading {
    margin-bottom: 30px;
}

.blog-section .blog-card.blog-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.blog-section .blog-card.blog-row .item {
    padding: 15px;
    max-width: 25%;
    width: 100%;
    margin: 0;
}

@media only screen and (max-width: 1200px) {
    .blog-section .blog-card.blog-row .item {
        max-width: 33.3%;
    }
}

@media only screen and (max-width: 992px) {
    .blog-section .blog-card.blog-row .item {
        max-width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .blog-section .blog-card.blog-row .item {
        max-width: 100%;
    }
}

.blog-section .blog-card.blog-row .item .blog .client-info {
    border: 1px solid #ddd;
}

.blog-section .blog-card .item {
    margin: 30px 15px;
}

.blog-section .blog-card .item .blog {
    position: relative;
    background: var(--rv-white);
    transition: 0.5s;
    border-radius: 5px;
}

.blog-section .blog-card .item .blog::after {
    content: "";
    position: absolute;
    width: 0;
    transition: 0.5s;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--rv-primary);
}

.blog-section .blog-card .item .blog:hover {
    transition: 0.5s;
    box-shadow: 0 10px 15px 0 #ddd;
    transform: translateY(-10px);
}

.blog-section .blog-card .item .blog:hover::after {
    transition: 0.5s;
    width: 100%;
}

.blog-section .blog-card .item .blog:hover .images {
    transition: 0.5s;
}

.blog-section .blog-card .item .blog:hover .images img {
    transition: 0.5s;
    transform: scale(1.08) rotate(5deg);
}

.blog-section .blog-card .item .blog .images {
    transition: 0.5s;
    overflow: hidden;
}

.blog-section .blog-card .item .blog .images img {
    width: 100%;
    height: 210px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    transition: 0.5s;
}

.blog-section .blog-card .item .blog .client-info {
    transition: 0.5s;
    padding: 10px 20px 20px;
}

.blog-section .blog-card .item .blog .client-info ul {
    padding: 0;
    margin: 10px;
    display: flex;
    margin: -10px;
    list-style: none;
}

.blog-section .blog-card .item .blog .client-info ul li {
    padding: 10px;
    color: var(--rv-black);
    opacity: 0.7;
    position: relative;
    font-size: 12px;
    font-weight: 600;
}

.blog-section .blog-card .item .blog .client-info ul li:first-child::before {
    content: unset;
}

.blog-section .blog-card .item .blog .client-info ul li::before {
    content: "";
    width: 1px;
    height: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #aaa;
}

.blog-section .blog-card .item .blog .client-info h3 {
    margin: 0;
    margin-top: 10px;
}

.related-section-content .latest-blog-loop {
    display: flex;
    flex-wrap: wrap;
    margin: -10px 0;
}

.related-section-content .latest-blog-loop .item {
    padding: 10px 0;
    width: 100%;
}

.related-section-content .latest-blog-loop .item a {
    display: block;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: var(--rv-white);
    transition: 0.4s;
}

.related-section-content .latest-blog-loop .item a:hover {
    transition: 0.4s;
    box-shadow: 10px 10px 15px 0 #ddd;
    transform: translateY(5px) translateX(5px);
}

.related-section-content .latest-blog-loop .item a .blog {
    display: flex;
    align-items: self-start;
}

.related-section-content .latest-blog-loop .item a .blog .images img {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

.related-section-content .latest-blog-loop .item a .blog .client-info {
    padding: 0 15px;
}

.related-section-content .latest-blog-loop .item a .blog .client-info ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: -1px;
}

.related-section-content .latest-blog-loop .item a .blog .client-info ul li {
    width: 100%;
    font-size: 12px;
    padding: 1px;
    color: #bbb;
}

.related-section-content .latest-blog-loop .item a .blog .client-info ul li:first-child {
    color: var(--rv-black);
}

.related-section-content .latest-blog-loop .item a .blog .client-info h4 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}

.rv-faq-section .tebBar-box .tebBar-card {
    border-bottom: unset;
    background: var(--rv-white);
    margin-bottom: 20px;
    border-radius: 10px;
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione {
    padding: 20px;
    padding-right: 60px;
    position: relative;
    cursor: pointer;
    transition: 0.5s;
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione .rv-faq-title {
    color: var(--rv-bg-primary);
    margin: 0;
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione.active {
    transition: 0.5s;
    padding-bottom: 0;
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione.active::after {
    transition: 0.5s;
    content: "\f286";
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione::after {
    content: "\f282";
    position: absolute;
    right: 25px;
    top: 25px;
    font-weight: 600;
    color: var(--rv-secondary);
    font-family: bootstrap-icons !important;
    transition: 0.5s;
}

.rv-faq-section .tebBar-box .tebBar-card .disc-box {
    display: none;
    padding: 20px;
}


/**
* Template Name: Medilab - v4.4.0
* Template URL: https://bootstrapmade.com/medilab-free-medical-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Open Sans", sans-serif;
    color: var(--rv-black);
}

a {
    color: var(--rv-primary);
    text-decoration: none;
}

a:hover {
    color: var(--rv-secondary);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--rv-white);
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--rv-primary);
    border-top-color: #d1e6f9;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--rv-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: var(--rv-white);
    line-height: 0;
}

.back-to-top:hover {
    background: #298ce5;
    color: var(--rv-white);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.datepicker-dropdown {
    padding: 20px !important;
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background: var(--rv-secondary);
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    top: 37px;
    z-index: 996;
}

#topbar .contact-info a {
    line-height: 1;
    color: var(--rv-white);
    transition: 0.3s;
    font-weight: 600;
}

#topbar .contact-info a:hover {
    color: var(--rv-primary-light);
}

#topbar .contact-info i {
    color: var(--rv-white);
    padding-right: 4px;
    margin-left: 15px;
    line-height: 0;
}

#topbar .contact-info i:first-child {
    margin-left: 0;
}

#topbar .social-links a {
    color: var(--rv-white);
    padding-left: 15px;
    border: unset;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: var(--rv-primary);
}

#topbar .social-links a:first-child {
    border-left: 0;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: var(--rv-white);
    transition: all 0.5s;
    z-index: 997;
    padding: 5px 0;
    top: 78px;
    box-shadow: 0px 10px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
    top: 0;
    position: fixed;
    width: 100%;
    left: 0;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: var(--rv-primary);
}

#header .logo img {
    max-height: 90px;
}


/**
* Appointment Button *
*/

.btn-theme {
    background: var(--rv-primary);
    color: var(--rv-white);
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.btn-theme:hover {
    background: var(--rv-secondary);
    color: var(--rv-white);
}

.appointment-btn {
    margin-left: 25px;
    background: var(--rv-secondary);
    color: var(--rv-white);
    border-radius: 50px;
    font-weight: 600;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.appointment-btn:hover {
    background: var(--rv-secondary);
    color: var(--rv-white);
}

@media (max-width: 768px) {
    .appointment-btn {
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--rv-primary);
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    padding: 5px 2px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--rv-secondary);
    border-color: var(--rv-secondary);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 20px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: var(--rv-white);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #082744;
    font-weight: 600;
    border: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--rv-white);
    background-color: var(--rv-secondary);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: var(--rv-primary);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: var(--rv-white);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(28, 47, 65, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: var(--rv-white);
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--rv-primary);
    border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--rv-primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: var(--rv-white);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: var(--rv-primary);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    /* height: 55vh; */
    /* background: url("../img/hero-bg.jpg") top center; */
    background-size: cover;
    /* margin-bottom: -200px; */
    /* background: #fdecea; */
    position: inherit;
    background-position: center;
    background-size: cover;
}

@keyframes bounce-1 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(10px);
    }
}

#hero .container {
    position: relative;
    padding-bottom: 239px;
    /*--change here*/
}

#hero h1 {
    margin: 0;
    font-size: 33px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    color: var(--rv-primary);
}

#hero h2 {
    color: var(--rv-primary);
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 35px;
    margin-top: 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: var(--rv-white);
    background: var(--rv-primary);
}

#hero .btn-get-started:hover {
    background: var(--rv-secondary);
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #hero .container {
        padding-bottom: 63px;
    }
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.section-bg {
    background-color: var(--rv-primary-light);
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: var(--rv-primary);
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--rv-primary);
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 20px 0;
    background-color: #f1f7fd;
    min-height: 40px;
    margin-top: 120px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 63px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us .content {
    padding: 30px;
    background: #ffecea;
    box-shadow: 0 0 15px 0 #ddd;
    border-radius: 4px;
    color: var(--rv-secondary);
}

.why-us .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.why-us .content p {
    margin-bottom: 5px;
}

.why-us .content .more-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 30px 8px 30px;
    color: var(--rv-white);
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
    font-size: 14px;
}

.why-us .content .description {
    margin-left: 20px;
}

.why-us .content .more-btn:hover {
    color: var(--rv-primary);
    background: var(--rv-white);
}

.why-us .icon-boxes .icon-box {
    text-align: center;
    border-radius: 10px;
    background: var(--rv-white);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 10px;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    /* Ensure transition includes transform */
}

.why-us .icon-boxes .icon-box i {
    font-size: 40px;
    color: var(--rv-primary);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    /*change here*/
}

.why-us .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    transition: all 0.4s ease;
    /*change here*/
}

.why-us .icon-boxes .icon-box p {
    font-size: 15px;
    color: #848484;
}


/*change here*/

.why-us .icon-boxes .icon-box:hover {
    background: var(--rv-primary);
    color: var(--rv-white);
    transform: translateY(-10px);
    /* Move the element up */
}

.why-us .icon-boxes .icon-box:hover i {
    color: var(--rv-white);
}

.why-us .icon-boxes .icon-box:hover h4 {
    color: var(--rv-white);
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .icon-boxes h4 {
    font-size: 18px;
    color: #4b7dab;
    margin-bottom: 15px;
}

.about .icon-boxes h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--rv-primary);
    margin-bottom: 15px;
}

.about .icon-box {
    min-block-size: 10px;
}

.about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--rv-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.about .icon-box .icon i {
    color: var(--rv-primary);
    font-size: 32px;
}

.about .icon-box .icon i::before {
    font-size: 30px;
    font-weight: 600;
}

.about .icon-box:hover .icon {
    background: var(--rv-primary);
    border-color: var(--rv-primary);
}

.about .icon-box:hover .icon i {
    color: var(--rv-white);
}

.about .icon-box .title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.about .icon-box .title a {
    color: #343a40;
    transition: 0.3s;
}

.about .icon-box .title a:hover {
    color: var(--rv-primary);
}

.about .icon-box .description {
    margin-left: 20px;
    line-height: 24px;
    font-size: 14px;
}

img#aboutimg {
    width: 530px;
    margin-bottom: 38px;
}

.about .video-box {
    background: url("../img/about.webp") center center no-repeat;
    background-size: cover;
    min-height: 500px;
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--rv-primary) 50%, rgba(25, 119, 204, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--rv-white);
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(25, 119, 204, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
    border-left: 15px solid var(--rv-primary);
    transform: scale(20);
}

.about .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--rv-white);
    z-index: 200;
    animation: none;
    border-radius: 0;
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts .count-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: var(--rv-white);
    top: 45px;
    margin: 30px 0;
}

.counts .count-box i {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    background: var(--rv-secondary);
    color: var(--rv-white);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: var(--rv-secondary);
    position: relative;
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    text-align: center;
    border: 1px solid #d5e1ed;
    padding: 50px 20px;
    background: var(--rv-white);
    width: 100%;
    margin-bottom: 24px;
    transition: all ease-in-out 0.3s;
}

.services .icon-box:hover {
    transition: all ease-in-out 0.3s;
    transform: translateY(-10px);
    box-shadow: 0 0 15px 15px 0 #bbb;
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: var(--rv-primary);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.services .icon-box .icon i {
    color: var(--rv-white);
    font-size: 28px;
}

.services .icon-box .icon i::before {
    font-size: 28px;
}

.services .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: var(--rv-secondary);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
}

.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: var(--rv-primary);
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    background: var(--rv-primary);
    border-color: var(--rv-primary);
}

.services .icon-box:hover .icon {
    background: var(--rv-white);
}

.services .icon-box:hover .icon i {
    color: var(--rv-primary);
}

.services .icon-box:hover .icon::before {
    background: var(--rv-secondary);
}

.services .icon-box:hover h4,
.services .icon-box:hover h4 a,
.services .icon-box:hover p {
    color: var(--rv-white);
}


/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/

.appointment .php-email-form {
    width: 100%;
}

.appointment .php-email-form .form-group {
    padding-bottom: 8px;
}

.appointment .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.appointment .php-email-form .error-message {
    display: none;
    color: var(--rv-white);
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.appointment .php-email-form .error-message br+br {
    margin-top: 25px;
}

.appointment .php-email-form .sent-message {
    display: none;
    color: var(--rv-white);
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.appointment .php-email-form .loading {
    display: none;
    background: var(--rv-white);
    text-align: center;
    padding: 15px;
}

.appointment .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
    border-color: var(--rv-primary);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
    height: 44px;
}

.appointment .php-email-form textarea {
    padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
    background: var(--rv-primary);
    border: 0;
    padding: 10px 35px;
    color: var(--rv-white);
    transition: 0.4s;
    border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
    background: #1c84e3;
}


/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/

.departments {
    overflow: hidden;
}

.departments .nav-tabs {
    border: 0;
}

.departments .nav-link {
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: var(--rv-primary);
    border-radius: 0;
    border-right: 2px solid #ebf1f6;
    font-weight: 600;
    font-size: 15px;
    display: flex;
}

.departments .nav-link img {
    margin-right: 10px;
    width: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}

.departments .nav-link:hover {
    color: var(--rv-primary);
}

.departments .nav-link.active {
    color: var(--rv-primary);
    border-color: var(--rv-primary);
}

.departments .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.departments .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--rv-primary);
}

.departments .details p {
    color: #777777;
}

.departments .details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .departments .nav-link {
        border: 0;
        padding: 15px;
    }
    .departments .nav-link.active {
        color: var(--rv-white);
        background: var(--rv-primary);
    }
}


/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/

.doctors {
    background: var(--rv-white);
}

.doctors .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    position: relative;
    background: var(--rv-white);
    overflow: hidden;
    transition: 0.5s;
}

.doctors .member:hover {
    transition: 0.5s;
    transform: translateY(-10px);
}

.doctors .member:hover::before {
    transition: 0.5s;
    width: 100%;
    background: var(--rv-secondary);
}

.doctors .member::before {
    content: "";
    position: absolute;
    width: 0;
    transition: 0.5s;
    height: 3px;
    top: 0;
    background: #eee;
    left: 0;
}

.doctors .member .pic {
    overflow: hidden;
    max-width: 200px;
    height: 200px;
    width: 100%;
    border-radius: 5px;
}

.doctors .member .pic img {
    transition: ease-in-out 0.3s;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.doctors .member:hover img {
    transform: scale(1.1);
}

.doctors .member .member-info {
    padding-left: 30px;
    width: calc(100% - 200px);
}

.doctors .member .member-info span {
    font-weight: 600;
}

.doctors .member .member-info h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
    overflow: hidden;
}

.doctors .member .member-info .b-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
    overflow: hidden;
}

.doctors .member .member-info .b-text p {
    font-weight: 500;
    color: var(--rv-black);
}

.doctors .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--rv-primary);
}

.doctors .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.doctors .member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #b2c8dd;
    bottom: 0;
    left: 0;
}

.doctors .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.doctors .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.doctors .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #a0bcd5;
}

.doctors .member .social a i {
    color: var(--rv-white);
    font-size: 16px;
    margin: 0 2px;
}

.doctors .member .social a:hover {
    background: var(--rv-primary);
}

.doctors .member .social a+a {
    margin-left: 8px;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: var(--rv-white);
    border-radius: 4px;
    position: relative;
    border: 1px solid #eee;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: var(--rv-secondary);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: var(--rv-primary);
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials .testimonial-wrap {
    padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px 30px 30px 60px;
    margin: 30px 15px;
    min-height: 100px;
    box-shadow: 0px 2px 12px rgba(44, 73, 100, 0.08);
    position: relative;
    background: var(--rv-white);
}

.testimonials .testimonial-item .t-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonials .testimonial-item .red-more {
    padding-top: 20px;
    cursor: pointer;
    color: var(--rv-secondary);
    font-weight: 600;
    text-decoration: underline;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid var(--rv-white);
    position: absolute;
    left: -45px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #badaf7;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--rv-white);
    opacity: 1;
    border: 1px solid var(--rv-primary);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--rv-primary);
}

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }
    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }
    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }
    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid var(--rv-white);
    border-bottom: 3px solid var(--rv-white);
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
    width: 100%;
    background: var(--rv-white);
}

.contact .info i {
    font-size: 20px;
    color: var(--rv-primary);
    float: left;
    width: 44px;
    height: 44px;
    background: var(--rv-secondary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--rv-primary);
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #4b7dab;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: var(--rv-primary);
    color: var(--rv-white);
}

.contact .php-email-form {
    width: 100%;
    background: var(--rv-white);
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: var(--rv-white);
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: var(--rv-white);
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: var(--rv-white);
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: var(--rv-primary);
    border: 0;
    padding: 10px 35px;
    color: var(--rv-white);
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #1c84e3;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    color: var(--rv-white);
    font-size: 14px;
    background: var(--rv-primary);
}

#footer .footer-top {
    padding: 60px 0 0 0;
    background: var(--rv-primary);
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    color: var(--rv-white);
    font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: var(--rv-white);
}

#footer .footer-top .footer-contact p a {
    color: var(--rv-white);
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--rv-white);
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #f95d53;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: var(--rv-white);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--rv-secondary-light);
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--rv-black);
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: var(--rv-white);
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #bfdcf7;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: var(--rv-primary);
    color: var(--rv-white);
    transition: 0.3s;
    border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
    background: #1c84e3;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: var(--rv-white);
}

#footer .credits a {
    color: var(--rv-secondary-light);
}

#footer .credits a:hover {
    color: var(--rv-white);
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--rv-secondary);
    color: var(--rv-primary);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: var(--rv-white);
    color: var(--rv-primary);
    box-sizing: 0 0 10px 10px var(--rv-bg-secondary);
    text-decoration: none;
}

#appointment .appointment-btn {
    margin: 0px auto;
    display: table;
}

.departments .nav-link i {
    padding-right: 10px;
}

.logo a img {
    height: 90px;
}

.bg-light-color {
    background: var(--rv-primary-light);
}

.form-file .form-group {
    margin-bottom: 20px;
}


/*feature css start*/

.fas {
    font-size: 24px;
    color: var(--rv-primary);
    /* Change color */
}

.features-section .features-list {
    padding-left: 0;
}

.features-section .features-list li {
    margin-bottom: 30px;
    position: relative;
    list-style: none;
}

.features-section .features-list li.active a .tuia-card::before {
    opacity: 1;
}

.features-section .features-list li a {
    display: block;
    text-decoration: none;
}

.features-section .features-list li a .tuia-card {
    background-color: var(--rv-white);
    padding: 20px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 15px 0 #ddd;
    overflow: hidden;
    transition: 0.5s;
}

.features-section .features-list li a .tuia-card:hover {
    transition: 0.5s;
}

.features-section .features-list li a .tuia-card:hover::before {
    opacity: 0.5;
}

.features-section .features-list li a .tuia-card::before {
    content: "";
    width: 100px;
    height: 150px;
    right: -35px;
    top: -61px;
    position: absolute;
    background: var(--rv-primary);
    transition: 0.5s;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    opacity: 0.2;
    transform: rotate(-45deg);
}

.features-section .features-list li a .tuia-card .content p {
    color: #555;
}

.features-section .features-list li a .tuia-card .content p:last-child {
    margin-bottom: 0;
}

.features-section .features-list li a .tuia-card .ih-card {
    display: flex;
    align-items: center;
}

.features-section .features-list li a .tuia-card .ih-card .icone {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.features-section .features-list li a .tuia-card .ih-card .icone .flaticonhiw {
    font-size: 30px;
}

.features-section .features-list li a .tuia-card .ih-card .haddings h5 {
    font-weight: 600;
    color: #666;
    margin: 0;
    margin-bottom: 0;
}

.features-section .tyi-items {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .features-section .tyi-items {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .features-section .tyi-items img {
        width: 100%;
    }
}

.stores {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    padding-top: 20px;
}

@media only screen and (max-width: 767px) {
    .stores {
        justify-content: center;
    }
}

.stores .stors {
    padding: 15px;
}

.stores .stors:hover {
    transition: 0.5s;
    filter: unset;
}

.stores .stors img {
    transition: 0.5s;
    height: 45px;
}

.footer-middle .stores img {
    height: 35px;
}


/*featur css end*/


/*--------------------------------------------------------------
/*sip card*/

.sip_calcualtor-section .rv-title-style .text {
    max-width: 550px;
}

.sip-card .text_input {
    width: 100%;
    max-width: 150px;
    height: 45px;
    border-radius: 50px;
    border: 1px solid #ddd;
    padding: 8px 20px;
    color: var(--rv-black);
}

.sip-card .text_input:focus {
    outline: unset;
    box-shadow: unset;
    border-color: var(--rv-primary);
}

.sip-card .hide-span {
    display: none;
}

.sip-card .form-range {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--rv-transparent);
    height: 1rem;
    padding: 0 !important;
    width: 100%;
}

.sip-card .form-range:focus {
    outline: 0;
}

.sip-card .form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0;
}

.sip-card .form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0;
}

.sip-card .form-range::-moz-focus-outer {
    border: 0;
}

.sip-card .form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--rv-primary);
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 0.1rem 0.25rem rgba(22, 28, 45, 0.1);
    height: 1rem;
    margin-top: -0.25rem;
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 1rem;
}

.sip-card .form-range::-webkit-slider-thumb:active {
    background-color: var(--rv-secondary);
}

.sip-card .form-range::-webkit-slider-runnable-track {
    background-color: var(--rv-gray);
    border-color: var(--rv-transparent);
    border-radius: 1rem;
    box-shadow: inset 0 1px 2px rgba(22, 28, 45, 0.075);
    color: var(--rv-transparent);
    cursor: pointer;
    height: 0.5rem;
    width: 100%;
}

.sip-card .form-range::-moz-range-thumb {
    -moz-appearance: none;
    appearance: none;
    background-color: var(--rv-primary);
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 0.1rem 0.25rem rgba(22, 28, 45, 0.1);
    height: 1rem;
    -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 1rem;
}

.sip-card .form-range::-moz-range-thumb:active {
    background-color: var(--rv-secondary);
}

.sip-card .form-range::-moz-range-track {
    background-color: var(--rv-secondary-light);
    border-color: var(--rv-transparent);
    border-radius: 1rem;
    box-shadow: inset 0 1px 2px rgba(22, 28, 45, 0.075);
    color: var(--rv-transparent);
    cursor: pointer;
    height: 0.5rem;
    width: 100%;
}

.sip-card .form-range:disabled {
    pointer-events: none;
}

.sip-card .form-range:disabled::-webkit-slider-thumb {
    background-color: var(--rv-secondary-light);
}

.sip-card .form-range:disabled::-moz-range-thumb {
    background-color: var(--rv-secondary-light);
}

@media (prefers-reduced-motion: reduce) {
    .sip-card .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none;
    }
    .sip-card .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none;
    }
}

.sip-card .sip-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -10px;
}

.sip-card .sip-row .sipod {
    width: 100%;
}

.sip-card .sip-row .sip-cols {
    padding: 10px;
}

.sip-card .sip-row .sip-cols.cols-input {
    width: 60%;
}

@media only screen and (max-width: 767px) {
    .sip-card .sip-row .sip-cols.cols-input {
        width: 100%;
    }
}

.sip-card .sip-row .sip-cols.cols-chart {
    width: 40%;
}

@media only screen and (max-width: 767px) {
    .sip-card .sip-row .sip-cols.cols-chart {
        width: 100%;
    }
}

.sip-card .sipodata .sip-cols {
    max-width: 33.3%;
    width: 100%;
}

@media only screen and (max-width: 575px) {
    .sip-card .sipodata .sip-cols {
        max-width: 100%;
    }
}

.sip-card .sipodata .sip-cols:nth-child(1) .sipo-card {
    background: var(--rv-primary);
}

.sip-card .sipodata .sip-cols:nth-child(2) .sipo-card {
    background: var(--rv-secondary);
}

.sip-card .sipodata .sip-cols:nth-child(3) .sipo-card {
    background: var(--rv-black);
}

.sip-card .sipodata .sip-cols .sipo-card {
    box-shadow: 0 0 15px 0 #bbb;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    background: var(--rv-primary);
}

.sip-card .sipodata .sip-cols .sipo-card .display_result,
.sip-card .sipodata .sip-cols .sipo-card .result_text {
    color: var(--rv-white);
}

.sip-card .sipc-body .sip-cols {
    width: 100%;
}

.sip-card .sipc-body .sip-cols .sipc-items .slider_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/*---sip end--*/


/*-----------benefit distrubitor button-----------*/

.main-section {
    padding: 80px 0;
}

a.btn.mf-btn {
    margin-left: 25px;
    background: var(--rv-primary);
    color: var(--rv-white);
    border-radius: 50px;
    padding: 16px 14px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

a.btn.mf-btn:hover {
    background: #49a236;
    color: var(--rv-white);
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    height: 54px;
    background-color: var(--rv-white);
    border-color: transparent;
    transition: 0.5s;
    border: 1px solid #e6e6e6;
    padding: 6px 20px;
    box-shadow: none;
    border-radius: 5px;
}

.button .abtn,
.button a {
    background: var(--rv-primary);
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 44;
    border: unset;
    border-radius: 5px;
    color: var(--rv-white);
}

.login_btn {
    vertical-align: middle;
    padding: 10px 15px !important;
}

.mf-form {
    background: #fff !important;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 2px 5px 15px 0 rgba(0, 0, 0, 0.231372549);
    width: 96%;
    margin: 0 auto;
    border-bottom: 3px solid #464190;
    position: relative;
    z-index: 9;
}

.mf-form::after {
    content: "";
    position: absolute;
    background: rgba(70, 65, 144, 0.0509803922);
    width: 350px;
    height: 350px;
    border-radius: 100%;
    top: 200px;
    right: 70px;
    z-index: -1;
}

.mf-form .form-title {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 26px;
}

.mf-form .btnRefresh {
    background: #3f9e36;
    border: 1px solid #3f9e36;
    padding: 0 10px;
    margin: 0 5px !important;
    color: #fff;
    border-radius: 4px;
}

.mf-form .form-group {
    position: relative;
}

.mf-form .form-group .icon {
    position: absolute;
    background: #464190;
    height: 100%;
    width: 45px;
    border-radius: 5px 0 0 5px;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mf-form .form-group .icon i {
    color: #fff;
    font-size: 34px;
}

.mf-form .form-group .form-control {
    padding: 15px 15px 15px 50px;
}

.mf-form .form-group .form-control:focus {
    box-shadow: none;
    border-color: #464190;
}

.mf-form #captcha {
    padding: 10px;
}


/* Content Styles */

.mf-content .image {
    position: relative;
}

.mf-content .image::after {
    content: "";
    position: absolute;
    background: rgba(70, 65, 144, 0.1803921569);
    width: 100%;
    height: 100%;
    left: -10px;
    top: 10px;
    border-radius: 10px;
    z-index: -1;
}

.mf-content .image img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #464190;
}

.mf-content .content-top {
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.mf-content .content-top h4 {
    font-weight: 600;
    text-transform: uppercase;
}

.mf-content .content-top h2 {
    font-weight: 700;
    font-size: 52px;
    text-transform: uppercase;
    color: #464190;
    line-height: 42px;
}

.mf-content .content-top h3 {
    font-weight: 700;
    text-transform: uppercase;
}


/* Statistics Section */

.content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.statistics {
    text-align: center;
}

.statistics.statistics-left {
    border-right: 1px solid #ddd;
    padding-right: 50px;
}

.statistics .icon {
    border: 1px solid #464190;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    padding: 0 5px 5px;
    justify-content: center;
    align-items: center;
}

.statistics .icon i {
    color: #464190;
    font-size: 40px;
}

.statistics h6 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 17px;
}

.statistics h2 {
    color: #464190;
}


/*service section csssss*/

.service-section .heading {
    width: 30%;
}

.service-box {
    background-color: #fff;
    padding: 0;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.service-box .service-img img {
    transition: all 0.3s;
}

.service-box:hover .service-img img {
    transition: all 0.3s;
    transform: rotate(3deg) scale(1.1);
}

.service-box .service-img h5 {
    position: absolute;
    z-index: 9;
    bottom: -10px;
    left: 0px;
    display: block;
    width: 100%;
    background: linear-gradient(45deg, var(--rv-primary) 0%, transparent);
    color: #fff;
    padding: 15px;
}

.service-box:hover .service-img h5 {
    display: none;
}

.service-box .service-content-overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(255, 255, 255, 0.84);
    transition: transform 0.4s ease;
    transform: scale(0, 1);
    transform-origin: left center;
    z-index: 9;
}

.service-box:hover .service-content-overlay {
    transform: scale(1);
    /* -webkit-transform-origin: right center; */
    transform-origin: right center;
}

.service-box .service-content {
    padding: 40px 20px 40px 50px;
    position: relative;
}

.service-box .service-content::after {
    content: "";
    position: absolute;
    border-left: 3px solid #00a6bb;
    height: 120px;
    left: 25px;
    top: 60px;
}

.service-box .service-content .btn-read {
    position: relative;
    padding: 12px 26px;
    border-radius: 50px;
    display: inline-block;
    font-size: 16;
    color: var(--rv-white);
    background-color: var(--rv-primary);
    transition: all 500ms ease;
}

.service-box .service-content .btn-read:hover {
    background-color: var(--rv-black);
    color: var(--rv-white);
}

.service-box .service-content h5 {
    padding: 15px 0;
    font-weight: 700;
    font-size: 24px;
    color: var(--rv-primary);
}

.line-draw-animation {
    position: relative;
}

.line-draw-animation::before {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    transition: all 0.2s linear;
    background: #249138;
    right: 0;
    top: 0;
    transition-delay: 0.2s;
}

.service2.line-draw-animation::before {
    background: #ff9600;
}

.service3.line-draw-animation::before {
    background: #007eff;
}

.service4.line-draw-animation::before {
    background: #ff802c;
}

.service5.line-draw-animation::before {
    background: #81ce74;
}

.service6.line-draw-animation::before {
    background: #6e55ff;
}

.line-draw-animation:hover::before {
    width: 100%;
    transition-delay: 0.4s;
}

.line-draw-animation::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    transition: all 0.2s linear;
    background: #249138;
    left: 0;
    bottom: 0;
    transition-delay: 0.6s;
}

.service2.line-draw-animation::after {
    background: #ff9600;
}

.service3.line-draw-animation::after {
    background: #007eff;
}

.service4.line-draw-animation::after {
    background: #ff802c;
}

.service5.line-draw-animation::after {
    background: #81ce74;
}

.service6.line-draw-animation::after {
    background: #6e55ff;
}

.line-draw-animation:hover::after {
    width: 100%;
    transition-delay: 0s;
}

.line-draw-inner::before {
    content: "";
    width: 2px;
    height: 0;
    position: absolute;
    transition: all 0.2s linear;
    background: #249138;
}

.service2 .line-draw-inner::before {
    background: #ff9600;
}

.service3 .line-draw-inner::before {
    background: #007eff;
}

.service4 .line-draw-inner::before {
    background: #ff802c;
}

.service5 .line-draw-inner::before {
    background: #81ce74;
}

.service6 .line-draw-inner::before {
    background: #6e55ff;
}

.line-draw-animation .line-draw-inner::before {
    transition-delay: 0s;
    left: 0;
    top: 0;
}

.line-draw-animation:hover .line-draw-inner::before {
    height: 100%;
    transition-delay: 0.6s;
}

.line-draw-inner::after {
    content: "";
    width: 2px;
    height: 0;
    position: absolute;
    transition: all 0.2s linear;
    background: #249138;
}

.service2 .line-draw-inner::after {
    background: #ff9600;
}

.service3 .line-draw-inner::after {
    background: #007eff;
}

.service4 .line-draw-inner::after {
    background: #ff802c;
}

.service5 .line-draw-inner::after {
    background: #81ce74;
}

.service6 .line-draw-inner::after {
    background: #6e55ff;
}

.line-draw-animation .line-draw-inner::after {
    transition-delay: 0.4s;
    right: 0;
    bottom: 0;
}

.line-draw-animation:hover .line-draw-inner::after {
    height: 100%;
    transition-delay: 0.2s;
}


/* market watch--------*/

.image {
    display: flex;
    justify-content: center;
}


/* Add this to your CSS file or within a <style> tag */

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-theme {
    animation: fadeInUp 1.4s ease-in-out;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-theme:hover {
    background-color: #5e3aee;
    /* Change the color on hover */
    transform: scale(1.1);
}


/* Optional: Background color transition */


/* Zoom effect for the entire section */

#appointment {
    transition: transform 0.5s ease-in-out, background-color 0.3s ease-in-out;
    /*  background-color: #f7f7f7;*/
}

#appointment:hover {
    transform: scale(1.05);
    /* Zoom in by 5% */
    /* background-color: #eaeaea; */
    /* Optional: Background color change */
}


/* Optional: Adding some animation to the title and paragraph */

.section-title h2,
.section-title p {
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

#appointment:hover .section-title h2,
#appointment:hover .section-title p {
    transform: scale(1.1);
    /* Slightly zoom the text as well */
    opacity: 0.9;
}


/* Button zoom effect */

.btn-theme {
    transition: transform 0.3s ease-in-out;
}

.btn-theme:hover {
    transform: scale(1.1);
    /* Slightly increase the size of the button on hover */
}


/*------------------about us--------------------*/


/*-----------------appoinment---------------*/

.appointment .section-title {
    margin-bottom: 20px;
}

.appointment .btn-theme {
    background-color: var(--rv-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.appointment .btn-theme:hover {
    background-color: #03356e;
    text-decoration: none;
}

.appointment .img-market {
    max-width: 447px;
    height: auto;
    border-radius: 10%;
}

@media (max-width: 991.98px) {
    .appointment .row {
        flex-direction: column-reverse;
        text-align: center;
    }
    .appointment .col-lg-6 {
        max-width: 100%;
    }
    .appointment img {
        margin-bottom: 20px;
    }
}

div#sectionmarket {
    margin-left: 7px;
    margin-top: -16px;
    /*  padding-left: -30px;
  padding-right: 134px;*/
    text-align: justify;
}

.main-banner {
    position: relative;
    /* height: 60vh; */
    overflow-y: hidden;
}


/* 
.why-us-2{
  position: absolute;
  z-index: 99;
  bottom: -500px;
  left: 10%;
} */

section#why-us {
    position: relative;
    z-index: 99;
    /* margin-top: -200px; */
}

@media only screen and (max-width: 992px) {
    .appointment-btn {
        margin: 0 15px;
    }
    .service-box .service-img img {
        width: 100%;
    }
    .why-us .content h3 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .section.features-section h4 {
        text-align: center;
    }
}

@media only screen and (max-width: 575px) {
    .appointment .img-market {
        width: 100%;
    }
    img#aboutimg {
        width: 100%;
    }
    .doctors .member {
        flex-wrap: wrap;
    }
    .doctors .member .member-info,
    .doctors .member .pic {
        max-width: 100%;
        padding: 0;
        width: 100%;
    }
    .doctors .member .pic {
        margin-bottom: 20px;
    }
    .appointment-btn span {
        display: none;
    }
    .appointment-btn {
        margin: 0 8px;
    }
    .appointment-btn i {
        display: block;
    }
}

#mail-status .success {
    background: rgba(0, 128, 0, 0.1215686275);
    color: #008000;
    border-radius: 5px;
    border: 2px solid #008000;
    font-size: 12px;
    padding: 10px;
    font-weight: 600;
}

#error_msg .error {
    background: rgba(255, 0, 0, 0.0509803922);
    color: #ff0000;
    border-radius: 5px;
    border: 2px solid #ff0000;
    font-size: 12px;
    padding: 10px;
    font-weight: 600;
}

.home-features-section .features-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    align-items: center;
}

.home-features-section .features-row .features-icon {
    padding: 15px;
    max-width: 20%;
    width: 100%;
}

.home-features-section .features-row .features-icon .icone-row {
    display: grid;
    grid-template-columns: repeat(1fr);
}

.home-features-section .features-row .features-icon .icone-row .icone {
    padding: 15px;
    text-align: center;
}

.home-features-section .features-row .features-icon .icone-row .icone a {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--rv-secondary);
    padding: 15px;
}

.home-features-section .features-row .features-icon .icone-row .icone a.active {
    background: var(--rv-primary);
}

.home-features-section .features-row .features-icon .icone-row .icone a.active img {
    width: 100%;
    filter: drop-shadow(2px 4px 6px #999);
}

.home-features-section .features-row .features-icon .icone-row .icone a img {
    width: 100%;
}

.home-features-section .features-row .features-image {
    padding: 15px;
    max-width: 35%;
    width: 100%;
}

.home-features-section .features-row .features-image .image img {
    height: 500px;
    filter: drop-shadow(2px 4px 6px #888);
}

.home-features-section .features-row .features-content {
    padding: 15px;
    max-width: 45%;
    width: 100%;
}

.home-features-section .features-row .features-content h5 {
    text-transform: capitalize;
}

#footer .footer-top .logo a img {
    filter: brightness(0) invert(1);
}

section#why-us .title a {
    color: var(--rv-secondary);
    font-size: 20px;
    word-spacing: 6px;
    padding-left: 20px;
}

.rv-services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -10px;
}

.rv-services-row .services-item {
    max-width: 33.3%;
    width: 100%;
    transition: .5s;
    padding: 10px;
}

.rv-services-row .services-item a {
    overflow: hidden;
    display: flex;
    border-radius: 10px 0 10px 0;
    box-shadow: 0 0 10px 0 #ddd;
    /* align-items: center; */
    padding: 15px;
    transition: .5s;
    position: relative;
}

.rv-services-row .services-item a::before {
    content: '';
    position: absolute;
    width: 0;
    transition: .5s;
    height: 3px;
    background: var(--rv-secondary);
    left: 0;
    z-index: 1;
    bottom: 0;
}

.rv-services-row .services-item a:hover::before {
    transition: .5s;
    width: 100%;
}

.rv-services-row .services-item a::after {
    content: '';
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    transition: .5s;
    z-index: 0;
    top: 0;
    background: var(--rv-primary-light);
}

.rv-services-row .services-item a div,
.rv-services-row .services-item a h6 {
    transition: .5s;
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 1;
}

.rv-services-row .services-item a img {
    position: relative;
    background-color: var(--rv-primary-light);
    padding: 10px;
    width: 80px;
    height: 80px;
    object-fit: contain;
    left: -15px;
    transition: .5s;
    top: -15px;
    margin-bottom: -15px;
    z-index: 1;
    border-radius: 10px 0 10px 0;
}

.rv-services-row .services-item a:hover {
    transform: translateY(-10px);
    transition: .5s;
    box-shadow: 0 10px 10px 0 #bbb;
}

.rv-services-row .services-item a:hover::after {
    width: 100%;
    height: 100%;
    transition: .5s;
}

.rv-team-page-section .rv-row {
    position: relative;
}

.rv-team-page-section .rv-row .rv-col-4 {
    float: left;
    margin-bottom: 15px;
    margin-right: 25px;
}

.rv-team-page-section .rv-row .rv-col-4 img {
 width: 400px;
    object-fit: contain;
}

.rv-team-page-section .rv-row2 .rv-col-4 {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
}

.rv-team-page-section .rv-row2 .rv-col-4 img {
  width: 300px;
    object-fit: contain;
}

.video-img {
    max-width: 100%;
    height: auto;
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.video-img img {
    max-height: 250px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
}

.counts .section-title {
    padding-bottom: 0;
}

.owl-home-slider .image-items img {
    width: 100%;
    object-fit: cover;
}
.owl-home-slider.owl-theme .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.owl-home-slider.owl-theme .owl-nav.disabled+.owl-dots{
    margin: 0;
}
.owl-home-slider.owl-theme .owl-dots .owl-dot span{
    width: 20px;
        background: #ffecea;
    height: 5px;
}

.owl-home-slider.owl-theme .owl-dots .owl-dot.active span{
        background: var(--rv-primary);
}