:root {
    --rv-primary: #3ec2e9;
    --rv-primary-dark: #2c8ca8;
    --rv-primary-light: #dcf7ff;
    --rv-bg-primary: #0077bd;
    --rv-secondary: #faa45b;
    --rv-secondary-dark: #b67031;
    --rv-secondary-light: #fff6ef;
    --rv-bg-secondary: #7a4f29;
    --rv-bg-dark: #222935;
    --rv-white: #fff;
    --rv-black: #070707;
    --rv-gray: #726d7b;
    --rv-font: "Barlow", sans-serif;
    --rv-font-heading: "Roboto", sans-serif;
}

body {
    font-family: var(--rv-font);
    font-size: 16px;
}
p,
a,
span,
li {
    font-size: 18px;
    text-decoration: none;
}
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 {
    color: var(--rv-bg-dark);
}
a{
    color: var(--rv-primary);
}

.main-title {
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 600;
    color: #201f1f;
    text-align: center;
}

.section {
    padding: 80px 0;
}
/* Primary Button */
.btn-primary , .rvg-button{
    background: var(--rv-primary);
    color: var(--rv-white);
    border: 2px solid var(--rv-primary);
    border-radius: 30px;
    position: relative;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1), -2px -2px 4px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    transform: translateY(0);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    background: var(--rv-primary-dark, darken(var(--rv-primary), 10%)); /* Darker background for hover effect */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1; /* Behind the text */
}

.btn-primary:hover {
    background: var(--rv-primary-dark, darken(var(--rv-primary), 10%)); /* Darker on hover */
    color: var(--rv-white);
    border: 2px solid var(--rv-primary-dark);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2), -3px -3px 6px rgba(255, 255, 255, 0.6); /* Stronger shadow for 3D effect */
    transform: translateY(-4px); /* Lift effect */
}

.btn-primary:hover::before {
    opacity: 1; /* Show the background overlay on hover */
}

/* Secondary Button */
.btn-secondary {
    background: var(--rv-secondary);
    color: var(--rv-white);
    border: 2px solid var(--rv-secondary);
    border-radius: 30px;
    position: relative;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1), -2px -2px 4px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    transform: translateY(0);
    z-index: 1;
}

.btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    background: var(--rv-secondary-dark, darken(var(--rv-secondary), 10%)); /* Darker background for hover effect */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    background: var(--rv-secondary-dark, darken(var(--rv-secondary), 10%)); 
    color: var(--rv-white);
    border: 2px solid var(--rv-secondary-dark);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2), -3px -3px 6px rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
}

.btn-secondary:hover::before {
    opacity: 1; /* Show the background overlay on hover */
}

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

.red {
    color: var(--rv-secondary);
}

.home-about {
    padding-top: 0px;
}

.white-color {
    color: #fff !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;*/
    /*top: -3px;*/
}



.main-section {
    padding: 60px 0;
}
ul.navbar-nav .nav-item .nav-link {
    color: var(--rv-primary-dark);
    font-weight: 600;
}
ul.navbar-nav .nav-item .nav-link:hover {
    color: var(--rv-bg-secondary);
}
ul.navbar-nav .nav-item.active .nav-link {
    color: var(--rv-secondary-dark);
}
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: #fff;
    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: #fff;
    text-decoration: none;
    background-color: var(--rv-primary);
}
.radio-group {
    text-align: center;
    margin: 30px 0 20px 0 !important;
}
.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;
    -ms-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: #fff;
    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;
    -webkit-box-sizing: border-box;
    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;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.video-btn:after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background-color: var(--rv-primary);
    border-radius: 50%;
    z-index: -1;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}
.video-btn:hover {
    background-color: var(--rv-primary);
    color: #fff;
}
.video-btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.video-btn i {
    font-size: 52px;
    line-height: 86px;
    margin-left: 15px;
}
@-webkit-keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale3d(0.75, 0.75, 1);
        transform: scale3d(0.75, 0.75, 1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(1.5, 1.5, 1);
        transform: scale3d(1.5, 1.5, 1);
    }
}
@keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale3d(0.75, 0.75, 1);
        transform: scale3d(0.75, 0.75, 1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(1.5, 1.5, 1);
        transform: scale3d(1.5, 1.5, 1);
    }
}
@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        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: #fff;
    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-secondary-dark);
}
i.fi-ss-paper-plane {
    margin-left: 3px;
    vertical-align: middle;
    font-size: 14px;
}
/*.home-slider {*/
/*    background-image: url(../assets/images/banner1.jpg);*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    min-height: 600px;*/
/*}*/

.banner-text img {
    width: 269px;
    margin: 0px auto;
    display: block;
}

