@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
    --rv-primary-rgb: 29, 66, 108;
    --rv-secondary-rgb: 226, 35, 38;
    --rv-primary: #1d426c;
    --rv-secondary: #e22326;
    --rv-primary-light: #f4fcff;
    --rv-secondary-light: #fef9fc;
    --rv-white: #fff;
    --rv-black: #000;
    --rv-font: "PT Sans", 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;
}

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);
}

.btn {
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    padding: 8px 20px;
}

.btn::after {
    content: "";
    background: url(../images/wave2.png);
    background-size: 1000px 100px;
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 10px;
    animation: wave 30s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
    background-size: contain;
    opacity: 0.2;
}

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

.btn.btn-primary:hover {
    background: var(--rv-primary);
    color: var(--rv-white);
    transition: all 0.3s ease-in-out;
}

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

.btn.btn-secondary:hover {
    background: var(--rv-secondary);
    color: var(--rv-white);
    transition: all 0.3s ease-in-out;
}

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

.main-heading h5 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--rv-primary);
}

.main-heading h1 {
    font-weight: 600;
    margin: 0;
    font-size: 42px;
    line-height: 48px;
}

.main-heading .title-box {
    position: relative;
    display: block;
    font-size: 38px;
    margin: 0;
}

.main-heading .title-box span {
    color: var(--rv-secondary);
}

.main-heading .title-box::after {
    content: "";
    position: absolute;
    width: 25%;
    height: 10px;
    background-image: url(../images/decore-new.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-size: contain;
}

.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: 8px 25px;
    font-weight: 600;
    display: flex;
    max-width: -moz-fit-content;
    max-width: fit-content;
    align-items: center;
    justify-content: center;
}

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

.btn.btn-primary {
    background-color: var(--rv-primary);
    border: 2px solid var(--rv-primary);
}

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

.btn.btn-secondry {
    background: var(--rv-secondary);
    border: 2px solid var(--rv-secondary);
    color: var(--rv-black);
}

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

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

h1 {
    font-size: 52px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 32px;
}

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-primary);
    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-white);
    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;
    color: var(--rv-white);
}

.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%;
    background-repeat: no-repeat;
}

.ticker_section .tickers .ticker_item .difference_percent {
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    padding-right: 30px;
    position: relative;
    color: var(--rv-white);
}

.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%;
    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;
    margin-top: 25px;
    border-top: 1px solid #999;
}

.disclaimer-sec h5,
.disclaimer-sec h6,
.disclaimer-sec p {
    margin-bottom: 0;
    color: #a7a8b4;
    margin: 0;
}

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

.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;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    transition: 0.5s;
    color: var(--rv-white);
}

.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: 100%;
}

.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: 200px 0 150px;
    position: relative;
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    background: var(--rv-primary);
}

.top-banner-section::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 400px;
    width: 100%;
    background-image: url(../../images/bottom.svg);
    background-size: 110%;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 1;
}

.top-banner-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #2f3096 url(../../images/services-one-shape.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0.1;
    z-index: 0;
}

.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;
    padding-top: 20px;
    flex-wrap: wrap;
}

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

.top-banner-section .banner-box ul li a {
    color: var(--rv-white);
    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-white);
    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-white);
    margin: 0;
    font-weight: 600;
}

.nevdisc-box {
    display: none;
}

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

