.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: #f1f5fd;
}

.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-section {
  padding: 50px 0;
}

.main-heading {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  margin: 0 auto;
}
.main-heading .title-box {
  background-color: var(--rv-primary-light);
  display: inline-block;
  padding: 6px 10px;
  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;
  background: linear-gradient(90deg, var(--rv-primary) 0%, var(--rv-secondary) 30%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

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

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

.header-top-right {
  text-align: right;
}

ul.navbar-nav .nav-item .nav-link {
  color: var(--rv-black) !important;
  padding: 12px 20px;
  font-weight: 500;
}
ul.navbar-nav .nav-item.dropdown.services .dropdown-menu {
  -moz-column-count: 2;
       column-count: 2;
  width: 700px;
}
@media only screen and (max-width: 992px) {
  ul.navbar-nav .nav-item.dropdown.services .dropdown-menu {
    width: 250px;
    -moz-column-count: 1;
         column-count: 1;
  }
}
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-primary) !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: rgba(63, 81, 181, 0.2);
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}
.home-slider::after {
  content: "";
  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: 220px 0 100px 0;
}

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

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

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

.home-about .about-image {
  text-align: center;
}

.home-about .about-image img {
  width: 94%;
}

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

.home-service .owl-carousel.owl-theme.home-services {
  position: relative;
}

.home-service .owl-carousel.owl-theme.home-services .service-card {
  margin: 15px;
  background-color: var(--rv-white);
  border-radius: 10px;
  box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  padding: 130px 15px 20px 15px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .icon {
  height: 130px;
  width: 130px;
  background-color: rgba(47, 48, 150, 0.0588235294);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 25px 25px 30px;
  border-radius: 100%;
  position: absolute;
  top: -22px;
  left: -22px;
}
.home-service .owl-carousel.owl-theme.home-services .service-card .icon img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.home-service .owl-carousel.owl-theme.home-services .service-card a {
  text-decoration: none;
}

header.main-header .header-bottom {
  border-top: 1px solid var(--rv-white);
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble {
  position: absolute;
  display: flex;
  top: 0;
  align-items: center;
  justify-content: space-around;
  width: 50%;
  right: 0;
}
.home-service .owl-carousel.owl-theme.home-services .service-card .text h3 {
  font-size: 22px;
  font-weight: 600;
}
.home-service .owl-carousel.owl-theme.home-services .service-card .text a {
  font-weight: 600;
  display: block;
  margin-top: 10px;
  color: var(--rv-primary);
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #bfd6fa;
  border-radius: 100%;
  animation: blinking 3s linear infinite;
  transition: 0.3s ease-in 0s all;
  position: absolute;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(1) {
  animation-delay: 1s;
  top: 60px;
  right: 40px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(2) {
  animation-delay: 2.5s;
  width: 9px;
  height: 9px;
  top: 8px;
  right: 55px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(3) {
  animation-delay: 1s;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 75px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(4) {
  animation-delay: 3s;
  width: 17px;
  height: 17px;
  top: 33px;
  right: 46px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(5) {
  animation-delay: 3.5s;
  width: 20px;
  height: 20px;
  top: 38px;
  right: 10px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(6) {
  animation-delay: 2s;
  width: 10px;
  height: 10px;
  top: 15px;
  right: 32px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(7) {
  animation-delay: 3.5s;
  width: 17px;
  height: 17px;
  top: 50px;
  right: 80px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(8) {
  animation-delay: 2s;
  width: 8px;
  height: 8px;
  top: 5px;
  right: 14px;
}
@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;
}

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

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

.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-secondary);
  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;
  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: #edf2fd;
  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: 47%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 400px;
    height: 400px;
    background-color: #cfdcfa;
    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 .testimonial-card {
  background-color: var(--rv-secondary);
  padding: 20px;
  border-radius: 10px;
  margin: 15px;
}
.home-testimonial-section .testimonial-card .image {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  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-white);
}
.home-testimonial-section .testimonial-card .text h3 span {
  font-weight: 500;
}
.home-testimonial-section .testimonial-card .text p {
  color: var(--rv-white);
  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: var(--rv-black) url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  min-height: 400px;
  padding: 150px 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-white);
}

.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: 150px;
  margin-bottom: 0;
  filter: brightness(0) invert(1);
}

.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: 90%;
  top: 0;
  opacity: 1;
}
.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;
}
.rv-row .rv-col .view_more_btn {
  position: absolute;
  font-size: 30px;
  color: var(--rv-primary);
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px 0 #ddd;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  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 {
  background: linear-gradient(90deg, var(--rv-white) 0%, var(--rv-secondary) 30%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.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;
}
.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);
}
.login-page-body header.main-header{
      position: relative;
    z-index: 99;
    top: 0;
    border-bottom: 1px solid #ddd;
}
.login-part:before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../images/logo.webp);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    opacity: .2;
}
.login-part form#signinForm {
    position: relative;
    z-index: 1;
}
.login-part .form-control:not([type=button], [type=chackbox], [type=radio]){
    background-color: #0000;
}
.modal-open header.main-header {
    z-index: 0;
}