.home-slider .banner-text .banner-title {
    font-weight: 400;
    line-height: 46px;
    color: var(--rv-secondary);
    font-size: 37px;
}
.home-slider .banner-text .banner-title .blue {
    display: block;
}
.home-slider .banner-text a.btn.btn-primary {
    margin-top: 30px;
}
.home-slider .banner-text i {
    font-size: 30px;
    vertical-align: middle;
}
.home-slider .banner-text {
    padding: 140px 20px;
}
.main-header {
    background-color: #fff;
    /*padding: 10px;*/
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    -webkit-transition: 0.3s ease-in-out 0s all;
    transition: 0.3s ease-in-out 0s all;
}
.main-header ul.navbar-nav {
    margin-left: auto;
}
.main-header ul.navbar-nav a.nav-link {
    padding: 10px 15px !important;
    text-transform: uppercase;
    font-weight: 500;
}
.main-header img {
    /*width: 100%*/
}
.main-header .button_area {
    text-align: right;
}
.main-header .login-btn {
    text-transform: uppercase;
    width: 130px;
    font-size: 18px;
    line-height: 24px;
    margin: 17px 0;
    /*margin-top: 37px;*/
}
.main-header.stickyhead .login-btn {
    margin: 5px 0;
    margin-top: 12px;
}
.main-header .header-menu {
    margin-top: 0px;
}
.main-header .login-btn i {
    margin-left: 5px;
    vertical-align: middle;
}
.main-header.stickyhead {
    background-color: #fff;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    -webkit-transition: 0.3s ease-in-out 0s all;
    transition: 0.3s ease-in-out 0s all;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    z-index: 99999;
}
.main-header.stickyhead .logo img {
    width: auto;
}
.main-header.stickyhead .login-btn {
    text-transform: uppercase;
    width: 130px;
    font-size: 18px;
    line-height: 25px;
    padding: 5px;
    height: 40px;
}
.main-header .header-menu {
    padding: 12px 0;
    margin-top: 15px;
}
.main-header.stickyhead .header-menu {
    padding: 5px 0;
}
.header-menu nav.navbar {
    padding: 0;
}
.owl-dot span {
    width: 25px !important;
    height: 4px !important;
    margin: 5px 3px !important;
}
.owl-dot.active span {
    background: var(--rv-primary) !important;
    outline: none;
}
.owl-dot.active .owl-dot:hover span {
    background: var(--rv-primary) !important;
    outline: none;
}
.home-about .about-image {
    text-align: center;
}
.home-about .about-image img {
    width: 70%;
}
.home-aboutus .about-image img {
    width: 100%;
}
.home-service {
    background-image: url(../assets/images/line-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}
.home-service .service-box {
    background-color: #f1f7ed;
    position: relative;
    border-radius: 3px;
    padding-top: 65px;
    margin: 85px 10px 0 10px;
}
.home-service .service-box .icon {
    position: absolute;
    z-index: 9999;
    background-color: #f1f7ed;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    padding: 10px;
    overflow: hidden;
    border: 5px solid #fff;
    text-align: center;
    top: -75px;
    left: 28%;
}
.home-service .service-box .icon img {
    width: 90px !important;
    text-align: center;
    margin: 12px auto;
}
.home-service .service-box .text {
    text-align: center;
    padding: 25px 15px 20px 15px;
}
.home-service .service-box .text .blue {
    font-size: 24px;
}
.home-service .service-box .text p {
    font-size: 18px;
    margin-bottom: 25px;
    min-height: 135px;
}
.home-SIP-graph .main-title {
    font-size: 28px;
}
.home-SIP-graph .main-title span.blue {
    display: block;
}
.home-SIP-graph .SIP-image {
    overflow: hidden;
}
.home-SIP-graph .SIP-image img {
    width: 100%;
}

.theme_bg {
    background-color: var(--rv-primary) !important;
}
.theme_bg .main-title {
    color: #fff !important;
}
.theme_bg p,
.theme_bg a {
    color: #fff !important;
}

.home-why-choose {
    padding-bottom: 60px;

}
/*.home-why-choose {
    background-color: var(--rv-primary);
}
.home-why-choose .main-title {
    color: #fff;
}*/
.boxes-main {
    position: relative;
}
.boxes-main .why-box {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    width: 230px;
    height: 190px;
    -webkit-box-shadow: 1px 2px 5px 3px rgba(0, 0, 0, 0.06);
    box-shadow: 1px 2px 5px 3px rgba(0, 0, 0, 0.06);
    display: grid;
    position: absolute;
    align-items: center;
}
.boxes-main .why-box .box-text .number {
    display: inline-block;
    width: 45px;
    height: 45px;
    vertical-align: top;
    position: relative;
}
.boxes-main .why-box .box-text .number img {
    width: 45px;
}
.boxes-main .why-box .box-text .number i {
    width: 45px;
    position: absolute;
    z-index: 99;
    left: 15px;
    top: 0px;
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    color: var(--rv-primary);
}
.boxes-main .why-box .box-text h3 {
    display: inline-block;
    width: calc(100% - 51px);
}
.boxes-main .why-box.box1 {
    top: 60px;
}
.boxes-main .why-box.box2 {
    left: 250px;
    top: 10px;
}
.boxes-main .why-box.box3 {
    left: 250px;
    top: 220px;
}
.boxes-main .why-box.box4 {
    left: 0px;
    top: 270px;
}
.home-investor-education {
    background-image: url(../assets/images/line-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}
.home-investor-education .main-title {
    margin-bottom: 35px;
}
.home-investor-education .education-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-investor-education .education-accordian .ui-accordion-header.ui-state-default:after {
    content: "\f1e9";
    position: absolute;
    font-family: uicons-solid-straight;
    right: 15px;
    top: 10px;
    color: #001522;
}
.home-investor-education .education-accordian .ui-accordion-header.ui-state-active {
    background-color: var(--rv-primary);
    color: #fff;
    height: 50px;
    border-radius: 2px;
    border-color: var(--rv-primary);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
}
.home-investor-education .education-accordian .ui-accordion-header.ui-state-active:after {
    content: "\f1ce";
    position: absolute;
    font-family: uicons-solid-straight;
    right: 15px;
    top: 10px;
    color: #fff;
}
.home-investor-education .education-accordian .ui-accordion-header.ui-state-active.ui-state-focus {
    outline: none;
}
.home-investor-education .education-accordian .ui-accordion-content {
    padding: 15px;
    background-color: #ecfdd7;
    border-color: #e3fdc4;
    margin-bottom: 10px;
}
.home-investor-education .video-part {
    border-radius: 15px;
    background-color: var(--rv-primary);
    position: relative;
    text-align: center;
}
.home-investor-education .video-part:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: 99;
}
.home-investor-education .video-part img {
    width: 90%;
}
.home-investor-education .video-part .bg-shadow:after {
    content: "";
    background-color: rgba(98, 182, 5, 0.5);
    position: absolute;
    right: -12px;
    top: 12px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: -1;
}
.home-testimonials {
    /*background-color: #f3ffe5;*/
}
.home-testimonials #home_testimonials {
    margin: 40px auto 10px auto;
}
.home-testimonials #home_testimonials .investor-info .img {
    border-radius: 10px;
    overflow: hidden;
}
.home-testimonials #home_testimonials .investor-info .name h5 {
    text-align: center;
    color: var(--rv-primary);
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 18px;
}
.home-testimonials #home_testimonials .investor-info .name p {
    text-align: center;
    color: #fff !important;
    margin-bottom: 0px;
    font-size: 16px;
}
.home-testimonials .test-img-section {
    overflow: hidden;
}
.home-testimonials .test-img-section img {
    width: 100%;
}
.form-custom .form-group {
    margin-bottom: 5px;
}
.form-custom .form-group .form-control {
    background-color: #e2edf3;
    height: 40px;
    border: 1px solid #e2edf3;
    outline: none;
    margin-bottom: 17px;
}
.form-custom .form-group input.form-control:focus {
    border: 1px solid var(--rv-primary);
}
.form-custom .form-group textarea.form-control {
    height: 80px;
}
.form-custom .form-group .btn.btn-primary {
    width: 100%;
    height: 40px;
}
#captcha {
    width: calc(100% - 153px);
    display: inline-block;
}
#fcaptcha {
    width: calc(100% - 160px);
    display: inline-block;
}
#wcaptcha {
    width: calc(100% - 160px);
    display: inline-block;
}
#captcha_code {
    height: 40px !important;
}
.btnRefresh {
    height: 40px !important;
}
.main-footer {
    position: relative;
    padding-top: 100px;
    margin-top: 70px;
    background-color: #1f242b;
}
.main-footer .top-info {
    background-color: var(--rv-secondary-dark);
    padding: 20px 30px 20px 30px;
    border-radius: 15px;
    color: #fff;
    margin-top: -170px;
    margin-bottom: 20px;
}
.main-footer .top-info .info-items {
    color: #fff;
    font-size: 20px;
    position: relative;
    margin: 0;
}
.main-footer .top-info .info-items i {
    /*position: absolute;*/
    /*left: 0px;*/
    display: initial;
    margin-right: 5px;
}
.main-footer .footer-bars .logo img {
    /*width: 180px;*/
    margin-bottom: 15px;
}
.main-footer .footer-bars ul {
    padding-left: 0px;
    list-style-type: none;
}
.main-footer .footer-bars ul li a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
}
.main-footer .footer-bars ul li a:hover {
    color: var(--rv-secondary-dark);
}
.main-footer .footer-bars .foot-title {
    color: #fff;
    margin-bottom: 15px;
}
.main-footer .footer-bottom {
    padding: 10px 0 3px 0;
    
}
.main-footer .footer-bottom .social-media {
    text-align: right;
}
.main-footer .footer-bottom .social-media a.items {
    /*background-color: #fff;*/
    /*width: 32px;*/
    height: 32px;
    display: inline-block;
    color: #fff;
    border-radius: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 32px;
}
.main-footer .footer-bottom .social-media a.items:hover {
    /*background-color: var(--rv-primary);*/
}
.home-partner-section .partner-logos img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
.home-partner-section .item {
    margin: 20px;
}