#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: 1px solid #ddd;
    border-bottom: unset;
    margin-bottom: 20px;
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione {
    padding: 20px;
    padding-right: 60px;
    position: relative;
    border-bottom: 1px solid #ddd;
    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;
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione.active::after {
    transition: 0.5s;
    transform: rotate(90deg);
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione::before,
.rv-faq-section .tebBar-box .tebBar-card .tebActione::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 25px;
    width: 2px;
    height: 20px;
    transition: 0.5s;
    background: var(--rv-primary);
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione::before {
    transform: rotate(90deg);
}

.rv-faq-section .tebBar-box .tebBar-card .disc-box {
    display: none;
    border-bottom: 1px solid #ddd;
    padding: 20px;
}

.single_blog {
    border-radius: 10px;
    transition: 0.5s;
    background: var(--rv-white);
}

.single_blog:hover {
    transition: 0.5s;
    box-shadow: 0 10px 10px 0 #ddd;
    transform: translateY(-10px);
    box-shadow: 0 0 10px 0 #ddd;
}

.single_blog:hover .single_blog_thumb {
    transition: 0.5s;
}

.single_blog:hover .single_blog_thumb img {
    transition: 0.5s;
    transform: scale(1.1) rotate(5deg);
}

.single_blog .single_blog_thumb {
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
    position: relative;
}

.single_blog .single_blog_thumb img {
    transition: 0.5s;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.single_blog .single_blog_thumb span {
    background: var(--rv-white);
    padding: 5px 10px;
    position: absolute;
    color: var(--rv-white);
    left: 0;
    bottom: 0;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 5px -5px 10px 0 #fff;
    border-radius: 0 10px 0 0;
}

.single_blog .single_blog_content {
    background: var(--rv-primary);
    padding: 20px;
    border-radius: 0px 0px 10px 10px;
}

.single_blog .single_blog_content .temp_theme_blog_meta {
    font-size: 12px;
    color: var(--rv-white);
}

.single_blog .single_blog_content .temp_theme_blog_meta ul {
    list-style: none;
    margin-bottom: 0;
}

.single_blog .single_blog_content .temp_theme_blog_meta i {
    color: var(--rv-secondary);
}

.single_blog .single_blog_content .blog_page_title {
    font-size: 20px;
    font-weight: 600;
    padding: 10px 0 0;
    color: var(--rv-white);
}

.single_blog .single_blog_content .blog_page_title h6 {
    color: var(--rv-white);
}

.single_blog .single_blog_content .blog_page_button span {
    color: var(--rv-black);
    text-decoration: underline;
}

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

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

.light-gray {
    color: #333b46;
}

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

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

.light-bg1 {
    background-color: var(--rv-secondary-light);
}

.white-bg {
    background-color: var(--rv-white) !important;
}

.white-color {
    color: var(--rv-white) !important;
}

.pb-btn-box {
    text-align: center;
    padding: 40px 0 20px 0;
}

.know-more {
    position: relative;
    padding-right: 40px;
}

.know-more:after {
    content: "\f11e";
    font-family: "uicons-solid-straight";
    position: absolute;
    margin-left: 5px;
    font-size: 30px;
}

.main-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
}

.main-title-white {
    font-size: 42px;
    font-weight: 800;
    color: var(--rv-white);
    letter-spacing: 1px;
}

.main-heading {
    position: relative;
    width: -moz-max-content;
    width: max-content;
    text-align: center;
    margin: 0 auto;
}

.main-heading .title-box {
    display: inline-block;
    padding: 6px 0;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    color: var(--rv-primary);
    letter-spacing: 1px;
}

.main-heading .main-title {
    font-size: 38px;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 35px;
    font-weight: 700;
    width: 100%;
    color: var(--rv-black);
}

header.main-header {
    position: absolute;
    z-index: 99;
    width: 100%;
    padding: 0;
}

@media only screen and (max-width: 992px) {
    header.main-header {
        padding: 10px 0;
    }
}

.header-top .logo img {
    height: 70px;
}

@media only screen and (max-width: 767px) {
    .header-top .logo img {
        height: 50px;
    }
}

ul.navbar-nav .nav-item .nav-link {
    color: var(--rv-white) !important;
    padding: 12px 20px;
    font-weight: 500;
}

ul.navbar-nav .nav-item.dropdown .dropdown-menu {
    width: 250px;
}

ul.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
    text-align: left;
    border-bottom: 1px solid #ddd;
}

ul.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:last-child {
    border-bottom: unset;
}

ul.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

ul.navbar-nav .nav-item .nav-link:hover {
    color: var(--rv-secondary) !important;
}

ul.navbar-nav .nav-item .nav-link.active {
    color: var(--rv-secondary) !important;
    font-weight: 600;
    background-color: var(--rv-primary);
}

ul.navbar-nav .dropdown-menu {
    padding: 0;
}

ul.navbar-nav .dropdown-menu .dropdown-divider {
    margin: 0;
}

ul.navbar-nav .dropdown-menu .dropdown-item {
    padding: 10px 15px;
}

ul.navbar-nav .dropdown-menu .dropdown-item.active,
ul.navbar-nav .dropdown-menu .dropdown-item:active {
    color: var(--rv-white);
    text-decoration: none;
    background-color: var(--rv-primary);
}

ul.navbar-nav .dropdown-menu .dropdown-item:hover,
ul.navbar-nav .dropdown-menu .dropdown-item:focus {
    color: var(--rv-white);
    text-decoration: none;
    background-color: var(--rv-primary);
}

.radio-group {
    text-align: center;
    margin: 30px 0 20px 0 !important;
    /* Hide the browser's default radio button */
    /* Create a custom radio button */
    /* On mouse-over, add a grey background color */
    /* When the radio button is checked, add a blue background */
    /* Create the indicator (the dot/circle - hidden when not checked) */
    /* Show the indicator (dot/circle) when checked */
    /* Style the indicator (dot/circle) */
}

.radio-group .radio-btn {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    margin-right: 15px;
}

.radio-group .radio-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-group .radio-btn .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    border: 2px solid #001522;
    border-radius: 50%;
}

.radio-group .radio-btn:hover input ~ .checkmark {
    border: 2px solid var(--rv-primary);
}

.radio-group .radio-btn input:checked ~ .checkmark {
    background-color: var(--rv-white);
    border: 2px solid var(--rv-primary);
}

.radio-group .radio-btn .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-group .radio-btn input:checked ~ .checkmark:after {
    display: block;
}

.radio-group .radio-btn .checkmark:after {
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rv-primary);
}

.login-model .model-img img {
    width: 100%;
}

.login-model .modal-dialog {
    max-width: 900px;
    margin: 30px auto;
}

.login-model .modal-title {
    text-transform: uppercase;
    color: var(--rv-primary);
    font-size: 24px;
}

.login-model a.forgot-password {
    display: block;
    text-align: right;
    margin: 15px 0 30px 0;
    color: #001522;
    text-decoration: none;
}