.financial-tools .boxes-main {
    display: flex;
}
.financial-tools .boxes-main .tool-box {
    width: calc(20% - 20px);
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
    margin: 0 10px;
    transition: all 0.2s ease-in-out;
}
.financial-tools .boxes-main .tool-box:hover {
    transition: all 0.2s ease-in-out;
    background-color: var(--rv-primary);
}

.financial-tools .boxes-main .tool-box .icon i::before {
    font-size: 60px;
    color: var(--rv-primary);
}
.financial-tools .boxes-main .tool-box:hover .icon i::before {
    color: #fff;
}
.financial-tools .boxes-main .tool-box a {
    font-size: 22px;
    text-decoration: none;
    color: #000;
}
.financial-tools .boxes-main .tool-box:hover a {
    color: #fff;
}

.news .nav.nav-tabs {
    text-align: center;
    margin: 0 auto;
    display: block;
}
.news .nav-tabs .nav-item {
    text-align: center;
    display: inline-block;
    width: 49%;
}
.news .nav-tabs .nav-item .nav-link {
    background-color: #d7efe0;
    height: 50px;
    line-height: 28px;
    font-size: 20px;
}
.news .nav-tabs .nav-item .nav-link.active {
    background-color: var(--rv-primary) !important;
    color: #fff;
}
.news .tab-content {
    padding: 25px 20px;
    background-color: #fff;
}

.inner-banner {
    background-image: url(../assets/images/banner-inn.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    position: relative;
}
.inner-banner .banner-text {
    position: absolute;
    bottom: 40px;
}
.inner-banner .banner-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--rv-primary);
}

.contact-info .infobar {
    position: relative;
    margin-bottom: 45px;
}
.contact-info .infobar i {
    font-size: 24px;
    color: #fff;
    background-color: var(--rv-secondary-dark);
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-align: center;
    line-height: 48px;
}
.contact-info .infobar .fi-ss-marker {
    line-height: 58px !important;
}
.contact-info .infobar b {
    font-size: 20px;
    color: var(--rv-primary);
    padding-left: 5px;
    display: inline-block;
    vertical-align: text-bottom;
}
.contact-info .infobar span {
    left: 60px;
    position: absolute;
}

.about-main {
    padding: 80px 0 0 0;
}
.tabs-part {
    border: none !important;
}
.tabs-part .ui-tabs-nav {
    background: transparent;
    border: none;
}
.tabs-part .ui-tabs-nav .ui-tabs-tab {
    width: calc(50% - 5px);
    padding: 0;
    text-align: center;
    border: 1px solid #c6e0ef;
    background-color: #c6e0ef;
}
.tabs-part .ui-tabs-nav .ui-tabs-tab:hover {
    border: 1px solid var(--rv-primary);
    background-color: var(--rv-primary);
}
.tabs-part .ui-tabs-nav .ui-tabs-tab:hover .ui-tabs-anchor {
    color: #fff !important;
}
.tabs-part .ui-tabs-nav .ui-tabs-tab.ui-tabs-active {
    color: #fff;
    border: 1px solid var(--rv-primary);
    background-color: var(--rv-primary);
}
.tabs-part .ui-tabs-nav .ui-tabs-tab.ui-tabs-active a {
    color: #fff;
}
.tabs-part .ui-tabs-nav .ui-tabs-tab .ui-tabs-anchor {
    float: none;
    padding: 15px 10px;
    text-decoration: none;
    display: block;
    font-size: 18px;
    text-transform: uppercase;
}
.bluebar {
    background-color: var(--rv-primary);
    padding: 10px;
    color: #fff;
    font-size: 24px;
    margin-top: 30px;
}
.bluebar_dark {
    background-color: var(--rv-primary);
    padding: 10px;
    color: #fff;
    font-size: 24px;
    margin-top: 30px;
}
.content-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
    min-height: 215px;
}

.team {
    background-color: #fff;
    border-radius: 10px;
    position: relative;
}
.team img {
    width: 100%;
    border-radius: 10px;
}
.team .text {
    background-color: rgba(7, 175, 80, 0.7);
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 5px 10px;
    border-radius: 0 0 10px 10px;
}
.team .text h4 {
    color: #fff;
    margin-bottom: 0;
}
.team .text p {
    color: #fff;
    margin-bottom: 0;
}
.team .text a {
    color: var(--rv-primary);
    background-color: #fff;
    padding: 5px;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    line-height: 30px;
    text-decoration: none;
    text-align: center;
}

.team-modal .modal-dialog {
    max-width: 700px;
}

.team-modal .modal-header {
    display: block;
}
.team-modal .modal-title {
    display: block;
    width: 100%;
}
.team-modal .close {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--rv-primary);
    opacity: 1;
    box-shadow: none;
    font-weight: 500;
    font-size: 30px;
    border: 2px solid;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    line-height: 10px;
    text-align: center;
    padding: 5px !important;
}

.founder-section .text {
    min-height: 60px;
}

.fund-performance {
    padding: 40px 0;
}
.financial-tools.mf-page .tool-box {
    width: calc(25% - 20px) !important;
}

.mf-calculator .mf-calculators {
    display: inline-block;
    width: 12%;
    min-height: 90px;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
    border-radius: 5px;
    padding: 10px 10px 0 10px;
    margin: 10px;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
}
.financial-service-tools.mf-calculator .mf-calculators {
    width: 14.4%;
}
.mf-calculator .mf-calculators:hover {
    background-color: var(--rv-primary);
}
.mf-calculator .mf-calculators i {
    font-size: 30px;
}
.mf-calculator .mf-calculators:hover i {
    color: #fff;
}
.mf-calculator .mf-calculators span {
    display: block;
}
.mf-calculator .mf-calculators:hover span {
    color: #fff;
}

.insurance-main ul.nav.nav-pills li {
    display: inline-block;
}
.insurance-main ul.nav.nav-pills li a {
    background-color: #d7efe0;
    text-decoration: none;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    display: block;
    margin: 0 2px;
}
.insurance-main ul.nav.nav-pills li a.active {
    background-color: #07af50;
    color: #fff;
}
.radio-group .input-in {
    display: inline-block;
}

.TabbedPanelsTabGroup {
    background-color: var(--rv-secondary-dark) !important;
}
.TabbedPanelsTab {
    padding: 15px 30px !important;
    width: 20% !important;
    color: #fff !important;
    font-size: 18px !important;
}
.TabbedPanelsTabSelected {
    background: var(--rv-primary) !important;
    color: #fff !important;
}

.tab.pay-premium img {
    width: 120px !important;
    margin: 20px 0;
}
.buy_mf p {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 30px;
}
.blog-post-main .post-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}
.blog-post-main .post-card .time {
    position: absolute;
    top: 133px;
    left: 10px;
}
.blog-post-main .post-card .time a {
    height: 30px;
    border-radius: 40px;
    line-height: 10px;
    color: #fff !important;
    font-size: 12px;
    padding: 8px 10px;
}
.btn.btn-primary.ripple-surface {
    min-width: 188px;
    height: auto;
}
.btn-primary span {
    position: relative;
    z-index: 9;
    left: 0;
    right: 0;
}
.blog-post-main .post-card .info {
    padding: 25px 15px 15px;
}
.blog-post-main .post-card .info h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    max-height: 70px;
}
.blog-post-main .post-card .info .text-truncate {
    overflow: auto;
    text-overflow: inherit;
    white-space: inherit;
    width: 100%;
    /*max-height: 30px;*/
}

.blog-post-main .post-card .btn-primary.post_link {
    display: inline-block;
    width: 150px;
    border-radius: 30px;
    padding: 8px;
    line-height: 22px;
    height: auto;
    margin: 0px 0 25px 10px;
    background-color: var(--rv-secondary);
    border: 2px solid var(--rv-secondary);
}
.btn-primary span {
    position: relative;
    z-index: 9;
    left: 0;
    right: 0;
}
.box-heading {
    background: var(--rv-primary);
    color: white;
    padding: 11px 0px;
    position: relative;
    /*z-index: 99999;*/
    margin-bottom: 0px;
    text-align: center;
    font-size: 18px;
    border-radius: 10px 10px 0px 0px;
}
.content .box {
    padding: 15px 15px;
    min-height: 285px;
}
.box {
    background: #f5f5f5;
}
.grayBox {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 99999999;
    -moz-opacity: 0.7;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
.box_content {
    background-color: #ffffff;
    border: 2px solid #dddddd;
    left: 35%;
    overflow: hidden;
    padding: 15px;
    position: fixed;
    top: 25%;
    width: 430px;
    z-index: 999999999;
    height: 240px;
}
.imgs {
    top: 0;
    right: 0px;
    position: absolute;
    font-size: 20px;
    color: white;
    font-weight: bold;
    width: 30px;
    height: 30px;
    background: red;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
}
#exampleModal {
    z-index: 999999999999999999;
}
.main-section .tab-content .tab-pane p span,
.main-section .tab-content .tab-pane ul li span {
    font-size: 14px !important;
}
.main-section .tab-content div span {
    font-size: 16px !important;
}