.login-model a.forgot-password:hover {
    color: var(--rv-primary);
}

.login-model .modal-body {
    padding: 30px 20px;
}

.login-model .modal-header {
    padding: 25px 20px;
}

.login-model .modal-header button.close {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--rv-primary);
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    padding: 0 !important;
    color: var(--rv-primary);
    opacity: 1;
    margin: 0 !important;
    outline: none;
}

.video-model .model-video video {
    width: 100%;
    padding: 7px 7px 0 7px;
    box-sizing: border-box;
    border-radius: 20px 20px 20px 20px;
}

.video-model .modal-dialog {
    max-width: 850px;
    margin: 50px auto;
}

.video-model .modal-title {
    text-transform: uppercase;
    color: var(--rv-primary);
    font-size: 24px;
}

.video-model .modal-body {
    padding: 0;
}

.video-model .modal-content {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.video-model .modal-header {
    padding: 15px;
    position: absolute;
    top: -5px;
    right: -5px;
    width: 100%;
    height: 70px;
    z-index: 9999;
    border: none;
    overflow: hidden;
}

.video-model .modal-header button.close {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--rv-primary);
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    padding: 0 !important;
    color: var(--rv-primary);
    opacity: 1;
    margin: 0 0 0 auto !important;
    outline: none;
}

.video-btn {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 40%;
    top: 160px;
    border-radius: 100%;
    z-index: 999;
    box-shadow: none;
}

.video-btn:after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background-color: #66b60a;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-border 1500ms ease-out infinite;
}

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

.video-btn:focus {
    box-shadow: none;
}

.video-btn i {
    font-size: 52px;
    line-height: 86px;
    margin-left: 15px;
}

@keyframes ripple {
    0% {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
    }
    100% {
        opacity: 0;
        transform: scale3d(1.5, 1.5, 1);
    }
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.bottom-scroller.active .scroller {
    background-color: var(--rv-primary);
    display: block;
    width: 40px;
    height: 40px;
    color: var(--rv-white);
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    border-radius: 5px;
    position: fixed;
    right: 20px;
    bottom: 30px;
    text-decoration: none;
}

.bottom-scroller.active .scroller:hover {
    background-color: var(--rv-primary);
}

i.fi-ss-paper-plane {
    margin-left: 3px;
    /* display: inline-block; */
    /* line-height: 30px; */
    vertical-align: middle;
    font-size: 14px;
}

.card {
    border-radius: 10px;
    box-shadow: 0 6px 20px 1px rgba(0, 0, 0, 0.1);
}

.form-custom {
    display: inline-block;
    width: 100%;
    position: relative;
    margin-right: 20px;
}

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

.form-custom .form-group input {
    display: block;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #999;
    outline: none;
    color: var(--rv-primary);
    height: 45px;
    padding: 5px 40px 5px 5px;
    border-radius: 0;
}

.form-custom .form-group input:focus {
    border: none;
    border-bottom: 1px solid var(--rv-primary);
    box-shadow: none;
}

.form-custom .form-group select {
    display: block;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #999;
    outline: none;
    color: var(--rv-primary);
    height: 45px !important;
    padding: 5px 40px 5px 5px;
    border-radius: 0;
}

.form-custom .form-group select:focus {
    border: none;
    border-bottom: 1px solid var(--rv-primary);
    box-shadow: none;
}

.form-custom .form-group textarea {
    display: block;
    width: 100%;
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid #333;
    outline: none;
    color: var(--rv-primary);
    height: 80px;
    padding: 5px 40px 5px 5px;
    border-radius: 0;
}

.form-custom .form-group textarea:focus {
    border: none;
    border-bottom: 1px solid var(--rv-primary);
    box-shadow: none;
}

.form-custom .form-group .search {
    position: absolute;
    top: 3px;
    right: 5px;
    background-color: transparent;
    border: none;
    color: var(--rv-white);
}

.form-custom .form-group .search i:before {
    font-size: 24px;
}

.form-custom .form-group .btn.btn-primary {
    margin: 40px auto 0 auto;
    display: block;
}

.form-custom .dropdown {
    position: relative;
}

.form-custom .dropdown:after {
    content: "\f117";
    font-family: flaticon;
    position: absolute;
    color: #656565;
    top: 10px;
    right: 10px;
    font-size: 14px;
}

.home-slider {
    position: relative;
    background: var(--rv-primary);
    min-height: 78vh;
    position: relative;
    padding-top: 0;
    overflow: hidden;
    margin-top: 138px;
}

.home-slider::after {
    background-image: url(../images/banner-imgsvg.svg);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-repeat: repeat;
    background-size: 50%;
    opacity: 0.1;
}

.home-slider .container {
    position: relative;
    z-index: 1;
}

.wave {
    background: url(../images/wave2.png);
    background-size: 1000px 100px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 85px;
    animation: wave 6s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
}

.wave.wave1 {
    animation: wave 8s linear infinite;
    z-index: 1;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
}

.wave.wave2 {
    animation: wave2 7s linear infinite;
    z-index: 9;
    opacity: 0.5;
    animation-delay: -3s;
    bottom: 10px;
}

.wave.wave3 {
    animation: wave2 3s linear infinite;
    z-index: 9;
    opacity: 0.3;
    animation-delay: -2s;
    bottom: 15px;
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}

@keyframes wave2 {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: -1000px;
    }
}

.home-slider .banner-bubble {
    margin-top: 100px;
    position: absolute;
    right: 0;
    bottom: -60px;
    width: 100%;
}

.home-slider .banner-bubble .logos {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    bottom: -150px;
}

.home-slider .banner-bubble .logos span {
    animation: bubble 7s linear infinite;
    opacity: 0;
}

.home-slider .banner-bubble .logos span img {
    width: 80px !important;
}

.home-slider .banner-bubble .logos span em {
    color: var(--rv-white);
    font-style: normal;
    text-align: center;
    display: block;
    font-weight: 600;
}

.home-slider .banner-bubble .logos span:nth-child(1) {
    animation-delay: 1.6s;
}

.home-slider .banner-bubble .logos span:nth-child(1) img {
    width: 70px !important;
}

.home-slider .banner-bubble .logos span:nth-child(2) {
    animation-delay: 4.5s;
}

.home-slider .banner-bubble .logos span:nth-child(2) img {
    width: 90px !important;
}

.home-slider .banner-bubble .logos span:nth-child(3) {
    animation-delay: 3s;
}

.home-slider .banner-bubble .logos span:nth-child(3) img {
    width: 80px !important;
}

.home-slider .banner-bubble .logos span:nth-child(4) {
    animation-delay: 7s;
}

.home-slider .banner-bubble .logos span:nth-child(4) img {
    width: 90px !important;
}

.home-slider .banner-bubble .logos span:nth-child(5) {
    animation-delay: 4.7s;
}

.home-slider .banner-bubble .logos span:nth-child(5) img {
    animation-delay: 4.7s;
}

.home-slider .banner-bubble .logos span:nth-child(6) {
    animation-delay: 8s;
}

.home-slider .banner-bubble .logos span:nth-child(6) img {
    width: 65px !important;
}

.home-slider .banner-bubble .logos span:nth-child(7) {
    animation-delay: 5.56s;
}

.home-slider .banner-bubble .logos span:nth-child(7) img {
    width: 70px !important;
}

.home-slider .banner-bubble .logos span:nth-child(8) {
    animation-delay: 6.9s;
}

.home-slider .banner-bubble .logos span:nth-child(8) img {
    width: 55px !important;
}

.home-slider .banner-bubble .logos span:nth-child(9) {
    animation-delay: 3.5s;
}

.home-slider .banner-bubble .logos span:nth-child(9) img {
    width: 85px !important;
}

.home-slider .banner-bubble .logos span:nth-child(10) {
    animation-delay: 7.3s;
}

.home-slider .banner-bubble .logos span:nth-child(10) img {
    width: 60px !important;
}

.home-slider .banner-bubble .logos span:nth-child(11) {
    animation-delay: 4.4s;
}

.home-slider .banner-bubble .logos span:nth-child(11) img {
    width: 70px !important;
    margin-right: 40px;
}

@keyframes bubble {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-650px);
        opacity: 0;
    }
}

.home-slider .banner-text {
    padding: 160px 0 100px 0;
}

.home-slider .banner-text .banner-title1 {
    color: var(--rv-white);
    font-size: 32px;
    text-transform: uppercase;
}

.home-slider .banner-text .banner-title1 .text-i {
    font-weight: 400;
}

.home-slider .banner-text .banner-title1 .text-i b {
    font-weight: 600;
}

.home-slider .banner-text .banner-title2 {
    color: var(--rv-black);
    font-size: 24px;
    text-transform: capitalize;
    line-height: 34px;
    font-weight: 700;
    padding: 0 0 20px;
}

.home-slider .banner-text .btn.btn-secondary {
    margin-top: 30px;
}

.home-about .about-image {
    text-align: center;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
}

.home-about .about-image img {
    width: 100%;
    height: 500px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: right bottom;
    object-position: right bottom;
	transform: rotateY(180deg);
}

.home-SIP-graph .main-title {
    font-size: 28px;
}

.home-SIP-graph .main-title span.green {
    display: block;
}

.home-SIP-graph .SIP-image {
    overflow: hidden;
}