/* SLIDER CSS */
/*---- Slider ---*/
.slider-section {
    position: relative;
    overflow: hidden;
}
.hero-slider-01 {
    position: relative;
}
.single-slide.bg-img {
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 5;
    height: 550px;
}

.slider-content {
    position: relative;
    z-index: 9;
    padding: 0 0;
}
.slider-content .sub-title {
    color: var(--rv-primary);
    font-size: 42px;
    line-height: 42px;
    text-transform: inherit;
    font-weight: 500;
    position: relative;
    margin-bottom: 5px;
}

.slider-content h2 {
    font-size: 44px;
    line-height: 44px;
    color: #fd0302;
    margin: 0 0 38px;
    font-weight: bold !important;
}
.slider-content p {
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    margin: -15px 0 0;
}
.slider-content .grap-btn {
    height: 60px;
    padding: 15px 20px;
    background-color: var(--rv-primary);
    color: #fff;
    font-size: 18px;
    border-radius: 2px;
    text-decoration: none;
}
.slider-content .to_bottom {
    margin-left: 14px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffff;
}
.slider-content .to_bottom:hover {
    border-color: var(--rv-primary);
}
.slider-content .to_bottom::before {
    background: var(--rv-primary);
    border-radius: 0;
}
.slider-section .owl-dots {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    bottom: 40px;
    z-index: 3;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.slider-section .owl-dots button {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    outline: none;
    position: relative;
    margin: 0 5px;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.slider-section .owl-dots button.active,
.slider-section .owl-dots button:hover {
    background: var(--rv-primary);
}
.owl-carousel .owl-dots button span {
    display: none;
}
.slider-section .owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 1140px;
    text-align: right;
    position: absolute;
    outline: none;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.slider-section .owl-carousel .owl-nav button {
    text-align: center;
    z-index: 5;
    font-size: 28px;
    line-height: 54px;
    width: 50px;
    height: 50px;
    margin: 10px 0 5px auto;
    background: var(--rv-primary);
    color: #fff;
    position: relative;
    border: none;
    outline: none;
    z-index: 1;
    border-radius: 50%;
    display: block;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.slider-section .owl-carousel .owl-nav button:after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: "";
    background: #0f1a2c;
    border-radius: 50%;
    text-align: center;
    width: 0;
    height: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.slider-section .owl-carousel .owl-nav button:hover:after {
    width: 100%;
    height: 100%;
}
.slider-section .owl-item.active .slider-content .sub-title {
    animation-delay: 1.4s;
    animation-name: fadeInUp;
}
.slider-section .owl-item.active .slider-content h2 {
    animation-delay: 1.7s;
    animation-name: fadeInUp;
}
.slider-section .owl-item.active .slider-content .grap-btn {
    animation-delay: 1.9s;
    animation-name: fadeInUp;
}

.service_item {
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
}
.service_item:hover {
    box-shadow: 0px 2px 10px #999;
    transition: all 0.3s ease-in-out;
}
.image-view {
    display: block;
    width: 100%;
    height: 248px;
    object-fit: cover;
}
.service_item .service_text {
    background: var(--rv-primary);
    padding: 10px;
    transition: all 0.3s ease-in-out;
    min-height: 220px;
}
.service_item .service_text h2 {
    font-size: 22px;
    text-align: left;
    font-weight: 600;
}
.service_item .service_text p {
    color: #fff;
}
.service_item .service_text h2 a {
    color: #fff;
    font-size: 22px;
}
.service_item:hover .service_text {
    background: #e92114;
}
.service_item .serv_text h2 {
    font-size: 20px;
    text-align: left;
    font-weight: 600;
}
.service_item .read-more {
    color: #e92114;
    font-size: 16px;
    padding: 2px 5px;
    transition: all 0.3s ease-in-out;
}
.service_item:hover .read-more {
    color: #fff;
    transition: all 0.3s ease-in-out;
}

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

.map {
    margin-bottom: -107px;
}

.sip-calculator-section .grow_gif {
    text-align: center;
    margin-top: 45px;
}
.sip-calculator-section .grow_gif img {
    width: 90%;
    margin: -70px auto 0 auto;
}
.sip-calculator-section #chart_div {
    margin-top: -40px !important;
}

.sip-calculator-section .ui-widget.ui-widget-content {
    border-radius: 30px;
    height: 6px;
    background: #9c9fa1;
    border: 1px solid #9c9fa1;
}

.sip-calculator-section .ui-state-default,
.sip-calculator-section .ui-widget-content .ui-state-default,
.sip-calculator-section .ui-widget-header .ui-state-default {
    border: 1px solid var(--rv-primary);
    background: var(--rv-primary);
    font-weight: normal;
    border-radius: 100%;
    width: 13px;
    height: 13px;
    top: -5px;
}
.sip-calculator-section .ui-slider .ui-slider-range {
    background: var(--rv-primary);
    border: 1px solid var(--rv-primary) !important;
}

.useful_links .links_items {
    list-style-type: none;
    padding: 0;
}
.useful_links .links_items li {
    display: inline-block;
    width: 24%;
}
.useful_links .links_items li a {
    display: block;
    background-color: #53afe0;
    padding: 10px;
    margin-bottom: 10px;
    color: #fff;
    transition: 0.2s;
    text-decoration: none;
}
.useful_links .links_items li a:hover {
    background-color: var(--rv-primary);
    transition: 0.2s;
}
.markrt-view.fund_performance_area .cal-name {
    background-color: var(--rv-primary);
    font-size: 22px;
    font-weight: 500;
    margin-top: 10px;
}

/*.home-slider {*/
/*    background-color: #2b2b69;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    background-position: bottom center;*/
/*    min-height: 600px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    z-index: 9;*/
/*}*/

.home-slider {
    background-image: url(../../assets/images/banner-bg.webp);
    background-repeat: no-repeat;
    /* background-size: cover; */
    /* background-position: bottom center; */
    background-size: auto;
    background-position: center center;
    height: 500px;
}


.wave.wave1 {
    animation: wave 8s linear infinite;
    animation-delay: 0s;
    z-index: 99;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
    /*background: #2b2b69;*/
}
.wave {
    background: url(../assets/images/partner/wave2.png);
    background-size: auto;
    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.wave2 {
    animation: wave2 7s linear infinite;
    animation-delay: 0s;
    z-index: 9;
    opacity: 0.5;
    animation-delay: -3s;
    bottom: 10px;
    background: #2b2b69;
}
.wave.wave3 {
    animation: wave2 3s linear infinite;
    animation-delay: 0s;
    z-index: 9;
    opacity: 0.3;
    animation-delay: -2s;
    bottom: 15px;
    background: #2b2b69;
}

.home-slider .banner-text .banner-title1 {
    color: #fff;
    font-size: 32px;
    text-transform: uppercase;
}
.home-slider .banner-text .banner-title2 {
    color: #fff;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
}
.pink {
    color: #e75e3a;
}
.home-slider .banner-img {
    /* margin-top: 100px; */
    /* position: absolute; */
    right: 0;
    bottom: 20%;
    /* width: 100%; */
    display: flex;
    justify-content: center;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.home-slider:before {
    content: "";
    position: absolute;
    height: 500px;
    width: 100%;
    background: #0000007d;
}
.home-slider .banner-img img {
    height: 500px;
    width: auto;
}
.home-slider .banner-img .logos {
    position: absolute;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    bottom: -195px;
}
.home-slider .banner-img .logos img:nth-child(1) {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
    width: 50% !important;
}
.home-slider .banner-img .logos img {
    width: 80px !important;
    -webkit-animation: bubble 7s linear infinite;
    animation-delay: 0s;
    animation: bubble 7s linear infinite;
}
.home-slider .banner-img .logos img:nth-child(2) {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s;
    width: 90px !important;
}
.home-slider .banner-img .logos img:nth-child(3) {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    width: 80px !important;
}

.home-slider .banner-img .logos img:nth-child(4) {
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
    width: 90px !important;
}

.home-slider .banner-img .logos img:nth-child(5) {
    -webkit-animation-delay: 4.7s;
    animation-delay: 4.7s;
    width: 80px !important;
}

.home-slider .banner-img .logos img:nth-child(6) {
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
    width: 65px !important;
}

.home-slider .banner-img .logos img:nth-child(7) {
    -webkit-animation-delay: 5.56s;
    animation-delay: 5.56s;
    width: 70px !important;
}

.home-slider .banner-img .logos img:nth-child(8) {
    -webkit-animation-delay: 6.9s;
    animation-delay: 6.9s;
    width: 55px !important;
}

.home-slider .banner-img .logos img:nth-child(9) {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
    width: 85px !important;
}

.home-slider .banner-img .logos img:nth-child(10) {
    -webkit-animation-delay: 7.3s;
    animation-delay: 7.3s;
    width: 60px !important;
}

.home-slider .banner-img .logos img:nth-child(11) {
    -webkit-animation-delay: 4.4s;
    animation-delay: 4.4s;
    width: 70px !important;
    margin-right: 40px;
}

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

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

.home-slider::after {
    /*   content: "";*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*background-image: url(../assets/images/slider/Slider.png);*/
    /*position: absolute;*/
    /*top: 0;*/
    /*z-index: -1;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    /*background-position: center;*/
}
.color-green {
    color: var(--rv-bg-primary);
}
.services {
    /*background-image: url(../assets/images/services.png);*/
}


.collapsible {
    background-color: var(--rv-primary);
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    margin-bottom: 10px;
}

/*.active, .collapsible:hover {*/
/*  background-color: #555;*/
/*}*/

.collapsible:after {
    content: "\002B";
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

/*.active:after {*/
/*  content: "\2212";*/
/*}*/

.content.form-content {
    max-height: 100% !important;
    overflow: auto;
}
.home-investor {
    background: none;
}
.home-investor hr {
    margin-bottom: 40px;
    border: 0;
}
.footer-bars p,
.footer-bottom p {
    color: #fff;
}
#mission ul li {
    font-size: 16px;
}

/*.home-slider {*/
/*  background-image: url(../assets/images/banners.jpg);*/
/*  background-repeat: no-repeat;*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  min-height: 600px;*/
/*}*/

.home-slider .banner-text .banner-title {
    font-weight: 600;
    line-height: 46px;
}
.home-slider .banner-text .banner-title .green {
    display: block;
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
}
.banner-text p {
    color: #ffffff;
}
.green {
    color: var(--rv-primary);
}
.home-slider .banner-text a.btn.btn-primary {
    margin-top: 30px;
}
.home-slider .main-header {
    /*background-color: rgba(0,0,0,0.03);*/
    background-color: #fff0;
    /*padding: 10px;*/
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    -webkit-transition: 0.3s ease-in-out 0s all;
    transition: 0.3s ease-in-out 0s all;
}
.home-slider .main-header img {
    width: 100%;
    /*width: 120px;*/
    margin-top: 30px;
}
.home-slider .header-menu nav.navbar {
    padding: 0;
}
.home-slider .main-header ul.navbar-nav {
    /*margin: auto;*/
}
.home-slider .main-header ul.navbar-nav a.nav-link {
    padding: 10px 15px !important;
}
ul.navbar-nav .nav-item.active .nav-link {
    color: #000 !important;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.home-slider .main-header .login-btn {
    text-transform: uppercase;
    width: 130px;
    font-size: 18px;
    line-height: 27px;
}
.inner-banner {
    min-height: 136px;
}
.inner-banner .main-header {
    background: rgb(255 255 255);
}

.home-aboutus {
    /*background-color: #4941a2;*/
}
.home-aboutus .main-title {
    text-align: left;
    /*color: #fff;*/
}
.home-aboutus .main-title .color-green {
    font-weight: 600;
    font-size: 28px;
    padding: 10px 0px;
    /*color: #fff;*/
}
.home-aboutus p {
    /*color: #fff;*/
}
/* div#services1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
} */

.investor-info .name h5 {
    color: #fff;
}

.fromindex {
    background: #052944;
    padding: 20px;
    border-radius: 11px;
    /*margin-top: -136px;*/
}
.fromindex h4 {
    /*background: var(--rv-secondary-dark);*/
    color: #fff;
    margin: 0px -20px;
    text-align: center;
    padding: 3px;
    /*margin-bottom: 15px;*/
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-size: 18px;
}
.fromindex table b {
    color: #fff;
    display: none;
}
.fromindex table tr {
    line-height: 1;
}
.footer-top .info-items span {
    color: #fff;
    display: block;
    width: 82%;
    float: right;
}
.footer-top .info-items {
    line-height: inherit;
    margin-bottom: 10px;
}
.footer-top .info-items img {
    margin-right: 10px;
    width: 25px;
}
.social-media .items {
    color: #fff;
    font-size: 18px;
    margin-right: 8px;
}
.main-footer .footer-bars .foot-title span {
    width: 60%;
    display: block;
    font-size: 25px;
    border-bottom: 4px solid var(--rv-secondary);
}
.main-title span {
    display: block;
}
.mt-60 {
    margin-top: 60px;
}
.mt-40 {
    margin-top: 20px;
}
.home-testimonials .col-md-4 img {
    width: 100%;
}
.inner-news .fa,
.info_box span.btn.btn-primary .fa {
    font-size: 11px;
}
.main-header-top {
    background: #38287b;
    padding: 10px 0px;
    margin-bottom: 18px;
}
.main-header-top ul {
    margin-bottom: 0px;
    margin-top: 3px;
    padding: 0px;
}
.main-header-top ul li {
    display: inline-block;
}
.main-header-top ul li img {
    width: 20px !important;
    margin-right: 14px;
}
.main-header-top ul li a {
    color: #fff;
    margin-right: 12px;
}
.btn.btn-primary.know-more {
    /*height: 30px;*/
    /*padding: 0px 15px;*/
}
.main-heading {
    text-align: center;
}

.downloadapp {
    background: #063659;
    padding-bottom: 0px;
}
.downloadapp .home-aboutus .main-title {
    color: #fff;
}
.downloadapp .main-title,
.downloadapp p {
    color: #fff;
}
.downloadapp.home-aboutus ul {
    padding-left: 0px;
    margin-top: 30px;
}
.downloadapp.home-aboutus ul li {
    display: inline-block;
}

.footer-top .fa {
    color: #fff;
}
.footer-top img {
    margin-bottom: 20px;
}

.sip-calculator-section .grow_gif {
    text-align: center;
    margin-top: 45px;
}
.sip-calculator-section .grow_gif img {
    width: 90%;
    margin: -70px auto 0 auto;
}
.sip-calculator-section #chart_div {
    margin-top: 40px !important;
}

.sip-calculator-section .ui-widget.ui-widget-content {
    border-radius: 30px;
    height: 6px;
    background: #9c9fa1;
    border: 1px solid #9c9fa1;
}

.sip-calculator-section .ui-state-default,
.sip-calculator-section .ui-widget-content .ui-state-default,
.sip-calculator-section .ui-widget-header .ui-state-default {
    border: 1px solid #fff;
    background: #fff;
    font-weight: normal;
    border-radius: 100%;
    width: 13px;
    height: 13px;
    top: -5px;
}
.sip-calculator-section .ui-slider .ui-slider-range {
    background: #fff;
    border: 1px solid #fff !important;
}
.home-testimonials ul li {
    display: inline-block;
}
.home-testimonials .marquee {
    background: var(--rv-primary);
    padding: 25px;
    width: 100%;
}
.home-testimonials ul li img {
    width: 150px;
    padding: 10px;
}
.home-testimonials ul {
    margin-bottom: 0px;
}
.p-0 {
    padding: 0px;
    margin-top: -11rem;
    margin-bottom: 5rem;
}
.p-0 h1 {
    color: #fff;
    margin-bottom: 20px;
}




.logo {
    height: 100px;
    /* position: absolute; */
    z-index: 999;
}
.logo a img {
    width: auto;
    height: 115px;
}
.main-title.text-center span {
    font-size: 30px;
}
.bg-colour{
    background-color: #d0f4ff7d;
}

.inner-news h4 {
    font-size: 20px;
    word-break: break-all;
}
.home-testimonials .inner-news {
    padding: 20px;
    border: 1px solid #8080804d;
}
.blog-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.blog-top p {
    display: contents;
}
.item.partner-item a.img-partner img {
    padding: 10px;
    border: 1px solid grey;
}
.marquee .main-title {
    margin-bottom: 10px;
}




.why_redcorel .info_box {
    background: #ffffff;
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    margin-bottom: 20px;
    min-height: 430px;
    height: 490px;
    width: 100%;
    position: relative;
    z-index: 1;
    margin: 15px;
    /* height: max-content; */
    padding: inherit;
    border-radius: 6px;

}
.why_redcorel .info_box:hover::before {
    content: "";
    height: 100%;
    width: 100%;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-left: 10px solid var(--rv-primary);
    border-bottom: 10px solid var(--rv-primary);
    border-radius: 6px;
}
.why_redcorel .info_box:hover::after {
    /* content: ""; */
    position: absolute;
    top: -15px;
    left: -14px;
    right: 5px;
    bottom: 0;
    width: 325px;
    height: 510px;
    background: url("../../assets/images/shape_2.png");
    z-index: -1;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
    padding: 90px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.why_redcorel .info_box .icon {
    display: block;
    text-align: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    padding: 20px;
    position: relative;
    z-index: 9999;
    transition: 0.4s;
    border: 6px solid #fff;
}

.why_redcorel .info_box img.icon1 {
    width: 100%;
    margin-top: 5px;
    height: 260px;
    object-fit: cover;
}

.why_redcorel .info_box .icon .icon2 {
    position: absolute;
    width: 100%;
    padding: 20px;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.why_redcorel .info_box .info {
    position: relative;
    z-index: 999;
    color: #fff;
    text-align: left;
}

.why_redcorel .info_box .info h3 {
    margin-top: 20px;
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    padding: 19px 17px;
    margin: 0px;
}

.why_redcorel .info_box .info p {
    text-align: left !important;
    letter-spacing: 0;
    font-size: 14px;
    color: #000;
}

.why_redcorel .info_box:hover .icon {
    background-color: #fff;
    border: 6px solid #eee;
    transition: 0.4s;
}

.why_redcorel .info_box:hover .icon .icon2 {
    opacity: 1;
    visibility: visible;
    transition: 0.4s;
}

.info_box:hover span.btn.btn-primary {
    color: #fff;
}

.why_redcorel .info_box:hover p,
.why_redcorel .info_box:hover h3 {
    color: #000;
}

.info_box .info .content {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
}

.info_box .info .content .images {
    height: 40px;
    width: 40px;
}

.info_box .info .content .images img {
    height: 100%;
    width: 100%;
}

.why_redcorel .info_box .icon img {
    width: 50px;
    height: 50px;
}

div#services1 .item .row {
    display: block;
    margin: 0px auto;
}

.utility-box {
    position: relative;
    text-align: center;
    padding: 40px;
    margin-bottom: 30px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s;
    border-radius: 4px;
    z-index: 1;
    overflow: hidden;
    background-color: transparent;
    min-height: 180px;
    text-decoration: none !important;
    border: 0px;
}

.card.utility-box {
    border: none;
    padding: 30px 45px;
    text-align: left;
    height: 380px;
    width: 354px;
    transition: 0.5s;
}


.card.utility-box:before {
    border: 1px solid #80808040;
    position: absolute;
    content: "";
    top: 14px;
    height: 351px;
    width: 320px;
    left: 16px;
    background: #ffffff;
    z-index: -1;
    border-radius: 3px;
}

.home-aboutus .card.utility-box:before {
    border: 1px solid #80808040;
    position: absolute;
    content: "";
    top: 12px;
    height: 352px;
    width: 320px;
    left: 17px;
    background: #ffffff;
    z-index: -1;
    border-radius: 6px;
}

.card.utility-box:hover::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 1px;
    right: 0;
    bottom: 0;
    width: 350px;
    height: 380px;
    background: url("../../assets/images/shape_.png");
    z-index: -1;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
    padding: 90px;
    background-size: contain;
    background-repeat: no-repeat;
}

.utility-box h5 {
    font-weight: 600;
    margin: 0px;
    padding: 21px 0px 0px;
}

.utility-box .cont_text p {
    font-size: 15px;
    color: var(--rv-primary-dark);
    margin-top: 15px;
    transition: 0.3s;
    position: relative;
    z-index: 999;
    text-align: left;
    font-weight: 500;
}

.utility-box:hover::after {
    content: "";
    position: absolute;
    background: #0077bd;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    border-radius: 5px;
}

.utility-box:hover .cardimg-hover {
    display: block;
    margin: 0px auto;
}
.utility-box a.view_more_btn i {
    color: var(--rv-primary);
}
.utility-box:hover a.view_more_btn i {
    color: var(--rv-bg-secondary);
}

.cardimg,
.cardimg-hover {
    font-size: 56px;
    color: #ed3337;
    transition: 0.3s;
    position: relative;
    z-index: 999;
}

.utility-box:hover p {
    color: var(--rv-bg-secondary);
}



/* Styling for the testimonial box */
.testimonial-carousel .item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: #ffffff00;
    padding: 20px;
    transition: all 0.5s ease-in-out;
}

.testimonial-carousel .item .investor-info {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}
.testimonial-carousel .item .investor-info .info_box {
    background: #ffffff;
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    margin-bottom: 20px;
    min-height: 235px;
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
}

.testimonial-carousel .item .investor-info:hover .info_box{
    background: #f0f0f0;
    transform: scale(1.05);
    transition: all 0.5s ease-in-out;
}

.testimonial-carousel .item:hover .investor-info::after {
    content: "";
    position: absolute;
    top: -22px;
    left: -38px;
    right: 0;
    bottom: 0;
    width: 1146px;
    height: 100%;
    background: url("../../assets/images/shape_3.png");
    z-index: -1;
    transition: all 0.5s ease-in-out;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 280px;
}

.testimonial-carousel .item .investor-info .img {
    text-align: center;
}

.testimonial-carousel .item .investor-info .img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-carousel .item .investor-info .name h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.testimonial-carousel .item .investor-info .name p {
    font-size: 14px;
    color: #777;
}

.testimonial-carousel .item .investor-info p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Hover effect on text */
.testimonial-carousel .item .investor-info .info_box:hover p,
.testimonial-carousel .item .investor-info .info_box:hover h3 {
    color: var(--rv-bg-secondary);
}

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

.card.tool-box.utility-box .icon {
    text-align: center;
}
.card.tool-box.utility-box  .icon i {
    font-size: 120px;
    text-align: center;
    color: var(--rv-primary-dark);
}

.card.tool-box.utility-box:hover  .icon i {
    color: var(--rv-secondary-dark);
}


.blog-top span {
    background: var(--rv-secondary-dark);
    padding: 5px 10px;
    border-radius: 14px;
    color: #fff;
}

.contact-info-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.info-items {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-items i {
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
}

.info-text a {
    color: #fff !important;
    text-transform: capitalize;
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

.info-items span {
    font-size: 16px;
    line-height: 1.5;
}

.follow-company-icon {
    display: flex;
    gap: 15px;
}
.follow-company-icon a {

    font-size: 30px;
    color: var(--rv-secondary-dark);
}
.follow-company-icon a:hover {
    font-size: 30px;
    color: var(--rv-primary);
}
.footer-bars img {
    width: 100%;
}

ul.calculator-list .btn-primary span {
    font-size: 16px;
}

.login .marquee {
	display:none;
}
.login .main-footer{
	padding-top:130px;
}