.home-SIP-graph .SIP-image img {
    width: 100%;
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-default {
    height: 50px;
    background-color: #e3fdc4;
    position: relative;
    color: #001522;
    border-radius: 2px;
    border-color: #e3fdc4;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 5px;
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-default:after {
    content: "\f1e9";
    position: absolute;
    font-family: uicons-solid-straight;
    right: 15px;
    top: 10px;
    color: #001522;
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-active {
    background-color: var(--rv-primary);
    color: var(--rv-white);
    height: 50px;
    border-radius: 2px;
    border-color: var(--rv-primary);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-active:after {
    content: "\f1ce";
    position: absolute;
    font-family: uicons-solid-straight;
    right: 15px;
    top: 10px;
    color: var(--rv-white);
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-active.ui-state-focus {
    outline: none;
}

.home-faq-section .faq-accordian .ui-accordion-content {
    padding: 15px;
    background-color: #ecfdd7;
    border-color: #e3fdc4;
    margin-bottom: 10px;
}

.header-top-right {
    text-align: right;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
}

@media only screen and (max-width: 992px) {
    .header-top-right .login-btn {
        margin-right: 60px;
    }
}

header.main-header .header-top {
    padding: 10px 0;
    background: var(--rv-primary);
    background: #b0bdcc;
}

header.main-header .header-bottom {
    border-top: 1px solid #ddd;
    background: var(--rv-primary);
}

@media only screen and (max-width: 992px) {
    header.main-header .header-bottom {
        position: absolute;
        right: 0;
        top: 15px;
        border: unset;
    }
    header.main-header .header-bottom .navbar-light .navbar-toggler {
        color: rgb(255, 255, 255);
        border-color: rgb(255, 255, 255);
        opacity: 1;
    }
    header.main-header .header-bottom .navbar-light .navbar-toggler .navbar-toggler-icon {
        filter: brightness(0) invert(1);
        opacity: 1;
    }
    header.main-header .header-bottom div#navbarSupportedContent {
        position: fixed;
        width: 280px;
        left: 0;
        height: 100vh;
        background: #fff;
        top: 0;
    }
}

@keyframes blinking {
    0% {
        opacity: 0;
        transition: 0.3s ease-in os all;
    }
    40% {
        opacity: 1;
        transition: 0.3s ease-in os all;
    }
    70% {
        opacity: 1;
        transition: 0.3s ease-in os all;
    }
    100% {
        opacity: 0;
        transition: 0.3s ease-in os all;
    }
}

.owl-nav {
    position: absolute;
    top: -80px;
    right: 15px;
}

.owl-nav button {
    background-color: var(--rv-primary) !important;
    display: inline-block;
    width: 45px;
    height: 45px;
}

.owl-nav button span {
    color: var(--rv-white);
    font-size: 24px;
    line-height: 22px;
    width: 45px;
    display: block;
}

.home-trust-section {
    position: relative;
}

.home-trust-section .trust-text .title {
    font-size: 52px;
    font-weight: 900;
    line-height: 60px;
    color: var(--rv-white);
}

.home-trust-section .trust-text .title span {
    color: var(--rv-black);
}

.home-trust-section .trust-text p {
    color: var(--rv-white);
    margin-top: 10px;
}

.home-trust-section .trust-text .vm-box {
    margin-top: 20px;
    background-color: var(--rv-black);
    border-radius: 10px;
    padding: 15px 20px 5px 20px;
}

.home-trust-section .trust-text .vm-box h3 {
    color: var(--rv-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 24px;
}

.home-trust-section .trust-text .vm-box p {
    font-size: 15px;
    line-height: 20px;
}

.home-trust-section .img-col {
    position: static;
}

.home-trust-section .trust-image:after {
    content: "";
    background-image: url(../images/light.png);
    width: 380px;
    height: 494px;
    position: absolute;
    background-repeat: no-repeat;
    bottom: 0px;
    right: 7%;
    z-index: 9;
    opacity: 0.6;
}

.home-trust-section .trust-image:before {
    content: "";
    background-image: url(../images/light.png);
    width: 380px;
    height: 494px;
    position: absolute;
    background-repeat: no-repeat;
    bottom: 0;
    right: 12%;
    z-index: 9;
    opacity: 0.5;
}

.home-trust-section .trust-image img {
    position: absolute;
    animation: popup 8s ease-in-out infinite;
    z-index: 999;
}

.home-trust-section .trust-image img:nth-child(1) {
    top: -10px;
}

.home-trust-section .trust-image img:nth-child(2) {
    right: 10%;
    top: 100px;
    width: 170px;
}

.home-trust-section .trust-image img:nth-child(3) {
    right: 20%;
    top: 350px;
    width: 140px;
}

@keyframes popup {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.how-we-work {
    position: relative;
}

.how-we-work .main-heading {
    text-align: center;
}

.how-we-work .work-steps {
    margin-bottom: 35px;
    align-items: center;
    display: flex;
}

.how-we-work .work-steps:hover .number {
    background-color: var(--rv-primary);
    color: var(--rv-white);
}

.how-we-work .work-steps:last-child {
    margin-bottom: 0;
}

.how-we-work .work-steps .number {
    background-color: #edf2fd;
    color: var(--rv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    position: relative;
    border-radius: 100%;
}

.how-we-work .work-steps .number span {
    font-size: 42px;
    font-weight: 600;
}

.how-we-work .work-steps .text {
    display: inline-block;
    width: calc(100% - 65px);
    padding-left: 15px;
}

.how-we-work .work-steps .text .title {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.how-we-work .work-steps .text p {
    font-size: 14px;
}

.how-we-work .work-steps .work-image {
    display: none;
    position: absolute;
    right: 100%;
    top: 50px;
}

.how-we-work .work-steps .work-image img {
    width: 350px;
}

.how-we-work .work-img-bg {
    background-color: var(--rv-primary-light);
    width: 450px;
    height: 450px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0 auto;
    border-radius: 100%;
}

.how-we-work .work-img-bg img {
    width: 350px;
    height: 350px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.how-we-work .work-img-bg:after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 400px;
    height: 400px;
    background-color: var(--rv-primary-light);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-border 2000ms ease-out infinite;
}

.home-SIP .SIP-image img {
    width: 100%;
}

.home-invest-fund {
    position: relative;
    overflow: hidden;
    background-blend-mode: overlay;
    background-image: url(../images/parallax.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home-invest-fund .btn-outline-primary {
    border-color: var(--rv-white);
    color: var(--rv-white);
    margin-left: auto;
    display: block;
    width: 170px;
    font-size: 16px;
    text-align: center;
}

.home-invest-fund p {
    color: var(--rv-white);
}

.home-testimonial-section .item {
    padding: 20px;
}

.home-testimonial-section .item .rvcard-items .rvcard-item .image {
    padding: 0;
    background: var(--rv-white);
}

.home-testimonial-section .item .rvcard-items .rvcard-item .image img {
    border-radius: 50%;
}

.home-testimonial-section .testimonial-card {
    padding: 20px;
    border-radius: 10px;
    margin: 15px;
}

.home-testimonial-section .testimonial-card .image {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    padding: 0;
    overflow: hidden;
    margin-bottom: 5px;
}

.home-testimonial-section .testimonial-card .image img {
    width: 100%;
}

.home-testimonial-section .testimonial-card .text {
    position: relative;
}

.home-testimonial-section .testimonial-card .text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--rv-black);
}

.home-testimonial-section .testimonial-card .text h3 span {
    font-weight: 500;
}

.home-testimonial-section .testimonial-card .text p {
    color: var(--rv-black);
    font-size: 15px;
    margin-bottom: 0;
}

.home-testimonial-section .testimonial-card .text:after {
    content: "\f114";
    font-family: flaticon;
    position: absolute;
    color: var(--rv-primary);
    top: -20px;
    right: 0;
    font-size: 24px;
}

.home-FAQ-section .nav-pills .nav-item {
    flex: auto;
    text-align: center;
}

.home-FAQ-section .nav-pills .nav-item .nav-link {
    margin: 3px;
    padding: 18px;
    font-size: 16px;
    background-color: #e3eefe;
}

.home-FAQ-section .nav-pills .nav-item .nav-link.active {
    background-color: #1266f1;
}

.home-FAQ-section .accordion .accordion-item button.accordion-button:after {
    margin-left: auto !important;
    margin-right: 0;
    font-family: fontawesome;
    font-weight: 100;
    font-size: 20px;
}

.home-contact-section .card {
    padding: 20px;
    box-shadow: 0 3px 24px 0px rgba(0, 0, 0, 0.15);
}

.footer-main {
    background: #051d37;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    padding: 70px 0 20px 0;
    min-height: 400px;
}

body[data-page="home"] .footer-main {
    padding: 250px 0 20px 0;
}

.footer-main .foot-col .foot-title {
    color: #97a2b2;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 35px;
}

.footer-main .foot-col p {
    color: #97a2b2;
    font-size: 15px;
}

.footer-main .foot-col a {
    color: #97a2b2;
    text-decoration: none;
    font-size: 15px;
    margin-right: 5px;
}

.footer-main .foot-col a:hover {
    color: var(--rv-white);
}

.footer-main .foot-col a:hover i {
    background-color: var(--rv-secondary);
}

.footer-main .foot-col a i {
    color: var(--rv-white);
    display: inline-block;
    width: 32px;
    height: 32px;
    text-align: center;
    border-radius: 100%;
}

.footer-main .foot-col a i:before {
    margin: 0;
    font-size: 16px;
    line-height: 32px;
}

.footer-main .foot-col a i:hover {
    background-color: var(--rv-white);
    color: #06101e;
}

.footer-main .foot-col .menu {
    list-style: none;
    padding: 0;
}

.footer-main .foot-col .menu a {
    margin-bottom: 10px;
    display: block;
}

.footer-main .contact-info p {
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
}

.footer-main .contact-info p a i {
    position: absolute;
    left: 0;
}

.footer-main .footer-bottom {
    border-top: 1px solid #54637b;
    margin-top: 10px;
    padding: 10px 0;
}

.footer-main .footer-bottom p {
    color: #97a2b2;
    font-size: 14px;
    margin-bottom: 0;
}

.footer-main .footer-bottom a {
    color: #97a2b2;
    font-size: 14px;
    text-decoration: none;
}

.footer-main .footer-bottom a:hover {
    color: var(--rv-white);
}

.footer-main .footer-top .foot-col.intro .logo img {
    height: 90px;
    margin-bottom: 0;
    background: #fff;
    padding: 7px 5px;
    border-radius: 5px;
}

.rv-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.rv-row .rv-col {
    padding: 15px;
    max-width: 25%;
    width: 100%;
}

.rv-row .rv-col a {
    display: block;
    border: 1px solid #eee;
    background: var(--rv-white);
    padding: 15px;
    text-decoration: none;
    position: relative;
    transition: 0.5s;
    transition: 0.5s;
}

.rv-row .rv-col a:hover {
    transition: 0.5s;
    box-shadow: 0 10px 10px 0 #ddd;
    transform: translateY(-10px) translateX(10px);
}

.rv-row .rv-col a:hover .view_more_btn {
    transition: 0.5s;
    left: 0;
    top: 0;
    opacity: 1;
    width: 100%;
}

.rv-row .rv-col a:hover .icon img {
    filter: brightness(0) invert(1);
}

.rv-row .rv-col a:hover h4 {
    color: var(--rv-white);
}

.rv-row .rv-col .single_feature_seven {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.rv-row .rv-col .single_feature_six_seven_icon .icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rv-row .rv-col .single_feature_six_seven_icon .icon img {
    width: 65px;
    height: 65px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.rv-row .rv-col .single_feature_seven_content h4 {
    margin: 0;
    font-size: 20px;
    color: var(--rv-black);
}

.rv-row .rv-col .view_more_btn {
    position: absolute;
    font-size: 30px;
    color: var(--rv-white);
    top: 0;
    transform: translateY(0%);
    box-shadow: 0 0 10px 0 #ddd;
    width: 35px;
    background: #000;
    height: 100%;
    display: flex;
    justify-content: right;
    border-radius: 0;
    z-index: -1;
    background: var(--rv-primary);
    left: -22px;
    transition: 0.5s;
    opacity: 0;
}

.home-about .main-heading {
    text-align: left;
    margin-left: 0;
}

.home-about .main-heading .main-title {
    margin-bottom: 20px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--rv-secondary);
}

.home-partner-section .main-heading,
.home-contact-section .main-heading,
.home-testimonial-section .main-heading,
.sip-calculator-section .main-heading {
    text-align: center;
}

.home-contact-section .main-heading .main-title {
    color: var(--rv-white);
}

.home-contact-section .request-a-call-back-form {
    box-shadow: 0 0 10px 0 #ddd;
    padding: 30px;
    border-radius: 10px;
    background: var(--rv-white);
}

.home-contact-section .request-a-call-back-form .form-control {
    border: 1px solid #ddd;
    padding: 15px 20px;
    border-radius: 5px;
}

.contact_address_area .single_contact_address_two {
    box-shadow: 0 0 10px 0 #bbb;
    border-radius: 10px;
    border-top: 5px solid var(--rv-primary);
    background: var(--rv-white);
    padding: 20px;
    height: 100%;
    display: flex;
}

.contact_address_area .single_contact_address_two .icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--rv-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 10px;
    font-size: 30px;
    margin-right: 20px;
}

.contact_address_area .single_contact_address_two .icon i {
    padding: 0;
}

.contact_address_area .single_contact_address_two span {
    display: block;
    font-family: 600;
}

.contact_address_area .single_contact_address_two a {
    text-decoration: none;
    word-break: break-word;
}

.partnerCarousel .item {
    padding: 5px;
    height: 85px;
}

.partnerCarousel .item img {
    padding: 5px;
    border: 1px solid #eee;
    background-color: var(--rv-white);
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.faq-row-service ul {
    display: flex;
    margin-bottom: 20px;
    overflow-x: scroll;
    padding-bottom: 15px;
    padding-left: 0;
}

.faq-row-service ul li {
    list-style: none;
    padding: 10px 20px;
    border: 1px solid var(--rv-primary);
    color: var(--rv-primary);
    cursor: pointer;
    text-align: center;
    flex-grow: 1;
    white-space: nowrap;
    min-width: 220px;
}

.faq-row-service ul li.active {
    background: var(--rv-primary);
    color: var(--rv-white);
}

.rv-faq-col .tebBar-box {
    display: none;
}

.rv-faq-col .tebBar-box.show {
    display: block;
}

body .sip-calculator-section .calculator_output .datavalue:nth-child(2) span::before,
body .sip-calculator-section .calculator_output .datavalue:nth-child(2) {
    color: var(--rv-black);
    font-family: "FontAwesome";
}

.about-section .card {
    margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
    .contact_address_area .row .col-lg-4.col-md-6 {
        margin-bottom: 30px;
    }
    .contact_sm_area .home-contact-section {
        padding-left: 0 !important;
        margin-top: 30px;
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.home-features-section .main-heading {
    margin-left: 0;
    text-align: left;
}

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

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

.home-features-section .features-row .features-icon .icone-row {
    display: flex;
    margin: -15px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}

.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-primary);
    padding: 15px;
}

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

.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: 65%;
    width: 100%;
}

.home-features-section .features-row .features-content .text {
    min-height: 100px;
}

.home-features-section .features-row .features-content .text h5 {
    color: var(--rv-secondary);
}

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

.about-home-section .images {
    float: left;
    margin-right: 50px;
    margin-bottom: 20px;
}

.about-home-section .images img {
    max-width: 450px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.why-invest-section {
    position: relative;
}

.why-invest-section .rv-row-invest {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    justify-content: center;
}

.why-invest-section .rv-row-invest .rv-col-invest {
    padding: 15px;
    max-width: 20%;
    width: 100%;
}

@media only screen and (max-width: 992px) {
    .why-invest-section .rv-row-invest .rv-col-invest {
        max-width: 33.3%;
    }
}

@media only screen and (max-width: 767px) {
    .why-invest-section .rv-row-invest .rv-col-invest {
        max-width: 50%;
    }
}

@media only screen and (max-width: 480px) {
    .why-invest-section .rv-row-invest .rv-col-invest {
        max-width: 100%;
    }
}

.why-invest-section .rv-row-invest .rv-col-invest .invest-cards {
    border: 1px solid var(--rv-primary);
    padding: 20px;
    text-align: center;
    background: var(--rv-white);
    border-radius: 5px;
    transition: 0.5s;
    height: 100%;
}

.why-invest-section .rv-row-invest .rv-col-invest .invest-cards:hover {
    transition: 0.5s;
    box-shadow: 0 15px 15px 0 #ddd;
}

.why-invest-section .rv-row-invest .rv-col-invest .invest-cards:hover .image {
    transition: 0.5s;
}

.why-invest-section .rv-row-invest .rv-col-invest .invest-cards:hover .image img {
    filter: drop-shadow(2px 4px 6px rgba(105, 4, 206, 0.3490196078));
}

.why-invest-section .rv-row-invest .rv-col-invest .invest-cards .text h6 {
    margin-bottom: 0;
}

.why-invest-section .rv-row-invest .rv-col-invest .invest-cards .image {
    width: 80px;
    transition: 0.5s;
    height: 80px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.why-invest-section .rv-row-invest .rv-col-invest .invest-cards .image img {
    transition: 0.5s;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.wyscu-section .rv-row {
    margin: -25px;
    justify-content: space-between;
}

.wyscu-section .rv-cols {
    max-width: 33.3%;
    width: 100%;
    padding: 25px;
}

.rvcard-items {
    box-shadow: 0 0 10px 0 #ddd;
    padding: 15px;
    border-radius: 10px;
    background: var(--rv-white);
    transition: 0.5s;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.rvcard-items::before {
    content: "";
    width: calc(100% - 26px);
    height: calc(100% - 23px);
    position: absolute;
    border-radius: 10px;
    background: var(--rv-secondary);
    transition: 0.5s;
    opacity: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

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

.rvcard-items:hover .rvcard-item {
    transition: 0.5s;
    box-shadow: 0 0 10px 0 #ddd;
}

.rvcard-items:hover::before {
    transition: 0.5s;
    opacity: 1;
    transform: rotate(-3deg);
}

.rvcard-items .rvcard-item {
    background: var(--rv-white);
    transition: 0.5s;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.rvcard-items .rvcard-item .image {
    transition: 0.5s;
    border-radius: 50%;
    max-width: 80px;
    width: 100%;
    height: 80px;
    background: var(--rv-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
}

.rvcard-items .rvcard-item .image img {
    width: 100%;
    transition: 0.5s;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.rvbg-primary {
    background: rgba(var(--rv-primary-rgb), 0.2);
}

.home-service .rvcard-items {
    margin: 30px 0;
    box-shadow: unset;
}

.home-service .rvcard-items .rvcard-item {
    box-shadow: 0 0 10px 0 #ddd;
}

.home-service .rvcard-items .rvcard-item .imges img {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home-service .rvcard-items .rvcard-item a {
    color: var(--rv-black);
}

.home-service .rvcard-items .rvcard-item a .text-line {
    margin: 0;
}

.home-service .rvcard-items .rvcard-item .text {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
}

.home-service .rvcard-items .rvcard-item .text .icones {
    background: var(--rv-primary);
    max-width: 80px;
    width: 100%;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.home-service .rvcard-items .rvcard-item .text .icones img {
    filter: brightness(0) invert(1);
    width: 50px;
    height: 50px;
}

.blog-section .rvcard-items,
.blog_area .rvcard-items {
    background: #d2d9e2;
    box-shadow: unset;
    padding: 0;
}

.blog-section .rvcard-items .rvcard-item,
.blog_area .rvcard-items .rvcard-item {
    box-shadow: unset;
    background: unset;
}

.blog-section .rvcard-items {
    background: var(--rv-white);
}

.rv-hps-partner-card {
    background: var(--rv-secondary);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    top: 120px;
    margin-top: -120px;
}

.rv-hps-partner-card .main-heading .main-title {
    color: var(--rv-white);
}

.main-section.sip-calculator-section {
    background-image: linear-gradient(0deg, var(--rv-white) 77%, rgba(var(--rv-primary-rgb), 0.2) 100%);
}

.sip-calculator-section .sip_cart #sipchart svg rect {
    fill: #0000;
}

.team-section .image img {
    width: 100%;
}

.team-section {
background-image: linear-gradient(0deg, var(--rv-white) 77%, rgba(var(--rv-primary-rgb), 0.2) 100%);
}

.team-section .content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
}

.team-section .content ul li {
    max-width: 30.3%;
    box-shadow: 0 0 20px 0 #ddd;
    padding: 15px;
	border-radius:5px;
	    border-top: 5px solid var(--rv-primary);
}

.team-section .content ul li:last-child {
    margin-bottom: 0;
}
.gallery-page-section {}

.gallery-page-section .image a {
    display: block;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 10px;
}

.gallery-page-section .image a img {
    height: 300px;
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
}


@media only screen and (min-width:992px){
.navbar-expand-lg .navbar-collapse{
justify-content: center;
}
	.dropdown-menu{
		    top: 77%;

	}
	}